cancel
Showing results for 
Search instead for 
Did you mean: 

disable history for specific process

codingninja
Champ in-the-making
Champ in-the-making
Hi All,
I have few processes in my system.
I have a scenario where I need to have full history for some processes and no history for other.
As the history configuration is done at spring level, all my processes are having full history
is there a way to turn off history for particular process?
3 REPLIES 3

martin_grofcik
Confirmed Champ
Confirmed Champ
Hi,

Current implementation does not support your requirement (AFAIK), but you can extend history logging easily.

regards
Martin

sakumar1
Champ in-the-making
Champ in-the-making
Hi,

Could you give give me exact class Name to extend ?

I feel support for this API is required in Activiti where User Can Override History level at Process Definition Level or Process Instance Level

Regards,
Sakumar

jbarrez
Star Contributor
Star Contributor
The class to extend here would be the HistoryManager (https://github.com/Activiti/Activiti/blob/master/modules/activiti-engine/src/main/java/org/activiti/...). Default implementation is DefaultHistoryManager. You can extend this class and replace the default with your impl.