-
Notifications
You must be signed in to change notification settings - Fork 25.6k
ESQL: Heuristics to pick efficient partitioning #125739
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
Merged
Merged
Changes from 10 commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
23ff7c5
ESQL: Heuristics to pick efficient partitioning
nik9000 47bb86c
Update docs/changelog/125739.yaml
nik9000 527c69a
Fix TODO
nik9000 815dec5
Merge remote-tracking branch 'nik9000/esql_auto_partition' into esql_…
nik9000 c72af75
Report partitioning strategies
nik9000 e2e817d
Test report
nik9000 a348ef9
test
nik9000 d201b4a
[CI] Auto commit changes from spotless
fd41476
Merge branch 'main' into esql_auto_partition
nik9000 8533d07
Merge branch 'main' into esql_auto_partition
nik9000 e72673c
Merge branch 'main' into esql_auto_partition
nik9000 05e487e
Merge branch 'main' into esql_auto_partition
nik9000 bc92147
[CI] Auto commit changes from spotless
05175e5
Cluster setting
nik9000 03f029c
in
nik9000 caf5f05
Merge remote-tracking branch 'nik9000/esql_auto_partition' into esql_…
nik9000 5ab7032
Fix rewrite
nik9000 8f72b1d
Merge branch 'main' into esql_auto_partition
nik9000 ae48a6f
Merge branch 'main' into esql_auto_partition
nik9000 a4fd6c5
Merge branch 'main' into esql_auto_partition
nik9000 2f7ecc8
Merge branch 'main' into esql_auto_partition
nik9000 2ab82a8
Merge branch 'main' into esql_auto_partition
nik9000 c816934
Fixup merge
nik9000 bf3c076
Merge branch 'main' into esql_auto_partition
nik9000 ad9e064
Try and make this more consistent
nik9000 334c1bc
Merge branch 'main' into esql_auto_partition
nik9000 66aa691
Merge branch 'main' into esql_auto_partition
nik9000 409067c
Merge branch 'main' into esql_auto_partition
nik9000 9b7728e
Merge branch 'main' into esql_auto_partition
nik9000 a0ebc79
Merge branch 'main' into esql_auto_partition
nik9000 77608d3
Merge branch 'main' into esql_auto_partition
nik9000 2eb1ac7
Merge remote-tracking branch 'nik9000/esql_auto_partition' into esql_…
nik9000 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 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| pr: 125739 | ||
| summary: Heuristics to pick efficient partitioning | ||
| area: ES|QL | ||
| type: enhancement | ||
| issues: [] |
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
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
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
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
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
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
Oops, something went wrong.
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.
Unfortunately, we currently have to use
min(1.5 * cpus, partition_count)because drivers consist of both I/O and CPU-bound operations.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.
I'll update the comment.