How to start a process daily at specific time? Does Camunda 8 support this?

Hello,

I have a timer start event for a process running on camunda 8.

Does Camunda 8 support the daily execution at specific time?

If this is not supported, how can I make the process run every 24 hours?

Thank you in advance,
Smith.

Hi, @smith_Johnson , you can check this out, it’s supported in Camunda 8.1
time-cycle-at-given-time

2 Likes

Hi @skayliu,

thanks for the reference.

I tried to copy-paste the following R3/2022-04-27T17:20:00Z/P1D (found on the reference that you provided).

However, I receive the following error.

image

Hi @smith_Johnson. :wave:

:warning: This feature is supported after version 8.1. The alpha version of version 8.1 has been released.

EDIT:
Besides, you can also try to use cron expression like this:

# Every hour on the hour from 9-5 p.m. UTC Monday-Friday

"0 0 9-17 * * MON-FRI"

:warning: This feature is also supported in version 8.1.

3 Likes