Abort enqueue when the concurrency limit is reached #820
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.
Curious to get your feedback on this!
We implemented concurrency keys in some of our jobs for the first time today, and I noticed that when a job isn't enqueued because the concurrency limit is reached, Rails still logs a line like
This happens because ActiveJob logs as long as enqueue didn't raise an error or get aborted. Maybe the best fix actually lies there although it's not totally clear to me how best to patch that.
Anyway, this PR uses
before_enqueue
instead ofaround_enqueue
and throws:abort
when a job won't be enqueued. That instead causes Rails to logwhich is more accurate, although I think
Failed
is scary language there. So I also added a log liketo help make it more clear what's going on.