Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix unique scheduling issues #619

Merged
merged 3 commits into from
Sep 26, 2024
Merged

Conversation

bgentry
Copy link
Contributor

@bgentry bgentry commented Sep 26, 2024

PR #590 introduced a more flexible unique job mechanism that allowed for the unique states to be customized, all while still benefiting from the performance improvements of using a unique index rather than an advisory lock. The retryable state is included in the default list of states, but can be removed if the user doesn't want to prevent an erroring job from blocking duplicate inserts.

However this created an issue: when trying to schedule a retryable job (move it to available) it could potentially have a conflict with a duplicate unique job. To handle this, special logic was added to try to deal with this scenario for unique jobs, moving the conflicting row to discarded rather than available. Unfortunately this logic had issues and was insufficiently tested. There were a couple specific scenarios that caused issues:

  1. A unique job that was being scheduled because it was either inserted as scheduled or had errored and become retryable would actually be considered a conflict with itself because the query didn't properly exclude the row being scheduled.
  2. Attempting to schedule two duplicate retryable unique jobs at the same time would lead to a unique conflict because there was no mechanism to prevent this.

The query changes in this PR address both of the above cases along with test coverage.

The increased complexity is unfortunate, and we're probably nearing the limit of what should be dealt with in a single SQL query. If this still isn't complete I'm more inclined to fix the issues by catching these conflicts at the application level, explicitly moving the conflicting row(s) to discarded, and trying again. This can be looped with a backoff or recursed to ensure that progress keeps being made as individual conflicts get resolved. But hopefully that won't be necessary.

Fixes #618.

When deciding whether or not to discard a retryable job due to a unique
conflict, don't consider the job that we're trying to schedule. It
obviously cannot conflict with itself, only other rows.
If two unique jobs happen to be getting scheduled in the same batch,
only one of them can successfully be moved to `available`—the other must
be discarded. Pick the one that's first in line.
@bgentry bgentry merged commit 2b9dd83 into master Sep 26, 2024
14 checks passed
@bgentry bgentry deleted the bg-fix-unique-scheduling-issues branch September 26, 2024 16:19
@bgentry bgentry mentioned this pull request Sep 26, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

v0.12.0 all tasks go to the status discarded with InsertTx
1 participant