Camunda -8 retries mechanism

What is the maximum wait time for each retry?

Is there any way to hung/ sleep the process for defined time before next retry?

Hi @yadav1990,

with the failJob command, that you send from your client, you can give a retryBackoff:

Hope this helps, Ingo

No, it’s not about failed job. I want some delay in process response.
Ex: Suppose I have payment gateway and make the payment but getting the confirmation page taking bit time so want to suspend the process for 60 seconds and return payment confirmation to the client.

So how can we achieve above usecase?

Hi @yadav1990,

by using an intermediate timer event with PT1M (period of time with 1 minute).

Hope this helps, Ingo

No, it’s never work. If we put intermediate timer event, then I am getting redirected immediately without waiting at timer which seems timer event is async in nature by default and how camunda works.

I want to be redirected after 3 successful retry which never happening by putting timer event.

I’m really having a hard time understanding which timer you want to change…

Timer B can be changed using the RetryBackoff that @Ingo_Richtsmeier mentioned

I appreciate your time and modeling the process. But I don’t think it will work and will hold the customer success page for specified time. Please have a look on my usecase and the aim is to hold the customer till total 90S, payment status is Inprogress and retry count < 3.

The moment that you are calling out to other pages, you are now in an async model, and should not try to hold a page.

I’d suggest you look at the FailJob and Retry Mechanisms rather than trying to build it yourself, but that doesn’t have to do with resetting timers. Please try to stay to one topic in a thread, so that anyone can follow along.