In the orchestrator, how do I set up a trigger to run every 15 days at 7 PM regardless of the day of the month, starting from today, 06/09/2024. I have already tried: 0 19 */15 * *
and 0 19 1,16 * *
, but it shows invalid syntax. I also tried this site and couldn’t find the expression: Free Online Cron Expression Generator and Describer - FreeFormatter.com
Try this CRON expression.
0 0 0 1/15 * ? *
Update 1 - Added time
0 0 19 1/15 * ? *
Thanks,
Ashok
I tried this one too, but it always starts on the 1st, and I wanted it to start today and then run every 15 days thereafter.
Is there any expression for this?
Thanks,
Marcella
Running every 15 days - a strict counting of 15 days intervals is against the nature of cron
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.