Fix duplicate cron trigger events when callback blocks on I/O#667
Draft
bolekk wants to merge 1 commit into
Draft
Fix duplicate cron trigger events when callback blocks on I/O#667bolekk wants to merge 1 commit into
bolekk wants to merge 1 commit into
Conversation
Production workflows with a single cron trigger were occasionally delivering the same trigger event ID twice, causing the workflow engine to log "Skipping duplicate execution" for a delayed second delivery. Root cause: gocron allows overlapping task runs by default. The cron callback read trigger.nextRun at the start but only advanced it after blocking work (org resolver lookup, TriggerExecutionStarted emission). If the callback blocked long enough for the next scheduled tick to fire, a concurrent gocron invocation read the same stale nextRun and emitted a duplicate event with the identical scheduled execution time / legacy execution ID. Fix: - Advance nextRun via job.NextRun() immediately after capturing the scheduled execution time, before any blocking I/O in the callback. - Register cron jobs with gocron.WithSingletonMode(LimitModeWait) so a second invocation cannot run concurrently while the first is still in progress; overdue ticks queue and run sequentially afterward. Add TestCronTrigger_DelayedDuplicateEventWhenCallbackBlocks with a blocking org resolver to reproduce the production scenario and assert that no duplicate trigger event IDs are delivered. Co-authored-by: Cursor <cursoragent@cursor.com>
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.




Production workflows with a single cron trigger were occasionally delivering the same trigger event ID twice, causing the workflow engine to log "Skipping duplicate execution" for a delayed second delivery.
Root cause: gocron allows overlapping task runs by default. The cron callback read trigger.nextRun at the start but only advanced it after blocking work (org resolver lookup, TriggerExecutionStarted emission). If the callback blocked long enough for the next scheduled tick to fire, a concurrent gocron invocation read the same stale nextRun and emitted a duplicate event with the identical scheduled execution time / legacy execution ID.
Fix:
Add TestCronTrigger_DelayedDuplicateEventWhenCallbackBlocks with a blocking org resolver to reproduce the production scenario and assert that no duplicate trigger event IDs are delivered.