Dear Concerned,
I have used camunda spring boot starter dependency
org.camunda.bpm.springboot
camunda-bpm-spring-boot-starter-rest
7.14.0
<dependency>
<groupId>org.camunda.bpm.springboot</groupId>
<artifactId>camunda-bpm-spring-boot-starter-webapp</artifactId>
<version>7.14.0</version>
</dependency>
And have configured camunda history cleanup with below properties in application.properties :
camunda.bpm.admin-user.first-name=Administrator
camunda.bpm.application.deploy-changed-only=true
camunda.bpm.auto-deployment-enabled=true
camunda.bpm.filter.create=All tasks
camunda.bpm.generic-properties.properties.historyCleanupBatchWindowStartTime=05:00
camunda.bpm.generic-properties.properties.historyCleanupBatchWindowEndTime=05:00
camunda.bpm.generic-properties.properties.mondayHistoryCleanupBatchWindowStartTime =06:00
camunda.bpm.generic-properties.properties.mondayHistoryCleanupBatchWindowEndTime =07:00
camunda.bpm.generic-properties.properties.historyCleanupBatchSize=100
camunda.bpm.generic-properties.properties.historyCleanupStrategy=removalTimeBased
camunda.bpm.generic-properties.properties.historyCleanupDegreeOfParallelism=4
camunda.bpm.generic-properties.properties.historyTimeToLive=P30D
camunda.bpm.generic-properties.properties.batchOperationHistoryTimeToLive=P30D
camunda.bpm.job-execution.enabled=true
camunda.bpm.history-level=full
camunda.bpm.id-generator=simple
But the issue is even after deploying these configurations, removal_time is not getting added in newly created records nor if I manually add removal_time in already existing records, they even don’t get removed.
Please assist.