Commit 81f7a87
authored
Add BufferExec execution plan (#19760)
## Which issue does this PR close?
<!--
We generally require a GitHub issue to be filed for all bug fixes and
enhancements and this helps us generate change logs for our releases.
You can link an issue to this PR using the GitHub syntax. For example
`Closes #123` indicates that this PR will close issue #123.
-->
- Closes #.
## Rationale for this change
This is a PR from a batch of PRs that attempt to improve performance in
hash joins:
- #19759
- This PR
- #19761
It adds a building block that allows eagerly collecting data on the
probe side of a hash join before the build side is finished.
Even if the intended use case is for hash joins, the new execution node
is generic and is designed to work anywhere in the plan.
## What changes are included in this PR?
> [!NOTE]
> The new BufferExec node introduced in this PR is still not wired up
automatically
<!--
There is no need to duplicate the description in the issue here but it
is sometimes worth providing a summary of the individual changes in this
PR.
-->
Adds a new `BufferExec` node that can buffer up to a certain size in
bytes for each partition eagerly performing work that otherwise would be
delayed.
Schematically, it looks like this:
```
┌───────────────────────────┐
│ BufferExec │
│ │
│┌────── Partition 0 ──────┐│
││ ┌────┐ ┌────┐││ ┌────┐
──background poll────────▶│ │ │ ├┼┼───────▶ │
││ └────┘ └────┘││ └────┘
│└─────────────────────────┘│
│┌────── Partition 1 ──────┐│
││ ┌────┐ ┌────┐ ┌────┐││ ┌────┐
──background poll─▶│ │ │ │ │ ├┼┼───────▶ │
││ └────┘ └────┘ └────┘││ └────┘
│└─────────────────────────┘│
│ │
│ ... │
│ │
│┌────── Partition N ──────┐│
││ ┌────┐││ ┌────┐
──background poll───────────────▶│ ├┼┼───────▶ │
││ └────┘││ └────┘
│└─────────────────────────┘│
└───────────────────────────┘
```
## Are these changes tested?
<!--
We typically require tests for all PRs in order to:
1. Prevent the code from being accidentally broken by subsequent changes
2. Serve as another way to document the expected behavior of the code
If tests are not included in your PR, please explain why (for example,
are they covered by existing tests)?
-->
yes, by new unit tests
## Are there any user-facing changes?
<!--
If there are user-facing changes then we may require documentation to be
updated before approving the PR.
-->
users can import a new `BufferExec` execution plan in their codebase,
but no internal usage is shipped yet in this PR.
<!--
If there are any breaking changes to public APIs, please add the `api
change` label.
-->1 parent 29d63c1 commit 81f7a87
6 files changed
Lines changed: 817 additions & 1 deletion
0 commit comments