forked from elastic/elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Profiling] Query in parallel on content nodes (elastic#104600)
In order to take advantage of inherent parallelism of modern SSDs, we slice keys and issue multiple mgets concurrently. In elastic#103061 we have introduced an additional heuristic to disable that behavior on the warm and cold tier which usually use spinning disks. We have unintentionally also disabled the behavior on content nodes, i.e. on any clusters which do not use data tiers. With this commit we explicitly exclude content nodes from the heuristic so they can benefit from speedups due to concurrent mgets. Relates elastic#103061
- Loading branch information
1 parent
1c1925c
commit daa9c42
Showing
3 changed files
with
31 additions
and
2 deletions.
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,5 @@ | ||
pr: 104600 | ||
summary: "[Profiling] Query in parallel on content nodes" | ||
area: Application | ||
type: bug | ||
issues: [] |
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