-
Notifications
You must be signed in to change notification settings - Fork 24.8k
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
Improve master service batching queues #92021
Merged
elasticsearchmachine
merged 25 commits into
elastic:main
from
DaveCTurner:2022-11-30-new-master-service-queues
Feb 23, 2023
Merged
Changes from 5 commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
809a556
Improve master service batching queues
DaveCTurner 0370148
Update docs/changelog/92021.yaml
DaveCTurner 4cb1140
Update docs/changelog/92021.yaml
DaveCTurner 35b334d
Merge branch 'main' into 2022-11-30-new-master-service-queues
elasticmachine 83ea0e7
Merge branch 'main' into 2022-11-30-new-master-service-queues
elasticmachine 0c88f4f
Merge branch 'main' into TMP
DaveCTurner e856717
getTaskQueue -> createTaskQueue
DaveCTurner fc89fe3
Note that forkQueueProcessor is single-threaded
DaveCTurner 0797f30
CountedQueue -> PerPriorityQueue
DaveCTurner 5f85269
Correct comment
DaveCTurner b199b42
Avoid cast with wildcard
DaveCTurner 781da78
EnumMap doesn't need separate array
DaveCTurner 765a9d2
Unused
DaveCTurner d6a18d3
Merge branch 'main' into 2022-11-30-new-master-service-queues
DaveCTurner 9cfa0e7
Update MetadataIndexAliasesService
DaveCTurner 52ac444
Fix tests
DaveCTurner 414045a
Merge branch 'main' into 2022-11-30-new-master-service-queues
DaveCTurner 4e56e4d
Merge branch 'main' into 2022-11-30-new-master-service-queues
DaveCTurner c7f79bf
Fixup merge
DaveCTurner bfccca2
Simplify submitUnbatchedStateUpdateTask
DaveCTurner a22db27
Extract common allBatchesStream()
DaveCTurner 76d99f4
Consistency assertions on currentlyExecutingBatch
DaveCTurner d565881
Rename item -> batch
DaveCTurner ff22d79
Merge branch 'main' into 2022-11-30-new-master-service-queues
DaveCTurner ed56710
Merge branch 'main' into 2022-11-30-new-master-service-queues
DaveCTurner File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
pr: 92021 | ||
summary: Improve master service batching queues | ||
area: Cluster Coordination | ||
type: enhancement | ||
issues: | ||
- 81626 |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Today's
MasterService
silently drops stuff when it's shut down. With this change we become stricter about rejecting work explicitly in this case.