feat: Add Executor support to Monitor for concurrent search (issue #16198) - #16433
Open
cyforkk wants to merge 2 commits into
Open
feat: Add Executor support to Monitor for concurrent search (issue #16198)#16433cyforkk wants to merge 2 commits into
cyforkk wants to merge 2 commits into
Conversation
…ache#16198) Allow users to pass an Executor to MonitorConfiguration for inter-segment concurrency in search operations. When set, the Monitor will use this Executor when creating IndexSearcher instances. Changes: - Add Executor field to MonitorConfiguration with getter/setter - Store Executor in Monitor constructor - Use Executor when creating IndexSearcher in match() and debug() methods Co-Authored-By: Claude <noreply@anthropic.com>
cyforkk
force-pushed
the
monitor-concurrency
branch
from
July 29, 2026 14:54
27b5780 to
030095c
Compare
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.
Summary
This PR adds support for passing an Executor to the Monitor for inter-segment concurrency in search operations.
Changes
Executorfield toMonitorConfigurationwith getter/setter methodsMonitorconstructor to store the Executor from configurationmatch()anddebug()methods to use the Executor when creatingIndexSearcherinstancesUsage
Users can now configure concurrent search in Monitor:
Related
Fixes #16198
🤖 Generated with Claude Code