Expand description
Physical execution plan and extension planner for lookup joins. Physical execution plan for lookup joins.
Bridges LookupJoinNode (logical) to a hash-probe executor that
joins streaming input against a pre-indexed lookup table snapshot.
§Data flow
Stream input ──► LookupJoinExec ──► Output (stream + lookup columns)
│
HashIndex probe
│
LookupSnapshot (pre-indexed RecordBatch)Structs§
- Lookup
Join Exec - Physical plan that hash-probes a pre-indexed lookup table for each batch from the streaming input.
- Lookup
Join Extension Planner - Converts
LookupJoinNodelogical plans toLookupJoinExecorPartialLookupJoinExecphysical plans by resolving table data from the registry. - Lookup
Snapshot - Point-in-time snapshot of a lookup table for join execution.
- Lookup
Table Registry - Thread-safe registry of lookup table entries (snapshot or partial).
- Partial
Lookup Join Exec - Physical plan that probes a bounded lookup cache per key for each input batch.
- Partial
Lookup State - State for a partial (on-demand) lookup table.
Enums§
- Registered
Lookup - A registered lookup table entry — snapshot or partial (on-demand).