Cron workflow to schedule tasks that run every 15 seconds?

Does Temporal support Cron workflows to schedule tasks that run every 15 seconds? The nearest thing I can get is a workflow that schedules tasks every 1 minute using this CronSchedule “0/1 * * * *”.

Hello @nncsang

Seconds granularity with Crontab format will give you an error, something like Unable to execute workflow Invalid CronSchedule.

you can do instead CronSchedule: "@every 15s", see What is a Temporal Cron Job? | Temporal Documentation

@antonio.perez Thank you so much for the answer, it really helps. It is my mistake for not checking the documents.