Skip to content

perf: use fastrange instead of modulo for hash partition assignment (up to 1.15x improvement)#21830

Open
Dandandan wants to merge 4 commits intoapache:mainfrom
Dandandan:repartition-fastrange
Open

perf: use fastrange instead of modulo for hash partition assignment (up to 1.15x improvement)#21830
Dandandan wants to merge 4 commits intoapache:mainfrom
Dandandan:repartition-fastrange

Conversation

@Dandandan
Copy link
Copy Markdown
Contributor

@Dandandan Dandandan commented Apr 24, 2026

Which issue does this PR close?

Rationale for this change

Lemire's fastrange ((hash as u128) * n) >> 64 produces a uniform mapping from a 64-bit hash into 0..n using one 64×64→128 multiply plus a shift (~4–6 cycles, fully pipelined).

The output is not the same partition number as hash % n for a given row, but the uniformity is equivalent for well-distributed hashes, which is all the partitioner cares about.

What changes are included in this PR?

  • datafusion/physical-plan/src/repartition/mod.rs: replace hash % partitions with fastrange in the hash-partitioning inner loop of BatchPartitioner.

Are these changes tested?

Covered by the existing repartition tests (cargo test -p datafusion-physical-plan repartition — 41 tests pass locally). No test pins the specific hash→partition mapping; they assert on counts/ordering invariants that fastrange preserves.

Are there any user-facing changes?

No public API changes. The one observable difference is that a given row may land on a different output partition than before for Hash partitioning — the distribution is still uniform, so downstream operators behave the same, but anything externally capturing exact per-partition row identity will shift.

Replaces `hash % num_partitions` with Lemire's fastrange
`((hash as u128) * n) >> 64` in BatchPartitioner's hash path. A 64-bit
hardware `div` is ~20-80 cycles and not pipelined; the mulhi+shift is
~4-6 cycles and fully pipelined, so this removes the div unit as a
bottleneck on per-row partition assignment without changing the
uniformity of the distribution.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
@github-actions github-actions Bot added the physical-plan Changes to the physical-plan crate label Apr 24, 2026
@Dandandan
Copy link
Copy Markdown
Contributor Author

run benchmarks

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4312557356-1811-ctbht 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 repartition-fastrange (08d083c) to 85e75e2 (merge-base) diff using: clickbench_partitioned
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-c4312557356-1812-hpn8n 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 repartition-fastrange (08d083c) to 85e75e2 (merge-base) diff using: tpcds
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-c4312557356-1813-7kr62 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 repartition-fastrange (08d083c) to 85e75e2 (merge-base) diff using: tpch
Results will be posted here when complete


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 repartition-fastrange
--------------------
Benchmark tpch_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                           HEAD ┃          repartition-fastrange ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │ 40.41 / 41.60 ±1.19 / 43.56 ms │ 40.43 / 41.04 ±1.03 / 43.09 ms │     no change │
│ QQuery 2  │ 21.27 / 21.43 ±0.13 / 21.64 ms │ 20.94 / 21.31 ±0.30 / 21.71 ms │     no change │
│ QQuery 3  │ 38.71 / 41.27 ±1.88 / 43.60 ms │ 37.88 / 39.99 ±1.14 / 41.34 ms │     no change │
│ QQuery 4  │ 18.51 / 18.69 ±0.17 / 18.97 ms │ 18.66 / 18.89 ±0.30 / 19.48 ms │     no change │
│ QQuery 5  │ 48.73 / 50.78 ±1.64 / 53.16 ms │ 44.26 / 46.02 ±1.08 / 47.24 ms │ +1.10x faster │
│ QQuery 6  │ 17.57 / 17.89 ±0.36 / 18.60 ms │ 17.43 / 17.53 ±0.08 / 17.64 ms │     no change │
│ QQuery 7  │ 54.23 / 55.25 ±0.92 / 56.68 ms │ 50.99 / 52.81 ±1.21 / 54.28 ms │     no change │
│ QQuery 8  │ 48.54 / 48.82 ±0.18 / 49.01 ms │ 47.09 / 48.09 ±1.59 / 51.25 ms │     no change │
│ QQuery 9  │ 53.32 / 54.28 ±0.56 / 54.86 ms │ 52.27 / 53.19 ±0.56 / 53.97 ms │     no change │
│ QQuery 10 │ 65.98 / 67.85 ±2.67 / 72.99 ms │ 65.83 / 66.90 ±1.33 / 69.44 ms │     no change │
│ QQuery 11 │ 14.46 / 14.58 ±0.14 / 14.85 ms │ 14.32 / 14.44 ±0.07 / 14.51 ms │     no change │
│ QQuery 12 │ 27.34 / 28.35 ±0.59 / 28.97 ms │ 26.40 / 26.66 ±0.32 / 27.26 ms │ +1.06x faster │
│ QQuery 13 │ 37.67 / 38.37 ±0.37 / 38.74 ms │ 35.81 / 37.11 ±0.96 / 38.62 ms │     no change │
│ QQuery 14 │ 28.13 / 28.18 ±0.06 / 28.28 ms │ 26.77 / 26.87 ±0.09 / 27.01 ms │     no change │
│ QQuery 15 │ 33.92 / 34.39 ±0.80 / 35.99 ms │ 33.71 / 34.47 ±0.77 / 35.94 ms │     no change │
│ QQuery 16 │ 15.41 / 15.50 ±0.13 / 15.75 ms │ 15.33 / 15.60 ±0.33 / 16.23 ms │     no change │
│ QQuery 17 │ 79.31 / 81.15 ±0.99 / 82.07 ms │ 78.09 / 78.75 ±0.59 / 79.65 ms │     no change │
│ QQuery 18 │ 75.68 / 76.37 ±0.66 / 77.59 ms │ 70.54 / 71.02 ±0.29 / 71.40 ms │ +1.08x faster │
│ QQuery 19 │ 37.60 / 37.89 ±0.31 / 38.49 ms │ 37.40 / 37.72 ±0.28 / 38.23 ms │     no change │
│ QQuery 20 │ 39.71 / 40.94 ±2.17 / 45.27 ms │ 39.15 / 39.30 ±0.17 / 39.63 ms │     no change │
│ QQuery 21 │ 63.40 / 66.45 ±1.86 / 69.09 ms │ 62.00 / 63.65 ±1.12 / 65.06 ms │     no change │
│ QQuery 22 │ 17.28 / 17.60 ±0.27 / 18.04 ms │ 17.29 / 17.42 ±0.15 / 17.67 ms │     no change │
└───────────┴────────────────────────────────┴────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━┓
┃ Benchmark Summary                    ┃          ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━┩
│ Total Time (HEAD)                    │ 897.63ms │
│ Total Time (repartition-fastrange)   │ 868.77ms │
│ Average Time (HEAD)                  │  40.80ms │
│ Average Time (repartition-fastrange) │  39.49ms │
│ Queries Faster                       │        3 │
│ Queries Slower                       │        0 │
│ Queries with No Change               │       19 │
│ Queries with Failure                 │        0 │
└──────────────────────────────────────┴──────────┘

Resource Usage

tpch — base (merge-base)

Metric Value
Wall time 5.0s
Peak memory 5.5 GiB
Avg memory 4.8 GiB
CPU user 34.0s
CPU sys 2.5s
Peak spill 0 B

tpch — branch

Metric Value
Wall time 5.0s
Peak memory 5.2 GiB
Avg memory 4.8 GiB
CPU user 32.8s
CPU sys 2.5s
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 repartition-fastrange
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃                 repartition-fastrange ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.17 / 4.54 ±6.67 / 17.87 ms │          1.19 / 4.68 ±6.86 / 18.39 ms │     no change │
│ QQuery 1  │        12.68 / 13.22 ±0.31 / 13.57 ms │        12.28 / 12.98 ±0.49 / 13.78 ms │     no change │
│ QQuery 2  │        39.36 / 39.57 ±0.18 / 39.91 ms │        36.84 / 37.45 ±0.89 / 39.19 ms │ +1.06x faster │
│ QQuery 3  │        32.00 / 32.69 ±0.56 / 33.43 ms │        31.98 / 32.59 ±0.67 / 33.57 ms │     no change │
│ QQuery 4  │     239.53 / 243.81 ±3.82 / 250.02 ms │     232.53 / 238.50 ±6.43 / 249.94 ms │     no change │
│ QQuery 5  │     283.18 / 284.11 ±0.64 / 284.92 ms │     293.49 / 295.32 ±1.28 / 296.96 ms │     no change │
│ QQuery 6  │           6.51 / 6.97 ±0.48 / 7.83 ms │          6.53 / 8.06 ±2.55 / 13.14 ms │  1.16x slower │
│ QQuery 7  │        14.10 / 14.39 ±0.15 / 14.55 ms │        14.01 / 14.15 ±0.07 / 14.20 ms │     no change │
│ QQuery 8  │     329.68 / 332.31 ±1.58 / 333.84 ms │     335.66 / 340.55 ±3.97 / 345.98 ms │     no change │
│ QQuery 9  │     455.55 / 459.49 ±2.34 / 461.86 ms │     435.58 / 441.95 ±3.89 / 447.54 ms │     no change │
│ QQuery 10 │        73.78 / 76.66 ±2.55 / 81.25 ms │        72.12 / 72.93 ±0.86 / 74.42 ms │     no change │
│ QQuery 11 │        86.76 / 87.97 ±1.53 / 90.99 ms │        84.51 / 85.34 ±0.52 / 85.87 ms │     no change │
│ QQuery 12 │     284.56 / 287.24 ±3.64 / 294.42 ms │    296.98 / 316.21 ±20.30 / 353.30 ms │  1.10x slower │
│ QQuery 13 │     413.86 / 421.58 ±5.80 / 429.47 ms │    399.66 / 426.06 ±20.68 / 459.51 ms │     no change │
│ QQuery 14 │     287.68 / 293.92 ±5.06 / 300.34 ms │     281.11 / 286.76 ±3.64 / 291.49 ms │     no change │
│ QQuery 15 │    292.06 / 304.53 ±11.07 / 322.62 ms │     277.12 / 284.97 ±7.03 / 297.50 ms │ +1.07x faster │
│ QQuery 16 │    632.55 / 657.16 ±15.79 / 680.22 ms │     615.00 / 620.72 ±4.51 / 626.08 ms │ +1.06x faster │
│ QQuery 17 │     641.92 / 652.56 ±5.43 / 657.22 ms │     610.53 / 614.90 ±4.56 / 623.56 ms │ +1.06x faster │
│ QQuery 18 │  1266.09 / 1272.76 ±6.36 / 1282.97 ms │  1235.06 / 1245.68 ±7.89 / 1255.86 ms │     no change │
│ QQuery 19 │        29.08 / 35.66 ±8.82 / 52.06 ms │        28.79 / 31.22 ±4.36 / 39.93 ms │ +1.14x faster │
│ QQuery 20 │     521.30 / 527.02 ±5.79 / 538.15 ms │    520.75 / 538.12 ±24.53 / 586.19 ms │     no change │
│ QQuery 21 │     604.86 / 609.24 ±6.22 / 621.39 ms │     598.29 / 601.60 ±3.88 / 608.92 ms │     no change │
│ QQuery 22 │  1069.64 / 1075.14 ±5.18 / 1081.59 ms │  1068.88 / 1079.83 ±6.83 / 1088.94 ms │     no change │
│ QQuery 23 │ 3309.64 / 3343.52 ±32.66 / 3384.30 ms │ 3319.82 / 3337.60 ±12.12 / 3350.60 ms │     no change │
│ QQuery 24 │        42.14 / 44.90 ±4.23 / 53.30 ms │        42.28 / 44.28 ±3.63 / 51.53 ms │     no change │
│ QQuery 25 │     113.34 / 115.50 ±2.53 / 120.36 ms │     112.91 / 118.69 ±7.39 / 132.04 ms │     no change │
│ QQuery 26 │        43.16 / 43.32 ±0.17 / 43.62 ms │        42.61 / 43.12 ±0.33 / 43.54 ms │     no change │
│ QQuery 27 │     677.23 / 682.46 ±5.29 / 691.73 ms │     670.73 / 680.55 ±8.16 / 690.94 ms │     no change │
│ QQuery 28 │  3003.09 / 3005.75 ±2.56 / 3009.39 ms │ 3031.29 / 3061.74 ±22.79 / 3089.81 ms │     no change │
│ QQuery 29 │        42.81 / 44.29 ±1.83 / 47.86 ms │        43.50 / 43.75 ±0.22 / 44.03 ms │     no change │
│ QQuery 30 │     307.23 / 315.08 ±6.48 / 323.20 ms │     309.77 / 320.36 ±6.62 / 330.17 ms │     no change │
│ QQuery 31 │     306.68 / 313.18 ±5.76 / 321.37 ms │     299.61 / 311.17 ±8.24 / 321.09 ms │     no change │
│ QQuery 32 │ 1011.08 / 1023.59 ±12.48 / 1040.33 ms │  969.29 / 1011.97 ±22.61 / 1035.60 ms │     no change │
│ QQuery 33 │ 1427.32 / 1453.85 ±23.31 / 1490.97 ms │ 1478.56 / 1491.53 ±12.86 / 1515.01 ms │     no change │
│ QQuery 34 │ 1428.04 / 1454.32 ±25.20 / 1499.41 ms │ 1476.64 / 1499.04 ±20.65 / 1536.19 ms │     no change │
│ QQuery 35 │    284.60 / 297.89 ±15.32 / 327.54 ms │    282.23 / 312.83 ±23.25 / 340.99 ms │  1.05x slower │
│ QQuery 36 │       64.64 / 73.32 ±11.30 / 95.61 ms │        63.16 / 67.62 ±6.60 / 80.74 ms │ +1.08x faster │
│ QQuery 37 │        36.17 / 37.47 ±1.68 / 40.76 ms │        35.49 / 38.64 ±3.04 / 43.66 ms │     no change │
│ QQuery 38 │        40.53 / 42.15 ±1.23 / 43.89 ms │        41.38 / 43.99 ±1.71 / 46.46 ms │     no change │
│ QQuery 39 │     132.00 / 137.44 ±3.84 / 143.25 ms │     124.63 / 131.00 ±4.34 / 136.65 ms │     no change │
│ QQuery 40 │        14.73 / 15.24 ±0.50 / 15.91 ms │        14.15 / 16.89 ±3.24 / 21.40 ms │  1.11x slower │
│ QQuery 41 │        14.34 / 14.47 ±0.11 / 14.67 ms │        13.48 / 13.65 ±0.09 / 13.74 ms │ +1.06x faster │
│ QQuery 42 │        13.78 / 14.05 ±0.19 / 14.33 ms │        13.25 / 15.58 ±3.18 / 21.56 ms │  1.11x slower │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                    ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                    │ 20204.34ms │
│ Total Time (repartition-fastrange)   │ 20234.59ms │
│ Average Time (HEAD)                  │   469.87ms │
│ Average Time (repartition-fastrange) │   470.57ms │
│ Queries Faster                       │          7 │
│ Queries Slower                       │          5 │
│ Queries with No Change               │         31 │
│ Queries with Failure                 │          0 │
└──────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 105.0s
Peak memory 30.7 GiB
Avg memory 23.2 GiB
CPU user 1067.3s
CPU sys 65.5s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 105.0s
Peak memory 29.8 GiB
Avg memory 23.0 GiB
CPU user 1068.1s
CPU sys 67.8s
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 repartition-fastrange
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                     HEAD ┃                    repartition-fastrange ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │              6.84 / 7.40 ±0.88 / 9.16 ms │              7.01 / 7.48 ±0.79 / 9.06 ms │     no change │
│ QQuery 2  │        144.20 / 144.69 ±0.34 / 145.14 ms │        144.93 / 145.30 ±0.25 / 145.66 ms │     no change │
│ QQuery 3  │        112.94 / 114.80 ±1.39 / 117.06 ms │        113.59 / 115.02 ±0.95 / 116.58 ms │     no change │
│ QQuery 4  │     1337.98 / 1345.04 ±7.40 / 1355.36 ms │     1321.60 / 1328.50 ±6.61 / 1339.85 ms │     no change │
│ QQuery 5  │        173.22 / 174.52 ±1.05 / 175.77 ms │        174.32 / 175.48 ±1.02 / 177.28 ms │     no change │
│ QQuery 6  │       820.40 / 845.88 ±32.91 / 908.98 ms │       823.58 / 850.09 ±23.54 / 889.45 ms │     no change │
│ QQuery 7  │        334.19 / 335.85 ±1.90 / 338.95 ms │        323.72 / 327.05 ±2.46 / 331.06 ms │     no change │
│ QQuery 8  │        113.58 / 114.20 ±0.54 / 115.17 ms │        114.82 / 115.21 ±0.30 / 115.67 ms │     no change │
│ QQuery 9  │       100.18 / 107.15 ±10.78 / 128.28 ms │        100.28 / 105.74 ±5.19 / 114.96 ms │     no change │
│ QQuery 10 │        102.93 / 103.30 ±0.23 / 103.57 ms │        101.82 / 104.65 ±2.37 / 108.95 ms │     no change │
│ QQuery 11 │        945.08 / 956.71 ±7.28 / 964.64 ms │        918.23 / 928.30 ±7.37 / 939.22 ms │     no change │
│ QQuery 12 │           43.94 / 44.25 ±0.18 / 44.51 ms │           43.84 / 45.16 ±1.00 / 46.84 ms │     no change │
│ QQuery 13 │        392.38 / 396.87 ±5.19 / 406.72 ms │        392.75 / 394.94 ±1.92 / 397.73 ms │     no change │
│ QQuery 14 │        975.16 / 983.35 ±4.66 / 989.54 ms │        956.19 / 962.77 ±6.87 / 975.77 ms │     no change │
│ QQuery 15 │           15.23 / 15.50 ±0.20 / 15.77 ms │           14.90 / 15.35 ±0.29 / 15.69 ms │     no change │
│ QQuery 16 │              7.33 / 7.47 ±0.16 / 7.76 ms │              7.64 / 7.77 ±0.13 / 8.00 ms │     no change │
│ QQuery 17 │        222.20 / 224.87 ±2.11 / 228.58 ms │        206.60 / 208.91 ±2.10 / 212.59 ms │ +1.08x faster │
│ QQuery 18 │        126.43 / 128.52 ±1.36 / 130.45 ms │        125.12 / 126.56 ±0.82 / 127.24 ms │     no change │
│ QQuery 19 │        154.35 / 156.43 ±1.69 / 159.18 ms │        160.46 / 161.83 ±1.26 / 164.19 ms │     no change │
│ QQuery 20 │           13.23 / 13.97 ±1.09 / 16.13 ms │           13.23 / 13.52 ±0.23 / 13.79 ms │     no change │
│ QQuery 21 │           19.20 / 19.46 ±0.32 / 19.98 ms │           19.68 / 19.97 ±0.21 / 20.31 ms │     no change │
│ QQuery 22 │        482.46 / 485.44 ±2.52 / 488.43 ms │        485.49 / 490.98 ±3.54 / 495.49 ms │     no change │
│ QQuery 23 │        828.85 / 835.28 ±3.82 / 840.82 ms │        823.16 / 831.01 ±8.01 / 844.27 ms │     no change │
│ QQuery 24 │        377.48 / 382.04 ±4.34 / 389.87 ms │        345.07 / 351.64 ±6.42 / 363.96 ms │ +1.09x faster │
│ QQuery 25 │        332.11 / 335.89 ±3.70 / 342.14 ms │        312.77 / 317.49 ±5.44 / 327.99 ms │ +1.06x faster │
│ QQuery 26 │           77.64 / 77.99 ±0.24 / 78.28 ms │           76.63 / 78.14 ±1.49 / 80.52 ms │     no change │
│ QQuery 27 │              6.88 / 7.09 ±0.22 / 7.51 ms │              7.08 / 7.26 ±0.11 / 7.43 ms │     no change │
│ QQuery 28 │        148.68 / 151.62 ±3.28 / 157.92 ms │        149.77 / 150.58 ±0.76 / 151.80 ms │     no change │
│ QQuery 29 │        273.75 / 278.47 ±3.85 / 285.11 ms │        247.83 / 249.82 ±2.13 / 253.91 ms │ +1.11x faster │
│ QQuery 30 │           42.42 / 43.16 ±0.95 / 45.03 ms │           41.57 / 42.21 ±0.43 / 42.86 ms │     no change │
│ QQuery 31 │        165.96 / 167.28 ±0.66 / 167.74 ms │        165.93 / 168.37 ±2.97 / 174.10 ms │     no change │
│ QQuery 32 │           13.73 / 13.95 ±0.22 / 14.38 ms │           13.61 / 13.76 ±0.10 / 13.89 ms │     no change │
│ QQuery 33 │        140.36 / 141.52 ±1.50 / 144.46 ms │        140.24 / 141.68 ±1.09 / 143.08 ms │     no change │
│ QQuery 34 │              7.06 / 7.24 ±0.17 / 7.51 ms │              7.05 / 7.21 ±0.19 / 7.56 ms │     no change │
│ QQuery 35 │        100.69 / 103.16 ±2.15 / 107.12 ms │        101.41 / 102.22 ±0.73 / 103.20 ms │     no change │
│ QQuery 36 │              6.78 / 6.93 ±0.13 / 7.12 ms │              6.42 / 6.84 ±0.24 / 7.14 ms │     no change │
│ QQuery 37 │              8.46 / 8.55 ±0.06 / 8.64 ms │              8.29 / 8.35 ±0.06 / 8.45 ms │     no change │
│ QQuery 38 │           87.15 / 88.30 ±0.84 / 89.32 ms │           86.41 / 87.54 ±0.95 / 89.15 ms │     no change │
│ QQuery 39 │        119.48 / 122.89 ±5.18 / 133.18 ms │        116.83 / 120.69 ±5.08 / 130.62 ms │     no change │
│ QQuery 40 │        103.17 / 107.21 ±2.68 / 110.35 ms │          95.28 / 98.56 ±2.65 / 102.58 ms │ +1.09x faster │
│ QQuery 41 │           14.38 / 14.58 ±0.13 / 14.79 ms │           14.38 / 14.51 ±0.13 / 14.72 ms │     no change │
│ QQuery 42 │        107.44 / 108.89 ±1.58 / 111.95 ms │        108.83 / 109.86 ±1.70 / 113.26 ms │     no change │
│ QQuery 43 │              5.68 / 5.83 ±0.11 / 6.01 ms │              5.85 / 5.92 ±0.11 / 6.14 ms │     no change │
│ QQuery 44 │           11.76 / 12.53 ±1.09 / 14.68 ms │           11.68 / 12.13 ±0.49 / 12.90 ms │     no change │
│ QQuery 45 │           48.99 / 49.55 ±0.50 / 50.43 ms │           45.26 / 45.87 ±0.33 / 46.20 ms │ +1.08x faster │
│ QQuery 46 │              8.58 / 8.83 ±0.17 / 9.07 ms │             8.45 / 9.23 ±1.31 / 11.83 ms │     no change │
│ QQuery 47 │        724.83 / 738.99 ±9.42 / 752.19 ms │        716.92 / 722.82 ±3.48 / 726.09 ms │     no change │
│ QQuery 48 │        275.44 / 277.55 ±2.73 / 282.67 ms │        276.05 / 278.63 ±2.41 / 282.38 ms │     no change │
│ QQuery 49 │        250.48 / 253.91 ±2.80 / 257.45 ms │        243.60 / 244.00 ±0.38 / 244.48 ms │     no change │
│ QQuery 50 │        211.08 / 214.97 ±3.63 / 221.77 ms │        183.74 / 190.39 ±6.37 / 201.60 ms │ +1.13x faster │
│ QQuery 51 │        175.89 / 179.63 ±4.01 / 186.80 ms │        170.47 / 173.26 ±1.74 / 175.61 ms │     no change │
│ QQuery 52 │        107.95 / 108.61 ±0.70 / 109.94 ms │        108.12 / 108.88 ±0.67 / 110.10 ms │     no change │
│ QQuery 53 │        103.14 / 104.79 ±2.86 / 110.49 ms │        102.96 / 105.16 ±3.42 / 111.90 ms │     no change │
│ QQuery 54 │        147.03 / 148.76 ±1.27 / 150.44 ms │        146.52 / 147.66 ±1.10 / 149.07 ms │     no change │
│ QQuery 55 │        107.01 / 108.79 ±1.56 / 111.43 ms │        107.03 / 108.25 ±1.64 / 111.49 ms │     no change │
│ QQuery 56 │        140.13 / 142.62 ±2.54 / 147.48 ms │        140.45 / 141.64 ±1.42 / 144.39 ms │     no change │
│ QQuery 57 │        168.05 / 169.31 ±1.38 / 171.86 ms │        165.01 / 166.19 ±1.07 / 167.57 ms │     no change │
│ QQuery 58 │        311.11 / 313.69 ±2.89 / 319.09 ms │        287.78 / 289.87 ±1.38 / 291.46 ms │ +1.08x faster │
│ QQuery 59 │        195.97 / 197.01 ±0.62 / 197.68 ms │        194.18 / 195.82 ±1.39 / 197.91 ms │     no change │
│ QQuery 60 │        142.76 / 144.15 ±0.88 / 145.16 ms │        141.36 / 143.04 ±1.43 / 145.68 ms │     no change │
│ QQuery 61 │           13.87 / 13.94 ±0.05 / 13.99 ms │           13.23 / 13.33 ±0.15 / 13.63 ms │     no change │
│ QQuery 62 │       876.57 / 894.28 ±10.49 / 907.22 ms │        866.04 / 876.49 ±5.47 / 880.61 ms │     no change │
│ QQuery 63 │        103.09 / 106.56 ±3.06 / 111.13 ms │        102.70 / 103.60 ±1.02 / 105.52 ms │     no change │
│ QQuery 64 │       674.13 / 683.25 ±11.26 / 705.45 ms │        634.76 / 642.77 ±5.35 / 651.55 ms │ +1.06x faster │
│ QQuery 65 │        253.44 / 256.84 ±2.85 / 262.04 ms │        251.10 / 253.43 ±1.85 / 255.95 ms │     no change │
│ QQuery 66 │        214.13 / 222.49 ±8.63 / 238.15 ms │       213.88 / 223.22 ±10.96 / 237.86 ms │     no change │
│ QQuery 67 │       297.88 / 307.87 ±18.63 / 345.12 ms │        293.68 / 299.43 ±8.31 / 315.91 ms │     no change │
│ QQuery 68 │              8.60 / 8.81 ±0.24 / 9.26 ms │              8.55 / 8.74 ±0.19 / 9.08 ms │     no change │
│ QQuery 69 │          97.86 / 99.94 ±2.99 / 105.82 ms │         97.76 / 100.01 ±3.08 / 106.07 ms │     no change │
│ QQuery 70 │       309.95 / 320.82 ±11.97 / 341.52 ms │        314.58 / 321.80 ±6.33 / 332.34 ms │     no change │
│ QQuery 71 │        133.25 / 134.57 ±1.28 / 136.81 ms │        134.72 / 136.83 ±3.07 / 142.93 ms │     no change │
│ QQuery 72 │       585.32 / 595.92 ±10.14 / 612.01 ms │        545.66 / 549.74 ±2.89 / 553.67 ms │ +1.08x faster │
│ QQuery 73 │              6.59 / 6.77 ±0.21 / 7.17 ms │              6.61 / 6.77 ±0.18 / 7.13 ms │     no change │
│ QQuery 74 │        600.42 / 605.07 ±2.93 / 608.64 ms │        589.32 / 596.05 ±6.31 / 608.03 ms │     no change │
│ QQuery 75 │        267.01 / 268.88 ±1.80 / 271.52 ms │        266.95 / 269.92 ±3.20 / 276.03 ms │     no change │
│ QQuery 76 │        129.73 / 132.06 ±1.91 / 135.04 ms │        129.91 / 131.05 ±1.20 / 133.12 ms │     no change │
│ QQuery 77 │        187.35 / 188.26 ±1.02 / 190.14 ms │        189.02 / 189.82 ±0.51 / 190.54 ms │     no change │
│ QQuery 78 │        332.35 / 334.40 ±1.36 / 335.76 ms │        310.30 / 312.22 ±1.08 / 313.63 ms │ +1.07x faster │
│ QQuery 79 │        229.38 / 232.24 ±2.34 / 235.65 ms │        230.96 / 233.47 ±2.08 / 236.45 ms │     no change │
│ QQuery 80 │        319.40 / 320.60 ±1.07 / 322.24 ms │        299.60 / 301.66 ±1.88 / 305.02 ms │ +1.06x faster │
│ QQuery 81 │           26.10 / 26.57 ±0.30 / 26.91 ms │           25.73 / 25.84 ±0.07 / 25.92 ms │     no change │
│ QQuery 82 │           39.32 / 40.67 ±1.62 / 43.80 ms │           39.85 / 40.02 ±0.15 / 40.22 ms │     no change │
│ QQuery 83 │           37.44 / 37.64 ±0.20 / 37.97 ms │           35.27 / 36.30 ±1.39 / 39.03 ms │     no change │
│ QQuery 84 │           46.54 / 46.73 ±0.11 / 46.86 ms │           46.30 / 46.66 ±0.30 / 47.14 ms │     no change │
│ QQuery 85 │        141.15 / 142.12 ±1.15 / 144.01 ms │        141.02 / 142.10 ±1.63 / 145.33 ms │     no change │
│ QQuery 86 │           37.23 / 37.61 ±0.22 / 37.88 ms │           37.65 / 38.05 ±0.27 / 38.49 ms │     no change │
│ QQuery 87 │              3.48 / 3.60 ±0.19 / 3.97 ms │              3.41 / 3.52 ±0.17 / 3.86 ms │     no change │
│ QQuery 88 │         98.82 / 100.17 ±0.88 / 101.12 ms │         99.96 / 100.99 ±0.99 / 102.76 ms │     no change │
│ QQuery 89 │        116.18 / 119.24 ±3.18 / 125.24 ms │        116.58 / 119.49 ±4.15 / 127.70 ms │     no change │
│ QQuery 90 │           22.66 / 23.02 ±0.20 / 23.27 ms │           22.99 / 23.23 ±0.16 / 23.48 ms │     no change │
│ QQuery 91 │           58.75 / 59.79 ±0.85 / 60.80 ms │           58.53 / 59.45 ±0.75 / 60.36 ms │     no change │
│ QQuery 92 │           56.33 / 57.84 ±2.22 / 62.22 ms │           57.12 / 58.52 ±1.93 / 62.33 ms │     no change │
│ QQuery 93 │        181.12 / 181.79 ±0.91 / 183.51 ms │        163.76 / 165.06 ±1.07 / 166.75 ms │ +1.10x faster │
│ QQuery 94 │           61.00 / 61.33 ±0.26 / 61.66 ms │           61.57 / 63.30 ±2.25 / 67.68 ms │     no change │
│ QQuery 95 │        125.54 / 126.80 ±0.76 / 127.92 ms │        114.58 / 115.23 ±0.80 / 116.73 ms │ +1.10x faster │
│ QQuery 96 │           68.14 / 68.83 ±0.68 / 70.13 ms │           70.07 / 72.23 ±3.55 / 79.33 ms │     no change │
│ QQuery 97 │        117.34 / 118.22 ±0.94 / 119.87 ms │        112.83 / 114.51 ±1.15 / 115.62 ms │     no change │
│ QQuery 98 │        151.82 / 154.32 ±2.74 / 158.60 ms │        150.59 / 152.42 ±1.75 / 155.05 ms │     no change │
│ QQuery 99 │ 10785.20 / 10900.38 ±75.56 / 10997.98 ms │ 10738.91 / 10775.28 ±48.75 / 10868.01 ms │     no change │
└───────────┴──────────────────────────────────────────┴──────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                    ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                    │ 30947.48ms │
│ Total Time (repartition-fastrange)   │ 30369.61ms │
│ Average Time (HEAD)                  │   312.60ms │
│ Average Time (repartition-fastrange) │   306.76ms │
│ Queries Faster                       │         14 │
│ Queries Slower                       │          0 │
│ Queries with No Change               │         85 │
│ Queries with Failure                 │          0 │
└──────────────────────────────────────┴────────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 160.0s
Peak memory 6.3 GiB
Avg memory 5.5 GiB
CPU user 258.2s
CPU sys 8.7s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 155.0s
Peak memory 6.2 GiB
Avg memory 5.5 GiB
CPU user 254.6s
CPU sys 8.0s
Peak spill 0 B

File an issue against this benchmark runner

@Dandandan
Copy link
Copy Markdown
Contributor Author

run benchmark clickbench_partitioned

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4313770320-1817-zfp4k 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 repartition-fastrange (08d083c) to 85e75e2 (merge-base) diff using: clickbench_partitioned
Results will be posted here when complete


File an issue against this benchmark runner

@Dandandan
Copy link
Copy Markdown
Contributor Author

run benchmark tpch10

@Dandandan
Copy link
Copy Markdown
Contributor Author

FYI @gene-bordegaray you might be interested

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4313852292-1818-wv26g 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 repartition-fastrange (08d083c) to 85e75e2 (merge-base) diff using: tpch10
Results will be posted here when complete


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 repartition-fastrange
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃                 repartition-fastrange ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.20 / 4.68 ±6.83 / 18.35 ms │          1.26 / 4.79 ±6.93 / 18.65 ms │     no change │
│ QQuery 1  │        13.26 / 13.69 ±0.36 / 14.28 ms │        12.32 / 12.97 ±0.36 / 13.31 ms │ +1.06x faster │
│ QQuery 2  │        38.96 / 39.71 ±0.98 / 41.62 ms │        37.24 / 37.78 ±0.46 / 38.51 ms │     no change │
│ QQuery 3  │        32.81 / 33.93 ±0.82 / 34.96 ms │        32.19 / 32.53 ±0.26 / 32.88 ms │     no change │
│ QQuery 4  │     264.40 / 265.96 ±1.85 / 269.35 ms │     249.75 / 254.96 ±4.50 / 261.83 ms │     no change │
│ QQuery 5  │     301.75 / 303.77 ±1.66 / 306.24 ms │     310.46 / 316.08 ±5.29 / 325.79 ms │     no change │
│ QQuery 6  │           7.47 / 7.73 ±0.22 / 8.11 ms │           7.39 / 7.70 ±0.23 / 7.99 ms │     no change │
│ QQuery 7  │        14.34 / 14.46 ±0.07 / 14.53 ms │        14.02 / 14.21 ±0.13 / 14.41 ms │     no change │
│ QQuery 8  │     355.55 / 356.80 ±1.26 / 359.09 ms │     337.20 / 342.20 ±3.84 / 347.70 ms │     no change │
│ QQuery 9  │     476.84 / 489.99 ±7.73 / 500.86 ms │     441.62 / 447.12 ±3.50 / 451.18 ms │ +1.10x faster │
│ QQuery 10 │        75.99 / 78.18 ±1.97 / 81.62 ms │        74.79 / 76.64 ±2.06 / 80.32 ms │     no change │
│ QQuery 11 │        87.35 / 88.25 ±1.14 / 90.44 ms │        86.53 / 87.00 ±0.33 / 87.39 ms │     no change │
│ QQuery 12 │     291.25 / 297.23 ±5.42 / 306.40 ms │     309.00 / 314.98 ±5.64 / 323.36 ms │  1.06x slower │
│ QQuery 13 │     414.87 / 417.38 ±2.14 / 420.80 ms │     427.35 / 439.91 ±7.50 / 446.90 ms │  1.05x slower │
│ QQuery 14 │     298.69 / 304.30 ±5.17 / 313.95 ms │    301.67 / 311.66 ±10.60 / 332.07 ms │     no change │
│ QQuery 15 │     306.49 / 310.41 ±3.82 / 316.99 ms │     301.12 / 307.92 ±3.89 / 313.13 ms │     no change │
│ QQuery 16 │     656.00 / 660.75 ±4.22 / 668.64 ms │     663.63 / 668.66 ±4.94 / 675.48 ms │     no change │
│ QQuery 17 │     657.54 / 664.39 ±5.40 / 670.96 ms │     644.76 / 662.00 ±9.82 / 672.38 ms │     no change │
│ QQuery 18 │ 1308.80 / 1333.22 ±18.31 / 1361.81 ms │ 1320.86 / 1345.03 ±20.68 / 1374.61 ms │     no change │
│ QQuery 19 │       29.75 / 36.52 ±12.61 / 61.72 ms │       30.13 / 43.04 ±18.26 / 78.72 ms │  1.18x slower │
│ QQuery 20 │     534.64 / 537.99 ±2.83 / 542.21 ms │    528.28 / 540.21 ±10.22 / 556.26 ms │     no change │
│ QQuery 21 │     608.97 / 614.11 ±4.68 / 620.63 ms │     612.12 / 617.91 ±3.14 / 620.61 ms │     no change │
│ QQuery 22 │ 1084.51 / 1101.98 ±14.85 / 1124.96 ms │  1092.15 / 1099.52 ±7.39 / 1113.55 ms │     no change │
│ QQuery 23 │ 3410.32 / 3452.66 ±30.02 / 3493.32 ms │ 3439.54 / 3471.41 ±23.90 / 3502.68 ms │     no change │
│ QQuery 24 │        42.98 / 46.47 ±5.19 / 56.76 ms │        42.91 / 48.62 ±9.82 / 68.23 ms │     no change │
│ QQuery 25 │     114.02 / 118.78 ±3.83 / 124.05 ms │     115.83 / 122.64 ±7.22 / 135.65 ms │     no change │
│ QQuery 26 │        43.52 / 44.84 ±1.55 / 47.88 ms │        43.87 / 47.13 ±4.41 / 55.79 ms │  1.05x slower │
│ QQuery 27 │     687.88 / 693.69 ±7.41 / 708.14 ms │     687.03 / 690.83 ±2.77 / 694.98 ms │     no change │
│ QQuery 28 │  3084.52 / 3101.15 ±9.43 / 3109.03 ms │ 3085.42 / 3099.13 ±12.44 / 3120.17 ms │     no change │
│ QQuery 29 │        43.56 / 49.48 ±6.22 / 59.26 ms │        43.61 / 46.86 ±4.85 / 56.33 ms │ +1.06x faster │
│ QQuery 30 │     322.44 / 329.64 ±5.61 / 338.97 ms │    323.20 / 331.81 ±10.12 / 351.38 ms │     no change │
│ QQuery 31 │     315.45 / 322.70 ±8.53 / 338.37 ms │    322.46 / 347.59 ±22.20 / 378.67 ms │  1.08x slower │
│ QQuery 32 │ 1078.95 / 1101.98 ±23.52 / 1142.43 ms │ 1037.11 / 1049.58 ±14.70 / 1078.30 ms │     no change │
│ QQuery 33 │ 1514.17 / 1572.97 ±59.34 / 1685.95 ms │ 1573.30 / 1631.28 ±42.13 / 1698.93 ms │     no change │
│ QQuery 34 │ 1542.25 / 1563.74 ±20.11 / 1594.50 ms │ 1582.95 / 1606.22 ±15.22 / 1623.74 ms │     no change │
│ QQuery 35 │    317.89 / 347.81 ±43.97 / 435.32 ms │     322.15 / 331.14 ±7.32 / 341.25 ms │     no change │
│ QQuery 36 │        66.12 / 68.82 ±2.27 / 71.82 ms │        68.56 / 70.63 ±2.15 / 74.72 ms │     no change │
│ QQuery 37 │        37.23 / 39.41 ±3.70 / 46.79 ms │        37.28 / 38.51 ±1.22 / 40.77 ms │     no change │
│ QQuery 38 │        44.93 / 52.60 ±4.72 / 57.96 ms │        41.39 / 51.80 ±7.93 / 65.08 ms │     no change │
│ QQuery 39 │     133.38 / 142.62 ±5.32 / 148.07 ms │     131.77 / 141.62 ±6.16 / 150.57 ms │     no change │
│ QQuery 40 │        15.50 / 17.98 ±4.02 / 25.98 ms │        15.08 / 15.98 ±0.67 / 17.00 ms │ +1.13x faster │
│ QQuery 41 │        15.02 / 15.41 ±0.36 / 15.86 ms │        14.71 / 15.01 ±0.34 / 15.68 ms │     no change │
│ QQuery 42 │        14.97 / 21.32 ±6.86 / 32.31 ms │        14.55 / 17.82 ±4.66 / 26.74 ms │ +1.20x faster │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                    ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                    │ 21079.52ms │
│ Total Time (repartition-fastrange)   │ 21160.45ms │
│ Average Time (HEAD)                  │   490.22ms │
│ Average Time (repartition-fastrange) │   492.10ms │
│ Queries Faster                       │          5 │
│ Queries Slower                       │          5 │
│ Queries with No Change               │         33 │
│ Queries with Failure                 │          0 │
└──────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 110.0s
Peak memory 30.4 GiB
Avg memory 23.0 GiB
CPU user 1110.6s
CPU sys 69.0s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 110.0s
Peak memory 28.9 GiB
Avg memory 22.9 GiB
CPU user 1116.6s
CPU sys 71.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 repartition-fastrange
--------------------
Benchmark tpch_sf10.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                               HEAD ┃              repartition-fastrange ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │  325.71 / 327.48 ±1.16 / 328.72 ms │  325.07 / 326.22 ±0.74 / 327.03 ms │     no change │
│ QQuery 2  │  133.72 / 135.69 ±1.69 / 138.03 ms │  123.54 / 125.22 ±1.37 / 127.08 ms │ +1.08x faster │
│ QQuery 3  │  289.39 / 295.52 ±4.76 / 304.05 ms │  268.85 / 276.86 ±4.28 / 280.85 ms │ +1.07x faster │
│ QQuery 4  │  155.34 / 157.92 ±3.80 / 165.46 ms │  136.18 / 137.76 ±1.05 / 139.23 ms │ +1.15x faster │
│ QQuery 5  │  422.60 / 427.12 ±3.99 / 434.57 ms │  385.64 / 390.16 ±3.51 / 394.93 ms │ +1.09x faster │
│ QQuery 6  │  133.01 / 134.42 ±1.49 / 137.19 ms │  132.00 / 132.76 ±0.41 / 133.26 ms │     no change │
│ QQuery 7  │  529.51 / 542.42 ±8.17 / 555.27 ms │  493.39 / 502.99 ±6.48 / 510.73 ms │ +1.08x faster │
│ QQuery 8  │  463.27 / 467.15 ±3.80 / 472.78 ms │  432.67 / 435.82 ±2.93 / 439.85 ms │ +1.07x faster │
│ QQuery 9  │  640.69 / 651.23 ±9.02 / 664.10 ms │  601.04 / 610.93 ±6.84 / 622.08 ms │ +1.07x faster │
│ QQuery 10 │  326.78 / 335.39 ±4.77 / 340.55 ms │ 315.74 / 330.89 ±10.93 / 345.75 ms │     no change │
│ QQuery 11 │  106.64 / 108.39 ±1.49 / 110.96 ms │    93.22 / 96.80 ±2.88 / 100.71 ms │ +1.12x faster │
│ QQuery 12 │  201.34 / 207.36 ±6.13 / 218.89 ms │  191.39 / 194.88 ±4.48 / 203.52 ms │ +1.06x faster │
│ QQuery 13 │  300.56 / 309.36 ±5.89 / 318.53 ms │  295.81 / 303.60 ±6.75 / 312.45 ms │     no change │
│ QQuery 14 │  181.08 / 185.28 ±5.31 / 195.70 ms │  179.48 / 183.64 ±5.18 / 193.42 ms │     no change │
│ QQuery 15 │  329.96 / 332.66 ±2.07 / 336.26 ms │  324.95 / 330.09 ±3.89 / 335.19 ms │     no change │
│ QQuery 16 │     78.74 / 80.38 ±1.58 / 83.07 ms │     72.58 / 78.30 ±6.51 / 90.58 ms │     no change │
│ QQuery 17 │  743.07 / 748.14 ±5.14 / 757.76 ms │  681.43 / 695.49 ±9.96 / 711.85 ms │ +1.08x faster │
│ QQuery 18 │ 757.33 / 781.48 ±16.94 / 801.12 ms │ 702.59 / 724.97 ±15.98 / 752.39 ms │ +1.08x faster │
│ QQuery 19 │ 268.01 / 279.33 ±12.32 / 301.73 ms │ 265.86 / 277.68 ±20.81 / 319.27 ms │     no change │
│ QQuery 20 │  308.04 / 317.20 ±9.03 / 333.08 ms │ 296.19 / 316.59 ±14.29 / 338.65 ms │     no change │
│ QQuery 21 │  808.99 / 817.11 ±7.90 / 827.32 ms │  737.60 / 741.17 ±3.71 / 747.63 ms │ +1.10x faster │
│ QQuery 22 │     80.85 / 83.74 ±2.62 / 88.20 ms │     74.27 / 75.77 ±1.06 / 77.40 ms │ +1.11x faster │
└───────────┴────────────────────────────────────┴────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┓
┃ Benchmark Summary                    ┃           ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━┩
│ Total Time (HEAD)                    │ 7724.76ms │
│ Total Time (repartition-fastrange)   │ 7288.57ms │
│ Average Time (HEAD)                  │  351.13ms │
│ Average Time (repartition-fastrange) │  331.30ms │
│ Queries Faster                       │        13 │
│ Queries Slower                       │         0 │
│ Queries with No Change               │         9 │
│ Queries with Failure                 │         0 │
└──────────────────────────────────────┴───────────┘

Resource Usage

tpch10 — base (merge-base)

Metric Value
Wall time 40.0s
Peak memory 11.9 GiB
Avg memory 8.4 GiB
CPU user 413.9s
CPU sys 20.4s
Peak spill 0 B

tpch10 — branch

Metric Value
Wall time 40.0s
Peak memory 12.4 GiB
Avg memory 8.4 GiB
CPU user 389.2s
CPU sys 20.2s
Peak spill 0 B

File an issue against this benchmark runner

@Dandandan
Copy link
Copy Markdown
Contributor Author

🤖 Benchmark completed (GKE) | trigger

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

CPU Details (lscpu)
Details

Comparing HEAD and repartition-fastrange
--------------------
Benchmark tpch_sf10.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                               HEAD ┃              repartition-fastrange ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │  325.71 / 327.48 ±1.16 / 328.72 ms │  325.07 / 326.22 ±0.74 / 327.03 ms │     no change │
│ QQuery 2  │  133.72 / 135.69 ±1.69 / 138.03 ms │  123.54 / 125.22 ±1.37 / 127.08 ms │ +1.08x faster │
│ QQuery 3  │  289.39 / 295.52 ±4.76 / 304.05 ms │  268.85 / 276.86 ±4.28 / 280.85 ms │ +1.07x faster │
│ QQuery 4  │  155.34 / 157.92 ±3.80 / 165.46 ms │  136.18 / 137.76 ±1.05 / 139.23 ms │ +1.15x faster │
│ QQuery 5  │  422.60 / 427.12 ±3.99 / 434.57 ms │  385.64 / 390.16 ±3.51 / 394.93 ms │ +1.09x faster │
│ QQuery 6  │  133.01 / 134.42 ±1.49 / 137.19 ms │  132.00 / 132.76 ±0.41 / 133.26 ms │     no change │
│ QQuery 7  │  529.51 / 542.42 ±8.17 / 555.27 ms │  493.39 / 502.99 ±6.48 / 510.73 ms │ +1.08x faster │
│ QQuery 8  │  463.27 / 467.15 ±3.80 / 472.78 ms │  432.67 / 435.82 ±2.93 / 439.85 ms │ +1.07x faster │
│ QQuery 9  │  640.69 / 651.23 ±9.02 / 664.10 ms │  601.04 / 610.93 ±6.84 / 622.08 ms │ +1.07x faster │
│ QQuery 10 │  326.78 / 335.39 ±4.77 / 340.55 ms │ 315.74 / 330.89 ±10.93 / 345.75 ms │     no change │
│ QQuery 11 │  106.64 / 108.39 ±1.49 / 110.96 ms │    93.22 / 96.80 ±2.88 / 100.71 ms │ +1.12x faster │
│ QQuery 12 │  201.34 / 207.36 ±6.13 / 218.89 ms │  191.39 / 194.88 ±4.48 / 203.52 ms │ +1.06x faster │
│ QQuery 13 │  300.56 / 309.36 ±5.89 / 318.53 ms │  295.81 / 303.60 ±6.75 / 312.45 ms │     no change │
│ QQuery 14 │  181.08 / 185.28 ±5.31 / 195.70 ms │  179.48 / 183.64 ±5.18 / 193.42 ms │     no change │
│ QQuery 15 │  329.96 / 332.66 ±2.07 / 336.26 ms │  324.95 / 330.09 ±3.89 / 335.19 ms │     no change │
│ QQuery 16 │     78.74 / 80.38 ±1.58 / 83.07 ms │     72.58 / 78.30 ±6.51 / 90.58 ms │     no change │
│ QQuery 17 │  743.07 / 748.14 ±5.14 / 757.76 ms │  681.43 / 695.49 ±9.96 / 711.85 ms │ +1.08x faster │
│ QQuery 18 │ 757.33 / 781.48 ±16.94 / 801.12 ms │ 702.59 / 724.97 ±15.98 / 752.39 ms │ +1.08x faster │
│ QQuery 19 │ 268.01 / 279.33 ±12.32 / 301.73 ms │ 265.86 / 277.68 ±20.81 / 319.27 ms │     no change │
│ QQuery 20 │  308.04 / 317.20 ±9.03 / 333.08 ms │ 296.19 / 316.59 ±14.29 / 338.65 ms │     no change │
│ QQuery 21 │  808.99 / 817.11 ±7.90 / 827.32 ms │  737.60 / 741.17 ±3.71 / 747.63 ms │ +1.10x faster │
│ QQuery 22 │     80.85 / 83.74 ±2.62 / 88.20 ms │     74.27 / 75.77 ±1.06 / 77.40 ms │ +1.11x faster │
└───────────┴────────────────────────────────────┴────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┓
┃ Benchmark Summary                    ┃           ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━┩
│ Total Time (HEAD)                    │ 7724.76ms │
│ Total Time (repartition-fastrange)   │ 7288.57ms │
│ Average Time (HEAD)                  │  351.13ms │
│ Average Time (repartition-fastrange) │  331.30ms │
│ Queries Faster                       │        13 │
│ Queries Slower                       │         0 │
│ Queries with No Change               │         9 │
│ Queries with Failure                 │         0 │
└──────────────────────────────────────┴───────────┘

Resource Usage
File an issue against this benchmark runner

Nice seems quite an improvement on repartition-heavy queries

@Dandandan Dandandan changed the title perf: use fastrange instead of modulo for hash partition assignment perf: use fastrange instead of modulo for hash partition assignment (up to 1.15x improvement) Apr 24, 2026
@github-actions github-actions Bot added logical-expr Logical plan and expressions core Core DataFusion crate sqllogictest SQL Logic Tests (.slt) labels Apr 24, 2026
@Dandandan
Copy link
Copy Markdown
Contributor Author

run benchmarks

env:
       DATAFUSION_EXECUTION_PARQUET_PUSHDOWN_FILTERS: true
       DATAFUSION_EXECUTION_PARQUET_REORDER_FILTERS: true

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4315113998-1823-797hj 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 repartition-fastrange (f9f26be) to 85e75e2 (merge-base) diff using: tpcds
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-c4315113998-1824-gmnkh 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 repartition-fastrange (f9f26be) to 85e75e2 (merge-base) diff using: tpch
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-c4315113998-1822-qxj68 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 repartition-fastrange (f9f26be) to 85e75e2 (merge-base) diff using: clickbench_partitioned
Results will be posted here when complete


File an issue against this benchmark runner

@Dandandan
Copy link
Copy Markdown
Contributor Author

run benchmark tpch10

env:
       DATAFUSION_EXECUTION_PARQUET_PUSHDOWN_FILTERS: true
       DATAFUSION_EXECUTION_PARQUET_REORDER_FILTERS: true

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4315197774-1826-qsxsr 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 repartition-fastrange (f9f26be) to 85e75e2 (merge-base) diff using: tpch10
Results will be posted here when complete


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 repartition-fastrange
--------------------
Benchmark tpch_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                              HEAD ┃             repartition-fastrange ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │    43.15 / 45.31 ±2.73 / 49.92 ms │    42.95 / 44.06 ±1.01 / 45.69 ms │     no change │
│ QQuery 2  │    24.63 / 25.06 ±0.32 / 25.46 ms │    24.41 / 24.78 ±0.49 / 25.76 ms │     no change │
│ QQuery 3  │    47.72 / 48.02 ±0.28 / 48.52 ms │    45.61 / 45.86 ±0.20 / 46.18 ms │     no change │
│ QQuery 4  │    21.96 / 22.51 ±0.54 / 23.51 ms │    22.32 / 22.44 ±0.08 / 22.54 ms │     no change │
│ QQuery 5  │    69.46 / 72.00 ±2.08 / 75.42 ms │    64.46 / 66.47 ±1.65 / 69.50 ms │ +1.08x faster │
│ QQuery 6  │    35.92 / 37.00 ±1.15 / 38.95 ms │    35.80 / 37.00 ±0.92 / 38.61 ms │     no change │
│ QQuery 7  │    58.03 / 58.20 ±0.16 / 58.39 ms │    55.00 / 55.39 ±0.28 / 55.82 ms │     no change │
│ QQuery 8  │    78.94 / 79.35 ±0.51 / 80.34 ms │    74.43 / 74.99 ±0.59 / 76.11 ms │ +1.06x faster │
│ QQuery 9  │ 107.79 / 108.86 ±1.03 / 110.44 ms │ 102.16 / 104.58 ±1.97 / 108.01 ms │     no change │
│ QQuery 10 │    75.74 / 76.13 ±0.42 / 76.93 ms │    74.96 / 76.13 ±1.09 / 77.48 ms │     no change │
│ QQuery 11 │    16.06 / 16.24 ±0.16 / 16.51 ms │    15.89 / 16.13 ±0.18 / 16.34 ms │     no change │
│ QQuery 12 │    46.10 / 46.61 ±0.46 / 47.27 ms │    44.89 / 45.34 ±0.40 / 45.88 ms │     no change │
│ QQuery 13 │    48.02 / 48.27 ±0.21 / 48.62 ms │    44.88 / 45.17 ±0.34 / 45.79 ms │ +1.07x faster │
│ QQuery 14 │    40.36 / 40.59 ±0.20 / 40.95 ms │    37.96 / 38.41 ±0.29 / 38.79 ms │ +1.06x faster │
│ QQuery 15 │    44.98 / 45.99 ±0.88 / 47.62 ms │    44.41 / 45.14 ±0.73 / 46.49 ms │     no change │
│ QQuery 16 │    23.02 / 23.40 ±0.55 / 24.48 ms │    22.78 / 23.01 ±0.14 / 23.17 ms │     no change │
│ QQuery 17 │ 151.33 / 153.28 ±2.67 / 158.48 ms │ 149.49 / 152.61 ±2.42 / 155.63 ms │     no change │
│ QQuery 18 │    75.25 / 76.01 ±0.55 / 76.85 ms │    64.91 / 65.26 ±0.39 / 66.03 ms │ +1.16x faster │
│ QQuery 19 │    41.27 / 41.59 ±0.18 / 41.78 ms │    41.39 / 42.26 ±0.94 / 43.96 ms │     no change │
│ QQuery 20 │    45.04 / 45.67 ±0.36 / 46.14 ms │    44.87 / 44.98 ±0.07 / 45.04 ms │     no change │
│ QQuery 21 │    83.23 / 84.54 ±1.18 / 86.65 ms │    79.76 / 80.60 ±0.58 / 81.31 ms │     no change │
│ QQuery 22 │    23.95 / 25.32 ±1.36 / 27.47 ms │    23.63 / 23.81 ±0.11 / 23.92 ms │ +1.06x faster │
└───────────┴───────────────────────────────────┴───────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┓
┃ Benchmark Summary                    ┃           ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━┩
│ Total Time (HEAD)                    │ 1219.97ms │
│ Total Time (repartition-fastrange)   │ 1174.42ms │
│ Average Time (HEAD)                  │   55.45ms │
│ Average Time (repartition-fastrange) │   53.38ms │
│ Queries Faster                       │         6 │
│ Queries Slower                       │         0 │
│ Queries with No Change               │        16 │
│ Queries with Failure                 │         0 │
└──────────────────────────────────────┴───────────┘

Resource Usage

tpch — base (merge-base)

Metric Value
Wall time 10.0s
Peak memory 5.5 GiB
Avg memory 4.7 GiB
CPU user 46.7s
CPU sys 2.4s
Peak spill 0 B

tpch — branch

Metric Value
Wall time 10.0s
Peak memory 5.4 GiB
Avg memory 4.7 GiB
CPU user 44.7s
CPU sys 2.4s
Peak spill 0 B

File an issue against this benchmark runner

Adds a doc comment on hash_to_partition pointing at Lemire's fastrange
repo and blog post so future readers can find the reasoning behind the
mulhi+shift partition mapping. Also removes the #[allow(clippy::mutable_key_type)]
attribute and accompanying comment from max_grouping_set_duplicate_ordinal;
clippy does not flag this site.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
@github-actions github-actions Bot removed the logical-expr Logical plan and expressions label Apr 24, 2026
@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 repartition-fastrange
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃                 repartition-fastrange ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.17 / 4.49 ±6.60 / 17.70 ms │          1.17 / 4.58 ±6.77 / 18.13 ms │     no change │
│ QQuery 1  │        12.60 / 12.78 ±0.14 / 12.98 ms │        12.42 / 12.59 ±0.09 / 12.71 ms │     no change │
│ QQuery 2  │        36.97 / 37.30 ±0.27 / 37.75 ms │        36.59 / 37.03 ±0.38 / 37.69 ms │     no change │
│ QQuery 3  │        31.38 / 32.11 ±1.01 / 34.08 ms │        31.11 / 31.50 ±0.32 / 32.05 ms │     no change │
│ QQuery 4  │     238.35 / 240.91 ±1.65 / 242.76 ms │     226.39 / 229.69 ±4.75 / 239.05 ms │     no change │
│ QQuery 5  │     281.30 / 282.61 ±1.60 / 285.62 ms │     287.68 / 290.47 ±2.23 / 294.49 ms │     no change │
│ QQuery 6  │           5.70 / 5.95 ±0.16 / 6.13 ms │           5.73 / 5.89 ±0.12 / 6.10 ms │     no change │
│ QQuery 7  │        16.02 / 16.87 ±1.42 / 19.70 ms │        16.05 / 16.25 ±0.29 / 16.82 ms │     no change │
│ QQuery 8  │     325.14 / 330.73 ±3.80 / 336.49 ms │     311.97 / 318.19 ±3.97 / 322.71 ms │     no change │
│ QQuery 9  │     447.08 / 455.33 ±8.49 / 470.77 ms │     408.57 / 415.46 ±5.89 / 424.43 ms │ +1.10x faster │
│ QQuery 10 │        95.98 / 96.61 ±0.64 / 97.52 ms │        94.28 / 95.28 ±1.00 / 97.13 ms │     no change │
│ QQuery 11 │     106.30 / 107.74 ±1.15 / 109.71 ms │     106.45 / 106.97 ±0.43 / 107.67 ms │     no change │
│ QQuery 12 │     305.63 / 312.01 ±4.50 / 316.98 ms │     313.19 / 317.30 ±3.28 / 321.45 ms │     no change │
│ QQuery 13 │    435.42 / 449.23 ±18.86 / 486.12 ms │     432.37 / 440.93 ±6.79 / 452.93 ms │     no change │
│ QQuery 14 │     318.88 / 322.10 ±2.97 / 326.11 ms │     316.78 / 320.28 ±2.86 / 324.08 ms │     no change │
│ QQuery 15 │     281.29 / 287.52 ±6.69 / 299.13 ms │     270.58 / 277.89 ±5.53 / 285.33 ms │     no change │
│ QQuery 16 │    615.68 / 629.56 ±19.46 / 668.05 ms │     605.22 / 613.98 ±6.01 / 621.10 ms │     no change │
│ QQuery 17 │     618.84 / 625.84 ±4.17 / 631.18 ms │     610.18 / 614.83 ±6.67 / 627.90 ms │     no change │
│ QQuery 18 │ 1239.07 / 1260.89 ±16.26 / 1289.15 ms │ 1221.45 / 1240.36 ±16.72 / 1268.22 ms │     no change │
│ QQuery 19 │        29.81 / 35.50 ±7.93 / 50.11 ms │        29.51 / 30.72 ±1.22 / 32.47 ms │ +1.16x faster │
│ QQuery 20 │     513.72 / 521.65 ±7.00 / 534.45 ms │     519.51 / 530.85 ±8.66 / 539.41 ms │     no change │
│ QQuery 21 │     561.43 / 575.91 ±8.58 / 585.72 ms │     576.02 / 582.24 ±6.90 / 594.64 ms │     no change │
│ QQuery 22 │     920.19 / 926.50 ±6.47 / 938.61 ms │     919.04 / 926.57 ±5.31 / 932.95 ms │     no change │
│ QQuery 23 │     119.10 / 122.28 ±2.25 / 124.71 ms │     111.61 / 121.93 ±8.88 / 138.31 ms │     no change │
│ QQuery 24 │        41.45 / 47.08 ±6.38 / 58.01 ms │        41.69 / 43.24 ±2.58 / 48.40 ms │ +1.09x faster │
│ QQuery 25 │     145.78 / 146.47 ±0.48 / 147.03 ms │     144.74 / 150.91 ±5.58 / 158.56 ms │     no change │
│ QQuery 26 │        61.62 / 65.48 ±2.82 / 69.79 ms │        62.30 / 66.54 ±3.78 / 71.96 ms │     no change │
│ QQuery 27 │    711.86 / 725.73 ±14.89 / 754.10 ms │     724.38 / 729.33 ±4.65 / 738.15 ms │     no change │
│ QQuery 28 │ 3010.71 / 3039.37 ±16.14 / 3057.75 ms │ 3022.20 / 3058.31 ±23.00 / 3094.63 ms │     no change │
│ QQuery 29 │       42.04 / 56.19 ±16.54 / 87.28 ms │       42.11 / 50.34 ±11.69 / 72.29 ms │ +1.12x faster │
│ QQuery 30 │     313.10 / 317.80 ±3.67 / 322.75 ms │     313.31 / 322.87 ±9.36 / 336.13 ms │     no change │
│ QQuery 31 │     307.33 / 313.13 ±4.98 / 320.91 ms │    301.36 / 312.75 ±12.29 / 334.43 ms │     no change │
│ QQuery 32 │ 1004.00 / 1022.51 ±12.03 / 1041.91 ms │     955.21 / 967.49 ±9.82 / 984.45 ms │ +1.06x faster │
│ QQuery 33 │ 1408.83 / 1432.23 ±19.55 / 1460.48 ms │ 1456.04 / 1480.37 ±17.81 / 1507.56 ms │     no change │
│ QQuery 34 │ 1434.83 / 1450.40 ±12.52 / 1473.12 ms │  1488.17 / 1494.21 ±5.19 / 1501.76 ms │     no change │
│ QQuery 35 │    284.97 / 294.11 ±11.54 / 316.25 ms │    276.53 / 292.74 ±17.40 / 326.27 ms │     no change │
│ QQuery 36 │        62.58 / 68.47 ±5.06 / 77.01 ms │        62.20 / 67.94 ±3.95 / 72.48 ms │     no change │
│ QQuery 37 │        36.42 / 38.57 ±2.61 / 43.61 ms │        37.67 / 43.81 ±7.04 / 57.23 ms │  1.14x slower │
│ QQuery 38 │        37.76 / 44.21 ±4.64 / 49.62 ms │        36.09 / 40.16 ±2.92 / 45.06 ms │ +1.10x faster │
│ QQuery 39 │     118.99 / 125.21 ±4.97 / 134.00 ms │     114.74 / 125.87 ±8.85 / 138.66 ms │     no change │
│ QQuery 40 │        17.77 / 18.18 ±0.29 / 18.53 ms │        17.90 / 18.35 ±0.30 / 18.78 ms │     no change │
│ QQuery 41 │        16.57 / 18.34 ±3.14 / 24.60 ms │        16.80 / 19.79 ±5.47 / 30.71 ms │  1.08x slower │
│ QQuery 42 │        14.06 / 15.95 ±3.09 / 22.11 ms │        14.28 / 14.50 ±0.15 / 14.69 ms │ +1.10x faster │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                    ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                    │ 16931.84ms │
│ Total Time (repartition-fastrange)   │ 16881.29ms │
│ Average Time (HEAD)                  │   393.76ms │
│ Average Time (repartition-fastrange) │   392.59ms │
│ Queries Faster                       │          7 │
│ Queries Slower                       │          2 │
│ Queries with No Change               │         34 │
│ Queries with Failure                 │          0 │
└──────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 90.0s
Peak memory 30.1 GiB
Avg memory 23.0 GiB
CPU user 898.0s
CPU sys 52.6s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 85.0s
Peak memory 29.5 GiB
Avg memory 23.5 GiB
CPU user 895.1s
CPU sys 55.1s
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 repartition-fastrange
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                      HEAD ┃                     repartition-fastrange ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │               6.51 / 7.00 ±0.83 / 8.65 ms │               6.44 / 6.89 ±0.71 / 8.31 ms │     no change │
│ QQuery 2  │        112.51 / 122.71 ±19.19 / 161.07 ms │        113.16 / 123.01 ±19.24 / 161.49 ms │     no change │
│ QQuery 3  │         107.99 / 109.45 ±1.79 / 112.90 ms │         108.14 / 110.83 ±3.00 / 116.41 ms │     no change │
│ QQuery 4  │      1031.32 / 1034.69 ±2.02 / 1036.37 ms │      1032.18 / 1035.99 ±2.51 / 1038.34 ms │     no change │
│ QQuery 5  │         182.93 / 184.44 ±1.32 / 186.18 ms │         183.43 / 184.79 ±2.42 / 189.63 ms │     no change │
│ QQuery 6  │         230.77 / 238.69 ±6.78 / 251.27 ms │         235.20 / 239.52 ±4.53 / 248.20 ms │     no change │
│ QQuery 7  │         310.97 / 312.71 ±1.52 / 314.98 ms │         307.26 / 312.39 ±2.63 / 314.40 ms │     no change │
│ QQuery 8  │         144.60 / 148.38 ±4.81 / 157.61 ms │         145.25 / 148.58 ±2.15 / 151.54 ms │     no change │
│ QQuery 9  │        208.33 / 219.03 ±10.42 / 234.44 ms │        190.84 / 213.77 ±14.36 / 232.72 ms │     no change │
│ QQuery 10 │        154.63 / 162.49 ±12.47 / 187.31 ms │         154.01 / 162.67 ±6.91 / 170.99 ms │     no change │
│ QQuery 11 │         654.92 / 656.69 ±1.67 / 659.87 ms │         657.40 / 664.49 ±5.59 / 674.14 ms │     no change │
│ QQuery 12 │            35.03 / 36.08 ±1.28 / 38.59 ms │            35.59 / 36.38 ±0.94 / 38.19 ms │     no change │
│ QQuery 13 │         521.58 / 527.85 ±4.25 / 533.73 ms │        524.91 / 537.16 ±11.09 / 556.73 ms │     no change │
│ QQuery 14 │         832.33 / 840.18 ±6.39 / 848.36 ms │         826.02 / 838.31 ±7.82 / 847.22 ms │     no change │
│ QQuery 15 │            17.01 / 17.24 ±0.15 / 17.46 ms │            16.82 / 17.06 ±0.18 / 17.37 ms │     no change │
│ QQuery 16 │              6.94 / 8.12 ±2.11 / 12.34 ms │               7.11 / 7.25 ±0.10 / 7.39 ms │ +1.12x faster │
│ QQuery 17 │         177.99 / 179.68 ±1.14 / 181.22 ms │         176.94 / 181.83 ±5.99 / 193.61 ms │     no change │
│ QQuery 18 │        403.02 / 430.08 ±28.59 / 471.37 ms │        390.89 / 419.32 ±29.60 / 475.77 ms │     no change │
│ QQuery 19 │         132.09 / 133.88 ±1.64 / 136.16 ms │         133.45 / 135.23 ±1.92 / 138.24 ms │     no change │
│ QQuery 20 │            14.26 / 14.56 ±0.28 / 14.97 ms │            14.62 / 14.87 ±0.15 / 15.02 ms │     no change │
│ QQuery 21 │            25.34 / 25.57 ±0.13 / 25.69 ms │            25.46 / 25.76 ±0.46 / 26.68 ms │     no change │
│ QQuery 22 │         499.49 / 502.99 ±2.29 / 506.08 ms │         491.43 / 501.85 ±5.79 / 507.20 ms │     no change │
│ QQuery 23 │     1148.23 / 1156.55 ±10.10 / 1174.01 ms │     1032.97 / 1066.81 ±53.83 / 1174.12 ms │ +1.08x faster │
│ QQuery 24 │         105.55 / 107.37 ±3.02 / 113.36 ms │         103.17 / 104.79 ±1.19 / 106.69 ms │     no change │
│ QQuery 25 │         266.79 / 270.30 ±3.56 / 276.38 ms │         262.55 / 272.31 ±8.08 / 283.15 ms │     no change │
│ QQuery 26 │         131.16 / 134.19 ±2.25 / 136.78 ms │         129.27 / 133.69 ±4.39 / 139.65 ms │     no change │
│ QQuery 27 │               6.45 / 6.57 ±0.16 / 6.88 ms │               6.58 / 6.71 ±0.15 / 7.00 ms │     no change │
│ QQuery 28 │        205.04 / 212.52 ±13.01 / 238.48 ms │         204.83 / 209.70 ±5.71 / 218.62 ms │     no change │
│ QQuery 29 │         217.28 / 221.26 ±4.91 / 230.93 ms │        209.56 / 221.85 ±13.67 / 246.10 ms │     no change │
│ QQuery 30 │            48.50 / 51.55 ±3.94 / 59.31 ms │            49.66 / 52.34 ±3.78 / 59.72 ms │     no change │
│ QQuery 31 │         159.56 / 162.00 ±1.56 / 164.28 ms │         163.25 / 165.60 ±1.73 / 167.90 ms │     no change │
│ QQuery 32 │            13.41 / 15.87 ±4.33 / 24.53 ms │            13.61 / 14.97 ±2.44 / 19.83 ms │ +1.06x faster │
│ QQuery 33 │         124.10 / 125.43 ±1.36 / 127.86 ms │         123.61 / 125.43 ±1.13 / 126.66 ms │     no change │
│ QQuery 34 │               6.81 / 7.01 ±0.17 / 7.32 ms │               6.81 / 7.06 ±0.22 / 7.46 ms │     no change │
│ QQuery 35 │         130.73 / 135.88 ±5.78 / 147.10 ms │         134.38 / 139.63 ±3.92 / 144.30 ms │     no change │
│ QQuery 36 │               6.19 / 6.37 ±0.16 / 6.66 ms │               6.49 / 6.68 ±0.15 / 6.89 ms │     no change │
│ QQuery 37 │               5.14 / 5.21 ±0.07 / 5.32 ms │               5.12 / 5.25 ±0.10 / 5.40 ms │     no change │
│ QQuery 38 │         105.82 / 106.59 ±0.65 / 107.49 ms │         107.25 / 110.23 ±2.20 / 112.84 ms │     no change │
│ QQuery 39 │         128.59 / 131.77 ±5.18 / 142.11 ms │         124.92 / 128.57 ±2.87 / 133.09 ms │     no change │
│ QQuery 40 │         122.90 / 126.62 ±2.87 / 131.34 ms │         113.38 / 120.84 ±7.98 / 133.66 ms │     no change │
│ QQuery 41 │            13.91 / 14.20 ±0.26 / 14.66 ms │            14.05 / 14.26 ±0.18 / 14.59 ms │     no change │
│ QQuery 42 │         105.10 / 105.63 ±0.57 / 106.71 ms │         105.16 / 105.71 ±0.59 / 106.71 ms │     no change │
│ QQuery 43 │               5.45 / 5.56 ±0.18 / 5.92 ms │               5.64 / 5.70 ±0.11 / 5.92 ms │     no change │
│ QQuery 44 │            11.09 / 11.21 ±0.08 / 11.32 ms │            11.23 / 11.46 ±0.17 / 11.73 ms │     no change │
│ QQuery 45 │            38.70 / 41.15 ±3.19 / 47.44 ms │            38.56 / 41.49 ±2.55 / 45.97 ms │     no change │
│ QQuery 46 │               8.07 / 8.36 ±0.21 / 8.72 ms │               8.27 / 8.46 ±0.20 / 8.83 ms │     no change │
│ QQuery 47 │         718.65 / 732.19 ±8.65 / 743.26 ms │         740.46 / 754.30 ±7.75 / 762.14 ms │     no change │
│ QQuery 48 │         429.14 / 437.77 ±7.53 / 449.87 ms │        429.59 / 450.81 ±13.96 / 468.65 ms │     no change │
│ QQuery 49 │         261.75 / 267.18 ±6.84 / 280.39 ms │         260.93 / 265.52 ±3.89 / 271.06 ms │     no change │
│ QQuery 50 │         493.00 / 499.42 ±6.05 / 510.08 ms │         473.09 / 485.72 ±8.01 / 493.59 ms │     no change │
│ QQuery 51 │         201.03 / 206.31 ±3.99 / 211.52 ms │         197.20 / 203.00 ±4.23 / 210.15 ms │     no change │
│ QQuery 52 │         104.42 / 106.70 ±2.00 / 109.25 ms │         104.83 / 110.24 ±3.79 / 114.97 ms │     no change │
│ QQuery 53 │         126.68 / 128.79 ±1.88 / 131.19 ms │         128.20 / 132.39 ±3.14 / 135.42 ms │     no change │
│ QQuery 54 │         118.78 / 121.78 ±2.87 / 127.01 ms │         119.33 / 123.41 ±2.51 / 127.03 ms │     no change │
│ QQuery 55 │         102.31 / 103.87 ±1.49 / 106.44 ms │         102.35 / 104.52 ±1.51 / 106.81 ms │     no change │
│ QQuery 56 │         122.65 / 123.32 ±0.63 / 124.36 ms │         123.26 / 124.50 ±1.15 / 126.11 ms │     no change │
│ QQuery 57 │         175.85 / 178.61 ±1.96 / 181.17 ms │         177.18 / 179.86 ±3.09 / 185.84 ms │     no change │
│ QQuery 58 │         248.65 / 249.84 ±1.26 / 252.17 ms │         201.00 / 205.72 ±3.84 / 209.13 ms │ +1.21x faster │
│ QQuery 59 │         248.15 / 253.65 ±4.29 / 260.75 ms │         252.80 / 259.01 ±3.46 / 263.01 ms │     no change │
│ QQuery 60 │         126.78 / 127.88 ±0.88 / 128.96 ms │         127.22 / 131.59 ±2.98 / 136.14 ms │     no change │
│ QQuery 61 │            12.21 / 12.32 ±0.18 / 12.69 ms │            12.25 / 12.40 ±0.22 / 12.83 ms │     no change │
│ QQuery 62 │         869.53 / 874.98 ±4.58 / 881.18 ms │         871.83 / 884.41 ±7.19 / 894.02 ms │     no change │
│ QQuery 63 │         127.79 / 132.95 ±7.16 / 146.58 ms │         128.78 / 136.44 ±5.97 / 142.58 ms │     no change │
│ QQuery 64 │ 28728.14 / 29313.26 ±396.01 / 29880.24 ms │ 28398.70 / 28917.50 ±484.21 / 29761.38 ms │     no change │
│ QQuery 65 │         332.97 / 336.48 ±3.40 / 341.18 ms │         331.20 / 338.43 ±4.79 / 345.48 ms │     no change │
│ QQuery 66 │         179.27 / 183.40 ±4.64 / 190.51 ms │         178.36 / 180.95 ±2.19 / 184.43 ms │     no change │
│ QQuery 67 │         476.26 / 481.30 ±4.08 / 488.30 ms │         469.58 / 475.50 ±5.25 / 484.49 ms │     no change │
│ QQuery 68 │               8.62 / 8.92 ±0.25 / 9.21 ms │               8.52 / 8.70 ±0.21 / 9.10 ms │     no change │
│ QQuery 69 │         144.41 / 150.34 ±3.94 / 155.81 ms │         150.15 / 158.38 ±7.59 / 171.88 ms │  1.05x slower │
│ QQuery 70 │        395.73 / 409.88 ±17.71 / 443.69 ms │        396.98 / 422.79 ±15.57 / 445.74 ms │     no change │
│ QQuery 71 │         122.61 / 124.66 ±1.68 / 127.53 ms │         121.36 / 124.76 ±2.10 / 126.82 ms │     no change │
│ QQuery 72 │     1168.64 / 1191.12 ±31.29 / 1252.91 ms │      1023.71 / 1029.37 ±6.12 / 1038.59 ms │ +1.16x faster │
│ QQuery 73 │               6.55 / 6.70 ±0.25 / 7.19 ms │               6.63 / 6.81 ±0.22 / 7.23 ms │     no change │
│ QQuery 74 │         457.38 / 471.59 ±8.08 / 479.38 ms │         472.27 / 478.08 ±4.56 / 484.11 ms │     no change │
│ QQuery 75 │         255.70 / 264.32 ±6.68 / 274.88 ms │         263.79 / 269.08 ±6.95 / 282.60 ms │     no change │
│ QQuery 76 │         260.69 / 267.52 ±5.35 / 273.39 ms │         239.85 / 250.24 ±6.62 / 260.77 ms │ +1.07x faster │
│ QQuery 77 │         208.02 / 214.57 ±5.02 / 221.79 ms │         214.36 / 219.68 ±5.42 / 227.49 ms │     no change │
│ QQuery 78 │         287.75 / 292.35 ±3.22 / 296.34 ms │         281.18 / 285.81 ±3.48 / 290.28 ms │     no change │
│ QQuery 79 │         235.99 / 242.87 ±6.68 / 255.65 ms │         237.48 / 244.08 ±4.69 / 251.61 ms │     no change │
│ QQuery 80 │         259.48 / 266.27 ±4.99 / 272.76 ms │         261.79 / 266.81 ±3.19 / 271.26 ms │     no change │
│ QQuery 81 │            29.94 / 30.29 ±0.33 / 30.85 ms │            30.14 / 30.28 ±0.15 / 30.56 ms │     no change │
│ QQuery 82 │            44.56 / 46.03 ±1.03 / 47.34 ms │            44.64 / 46.98 ±1.91 / 49.29 ms │     no change │
│ QQuery 83 │            43.48 / 44.64 ±0.84 / 45.75 ms │            42.92 / 43.19 ±0.29 / 43.73 ms │     no change │
│ QQuery 84 │            61.09 / 62.04 ±0.78 / 63.16 ms │            61.02 / 61.46 ±0.26 / 61.81 ms │     no change │
│ QQuery 85 │         237.92 / 245.68 ±7.92 / 255.67 ms │         240.74 / 248.10 ±5.82 / 256.50 ms │     no change │
│ QQuery 86 │            46.39 / 48.68 ±1.74 / 50.80 ms │            47.22 / 49.69 ±1.77 / 52.36 ms │     no change │
│ QQuery 87 │               3.53 / 4.30 ±1.21 / 6.70 ms │               3.59 / 4.34 ±1.25 / 6.81 ms │     no change │
│ QQuery 88 │         113.22 / 118.49 ±4.22 / 124.93 ms │         120.78 / 124.14 ±2.73 / 127.12 ms │     no change │
│ QQuery 89 │         144.70 / 158.45 ±7.68 / 167.95 ms │         145.40 / 154.93 ±8.45 / 166.96 ms │     no change │
│ QQuery 90 │            22.64 / 23.99 ±1.04 / 25.07 ms │            23.04 / 24.16 ±0.91 / 25.40 ms │     no change │
│ QQuery 91 │            84.40 / 91.07 ±4.41 / 96.08 ms │           88.56 / 94.57 ±5.00 / 101.98 ms │     no change │
│ QQuery 92 │            49.45 / 53.04 ±2.83 / 56.90 ms │            50.29 / 51.09 ±0.48 / 51.61 ms │     no change │
│ QQuery 93 │         180.79 / 183.03 ±1.37 / 184.63 ms │         162.93 / 166.11 ±2.21 / 169.65 ms │ +1.10x faster │
│ QQuery 94 │            64.21 / 65.82 ±1.12 / 67.43 ms │            65.04 / 65.88 ±0.54 / 66.76 ms │     no change │
│ QQuery 95 │         140.13 / 144.24 ±2.30 / 146.90 ms │         132.11 / 134.95 ±2.02 / 138.11 ms │ +1.07x faster │
│ QQuery 96 │            74.64 / 79.34 ±4.06 / 86.74 ms │            74.07 / 77.14 ±2.44 / 80.11 ms │     no change │
│ QQuery 97 │         139.82 / 143.74 ±2.67 / 147.85 ms │         134.55 / 137.48 ±2.32 / 140.37 ms │     no change │
│ QQuery 98 │         113.90 / 116.02 ±1.47 / 118.33 ms │         110.57 / 114.32 ±2.20 / 117.00 ms │     no change │
│ QQuery 99 │ 10750.84 / 10944.99 ±232.62 / 11402.74 ms │ 10722.19 / 10958.20 ±168.25 / 11156.14 ms │     no change │
└───────────┴───────────────────────────────────────────┴───────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                    ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                    │ 60468.68ms │
│ Total Time (repartition-fastrange)   │ 59825.26ms │
│ Average Time (HEAD)                  │   610.79ms │
│ Average Time (repartition-fastrange) │   604.30ms │
│ Queries Faster                       │          8 │
│ Queries Slower                       │          1 │
│ Queries with No Change               │         90 │
│ Queries with Failure                 │          0 │
└──────────────────────────────────────┴────────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 305.1s
Peak memory 18.3 GiB
Avg memory 9.8 GiB
CPU user 609.1s
CPU sys 14.5s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 300.1s
Peak memory 18.4 GiB
Avg memory 9.8 GiB
CPU user 599.9s
CPU sys 15.6s
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 repartition-fastrange
--------------------
Benchmark tpch_sf10.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                 HEAD ┃                 repartition-fastrange ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │    353.66 / 354.62 ±0.86 / 355.83 ms │     352.90 / 353.99 ±1.13 / 356.05 ms │     no change │
│ QQuery 2  │    177.81 / 179.96 ±2.10 / 183.48 ms │     164.17 / 166.34 ±2.36 / 169.87 ms │ +1.08x faster │
│ QQuery 3  │    373.46 / 377.37 ±3.12 / 381.76 ms │     346.69 / 351.34 ±2.47 / 353.87 ms │ +1.07x faster │
│ QQuery 4  │    323.98 / 325.73 ±1.36 / 327.23 ms │     285.92 / 289.95 ±3.42 / 295.43 ms │ +1.12x faster │
│ QQuery 5  │    615.44 / 626.60 ±7.87 / 636.31 ms │     567.95 / 576.61 ±5.81 / 585.31 ms │ +1.09x faster │
│ QQuery 6  │    296.35 / 298.33 ±2.01 / 302.01 ms │     295.71 / 298.57 ±2.18 / 302.42 ms │     no change │
│ QQuery 7  │    435.23 / 439.86 ±3.96 / 446.40 ms │     412.07 / 415.20 ±2.52 / 419.26 ms │ +1.06x faster │
│ QQuery 8  │    621.19 / 625.95 ±3.69 / 630.69 ms │     574.52 / 578.38 ±5.25 / 588.64 ms │ +1.08x faster │
│ QQuery 9  │ 1406.22 / 1412.75 ±4.07 / 1417.46 ms │ 1266.20 / 1280.76 ±10.91 / 1298.03 ms │ +1.10x faster │
│ QQuery 10 │    407.90 / 417.59 ±6.10 / 425.58 ms │     392.03 / 400.41 ±7.97 / 415.61 ms │     no change │
│ QQuery 11 │    142.17 / 147.55 ±7.00 / 161.37 ms │     129.10 / 134.42 ±8.32 / 150.99 ms │ +1.10x faster │
│ QQuery 12 │    352.58 / 355.99 ±2.81 / 360.73 ms │     341.55 / 344.43 ±2.82 / 348.71 ms │     no change │
│ QQuery 13 │   392.33 / 410.23 ±12.65 / 424.46 ms │     372.46 / 383.67 ±6.36 / 392.04 ms │ +1.07x faster │
│ QQuery 14 │    203.36 / 206.81 ±2.22 / 209.68 ms │     202.16 / 203.67 ±1.15 / 205.47 ms │     no change │
│ QQuery 15 │    423.69 / 428.32 ±5.10 / 437.07 ms │     427.15 / 431.30 ±2.38 / 433.91 ms │     no change │
│ QQuery 16 │    104.26 / 106.30 ±2.24 / 109.30 ms │      97.61 / 100.36 ±2.41 / 104.49 ms │ +1.06x faster │
│ QQuery 17 │   764.27 / 775.11 ±14.36 / 802.70 ms │ 2034.07 / 2117.21 ±53.75 / 2190.42 ms │  2.73x slower │
│ QQuery 18 │    681.45 / 689.97 ±6.95 / 699.84 ms │     636.67 / 643.21 ±5.81 / 652.38 ms │ +1.07x faster │
│ QQuery 19 │    291.62 / 301.36 ±9.63 / 314.16 ms │     290.55 / 292.90 ±2.19 / 296.55 ms │     no change │
│ QQuery 20 │    325.91 / 327.42 ±1.63 / 330.14 ms │     316.98 / 319.45 ±2.47 / 323.61 ms │     no change │
│ QQuery 21 │ 1192.53 / 1199.16 ±5.01 / 1204.92 ms │  1084.10 / 1089.07 ±4.02 / 1094.09 ms │ +1.10x faster │
│ QQuery 22 │    171.77 / 175.99 ±3.90 / 181.76 ms │     145.51 / 158.53 ±6.70 / 164.27 ms │ +1.11x faster │
└───────────┴──────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                    ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                    │ 10182.94ms │
│ Total Time (repartition-fastrange)   │ 10929.80ms │
│ Average Time (HEAD)                  │   462.86ms │
│ Average Time (repartition-fastrange) │   496.81ms │
│ Queries Faster                       │         13 │
│ Queries Slower                       │          1 │
│ Queries with No Change               │          8 │
│ Queries with Failure                 │          0 │
└──────────────────────────────────────┴────────────┘

Resource Usage

tpch10 — base (merge-base)

Metric Value
Wall time 55.0s
Peak memory 9.9 GiB
Avg memory 8.0 GiB
CPU user 560.4s
CPU sys 18.9s
Peak spill 0 B

tpch10 — branch

Metric Value
Wall time 55.0s
Peak memory 9.8 GiB
Avg memory 7.9 GiB
CPU user 606.0s
CPU sys 18.9s
Peak spill 0 B

File an issue against this benchmark runner

@Dandandan Dandandan marked this pull request as ready for review April 24, 2026 18:54
@Dandandan
Copy link
Copy Markdown
Contributor Author

run benchmarks

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4315917422-1830-6765m 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 repartition-fastrange (de3d860) to 7d5ddca (merge-base) diff using: clickbench_partitioned
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-c4315917422-1831-hzzgz 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 repartition-fastrange (de3d860) to 7d5ddca (merge-base) diff using: tpcds
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-c4315917422-1832-7lqvz 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 repartition-fastrange (de3d860) to 7d5ddca (merge-base) diff using: tpch
Results will be posted here when complete


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 repartition-fastrange
--------------------
Benchmark tpch_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                           HEAD ┃          repartition-fastrange ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │ 39.91 / 40.88 ±1.07 / 42.95 ms │ 39.90 / 41.21 ±1.50 / 43.05 ms │     no change │
│ QQuery 2  │ 21.12 / 21.27 ±0.11 / 21.43 ms │ 20.56 / 20.82 ±0.19 / 21.10 ms │     no change │
│ QQuery 3  │ 38.66 / 40.41 ±1.82 / 43.88 ms │ 35.65 / 36.77 ±1.31 / 39.33 ms │ +1.10x faster │
│ QQuery 4  │ 18.10 / 18.44 ±0.48 / 19.39 ms │ 18.03 / 18.35 ±0.27 / 18.70 ms │     no change │
│ QQuery 5  │ 47.74 / 49.59 ±1.43 / 51.00 ms │ 43.06 / 46.03 ±2.08 / 49.55 ms │ +1.08x faster │
│ QQuery 6  │ 16.94 / 17.61 ±1.07 / 19.74 ms │ 16.88 / 17.68 ±0.66 / 18.48 ms │     no change │
│ QQuery 7  │ 54.83 / 56.25 ±1.78 / 59.73 ms │ 50.61 / 52.31 ±1.17 / 54.07 ms │ +1.08x faster │
│ QQuery 8  │ 47.34 / 48.36 ±1.02 / 50.17 ms │ 46.59 / 47.25 ±0.36 / 47.62 ms │     no change │
│ QQuery 9  │ 53.19 / 53.48 ±0.27 / 53.96 ms │ 50.97 / 51.35 ±0.52 / 52.37 ms │     no change │
│ QQuery 10 │ 64.95 / 65.42 ±0.59 / 66.56 ms │ 65.63 / 65.95 ±0.19 / 66.16 ms │     no change │
│ QQuery 11 │ 13.97 / 14.29 ±0.40 / 15.07 ms │ 14.06 / 14.43 ±0.24 / 14.79 ms │     no change │
│ QQuery 12 │ 27.05 / 27.31 ±0.19 / 27.53 ms │ 26.30 / 26.53 ±0.23 / 26.95 ms │     no change │
│ QQuery 13 │ 36.92 / 38.42 ±0.81 / 39.37 ms │ 36.48 / 37.41 ±0.69 / 38.38 ms │     no change │
│ QQuery 14 │ 27.52 / 29.72 ±2.32 / 33.77 ms │ 26.53 / 26.71 ±0.14 / 26.95 ms │ +1.11x faster │
│ QQuery 15 │ 32.76 / 32.90 ±0.09 / 33.02 ms │ 33.01 / 34.41 ±1.45 / 37.18 ms │     no change │
│ QQuery 16 │ 15.14 / 15.28 ±0.10 / 15.40 ms │ 15.29 / 15.32 ±0.03 / 15.38 ms │     no change │
│ QQuery 17 │ 77.34 / 77.95 ±0.38 / 78.51 ms │ 77.79 / 78.62 ±0.61 / 79.39 ms │     no change │
│ QQuery 18 │ 75.22 / 76.25 ±0.73 / 77.42 ms │ 69.48 / 70.19 ±0.82 / 71.27 ms │ +1.09x faster │
│ QQuery 19 │ 37.24 / 37.48 ±0.30 / 38.05 ms │ 37.16 / 37.85 ±0.45 / 38.52 ms │     no change │
│ QQuery 20 │ 38.89 / 39.67 ±1.23 / 42.12 ms │ 38.70 / 39.03 ±0.24 / 39.37 ms │     no change │
│ QQuery 21 │ 62.45 / 63.93 ±1.81 / 67.39 ms │ 61.89 / 63.46 ±1.32 / 65.70 ms │     no change │
│ QQuery 22 │ 17.00 / 17.16 ±0.13 / 17.32 ms │ 17.25 / 17.56 ±0.16 / 17.69 ms │     no change │
└───────────┴────────────────────────────────┴────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━┓
┃ Benchmark Summary                    ┃          ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━┩
│ Total Time (HEAD)                    │ 882.07ms │
│ Total Time (repartition-fastrange)   │ 859.23ms │
│ Average Time (HEAD)                  │  40.09ms │
│ Average Time (repartition-fastrange) │  39.06ms │
│ Queries Faster                       │        5 │
│ Queries Slower                       │        0 │
│ Queries with No Change               │       17 │
│ Queries with Failure                 │        0 │
└──────────────────────────────────────┴──────────┘

Resource Usage

tpch — base (merge-base)

Metric Value
Wall time 5.0s
Peak memory 5.5 GiB
Avg memory 4.8 GiB
CPU user 33.7s
CPU sys 2.1s
Peak spill 0 B

tpch — branch

Metric Value
Wall time 5.0s
Peak memory 5.2 GiB
Avg memory 4.8 GiB
CPU user 32.8s
CPU sys 2.1s
Peak spill 0 B

File an issue against this benchmark runner

- DataSourceExec: file_groups={1 group: [[test.parquet]]}, projection=[a, b, c], file_type=test, pushdown_supported=true
- RepartitionExec: partitioning=Hash([a@0, b@1], 12), input_partitions=1
- DataSourceExec: file_groups={1 group: [[test.parquet]]}, projection=[a, b, e], file_type=test, pushdown_supported=true, predicate=DynamicFilter [ CASE hash_repartition % 12 WHEN 5 THEN a@0 >= ab AND a@0 <= ab AND b@1 >= bb AND b@1 <= bb AND struct(a@0, b@1) IN (SET) ([{c0:ab,c1:bb}]) WHEN 8 THEN a@0 >= aa AND a@0 <= aa AND b@1 >= ba AND b@1 <= ba AND struct(a@0, b@1) IN (SET) ([{c0:aa,c1:ba}]) ELSE false END ]
- DataSourceExec: file_groups={1 group: [[test.parquet]]}, projection=[a, b, e], file_type=test, pushdown_supported=true, predicate=DynamicFilter [ CASE hash_repartition WHEN 2 THEN a@0 >= aa AND a@0 <= aa AND b@1 >= ba AND b@1 <= ba AND struct(a@0, b@1) IN (SET) ([{c0:aa,c1:ba}]) WHEN 8 THEN a@0 >= ab AND a@0 <= ab AND b@1 >= bb AND b@1 <= bb AND struct(a@0, b@1) IN (SET) ([{c0:ab,c1:bb}]) ELSE false END ]
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Why did the test change?

Copy link
Copy Markdown
Contributor Author

@Dandandan Dandandan Apr 25, 2026

Choose a reason for hiding this comment

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

Fastrange assigns different partition value, so both the values are different as the calculation.
The statistics / expressions themselves are still the same though.

@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 repartition-fastrange
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                     HEAD ┃                    repartition-fastrange ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │              6.96 / 7.38 ±0.75 / 8.89 ms │              6.88 / 7.44 ±0.76 / 8.96 ms │     no change │
│ QQuery 2  │        144.63 / 144.99 ±0.28 / 145.36 ms │        144.84 / 145.24 ±0.27 / 145.70 ms │     no change │
│ QQuery 3  │        113.97 / 115.24 ±2.04 / 119.29 ms │        112.54 / 113.75 ±0.93 / 115.34 ms │     no change │
│ QQuery 4  │     1319.54 / 1326.23 ±7.05 / 1336.51 ms │     1338.16 / 1342.66 ±4.87 / 1351.42 ms │     no change │
│ QQuery 5  │        173.06 / 174.53 ±2.04 / 178.47 ms │        172.63 / 173.79 ±0.78 / 175.00 ms │     no change │
│ QQuery 6  │        818.49 / 832.71 ±7.39 / 839.17 ms │       829.32 / 868.60 ±22.23 / 893.62 ms │     no change │
│ QQuery 7  │        335.82 / 338.13 ±2.40 / 342.63 ms │        331.80 / 332.81 ±0.78 / 333.95 ms │     no change │
│ QQuery 8  │        113.79 / 114.86 ±0.99 / 116.71 ms │        115.66 / 116.32 ±0.65 / 117.52 ms │     no change │
│ QQuery 9  │        100.05 / 102.97 ±2.85 / 106.58 ms │        101.90 / 104.13 ±2.50 / 107.47 ms │     no change │
│ QQuery 10 │        103.46 / 104.76 ±1.88 / 108.44 ms │        103.80 / 106.72 ±4.03 / 114.64 ms │     no change │
│ QQuery 11 │        925.61 / 932.72 ±7.17 / 944.71 ms │        981.63 / 990.16 ±5.06 / 997.40 ms │  1.06x slower │
│ QQuery 12 │           43.30 / 44.28 ±1.28 / 46.79 ms │           44.64 / 45.03 ±0.26 / 45.33 ms │     no change │
│ QQuery 13 │        388.54 / 391.92 ±2.18 / 395.38 ms │        399.77 / 402.94 ±1.94 / 405.54 ms │     no change │
│ QQuery 14 │        968.78 / 985.02 ±8.74 / 992.49 ms │        958.92 / 967.57 ±6.14 / 975.10 ms │     no change │
│ QQuery 15 │           15.50 / 15.60 ±0.07 / 15.70 ms │           15.12 / 15.44 ±0.20 / 15.65 ms │     no change │
│ QQuery 16 │              7.70 / 7.82 ±0.14 / 8.05 ms │              7.62 / 7.77 ±0.11 / 7.94 ms │     no change │
│ QQuery 17 │        225.61 / 226.39 ±0.81 / 227.70 ms │        204.59 / 207.36 ±2.09 / 210.50 ms │ +1.09x faster │
│ QQuery 18 │        127.06 / 127.94 ±0.60 / 128.62 ms │        124.64 / 125.84 ±0.99 / 127.67 ms │     no change │
│ QQuery 19 │        158.19 / 159.05 ±0.88 / 160.69 ms │        154.63 / 156.36 ±2.04 / 160.36 ms │     no change │
│ QQuery 20 │           13.42 / 13.51 ±0.06 / 13.62 ms │           13.27 / 13.78 ±0.29 / 14.08 ms │     no change │
│ QQuery 21 │           19.64 / 19.82 ±0.16 / 20.02 ms │           19.51 / 19.75 ±0.28 / 20.14 ms │     no change │
│ QQuery 22 │        487.71 / 490.70 ±2.28 / 494.09 ms │        479.90 / 482.61 ±3.73 / 489.92 ms │     no change │
│ QQuery 23 │        854.50 / 858.54 ±3.12 / 862.83 ms │        797.84 / 804.56 ±6.30 / 814.38 ms │ +1.07x faster │
│ QQuery 24 │        381.54 / 386.89 ±4.30 / 392.39 ms │        339.97 / 344.70 ±5.83 / 355.87 ms │ +1.12x faster │
│ QQuery 25 │        338.35 / 340.02 ±1.01 / 341.54 ms │        310.29 / 311.73 ±1.65 / 314.28 ms │ +1.09x faster │
│ QQuery 26 │           77.78 / 78.45 ±0.77 / 79.91 ms │           76.39 / 78.61 ±3.93 / 86.45 ms │     no change │
│ QQuery 27 │              7.26 / 7.36 ±0.09 / 7.50 ms │              7.00 / 7.12 ±0.12 / 7.33 ms │     no change │
│ QQuery 28 │        149.60 / 151.02 ±1.89 / 154.63 ms │        148.05 / 150.80 ±3.87 / 158.39 ms │     no change │
│ QQuery 29 │        276.99 / 280.46 ±5.10 / 290.38 ms │        246.22 / 248.08 ±1.16 / 249.80 ms │ +1.13x faster │
│ QQuery 30 │           42.46 / 42.69 ±0.22 / 43.03 ms │           41.71 / 42.11 ±0.24 / 42.36 ms │     no change │
│ QQuery 31 │        164.91 / 168.04 ±3.35 / 173.99 ms │        166.28 / 168.22 ±2.01 / 171.67 ms │     no change │
│ QQuery 32 │           13.50 / 13.72 ±0.24 / 14.18 ms │           13.66 / 13.87 ±0.14 / 14.05 ms │     no change │
│ QQuery 33 │        139.78 / 141.63 ±2.06 / 145.63 ms │        139.01 / 141.35 ±2.38 / 145.67 ms │     no change │
│ QQuery 34 │              6.99 / 7.11 ±0.13 / 7.36 ms │              6.99 / 7.09 ±0.13 / 7.35 ms │     no change │
│ QQuery 35 │        101.02 / 102.70 ±1.62 / 105.44 ms │         99.51 / 101.33 ±1.10 / 102.30 ms │     no change │
│ QQuery 36 │              6.67 / 6.81 ±0.14 / 7.01 ms │              6.93 / 7.08 ±0.15 / 7.35 ms │     no change │
│ QQuery 37 │              8.23 / 8.32 ±0.08 / 8.46 ms │              8.47 / 8.57 ±0.08 / 8.69 ms │     no change │
│ QQuery 38 │           85.56 / 87.82 ±1.93 / 90.78 ms │           86.49 / 90.32 ±2.91 / 94.80 ms │     no change │
│ QQuery 39 │        117.69 / 122.07 ±3.92 / 129.28 ms │        117.00 / 118.22 ±1.16 / 120.43 ms │     no change │
│ QQuery 40 │        104.49 / 106.56 ±2.16 / 110.32 ms │          93.88 / 98.39 ±2.47 / 101.26 ms │ +1.08x faster │
│ QQuery 41 │           14.36 / 14.43 ±0.12 / 14.67 ms │           14.46 / 14.65 ±0.16 / 14.85 ms │     no change │
│ QQuery 42 │        108.03 / 109.47 ±1.73 / 112.48 ms │        106.21 / 108.14 ±2.13 / 112.28 ms │     no change │
│ QQuery 43 │              5.74 / 5.86 ±0.15 / 6.15 ms │              5.81 / 5.89 ±0.10 / 6.09 ms │     no change │
│ QQuery 44 │           12.05 / 12.13 ±0.07 / 12.25 ms │           11.80 / 11.92 ±0.08 / 12.02 ms │     no change │
│ QQuery 45 │           48.36 / 49.04 ±0.41 / 49.54 ms │           45.25 / 46.36 ±1.76 / 49.86 ms │ +1.06x faster │
│ QQuery 46 │              8.55 / 8.65 ±0.10 / 8.82 ms │              8.54 / 8.65 ±0.09 / 8.78 ms │     no change │
│ QQuery 47 │        719.91 / 725.71 ±5.92 / 736.18 ms │        726.95 / 729.93 ±3.38 / 734.46 ms │     no change │
│ QQuery 48 │        273.54 / 278.78 ±3.07 / 282.40 ms │        274.10 / 279.70 ±4.99 / 288.27 ms │     no change │
│ QQuery 49 │        249.08 / 250.88 ±1.75 / 254.01 ms │        243.77 / 246.29 ±1.55 / 248.54 ms │     no change │
│ QQuery 50 │        204.23 / 208.09 ±3.97 / 214.52 ms │        188.17 / 191.86 ±2.78 / 195.48 ms │ +1.08x faster │
│ QQuery 51 │        177.42 / 178.71 ±1.43 / 181.49 ms │        170.64 / 174.91 ±4.78 / 184.22 ms │     no change │
│ QQuery 52 │        107.31 / 110.07 ±2.70 / 115.08 ms │        106.79 / 107.81 ±0.91 / 109.42 ms │     no change │
│ QQuery 53 │        102.68 / 103.44 ±0.95 / 105.23 ms │        102.08 / 103.36 ±0.96 / 104.96 ms │     no change │
│ QQuery 54 │        144.83 / 145.92 ±0.97 / 147.73 ms │        145.54 / 146.44 ±0.73 / 147.59 ms │     no change │
│ QQuery 55 │        105.86 / 107.39 ±1.24 / 109.23 ms │        106.14 / 107.23 ±0.70 / 107.97 ms │     no change │
│ QQuery 56 │        139.68 / 141.20 ±1.23 / 143.01 ms │        138.92 / 141.25 ±1.74 / 144.31 ms │     no change │
│ QQuery 57 │        165.03 / 166.22 ±1.83 / 169.80 ms │        164.22 / 165.81 ±1.26 / 167.92 ms │     no change │
│ QQuery 58 │        307.26 / 310.22 ±1.89 / 312.80 ms │        289.38 / 290.76 ±1.20 / 292.94 ms │ +1.07x faster │
│ QQuery 59 │        193.28 / 195.04 ±0.93 / 195.84 ms │        192.56 / 193.31 ±0.74 / 194.40 ms │     no change │
│ QQuery 60 │        141.13 / 141.97 ±0.57 / 142.61 ms │        139.69 / 141.51 ±1.16 / 142.84 ms │     no change │
│ QQuery 61 │           13.22 / 14.11 ±1.59 / 17.28 ms │           13.55 / 13.73 ±0.11 / 13.87 ms │     no change │
│ QQuery 62 │        874.37 / 881.10 ±3.86 / 885.50 ms │        867.28 / 875.76 ±4.97 / 881.12 ms │     no change │
│ QQuery 63 │        101.98 / 102.96 ±0.72 / 103.67 ms │        102.04 / 103.25 ±1.16 / 105.22 ms │     no change │
│ QQuery 64 │        654.35 / 664.15 ±6.60 / 674.12 ms │        636.52 / 641.31 ±4.93 / 650.41 ms │     no change │
│ QQuery 65 │        244.82 / 248.60 ±4.48 / 257.27 ms │        249.81 / 252.96 ±3.62 / 259.78 ms │     no change │
│ QQuery 66 │        216.33 / 223.79 ±7.40 / 234.84 ms │        216.07 / 226.07 ±8.13 / 237.28 ms │     no change │
│ QQuery 67 │        293.94 / 298.65 ±3.38 / 303.94 ms │        296.18 / 303.36 ±6.65 / 315.72 ms │     no change │
│ QQuery 68 │              8.49 / 8.69 ±0.27 / 9.22 ms │              8.68 / 8.85 ±0.20 / 9.24 ms │     no change │
│ QQuery 69 │         97.54 / 100.16 ±3.96 / 108.00 ms │          96.97 / 99.51 ±3.47 / 106.36 ms │     no change │
│ QQuery 70 │        311.54 / 321.27 ±7.34 / 331.70 ms │        317.70 / 322.38 ±4.61 / 329.26 ms │     no change │
│ QQuery 71 │        132.85 / 135.85 ±4.07 / 143.92 ms │        132.97 / 135.17 ±2.11 / 138.47 ms │     no change │
│ QQuery 72 │       574.72 / 588.61 ±12.36 / 609.97 ms │        543.38 / 550.89 ±4.43 / 556.78 ms │ +1.07x faster │
│ QQuery 73 │              6.60 / 6.78 ±0.18 / 7.08 ms │              6.75 / 6.85 ±0.15 / 7.15 ms │     no change │
│ QQuery 74 │        588.43 / 592.80 ±2.81 / 596.76 ms │        591.65 / 598.95 ±5.95 / 609.80 ms │     no change │
│ QQuery 75 │        266.65 / 269.08 ±1.70 / 270.88 ms │        267.15 / 269.91 ±2.13 / 272.93 ms │     no change │
│ QQuery 76 │        129.00 / 129.45 ±0.28 / 129.78 ms │        129.46 / 130.12 ±0.80 / 131.67 ms │     no change │
│ QQuery 77 │        187.40 / 188.77 ±1.20 / 190.59 ms │        186.74 / 189.35 ±2.57 / 194.14 ms │     no change │
│ QQuery 78 │        328.20 / 330.95 ±2.44 / 334.90 ms │        313.24 / 315.93 ±2.07 / 319.42 ms │     no change │
│ QQuery 79 │        227.99 / 231.57 ±2.18 / 233.78 ms │        232.19 / 236.59 ±5.16 / 246.40 ms │     no change │
│ QQuery 80 │        316.49 / 320.76 ±2.41 / 323.27 ms │        300.89 / 303.49 ±2.34 / 307.70 ms │ +1.06x faster │
│ QQuery 81 │           26.01 / 26.23 ±0.27 / 26.74 ms │           26.43 / 26.66 ±0.26 / 27.12 ms │     no change │
│ QQuery 82 │           39.83 / 40.07 ±0.21 / 40.44 ms │           39.75 / 39.95 ±0.27 / 40.48 ms │     no change │
│ QQuery 83 │           37.02 / 37.29 ±0.25 / 37.69 ms │           35.68 / 35.91 ±0.17 / 36.11 ms │     no change │
│ QQuery 84 │           46.44 / 46.72 ±0.16 / 46.91 ms │           46.66 / 46.87 ±0.12 / 46.97 ms │     no change │
│ QQuery 85 │        140.74 / 142.64 ±1.81 / 146.08 ms │        140.60 / 142.34 ±2.43 / 147.01 ms │     no change │
│ QQuery 86 │           37.18 / 37.65 ±0.41 / 38.35 ms │           37.24 / 37.78 ±0.40 / 38.43 ms │     no change │
│ QQuery 87 │              3.44 / 3.55 ±0.19 / 3.93 ms │              3.45 / 3.57 ±0.18 / 3.92 ms │     no change │
│ QQuery 88 │        100.74 / 102.27 ±2.27 / 106.69 ms │         99.94 / 103.12 ±4.84 / 112.61 ms │     no change │
│ QQuery 89 │        116.15 / 117.30 ±1.17 / 119.53 ms │        116.90 / 117.92 ±0.54 / 118.37 ms │     no change │
│ QQuery 90 │           22.60 / 23.75 ±1.78 / 27.29 ms │           22.55 / 22.92 ±0.30 / 23.29 ms │     no change │
│ QQuery 91 │           58.73 / 59.60 ±0.59 / 60.32 ms │           58.98 / 60.25 ±1.11 / 62.15 ms │     no change │
│ QQuery 92 │           56.44 / 56.86 ±0.32 / 57.28 ms │           56.39 / 57.09 ±0.46 / 57.80 ms │     no change │
│ QQuery 93 │        179.54 / 180.47 ±0.69 / 181.39 ms │        161.93 / 164.34 ±2.72 / 169.43 ms │ +1.10x faster │
│ QQuery 94 │           60.55 / 60.79 ±0.13 / 60.93 ms │           61.03 / 61.44 ±0.38 / 61.92 ms │     no change │
│ QQuery 95 │        125.31 / 127.06 ±1.54 / 129.81 ms │        114.35 / 115.02 ±0.67 / 115.95 ms │ +1.10x faster │
│ QQuery 96 │           68.60 / 69.79 ±1.35 / 72.38 ms │           68.40 / 70.39 ±1.71 / 73.57 ms │     no change │
│ QQuery 97 │        116.91 / 117.81 ±0.80 / 119.04 ms │        112.86 / 113.81 ±0.64 / 114.71 ms │     no change │
│ QQuery 98 │        148.83 / 151.05 ±1.77 / 154.09 ms │        149.33 / 150.43 ±0.68 / 151.45 ms │     no change │
│ QQuery 99 │ 10773.22 / 10888.38 ±89.09 / 11034.34 ms │ 10774.89 / 10853.25 ±74.10 / 10953.10 ms │     no change │
└───────────┴──────────────────────────────────────────┴──────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                    ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                    │ 30797.39ms │
│ Total Time (repartition-fastrange)   │ 30511.46ms │
│ Average Time (HEAD)                  │   311.08ms │
│ Average Time (repartition-fastrange) │   308.20ms │
│ Queries Faster                       │         13 │
│ Queries Slower                       │          1 │
│ Queries with No Change               │         85 │
│ Queries with Failure                 │          0 │
└──────────────────────────────────────┴────────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 155.0s
Peak memory 6.2 GiB
Avg memory 5.6 GiB
CPU user 257.8s
CPU sys 8.2s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 155.0s
Peak memory 6.3 GiB
Avg memory 5.5 GiB
CPU user 254.6s
CPU sys 8.0s
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 repartition-fastrange
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃                 repartition-fastrange ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.26 / 4.83 ±6.95 / 18.73 ms │          1.25 / 4.84 ±7.01 / 18.85 ms │     no change │
│ QQuery 1  │        13.14 / 13.68 ±0.35 / 14.04 ms │        12.83 / 13.67 ±0.46 / 14.16 ms │     no change │
│ QQuery 2  │        38.05 / 38.43 ±0.39 / 38.95 ms │        37.64 / 37.87 ±0.26 / 38.34 ms │     no change │
│ QQuery 3  │        33.20 / 34.55 ±1.19 / 36.24 ms │        33.00 / 33.45 ±0.31 / 33.93 ms │     no change │
│ QQuery 4  │     245.50 / 256.77 ±8.17 / 266.99 ms │     266.06 / 268.49 ±3.85 / 276.15 ms │     no change │
│ QQuery 5  │     285.41 / 296.12 ±8.07 / 305.30 ms │    294.09 / 312.14 ±14.43 / 325.66 ms │  1.05x slower │
│ QQuery 6  │           6.96 / 7.21 ±0.19 / 7.53 ms │           6.64 / 7.16 ±0.32 / 7.61 ms │     no change │
│ QQuery 7  │        13.88 / 13.99 ±0.08 / 14.12 ms │        14.74 / 14.95 ±0.12 / 15.10 ms │  1.07x slower │
│ QQuery 8  │     327.22 / 333.99 ±5.99 / 343.86 ms │    317.24 / 331.04 ±10.87 / 346.67 ms │     no change │
│ QQuery 9  │     454.92 / 459.76 ±3.94 / 466.42 ms │     415.56 / 420.25 ±3.88 / 425.92 ms │ +1.09x faster │
│ QQuery 10 │        72.56 / 73.15 ±0.44 / 73.62 ms │        72.46 / 73.25 ±0.53 / 73.96 ms │     no change │
│ QQuery 11 │        84.30 / 85.93 ±2.39 / 90.66 ms │        84.25 / 84.76 ±0.56 / 85.80 ms │     no change │
│ QQuery 12 │     287.95 / 293.06 ±4.92 / 299.10 ms │     284.63 / 287.94 ±2.69 / 291.91 ms │     no change │
│ QQuery 13 │     438.31 / 446.51 ±7.72 / 457.10 ms │    398.79 / 425.48 ±28.15 / 466.11 ms │     no change │
│ QQuery 14 │    288.03 / 312.89 ±13.54 / 325.08 ms │     313.76 / 320.81 ±6.85 / 332.76 ms │     no change │
│ QQuery 15 │     283.19 / 291.21 ±7.86 / 305.95 ms │     315.62 / 319.90 ±3.42 / 324.93 ms │  1.10x slower │
│ QQuery 16 │     624.09 / 626.89 ±2.28 / 630.51 ms │    641.52 / 652.60 ±13.02 / 677.08 ms │     no change │
│ QQuery 17 │     623.22 / 629.71 ±4.30 / 636.37 ms │     612.88 / 621.81 ±6.55 / 631.48 ms │     no change │
│ QQuery 18 │ 1259.54 / 1296.56 ±58.75 / 1413.54 ms │ 1230.68 / 1298.53 ±60.09 / 1394.79 ms │     no change │
│ QQuery 19 │        30.63 / 35.80 ±9.16 / 54.07 ms │       30.41 / 36.78 ±10.98 / 58.70 ms │     no change │
│ QQuery 20 │     534.22 / 542.12 ±7.74 / 556.33 ms │    519.56 / 533.42 ±12.57 / 555.53 ms │     no change │
│ QQuery 21 │     601.45 / 619.09 ±9.45 / 628.88 ms │     596.10 / 603.42 ±9.05 / 619.98 ms │     no change │
│ QQuery 22 │  1058.20 / 1069.25 ±8.46 / 1082.33 ms │  1071.26 / 1077.76 ±5.18 / 1085.51 ms │     no change │
│ QQuery 23 │ 3334.80 / 3396.81 ±70.83 / 3490.84 ms │ 3346.12 / 3415.61 ±66.44 / 3515.52 ms │     no change │
│ QQuery 24 │        42.45 / 44.46 ±3.01 / 50.32 ms │        41.96 / 43.79 ±2.78 / 49.30 ms │     no change │
│ QQuery 25 │     117.94 / 120.91 ±2.88 / 125.09 ms │     113.54 / 117.64 ±6.58 / 130.70 ms │     no change │
│ QQuery 26 │        44.74 / 45.78 ±1.35 / 48.23 ms │        42.37 / 43.46 ±1.38 / 46.18 ms │ +1.05x faster │
│ QQuery 27 │     695.04 / 703.10 ±7.75 / 712.59 ms │    677.44 / 693.73 ±12.27 / 705.26 ms │     no change │
│ QQuery 28 │ 3004.00 / 3062.44 ±45.52 / 3138.58 ms │ 3025.69 / 3094.76 ±44.33 / 3137.46 ms │     no change │
│ QQuery 29 │       41.97 / 50.02 ±14.82 / 79.64 ms │        42.99 / 46.89 ±6.59 / 60.05 ms │ +1.07x faster │
│ QQuery 30 │     311.06 / 316.51 ±6.79 / 329.01 ms │     310.43 / 322.24 ±8.74 / 333.77 ms │     no change │
│ QQuery 31 │     307.39 / 310.77 ±2.99 / 314.69 ms │     296.03 / 304.60 ±5.63 / 313.55 ms │     no change │
│ QQuery 32 │ 1009.74 / 1029.61 ±16.98 / 1055.73 ms │   979.81 / 995.19 ±16.55 / 1022.61 ms │     no change │
│ QQuery 33 │ 1452.14 / 1527.60 ±90.95 / 1644.91 ms │ 1470.74 / 1559.55 ±87.83 / 1677.70 ms │     no change │
│ QQuery 34 │ 1465.30 / 1564.23 ±83.53 / 1685.44 ms │ 1492.23 / 1504.29 ±17.42 / 1538.64 ms │     no change │
│ QQuery 35 │    290.95 / 300.87 ±12.12 / 324.00 ms │     284.65 / 289.72 ±4.24 / 295.54 ms │     no change │
│ QQuery 36 │        66.14 / 71.06 ±6.03 / 82.77 ms │        62.13 / 67.84 ±7.16 / 81.60 ms │     no change │
│ QQuery 37 │        36.41 / 39.07 ±3.01 / 43.30 ms │        35.33 / 40.81 ±2.88 / 43.73 ms │     no change │
│ QQuery 38 │        41.19 / 42.18 ±0.83 / 43.40 ms │        40.77 / 43.08 ±2.43 / 47.55 ms │     no change │
│ QQuery 39 │    125.23 / 138.99 ±11.36 / 155.76 ms │     126.85 / 133.24 ±4.96 / 140.39 ms │     no change │
│ QQuery 40 │        14.64 / 15.39 ±1.26 / 17.90 ms │        14.51 / 15.96 ±2.25 / 20.43 ms │     no change │
│ QQuery 41 │        13.73 / 15.57 ±2.94 / 21.44 ms │        13.89 / 16.20 ±2.81 / 21.34 ms │     no change │
│ QQuery 42 │        13.57 / 13.69 ±0.11 / 13.89 ms │        13.34 / 14.94 ±3.02 / 20.97 ms │  1.09x slower │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                    ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                    │ 20590.58ms │
│ Total Time (repartition-fastrange)   │ 20543.82ms │
│ Average Time (HEAD)                  │   478.85ms │
│ Average Time (repartition-fastrange) │   477.76ms │
│ Queries Faster                       │          3 │
│ Queries Slower                       │          4 │
│ Queries with No Change               │         36 │
│ Queries with Failure                 │          0 │
└──────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 105.0s
Peak memory 29.8 GiB
Avg memory 23.1 GiB
CPU user 1088.0s
CPU sys 67.3s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 105.0s
Peak memory 30.3 GiB
Avg memory 23.1 GiB
CPU user 1088.2s
CPU sys 68.3s
Peak spill 0 B

File an issue against this benchmark runner

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

core Core DataFusion crate physical-plan Changes to the physical-plan crate sqllogictest SQL Logic Tests (.slt)

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Use fastrange instead of modulo for hash partition assignment

3 participants