Retry Time

Hi!
Thank you very much for Camunda!
I need help with retry time (camunda:failedJobRetryTimeCycle</camunda:failedJobRetryTimeCycle>) settings.
Is it possible to change the default value with the spring boot settings for all activity?
Can the activity value be changed without deploying a new schem (Maybe Cockpit, Update DB or else)?
Thanks!

While it doesn’t appear to be exposed directly as a Camunda Engine Property override, you should be able to set it as a Generic Property override.

I would expect to see something like,

camunda:
  bpm:
    generic-properties:
      properties:
        failed-job-retry-time-cycle: R5/PT5M

No new deployments are required, but just a restart of the engine/application.

1 Like

Thank you!