HCD-200: Incremental repair is unable to lock sstables under load#2360
Merged
Conversation
Checklist before you submit for review
|
) [HCD-200](https://datastax.jira.com/browse/HCD-200) Changes the tracking of compaction tasks to include scheduled in addition to active tasks by introducing a new queue where `AbstractCompactionTask`s register themselves. When the tasks execute, `CompactionTask`s move from the scheduled tasks to the active operations list. Other types of tasks are expected to finish quickly and are removed from the scheduled tasks when they complete. `runWithCompactionsDisabled` cancels tasks in both lists and should now be able to reliably cancel all compactions in flight. [HCD-200]: https://datastax.jira.com/browse/HCD-200
driftx
approved these changes
May 12, 2026
driftx
approved these changes
May 13, 2026
|
Author
|
I don't see any test failures that could be regressions, moving to commit. |
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.



HCD-200
Followup to 907af99 that updates the scheduled tasks interruption to apply task priorities.
What is the issue
...
What does this PR fix and why was it fixed
...