Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docs/changelog/135934.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
pr: 135934
summary: Move can-match thread from transport thread to search coordinator thread
area: Search
type: bug
issues:
- 134959
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ public static void registerRequestHandler(TransportService transportService, Sea

transportService.registerRequestHandler(
QUERY_ACTION_NAME,
EsExecutors.DIRECT_EXECUTOR_SERVICE,
transportService.getThreadPool().executor(ThreadPool.Names.SEARCH_COORDINATION),
ShardSearchRequest::new,
(request, channel, task) -> searchService.executeQueryPhase(
request,
Expand Down