You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi everyone...
I want to create a simple workflow and i need execute that every second. but when i use Cron configuration, for all intervals under a second, workflow is not executed. this is my workflow register:
Hey @Apkahym, our cron syntax only supports minute granularity, it doesn't support seconds. One way around this is to create a parent workflow which runs every minute which spawns new workflows every second for 60 seconds. I know this isn't the most ideal solution, but it's currently the best option.
Hi @abelanger5, thanks for taking some time to reply to me. I found an alternative to the classic cron syntax (* * * * * *) in the cron module documentation and it works relatively. This alternative uses the @every <unit of time> reservation word.
When I say "it works relatively" I mean that the workflow runs every second, but the rest of the ecosystem doesn't respond in time and runs slowly.
Right now I'm looking for an alternative to check the conditional state I need to run a workflow, but this solution is probably external to hatchet.
Hi everyone...
I want to create a simple workflow and i need execute that every second. but when i use Cron configuration, for all intervals under a second, workflow is not executed. this is my workflow register:
thank you for your time
The text was updated successfully, but these errors were encountered: