Skip to content

perf: replace SMJ's join_filter_not_matched_map HashMap with Vec<FilterState>#21517

Merged
mbutrovich merged 2 commits intoapache:mainfrom
mbutrovich:smj_replace_filtered_hashmap
Apr 9, 2026
Merged

perf: replace SMJ's join_filter_not_matched_map HashMap with Vec<FilterState>#21517
mbutrovich merged 2 commits intoapache:mainfrom
mbutrovich:smj_replace_filtered_hashmap

Conversation

@mbutrovich
Copy link
Copy Markdown
Contributor

Which issue does this PR close?

Partially addresses #20910, might be the last one for now.

Rationale for this change

In full outer joins with filters, BufferedBatch tracks which buffered rows had all filter evaluations fail using a HashMap<u64, bool>. This map is read and written per-row in a hot loop during freeze_streamed_matched. The HashMap pays ~40-60 bytes per entry (8-byte u64 key + 1-byte bool value + hash table overhead), hashes every key twice per iteration (once for get, once for insert), and scatters entries across heap allocations with poor cache locality.

What changes are included in this PR?

Replaces HashMap<u64, bool> with Vec<FilterState> indexed by absolute row position within the batch. FilterState is a #[repr(u8)] enum with three variants (Unvisited, AllFailed, SomePassed), so the Vec is 1 byte per row — allocated once, direct-indexed, no hashing. At the default batch size of 8192 rows the Vec is 8 KB (fits in L1 cache). Even at large batch sizes (32K+), 32 KB is still within L1 on most machines, while the HashMap at 32K entries would consume ~1-2 MB of scattered heap memory.

Three states are needed because a simple Vec<bool> cannot distinguish "never matched" (handled separately by null_joined) from "matched but all filters failed" (must be emitted as null-joined). The enum variant names are self-documenting, unlike Option<bool> where None/Some(true)/Some(false) would be opaque.

Are these changes tested?

Existing tests.

Are there any user-facing changes?

No.

@github-actions github-actions bot added the physical-plan Changes to the physical-plan crate label Apr 9, 2026
@mbutrovich mbutrovich added the performance Make DataFusion faster label Apr 9, 2026
@mbutrovich
Copy link
Copy Markdown
Contributor Author

run benchmark smj

@mbutrovich
Copy link
Copy Markdown
Contributor Author

run benchmark tpch10

env:
   PREFER_HASH_JOIN: false

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4215739096-1028-zzpvl 6.12.55+ #1 SMP Sun Feb 1 08:59:41 UTC 2026 aarch64 GNU/Linux

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected

Comparing smj_replace_filtered_hashmap (701fddc) to 6a770aa (merge-base) diff using: smj
Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4215739750-1029-2s58h 6.12.55+ #1 SMP Sun Feb 1 08:59:41 UTC 2026 aarch64 GNU/Linux

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected

Comparing smj_replace_filtered_hashmap (701fddc) to 6a770aa (merge-base) diff using: tpch10
Results will be posted here when complete


File an issue against this benchmark runner

@mbutrovich mbutrovich marked this pull request as ready for review April 9, 2026 16:25
@mbutrovich mbutrovich requested a review from comphead April 9, 2026 16:25
@adriangbot
Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

Instance: c4a-highmem-16 (12 vCPU / 65 GiB)

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected
Details

Comparing HEAD and smj_replace_filtered_hashmap
--------------------
Benchmark smj.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                 HEAD ┃          smj_replace_filtered_hashmap ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │       32.34 / 32.63 ±0.15 / 32.74 ms │        32.40 / 32.52 ±0.09 / 32.64 ms │     no change │
│ QQuery 2  │    187.30 / 191.30 ±3.25 / 194.92 ms │     188.39 / 193.29 ±3.16 / 198.08 ms │     no change │
│ QQuery 3  │    104.74 / 107.98 ±2.89 / 113.17 ms │     108.26 / 109.52 ±2.01 / 113.52 ms │     no change │
│ QQuery 4  │       28.35 / 28.94 ±0.40 / 29.57 ms │        27.84 / 29.20 ±0.78 / 30.17 ms │     no change │
│ QQuery 5  │       23.07 / 23.30 ±0.22 / 23.68 ms │        22.58 / 22.88 ±0.28 / 23.38 ms │     no change │
│ QQuery 6  │    181.98 / 187.17 ±5.26 / 196.88 ms │     186.07 / 195.41 ±8.11 / 210.23 ms │     no change │
│ QQuery 7  │    222.23 / 229.18 ±8.08 / 244.86 ms │    230.11 / 246.42 ±16.28 / 277.67 ms │  1.08x slower │
│ QQuery 8  │       23.23 / 23.86 ±0.70 / 25.17 ms │        23.31 / 24.01 ±0.51 / 24.64 ms │     no change │
│ QQuery 9  │    227.34 / 232.29 ±3.49 / 237.60 ms │     229.03 / 234.68 ±3.53 / 239.47 ms │     no change │
│ QQuery 10 │      80.05 / 89.61 ±7.71 / 103.43 ms │        80.25 / 82.52 ±1.52 / 83.93 ms │ +1.09x faster │
│ QQuery 11 │       27.66 / 28.51 ±0.61 / 29.39 ms │        28.15 / 28.33 ±0.12 / 28.49 ms │     no change │
│ QQuery 12 │       75.30 / 76.65 ±1.03 / 78.05 ms │        72.24 / 76.95 ±3.38 / 81.74 ms │     no change │
│ QQuery 13 │    115.66 / 118.14 ±1.91 / 120.81 ms │     116.37 / 118.85 ±1.61 / 121.07 ms │     no change │
│ QQuery 14 │       82.77 / 85.40 ±1.89 / 88.49 ms │        80.09 / 82.43 ±2.43 / 86.97 ms │     no change │
│ QQuery 15 │       81.84 / 86.01 ±3.00 / 88.70 ms │        81.68 / 86.78 ±3.29 / 89.98 ms │     no change │
│ QQuery 16 │       15.82 / 16.08 ±0.25 / 16.56 ms │        16.04 / 16.28 ±0.25 / 16.65 ms │     no change │
│ QQuery 17 │    146.15 / 147.66 ±1.03 / 149.09 ms │     147.24 / 148.80 ±1.78 / 152.18 ms │     no change │
│ QQuery 18 │    107.25 / 108.03 ±0.69 / 109.02 ms │     105.81 / 107.08 ±0.72 / 108.02 ms │     no change │
│ QQuery 19 │   414.37 / 558.89 ±72.51 / 605.74 ms │   400.94 / 524.77 ±100.10 / 610.38 ms │ +1.07x faster │
│ QQuery 20 │ 1274.51 / 1281.32 ±7.12 / 1293.91 ms │ 1278.66 / 1287.44 ±10.97 / 1307.87 ms │     no change │
│ QQuery 21 │    363.74 / 369.94 ±6.70 / 382.97 ms │     360.97 / 373.04 ±9.91 / 384.50 ms │     no change │
│ QQuery 22 │    371.65 / 378.03 ±8.31 / 393.75 ms │     368.89 / 370.71 ±1.31 / 372.41 ms │     no change │
│ QQuery 23 │   427.51 / 452.55 ±15.62 / 472.40 ms │     397.97 / 404.71 ±4.31 / 409.61 ms │ +1.12x faster │
│ QQuery 24 │       28.73 / 29.98 ±0.73 / 30.85 ms │        28.30 / 30.77 ±2.11 / 33.51 ms │     no change │
│ QQuery 25 │       79.02 / 80.49 ±1.35 / 82.70 ms │        74.09 / 77.60 ±2.98 / 82.43 ms │     no change │
│ QQuery 26 │    112.56 / 121.18 ±4.78 / 127.11 ms │     114.18 / 118.02 ±2.42 / 121.43 ms │     no change │
└───────────┴──────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┓
┃ Benchmark Summary                           ┃           ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━┩
│ Total Time (HEAD)                           │ 5085.11ms │
│ Total Time (smj_replace_filtered_hashmap)   │ 5023.03ms │
│ Average Time (HEAD)                         │  195.58ms │
│ Average Time (smj_replace_filtered_hashmap) │  193.19ms │
│ Queries Faster                              │         3 │
│ Queries Slower                              │         1 │
│ Queries with No Change                      │        22 │
│ Queries with Failure                        │         0 │
└─────────────────────────────────────────────┴───────────┘

Resource Usage

smj — base (merge-base)

Metric Value
Wall time 25.8s
Peak memory 3.5 GiB
Avg memory 3.2 GiB
CPU user 215.1s
CPU sys 5.7s
Peak spill 0 B

smj — branch

Metric Value
Wall time 25.4s
Peak memory 3.5 GiB
Avg memory 3.2 GiB
CPU user 212.2s
CPU sys 5.9s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

Instance: c4a-highmem-16 (12 vCPU / 65 GiB)

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected
Details

Comparing HEAD and smj_replace_filtered_hashmap
--------------------
Benchmark tpch_sf10.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                   HEAD ┃           smj_replace_filtered_hashmap ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │      370.25 / 373.22 ±1.97 / 375.93 ms │      371.87 / 373.93 ±1.39 / 375.52 ms │     no change │
│ QQuery 2  │     523.92 / 538.79 ±16.43 / 569.78 ms │      514.58 / 527.63 ±9.44 / 540.45 ms │     no change │
│ QQuery 3  │     628.34 / 719.32 ±49.27 / 762.50 ms │     607.42 / 731.00 ±62.11 / 773.57 ms │     no change │
│ QQuery 4  │     488.82 / 593.75 ±84.26 / 666.44 ms │     441.09 / 610.34 ±87.27 / 674.87 ms │     no change │
│ QQuery 5  │   1187.35 / 1196.35 ±6.35 / 1205.62 ms │  1156.57 / 1185.72 ±25.68 / 1218.71 ms │     no change │
│ QQuery 6  │      134.75 / 137.76 ±3.22 / 143.60 ms │      135.93 / 138.11 ±3.37 / 144.83 ms │     no change │
│ QQuery 7  │  1595.85 / 1620.51 ±17.55 / 1644.68 ms │  1592.19 / 1621.60 ±15.23 / 1636.47 ms │     no change │
│ QQuery 8  │  2191.31 / 2232.54 ±23.75 / 2259.00 ms │ 1497.31 / 2100.21 ±301.58 / 2267.11 ms │ +1.06x faster │
│ QQuery 9  │ 2095.72 / 2240.74 ±154.59 / 2453.76 ms │ 2113.01 / 2365.11 ±136.64 / 2496.01 ms │  1.06x slower │
│ QQuery 10 │     536.74 / 551.74 ±10.08 / 562.93 ms │      539.28 / 549.05 ±7.09 / 558.11 ms │     no change │
│ QQuery 11 │      478.31 / 486.52 ±6.10 / 493.93 ms │      472.22 / 483.45 ±8.21 / 491.95 ms │     no change │
│ QQuery 12 │     305.55 / 320.75 ±12.92 / 341.63 ms │     304.67 / 317.91 ±13.49 / 338.97 ms │     no change │
│ QQuery 13 │      386.42 / 392.17 ±5.18 / 398.68 ms │      386.56 / 396.71 ±5.69 / 403.47 ms │     no change │
│ QQuery 14 │      198.06 / 202.55 ±3.75 / 209.24 ms │      198.85 / 201.33 ±1.76 / 203.16 ms │     no change │
│ QQuery 15 │      323.47 / 327.54 ±3.67 / 333.92 ms │      327.86 / 330.56 ±4.52 / 339.54 ms │     no change │
│ QQuery 16 │      128.05 / 130.71 ±2.24 / 134.07 ms │      123.96 / 129.25 ±2.86 / 132.23 ms │     no change │
│ QQuery 17 │ 1613.25 / 1703.21 ±164.89 / 2032.76 ms │ 1604.01 / 1749.05 ±168.53 / 1959.72 ms │     no change │
│ QQuery 18 │  1716.60 / 1757.37 ±22.76 / 1785.22 ms │  1696.03 / 1729.04 ±37.12 / 1798.43 ms │     no change │
│ QQuery 19 │     275.01 / 287.17 ±21.12 / 329.34 ms │     276.27 / 288.99 ±15.12 / 318.41 ms │     no change │
│ QQuery 20 │     464.88 / 477.41 ±11.72 / 496.76 ms │      477.20 / 488.43 ±6.96 / 496.33 ms │     no change │
│ QQuery 21 │  3630.46 / 3702.63 ±77.44 / 3832.81 ms │  3708.30 / 3764.07 ±50.54 / 3844.13 ms │     no change │
│ QQuery 22 │      193.72 / 200.03 ±4.88 / 206.86 ms │      194.34 / 204.44 ±9.24 / 217.58 ms │     no change │
└───────────┴────────────────────────────────────────┴────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                           ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                           │ 20192.78ms │
│ Total Time (smj_replace_filtered_hashmap)   │ 20285.93ms │
│ Average Time (HEAD)                         │   917.85ms │
│ Average Time (smj_replace_filtered_hashmap) │   922.09ms │
│ Queries Faster                              │          1 │
│ Queries Slower                              │          1 │
│ Queries with No Change                      │         20 │
│ Queries with Failure                        │          0 │
└─────────────────────────────────────────────┴────────────┘

Resource Usage

tpch10 — base (merge-base)

Metric Value
Wall time 101.4s
Peak memory 12.3 GiB
Avg memory 8.7 GiB
CPU user 926.6s
CPU sys 71.7s
Peak spill 0 B

tpch10 — branch

Metric Value
Wall time 101.8s
Peak memory 11.8 GiB
Avg memory 8.6 GiB
CPU user 925.7s
CPU sys 72.3s
Peak spill 0 B

File an issue against this benchmark runner

@mbutrovich
Copy link
Copy Markdown
Contributor Author

QQuery 23 │ 427.51 / 452.55 ±15.62 / 472.40 ms │ 397.97 / 404.71 ±4.31 / 409.61 ms │ +1.12x faster

This is the only relevant microbenchmark query, I think. TPC-H does not have a relevant query for this codepath IIRC.

@mbutrovich mbutrovich self-assigned this Apr 9, 2026
Copy link
Copy Markdown
Contributor

@comphead comphead left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks @mbutrovich
Makes the code much readable, the benchmarks look like within a noise range

@mbutrovich mbutrovich added this pull request to the merge queue Apr 9, 2026
Merged via the queue into apache:main with commit e8990c4 Apr 9, 2026
35 checks passed
@mbutrovich mbutrovich deleted the smj_replace_filtered_hashmap branch April 9, 2026 22:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

performance Make DataFusion faster physical-plan Changes to the physical-plan crate

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants