This content has been marked as final.
Show 2 replies
-
1. Re: How to delete loadStatefulKnowledgeSession from db in jbpm5?(i.e Delete SESSIONINFO data from Database)
mdegan Jun 3, 2015 8:06 AM (in response to yellappa313)First of all, what is the strategy that you are using for KnowledgeSessions:
1) 1 KnowledgeSession for entire app
2) 1 session per process instance
In the first scenario, if there are multiple process instances running, the session will continue to hold information for the currently running processes and will stay persisted. However, if you use strategy 2, multiple sessioninfo objects will be available based on per process instance. As the instance finishes, it can be safely cleared.
-
2. Re: How to delete loadStatefulKnowledgeSession from db in jbpm5?(i.e Delete SESSIONINFO data from Database)
yellappa313 Jun 5, 2015 9:53 AM (in response to mdegan)Hi Mdegan,
Thank you for your response,
I am using 2 nd strategy (i.e 1 session per process instance) but in SESSIONINFO table data isn't clear.