Hello,
I use the spring-boot Camunda engine and we already have deployed multiple processes working perfectly.
The problem is that we didn’t defined a TTL on the processes in the modeler so our history tables has grown huge !
So I tried to configure a process engine time to live, to do soI tried to define some properties to cleanup the history :
camunda.bpm.generic-properties.properties.history-cleanup-strategy=endTimeBased
camunda.bpm.generic-properties.properties.historyTimeToLive=P1D
camunda.bpm.generic-properties.properties.batchOperationHistoryTimeToLive=P1D
camunda.bpm.generic-properties.properties.historyCleanupBatchWindowStartTime=00:01
camunda.bpm.generic-properties.properties.historyCleanupBatchWindowEndTime=23:59
But our history tables are still huge …
Is there a problem with this configuration ?
Also, is there a way to check if the cleanup was trigerred ?
Thanks for your help