Skip to content

combine #21351 + #21580 for benchmarking (draft, do not merge)#21731

Draft
Dandandan wants to merge 19 commits intoapache:mainfrom
Dandandan:combine-21351-21580
Draft

combine #21351 + #21580 for benchmarking (draft, do not merge)#21731
Dandandan wants to merge 19 commits intoapache:mainfrom
Dandandan:combine-21351-21580

Conversation

@Dandandan
Copy link
Copy Markdown
Contributor

Purpose

Test branch combining:

The goal is to measure whether the two optimizations compound on TopK-style queries (e.g. ORDER BY col LIMIT N on multi-file / multi-RG parquet), since they operate at different granularities:

Conflict resolution

Only one real conflict: datafusion/datasource/src/source.rs.

#21580 had been rebased on top of upstream #21576 (which removes the explicit as_any method on DataSource in favor of an Any supertrait bound). #21351's base predates #21576, so it still uses the explicit as_any method.

Resolved in favor of #21351's style:

  • Kept DataSource: Send + Sync + Debug with an as_any(&self) -> &dyn Any method.
  • Restored as_any impls on FileScanConfig and MemorySourceConfig.
  • Added use std::any::Any imports in file_scan_config/mod.rs and memory.rs.
  • Rewrote dyn DataSource::{is, downcast_ref} helpers to call self.as_any() (with a T: 'static bound).

Status

Draft — not for merge. This is an integration branch for benchmarking. The two PRs should be reviewed and merged independently upstream.

  • cargo check --workspace passes
  • cargo test not yet run
  • Benchmarks not yet run

Follow-ups

alamb and others added 19 commits April 14, 2026 11:49
Co-authored-by: Oleks V <comphead@users.noreply.github.com>
When sort pushdown is active, reorder row groups within each file by
their min/max statistics to match the requested sort order. This helps
TopK queries find optimal values first via dynamic filter pushdown.

- Add reorder_by_statistics to PreparedAccessPlan that sorts
  row_group_indexes by the first sort column's min values
- Pass sort order from ParquetSource::try_pushdown_sort through to
  the opener via sort_order_for_reorder field
- Reorder happens after pruning but before reverse (they compose)
- Gracefully skips reorder when statistics unavailable, sort expr
  is not a simple column, row_selection present, or <=1 row groups

Closes apache#21317
For overlapping row group ranges, sorting by min for DESC can pick
a worse first RG. Example: RG0(50-60) vs RG1(40-100) — min DESC
picks RG0 first (max=60), but RG1 contains the largest values (max=100).

Use min for ASC and max for DESC to correctly prioritize the row
group most likely to contain the optimal values for TopK.
When sort_order_for_reorder is set, reorder_by_statistics already
handles the sort direction (min for ASC, max for DESC). Applying
reverse on top would undo the reorder. Use else-if so only one
strategy is applied.

Also adds sort_pushdown_inexact benchmark with pushdown_filters
enabled to measure RG reorder benefit on wide-row TopK queries.
Address review feedback: extract row group optimization into a trait
instead of post-pass flags. prepare_with_optimizer() integrates the
optimization into the access plan preparation step.

- AccessPlanOptimizer trait with ReverseRowGroups and ReorderByStatistics
- prepare_with_optimizer() applies optimizer inside prepare flow
- Original prepare() unchanged for backward compatibility
…lly exclusive

Previously reorder_by_statistics and reverse_row_groups were mutually
exclusive (else-if). This meant DESC queries on unsorted data could
only get one optimization. Now they compose: reorder always sorts RGs
by min ASC, then reverse flips for DESC. This ensures correct results
for both sorted and unsorted inputs without regression.

Also removes prepare_with_optimizer in favor of calling optimize()
directly on each optimizer, and simplifies reorder_by_statistics to
always use min ASC (direction handled by reverse).
…e#21351 (dynamic work scheduling)

Conflict resolution in datafusion/datasource/src/source.rs: kept the
as_any() method on DataSource (from apache#21351) instead of the Any
supertrait (from apache#21580). Restored as_any() impls on FileScanConfig
and MemorySourceConfig, added missing std::any::Any imports, and
switched dyn DataSource::{is,downcast_ref} to use as_any().
@github-actions github-actions bot added sqllogictest SQL Logic Tests (.slt) datasource Changes to the datasource crate labels Apr 19, 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-c4275926615-1523-k4v9g 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 combine-21351-21580 (e195044) to afc0784 (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-c4275926615-1524-7fv99 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 combine-21351-21580 (e195044) to afc0784 (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-c4275926615-1525-2l777 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 combine-21351-21580 (e195044) to afc0784 (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 combine-21351-21580
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                     HEAD ┃                      combine-21351-21580 ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │              6.64 / 7.06 ±0.78 / 8.62 ms │              6.49 / 6.94 ±0.77 / 8.47 ms │     no change │
│ QQuery 2  │        147.75 / 148.54 ±0.48 / 149.13 ms │        144.01 / 144.69 ±0.43 / 145.22 ms │     no change │
│ QQuery 3  │        112.94 / 113.35 ±0.36 / 113.85 ms │        111.44 / 112.61 ±1.30 / 115.15 ms │     no change │
│ QQuery 4  │    1211.48 / 1247.74 ±23.03 / 1273.40 ms │    1213.22 / 1239.98 ±17.31 / 1258.69 ms │     no change │
│ QQuery 5  │        171.74 / 173.01 ±1.05 / 174.16 ms │        171.72 / 173.16 ±1.10 / 174.45 ms │     no change │
│ QQuery 6  │       821.97 / 841.56 ±14.58 / 864.05 ms │       810.56 / 831.94 ±27.48 / 884.59 ms │     no change │
│ QQuery 7  │        342.57 / 344.43 ±1.18 / 346.28 ms │        335.32 / 340.37 ±3.45 / 344.35 ms │     no change │
│ QQuery 8  │        117.00 / 118.23 ±1.08 / 119.84 ms │        114.82 / 116.55 ±1.16 / 117.95 ms │     no change │
│ QQuery 9  │        100.29 / 104.31 ±2.23 / 106.68 ms │        100.11 / 105.02 ±2.50 / 106.84 ms │     no change │
│ QQuery 10 │        104.24 / 105.56 ±1.02 / 107.12 ms │        103.03 / 104.71 ±1.21 / 106.56 ms │     no change │
│ QQuery 11 │        852.79 / 869.12 ±9.11 / 877.70 ms │        842.14 / 852.46 ±5.84 / 857.95 ms │     no change │
│ QQuery 12 │           44.11 / 45.70 ±0.98 / 46.80 ms │           43.71 / 45.27 ±1.49 / 47.80 ms │     no change │
│ QQuery 13 │        395.52 / 400.07 ±2.97 / 404.36 ms │        395.10 / 397.57 ±1.53 / 399.17 ms │     no change │
│ QQuery 14 │      992.59 / 1000.45 ±9.47 / 1017.94 ms │        979.82 / 987.79 ±4.75 / 994.11 ms │     no change │
│ QQuery 15 │           14.55 / 15.82 ±1.00 / 17.15 ms │           14.95 / 15.45 ±0.70 / 16.79 ms │     no change │
│ QQuery 16 │              7.18 / 7.81 ±0.66 / 9.02 ms │             7.20 / 8.39 ±1.28 / 10.69 ms │  1.07x slower │
│ QQuery 17 │        226.50 / 229.15 ±1.78 / 231.34 ms │        226.63 / 227.89 ±1.11 / 229.88 ms │     no change │
│ QQuery 18 │        126.91 / 127.77 ±0.88 / 129.09 ms │        126.76 / 127.61 ±0.70 / 128.76 ms │     no change │
│ QQuery 19 │        151.99 / 153.67 ±0.96 / 154.97 ms │        151.65 / 154.53 ±1.81 / 156.68 ms │     no change │
│ QQuery 20 │           13.49 / 14.28 ±0.68 / 15.51 ms │           13.29 / 14.06 ±0.67 / 15.19 ms │     no change │
│ QQuery 21 │           18.96 / 19.85 ±0.54 / 20.51 ms │           18.63 / 18.96 ±0.24 / 19.21 ms │     no change │
│ QQuery 22 │        470.88 / 472.93 ±1.58 / 474.84 ms │        470.55 / 475.31 ±3.19 / 478.82 ms │     no change │
│ QQuery 23 │        852.34 / 858.57 ±5.20 / 864.82 ms │        848.90 / 854.71 ±5.37 / 863.47 ms │     no change │
│ QQuery 24 │        378.90 / 381.56 ±1.89 / 383.53 ms │        375.66 / 377.66 ±1.36 / 379.61 ms │     no change │
│ QQuery 25 │        337.45 / 340.90 ±3.79 / 348.14 ms │        335.69 / 339.76 ±2.52 / 342.51 ms │     no change │
│ QQuery 26 │           80.88 / 82.02 ±1.00 / 83.85 ms │           80.06 / 81.34 ±1.19 / 83.58 ms │     no change │
│ QQuery 27 │              6.83 / 7.26 ±0.23 / 7.46 ms │              7.09 / 7.88 ±1.00 / 9.83 ms │  1.09x slower │
│ QQuery 28 │        147.70 / 149.40 ±1.67 / 152.46 ms │        147.48 / 149.44 ±2.08 / 153.01 ms │     no change │
│ QQuery 29 │        277.18 / 281.07 ±3.05 / 285.89 ms │        277.87 / 279.00 ±0.97 / 280.79 ms │     no change │
│ QQuery 30 │           42.27 / 43.70 ±1.29 / 45.58 ms │           42.22 / 43.86 ±1.31 / 45.96 ms │     no change │
│ QQuery 31 │        169.71 / 171.40 ±1.92 / 173.86 ms │        166.15 / 168.81 ±1.38 / 170.08 ms │     no change │
│ QQuery 32 │           13.65 / 14.12 ±0.39 / 14.60 ms │           13.30 / 13.68 ±0.37 / 14.34 ms │     no change │
│ QQuery 33 │        139.90 / 141.93 ±1.75 / 144.15 ms │        140.72 / 141.24 ±0.47 / 141.98 ms │     no change │
│ QQuery 34 │              6.75 / 6.96 ±0.23 / 7.38 ms │              6.82 / 7.08 ±0.29 / 7.63 ms │     no change │
│ QQuery 35 │        105.13 / 106.13 ±0.72 / 107.35 ms │        103.67 / 106.95 ±2.18 / 110.26 ms │     no change │
│ QQuery 36 │              6.44 / 6.64 ±0.13 / 6.82 ms │              6.52 / 6.75 ±0.16 / 6.95 ms │     no change │
│ QQuery 37 │             8.47 / 9.32 ±1.02 / 11.32 ms │             8.42 / 9.48 ±0.93 / 10.85 ms │     no change │
│ QQuery 38 │           81.48 / 85.66 ±2.59 / 89.60 ms │           83.71 / 86.86 ±3.34 / 92.14 ms │     no change │
│ QQuery 39 │        121.87 / 123.88 ±1.65 / 125.84 ms │        123.05 / 125.35 ±2.40 / 129.92 ms │     no change │
│ QQuery 40 │        109.40 / 114.92 ±5.47 / 125.25 ms │        107.99 / 113.16 ±7.90 / 128.51 ms │     no change │
│ QQuery 41 │           14.24 / 15.89 ±1.06 / 16.97 ms │           14.54 / 15.02 ±0.35 / 15.46 ms │ +1.06x faster │
│ QQuery 42 │        108.48 / 110.05 ±1.18 / 111.37 ms │        104.70 / 107.44 ±1.63 / 109.14 ms │     no change │
│ QQuery 43 │              6.04 / 6.17 ±0.14 / 6.43 ms │              5.85 / 5.98 ±0.15 / 6.27 ms │     no change │
│ QQuery 44 │           11.80 / 11.91 ±0.11 / 12.05 ms │           11.34 / 11.74 ±0.29 / 12.20 ms │     no change │
│ QQuery 45 │           49.63 / 51.27 ±1.22 / 52.73 ms │           49.51 / 50.58 ±0.88 / 51.65 ms │     no change │
│ QQuery 46 │              8.19 / 8.52 ±0.19 / 8.76 ms │              8.14 / 8.41 ±0.26 / 8.75 ms │     no change │
│ QQuery 47 │        675.88 / 680.63 ±3.99 / 686.69 ms │        669.46 / 677.47 ±4.68 / 681.38 ms │     no change │
│ QQuery 48 │        284.48 / 285.45 ±0.73 / 286.67 ms │        284.39 / 288.38 ±3.34 / 294.57 ms │     no change │
│ QQuery 49 │        252.05 / 255.18 ±2.16 / 258.05 ms │        249.20 / 251.11 ±1.23 / 252.96 ms │     no change │
│ QQuery 50 │        217.88 / 220.80 ±2.10 / 224.32 ms │        212.88 / 219.64 ±5.31 / 227.47 ms │     no change │
│ QQuery 51 │        181.18 / 182.44 ±1.62 / 185.48 ms │        175.84 / 180.11 ±2.78 / 184.17 ms │     no change │
│ QQuery 52 │        106.68 / 108.64 ±2.46 / 113.42 ms │        105.30 / 106.80 ±1.61 / 109.37 ms │     no change │
│ QQuery 53 │        101.11 / 101.95 ±0.65 / 102.96 ms │         99.86 / 101.45 ±1.21 / 102.91 ms │     no change │
│ QQuery 54 │        142.63 / 145.03 ±1.63 / 147.09 ms │        143.31 / 145.28 ±2.29 / 148.13 ms │     no change │
│ QQuery 55 │        105.09 / 106.49 ±1.58 / 109.34 ms │        104.81 / 106.32 ±1.37 / 108.91 ms │     no change │
│ QQuery 56 │        138.68 / 141.38 ±2.10 / 144.77 ms │        138.60 / 139.99 ±1.20 / 141.84 ms │     no change │
│ QQuery 57 │        169.90 / 171.83 ±1.57 / 174.62 ms │        172.04 / 173.11 ±1.36 / 175.64 ms │     no change │
│ QQuery 58 │        271.65 / 274.14 ±1.44 / 275.87 ms │        269.38 / 272.35 ±1.76 / 274.53 ms │     no change │
│ QQuery 59 │        197.09 / 199.65 ±1.73 / 201.74 ms │        194.61 / 196.94 ±1.81 / 199.27 ms │     no change │
│ QQuery 60 │        139.90 / 142.41 ±1.68 / 144.78 ms │        140.57 / 141.39 ±0.60 / 142.34 ms │     no change │
│ QQuery 61 │           12.76 / 13.03 ±0.24 / 13.41 ms │           12.81 / 13.03 ±0.18 / 13.27 ms │     no change │
│ QQuery 62 │       889.63 / 910.55 ±12.87 / 924.31 ms │       858.59 / 897.33 ±22.52 / 924.53 ms │     no change │
│ QQuery 63 │        101.73 / 105.97 ±4.12 / 113.23 ms │        102.91 / 104.78 ±2.43 / 109.59 ms │     no change │
│ QQuery 64 │        673.99 / 679.10 ±4.33 / 687.09 ms │        670.43 / 676.90 ±3.46 / 680.89 ms │     no change │
│ QQuery 65 │        245.27 / 247.01 ±1.45 / 249.34 ms │        245.90 / 248.36 ±2.03 / 251.18 ms │     no change │
│ QQuery 66 │       252.35 / 272.06 ±15.53 / 300.01 ms │       218.89 / 241.76 ±16.32 / 265.85 ms │ +1.13x faster │
│ QQuery 67 │        304.01 / 312.23 ±8.95 / 329.11 ms │        299.74 / 312.32 ±6.39 / 317.34 ms │     no change │
│ QQuery 68 │            8.60 / 10.67 ±1.70 / 13.52 ms │            8.72 / 10.33 ±1.51 / 13.14 ms │     no change │
│ QQuery 69 │        100.42 / 103.16 ±1.92 / 106.17 ms │        101.28 / 102.83 ±1.27 / 105.02 ms │     no change │
│ QQuery 70 │        341.54 / 352.57 ±9.49 / 369.08 ms │        331.18 / 338.92 ±9.53 / 357.20 ms │     no change │
│ QQuery 71 │        134.86 / 136.98 ±1.61 / 139.39 ms │        134.38 / 136.52 ±1.75 / 138.71 ms │     no change │
│ QQuery 72 │        602.93 / 612.39 ±8.09 / 623.17 ms │        607.87 / 617.88 ±7.24 / 625.34 ms │     no change │
│ QQuery 73 │              6.50 / 7.63 ±0.78 / 8.72 ms │              6.44 / 7.06 ±0.80 / 8.60 ms │ +1.08x faster │
│ QQuery 74 │        534.75 / 541.16 ±5.69 / 550.02 ms │       533.54 / 547.59 ±15.32 / 577.06 ms │     no change │
│ QQuery 75 │        274.33 / 276.32 ±1.32 / 277.83 ms │        270.61 / 273.42 ±2.25 / 277.51 ms │     no change │
│ QQuery 76 │        129.99 / 131.14 ±0.94 / 132.36 ms │        129.28 / 130.68 ±1.08 / 132.54 ms │     no change │
│ QQuery 77 │        187.47 / 189.30 ±0.96 / 190.28 ms │        186.46 / 188.37 ±1.59 / 191.18 ms │     no change │
│ QQuery 78 │        336.90 / 339.27 ±1.76 / 341.53 ms │        334.09 / 339.11 ±3.86 / 343.53 ms │     no change │
│ QQuery 79 │        226.80 / 227.93 ±0.71 / 228.56 ms │        224.83 / 230.68 ±3.47 / 234.27 ms │     no change │
│ QQuery 80 │        323.19 / 324.92 ±1.06 / 326.49 ms │        323.41 / 327.46 ±2.11 / 329.23 ms │     no change │
│ QQuery 81 │           26.10 / 28.42 ±2.00 / 30.82 ms │           26.22 / 27.75 ±1.08 / 29.49 ms │     no change │
│ QQuery 82 │           39.75 / 41.66 ±1.31 / 43.38 ms │           39.53 / 41.14 ±1.92 / 44.77 ms │     no change │
│ QQuery 83 │           37.66 / 38.55 ±0.80 / 40.03 ms │           37.65 / 38.65 ±0.82 / 40.00 ms │     no change │
│ QQuery 84 │           46.96 / 49.27 ±1.41 / 51.37 ms │           47.73 / 48.30 ±0.35 / 48.76 ms │     no change │
│ QQuery 85 │        146.31 / 148.00 ±1.13 / 149.68 ms │        144.52 / 146.79 ±1.23 / 148.10 ms │     no change │
│ QQuery 86 │           38.43 / 39.29 ±0.63 / 40.25 ms │           38.36 / 39.22 ±0.62 / 40.06 ms │     no change │
│ QQuery 87 │           82.95 / 86.82 ±3.02 / 92.06 ms │           83.58 / 86.48 ±2.62 / 90.47 ms │     no change │
│ QQuery 88 │          97.67 / 99.32 ±1.20 / 100.81 ms │           98.21 / 98.75 ±0.49 / 99.53 ms │     no change │
│ QQuery 89 │        116.78 / 119.14 ±1.25 / 120.15 ms │        117.22 / 118.11 ±0.80 / 119.29 ms │     no change │
│ QQuery 90 │           22.96 / 23.72 ±0.61 / 24.81 ms │           23.60 / 23.93 ±0.45 / 24.82 ms │     no change │
│ QQuery 91 │           61.24 / 63.46 ±1.79 / 65.57 ms │           59.02 / 62.71 ±2.27 / 65.32 ms │     no change │
│ QQuery 92 │           56.04 / 57.20 ±0.92 / 58.57 ms │           56.31 / 57.32 ±1.10 / 59.42 ms │     no change │
│ QQuery 93 │        185.29 / 186.84 ±0.83 / 187.74 ms │        185.27 / 185.93 ±0.50 / 186.74 ms │     no change │
│ QQuery 94 │           61.56 / 62.01 ±0.30 / 62.48 ms │           60.42 / 61.40 ±0.67 / 62.31 ms │     no change │
│ QQuery 95 │        128.07 / 130.42 ±1.39 / 131.94 ms │        127.29 / 129.33 ±1.46 / 131.63 ms │     no change │
│ QQuery 96 │           68.92 / 72.43 ±1.83 / 74.22 ms │           72.11 / 72.63 ±0.79 / 74.18 ms │     no change │
│ QQuery 97 │        124.62 / 126.01 ±1.49 / 128.75 ms │        123.43 / 125.82 ±1.96 / 128.14 ms │     no change │
│ QQuery 98 │        151.17 / 153.82 ±1.83 / 156.45 ms │        152.48 / 153.60 ±1.10 / 155.36 ms │     no change │
│ QQuery 99 │ 10665.51 / 10717.80 ±27.32 / 10738.94 ms │ 10641.43 / 10674.08 ±26.57 / 10713.72 ms │     no change │
└───────────┴──────────────────────────────────────────┴──────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                  ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                  │ 30743.24ms │
│ Total Time (combine-21351-21580)   │ 30551.06ms │
│ Average Time (HEAD)                │   310.54ms │
│ Average Time (combine-21351-21580) │   308.60ms │
│ Queries Faster                     │          3 │
│ Queries Slower                     │          2 │
│ Queries with No Change             │         94 │
│ Queries with Failure               │          0 │
└────────────────────────────────────┴────────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 154.1s
Peak memory 5.5 GiB
Avg memory 4.5 GiB
CPU user 254.0s
CPU sys 16.8s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 153.0s
Peak memory 5.6 GiB
Avg memory 4.4 GiB
CPU user 253.4s
CPU sys 16.2s
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 combine-21351-21580
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃                   combine-21351-21580 ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.22 / 4.38 ±6.24 / 16.85 ms │          1.21 / 4.50 ±6.44 / 17.38 ms │     no change │
│ QQuery 1  │        15.43 / 15.87 ±0.60 / 16.98 ms │        11.89 / 12.53 ±0.33 / 12.83 ms │ +1.27x faster │
│ QQuery 2  │        44.28 / 44.48 ±0.19 / 44.81 ms │        36.82 / 37.19 ±0.26 / 37.55 ms │ +1.20x faster │
│ QQuery 3  │        40.09 / 41.17 ±1.25 / 43.62 ms │        32.82 / 34.87 ±2.05 / 37.67 ms │ +1.18x faster │
│ QQuery 4  │     277.81 / 284.66 ±4.36 / 290.70 ms │     262.26 / 265.78 ±3.00 / 269.34 ms │ +1.07x faster │
│ QQuery 5  │     331.30 / 335.95 ±3.20 / 340.20 ms │     294.22 / 300.48 ±3.74 / 305.12 ms │ +1.12x faster │
│ QQuery 6  │           5.00 / 6.08 ±1.27 / 8.42 ms │          7.05 / 8.83 ±1.42 / 10.51 ms │  1.45x slower │
│ QQuery 7  │        17.04 / 19.70 ±4.06 / 27.66 ms │        13.74 / 14.20 ±0.51 / 15.10 ms │ +1.39x faster │
│ QQuery 8  │    400.58 / 407.89 ±10.01 / 427.65 ms │     365.67 / 371.68 ±4.90 / 380.58 ms │ +1.10x faster │
│ QQuery 9  │     640.29 / 648.31 ±5.24 / 655.47 ms │    511.53 / 531.34 ±14.30 / 550.83 ms │ +1.22x faster │
│ QQuery 10 │        89.62 / 92.12 ±2.05 / 95.88 ms │        74.72 / 77.22 ±2.47 / 81.80 ms │ +1.19x faster │
│ QQuery 11 │     102.27 / 103.70 ±1.02 / 104.97 ms │        85.26 / 86.51 ±0.79 / 87.49 ms │ +1.20x faster │
│ QQuery 12 │     327.76 / 339.35 ±8.34 / 352.44 ms │     293.67 / 295.64 ±1.89 / 298.71 ms │ +1.15x faster │
│ QQuery 13 │    441.81 / 465.03 ±16.38 / 486.69 ms │    419.23 / 436.00 ±10.43 / 448.88 ms │ +1.07x faster │
│ QQuery 14 │     340.95 / 345.70 ±2.61 / 348.20 ms │     304.97 / 307.68 ±3.22 / 313.84 ms │ +1.12x faster │
│ QQuery 15 │    347.59 / 365.56 ±18.33 / 398.20 ms │    322.75 / 339.81 ±20.43 / 376.51 ms │ +1.08x faster │
│ QQuery 16 │    699.93 / 715.31 ±13.69 / 739.43 ms │    680.42 / 701.01 ±31.30 / 763.07 ms │     no change │
│ QQuery 17 │     699.93 / 705.47 ±3.75 / 709.11 ms │    683.46 / 717.32 ±24.16 / 742.72 ms │     no change │
│ QQuery 18 │ 1435.32 / 1465.25 ±30.03 / 1515.32 ms │ 1442.50 / 1471.53 ±19.08 / 1497.93 ms │     no change │
│ QQuery 19 │        36.48 / 39.90 ±3.98 / 47.68 ms │      30.23 / 45.18 ±28.94 / 103.05 ms │  1.13x slower │
│ QQuery 20 │    714.74 / 731.24 ±17.01 / 755.19 ms │    515.98 / 524.04 ±11.34 / 546.48 ms │ +1.40x faster │
│ QQuery 21 │    762.11 / 784.65 ±29.78 / 842.88 ms │     592.61 / 593.82 ±1.56 / 596.87 ms │ +1.32x faster │
│ QQuery 22 │  1133.92 / 1139.39 ±5.78 / 1150.33 ms │  1047.69 / 1053.38 ±3.97 / 1058.27 ms │ +1.08x faster │
│ QQuery 23 │ 3079.78 / 3120.03 ±28.76 / 3169.26 ms │ 3264.88 / 3279.46 ±11.29 / 3297.61 ms │  1.05x slower │
│ QQuery 24 │     102.17 / 107.04 ±5.27 / 116.27 ms │        46.03 / 46.91 ±0.67 / 47.94 ms │ +2.28x faster │
│ QQuery 25 │     136.95 / 140.77 ±2.29 / 143.44 ms │     113.65 / 115.03 ±1.22 / 116.95 ms │ +1.22x faster │
│ QQuery 26 │     100.03 / 101.29 ±1.36 / 103.82 ms │        42.26 / 43.56 ±1.18 / 45.49 ms │ +2.33x faster │
│ QQuery 27 │    849.85 / 858.96 ±10.50 / 878.51 ms │     657.72 / 665.55 ±5.34 / 671.64 ms │ +1.29x faster │
│ QQuery 28 │ 3258.07 / 3289.13 ±19.21 / 3318.23 ms │ 2962.16 / 2995.67 ±22.78 / 3024.02 ms │ +1.10x faster │
│ QQuery 29 │        50.61 / 55.10 ±6.51 / 67.75 ms │        42.62 / 47.06 ±4.12 / 52.75 ms │ +1.17x faster │
│ QQuery 30 │     365.00 / 374.38 ±7.02 / 383.01 ms │     321.55 / 326.51 ±5.86 / 337.94 ms │ +1.15x faster │
│ QQuery 31 │     368.87 / 385.05 ±8.58 / 393.93 ms │     327.52 / 332.31 ±4.69 / 340.92 ms │ +1.16x faster │
│ QQuery 32 │ 1205.58 / 1258.06 ±35.54 / 1308.72 ms │ 1206.98 / 1249.60 ±37.78 / 1314.12 ms │     no change │
│ QQuery 33 │ 1501.37 / 1558.33 ±29.15 / 1583.52 ms │ 1482.77 / 1565.78 ±67.02 / 1676.22 ms │     no change │
│ QQuery 34 │ 1477.61 / 1507.50 ±20.80 / 1530.91 ms │ 1470.81 / 1589.85 ±93.48 / 1748.75 ms │  1.05x slower │
│ QQuery 35 │     393.17 / 396.13 ±2.95 / 400.91 ms │     316.65 / 322.73 ±8.78 / 340.17 ms │ +1.23x faster │
│ QQuery 36 │     121.87 / 122.72 ±0.86 / 123.82 ms │        65.20 / 68.75 ±2.52 / 72.34 ms │ +1.79x faster │
│ QQuery 37 │        47.28 / 50.14 ±1.45 / 51.35 ms │        38.68 / 39.11 ±0.30 / 39.57 ms │ +1.28x faster │
│ QQuery 38 │        75.93 / 76.50 ±0.48 / 77.07 ms │        41.52 / 46.37 ±2.84 / 49.27 ms │ +1.65x faster │
│ QQuery 39 │     215.98 / 223.09 ±5.69 / 229.35 ms │     125.71 / 131.83 ±4.98 / 137.59 ms │ +1.69x faster │
│ QQuery 40 │        23.25 / 26.30 ±2.42 / 29.73 ms │        15.55 / 18.63 ±1.92 / 20.48 ms │ +1.41x faster │
│ QQuery 41 │        19.89 / 23.78 ±2.29 / 27.09 ms │        13.96 / 15.83 ±1.14 / 17.02 ms │ +1.50x faster │
│ QQuery 42 │        20.30 / 20.81 ±0.46 / 21.56 ms │        13.39 / 13.76 ±0.46 / 14.66 ms │ +1.51x faster │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                  ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                  │ 22796.29ms │
│ Total Time (combine-21351-21580)   │ 21144.85ms │
│ Average Time (HEAD)                │   530.15ms │
│ Average Time (combine-21351-21580) │   491.74ms │
│ Queries Faster                     │         33 │
│ Queries Slower                     │          4 │
│ Queries with No Change             │          6 │
│ Queries with Failure               │          0 │
└────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 115.0s
Peak memory 34.4 GiB
Avg memory 25.3 GiB
CPU user 1069.1s
CPU sys 99.3s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 106.7s
Peak memory 35.3 GiB
Avg memory 27.1 GiB
CPU user 1076.5s
CPU sys 103.8s
Peak spill 0 B

File an issue against this benchmark runner

@zhuqi-lucas
Copy link
Copy Markdown
Contributor

run benchmarks

baseline:
    ref: main
    env:
       DATAFUSION_EXECUTION_PARQUET_PUSHDOWN_FILTERS: true
       DATAFUSION_EXECUTION_PARQUET_REORDER_FILTERS: true
changed:
    ref: HEAD
    env:
       DATAFUSION_EXECUTION_PARQUET_PUSHDOWN_FILTERS: true

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4276051441-1542-qntwz 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 HEAD (e195044) to main 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-c4276051441-1544-5j8w4 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 HEAD (e195044) to main 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-c4276051441-1543-w96gw 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 HEAD (e195044) to main diff using: tpcds
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 combine-21351-21580
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃                   combine-21351-21580 ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.24 / 4.48 ±6.36 / 17.21 ms │          1.21 / 4.45 ±6.33 / 17.10 ms │     no change │
│ QQuery 1  │        15.76 / 16.11 ±0.24 / 16.49 ms │        12.28 / 12.61 ±0.20 / 12.85 ms │ +1.28x faster │
│ QQuery 2  │        44.20 / 45.21 ±0.64 / 46.02 ms │        35.93 / 36.11 ±0.17 / 36.39 ms │ +1.25x faster │
│ QQuery 3  │        41.72 / 42.14 ±0.48 / 42.93 ms │        32.52 / 35.48 ±2.92 / 39.42 ms │ +1.19x faster │
│ QQuery 4  │     312.92 / 317.91 ±4.95 / 326.70 ms │     264.43 / 275.82 ±9.33 / 286.99 ms │ +1.15x faster │
│ QQuery 5  │     362.33 / 370.94 ±5.76 / 380.15 ms │     296.52 / 304.66 ±8.71 / 321.16 ms │ +1.22x faster │
│ QQuery 6  │          6.48 / 8.96 ±3.44 / 15.71 ms │           5.85 / 6.44 ±0.39 / 6.87 ms │ +1.39x faster │
│ QQuery 7  │        22.06 / 22.64 ±0.65 / 23.89 ms │        16.06 / 16.92 ±0.44 / 17.23 ms │ +1.34x faster │
│ QQuery 8  │     438.14 / 446.70 ±5.12 / 452.52 ms │    368.67 / 380.13 ±10.44 / 393.33 ms │ +1.18x faster │
│ QQuery 9  │    635.78 / 689.62 ±28.02 / 712.27 ms │    522.22 / 544.93 ±12.07 / 555.98 ms │ +1.27x faster │
│ QQuery 10 │     119.55 / 122.25 ±2.34 / 125.62 ms │     100.34 / 102.93 ±2.12 / 105.25 ms │ +1.19x faster │
│ QQuery 11 │     130.98 / 135.49 ±3.56 / 141.11 ms │     108.14 / 109.95 ±2.63 / 115.11 ms │ +1.23x faster │
│ QQuery 12 │     387.93 / 391.71 ±3.96 / 399.09 ms │     338.52 / 343.70 ±3.08 / 347.49 ms │ +1.14x faster │
│ QQuery 13 │     501.65 / 509.47 ±6.77 / 521.24 ms │    461.78 / 480.25 ±20.23 / 517.31 ms │ +1.06x faster │
│ QQuery 14 │    383.25 / 398.27 ±12.11 / 415.64 ms │     343.13 / 355.77 ±7.95 / 367.19 ms │ +1.12x faster │
│ QQuery 15 │    354.40 / 381.33 ±20.87 / 407.61 ms │    340.87 / 360.86 ±15.38 / 388.04 ms │ +1.06x faster │
│ QQuery 16 │    709.51 / 726.40 ±10.76 / 739.94 ms │    736.13 / 756.09 ±19.80 / 790.30 ms │     no change │
│ QQuery 17 │    719.52 / 740.12 ±12.33 / 758.38 ms │    686.80 / 729.17 ±26.37 / 766.17 ms │     no change │
│ QQuery 18 │ 1434.07 / 1499.51 ±44.05 / 1553.02 ms │ 1400.28 / 1466.59 ±53.98 / 1531.37 ms │     no change │
│ QQuery 19 │       41.19 / 48.10 ±13.01 / 74.11 ms │        31.48 / 35.66 ±5.94 / 47.38 ms │ +1.35x faster │
│ QQuery 20 │    723.11 / 738.75 ±16.31 / 762.64 ms │    514.39 / 527.58 ±10.23 / 543.91 ms │ +1.40x faster │
│ QQuery 21 │    728.46 / 746.82 ±17.32 / 778.48 ms │     609.36 / 619.58 ±7.30 / 628.33 ms │ +1.21x faster │
│ QQuery 22 │ 1176.30 / 1187.08 ±13.89 / 1213.22 ms │  997.19 / 1016.98 ±12.31 / 1030.82 ms │ +1.17x faster │
│ QQuery 23 │    261.32 / 274.18 ±10.92 / 294.06 ms │     157.09 / 164.87 ±6.46 / 172.83 ms │ +1.66x faster │
│ QQuery 24 │       93.48 / 97.51 ±3.66 / 102.29 ms │        58.80 / 60.68 ±1.04 / 61.84 ms │ +1.61x faster │
│ QQuery 25 │     173.01 / 179.44 ±4.86 / 187.47 ms │     143.33 / 145.98 ±2.80 / 149.94 ms │ +1.23x faster │
│ QQuery 26 │     116.46 / 118.51 ±1.14 / 119.98 ms │        61.57 / 64.63 ±2.70 / 67.88 ms │ +1.83x faster │
│ QQuery 27 │    987.78 / 996.03 ±5.29 / 1004.39 ms │     728.16 / 733.36 ±4.26 / 740.96 ms │ +1.36x faster │
│ QQuery 28 │ 3389.91 / 3458.32 ±39.17 / 3497.21 ms │ 3116.70 / 3158.01 ±24.10 / 3178.98 ms │ +1.10x faster │
│ QQuery 29 │        52.01 / 55.32 ±2.89 / 59.22 ms │        44.89 / 49.11 ±2.95 / 52.59 ms │ +1.13x faster │
│ QQuery 30 │    358.62 / 375.34 ±15.24 / 393.87 ms │     335.76 / 345.95 ±6.83 / 353.38 ms │ +1.08x faster │
│ QQuery 31 │    365.13 / 378.54 ±13.74 / 403.96 ms │    329.93 / 351.83 ±17.82 / 381.25 ms │ +1.08x faster │
│ QQuery 32 │ 1058.45 / 1087.21 ±30.77 / 1137.91 ms │ 1249.44 / 1317.08 ±58.86 / 1405.49 ms │  1.21x slower │
│ QQuery 33 │ 1491.90 / 1519.46 ±19.75 / 1543.76 ms │ 1593.40 / 1690.48 ±58.55 / 1748.49 ms │  1.11x slower │
│ QQuery 34 │ 1508.56 / 1557.94 ±32.95 / 1594.21 ms │ 1544.70 / 1574.75 ±18.96 / 1590.74 ms │     no change │
│ QQuery 35 │    391.41 / 415.89 ±26.53 / 449.01 ms │    319.12 / 343.20 ±20.86 / 376.88 ms │ +1.21x faster │
│ QQuery 36 │     103.53 / 110.37 ±4.40 / 115.36 ms │        66.42 / 70.16 ±3.25 / 75.30 ms │ +1.57x faster │
│ QQuery 37 │        53.57 / 56.05 ±1.50 / 57.72 ms │        43.87 / 45.62 ±1.44 / 47.95 ms │ +1.23x faster │
│ QQuery 38 │        54.65 / 59.96 ±3.52 / 63.92 ms │        36.53 / 39.89 ±2.48 / 43.81 ms │ +1.50x faster │
│ QQuery 39 │    167.87 / 178.14 ±10.78 / 197.00 ms │     112.60 / 120.93 ±6.96 / 128.90 ms │ +1.47x faster │
│ QQuery 40 │        32.22 / 33.57 ±1.74 / 36.94 ms │        20.74 / 22.76 ±1.33 / 24.25 ms │ +1.48x faster │
│ QQuery 41 │        26.28 / 28.09 ±1.68 / 31.02 ms │        18.80 / 19.95 ±1.05 / 21.66 ms │ +1.41x faster │
│ QQuery 42 │        21.94 / 22.90 ±0.75 / 23.92 ms │        16.06 / 16.55 ±0.55 / 17.60 ms │ +1.38x faster │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                  ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                  │ 20592.78ms │
│ Total Time (combine-21351-21580)   │ 18858.47ms │
│ Average Time (HEAD)                │   478.90ms │
│ Average Time (combine-21351-21580) │   438.57ms │
│ Queries Faster                     │         36 │
│ Queries Slower                     │          2 │
│ Queries with No Change             │          5 │
│ Queries with Failure               │          0 │
└────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 104.0s
Peak memory 38.4 GiB
Avg memory 26.7 GiB
CPU user 946.3s
CPU sys 93.0s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 95.3s
Peak memory 35.9 GiB
Avg memory 27.2 GiB
CPU user 950.8s
CPU sys 104.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 combine-21351-21580
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                      HEAD ┃                        combine-21351-21580 ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │               6.23 / 6.61 ±0.72 / 8.05 ms │                6.22 / 6.63 ±0.75 / 8.14 ms │     no change │
│ QQuery 2  │        113.13 / 124.31 ±20.48 / 165.22 ms │          111.83 / 112.54 ±0.56 / 113.42 ms │ +1.10x faster │
│ QQuery 3  │         109.21 / 111.59 ±1.49 / 113.90 ms │          109.69 / 111.41 ±1.65 / 113.98 ms │     no change │
│ QQuery 4  │      1052.46 / 1059.08 ±7.13 / 1072.87 ms │      1084.38 / 1108.07 ±13.42 / 1124.21 ms │     no change │
│ QQuery 5  │         192.78 / 196.14 ±2.21 / 198.91 ms │          167.76 / 169.80 ±1.29 / 171.61 ms │ +1.16x faster │
│ QQuery 6  │         258.95 / 261.82 ±1.75 / 264.47 ms │          250.40 / 259.47 ±7.27 / 272.06 ms │     no change │
│ QQuery 7  │         329.41 / 335.72 ±5.64 / 343.80 ms │          402.66 / 404.92 ±1.65 / 406.91 ms │  1.21x slower │
│ QQuery 8  │         153.17 / 161.54 ±4.37 / 165.90 ms │          135.84 / 137.63 ±1.29 / 139.21 ms │ +1.17x faster │
│ QQuery 9  │        224.38 / 256.03 ±20.27 / 285.39 ms │          238.34 / 246.87 ±5.58 / 255.31 ms │     no change │
│ QQuery 10 │         168.69 / 177.43 ±6.45 / 188.18 ms │         147.67 / 161.08 ±10.71 / 178.10 ms │ +1.10x faster │
│ QQuery 11 │         703.14 / 706.29 ±3.31 / 712.71 ms │         723.12 / 747.50 ±15.24 / 766.15 ms │  1.06x slower │
│ QQuery 12 │            37.00 / 38.75 ±1.94 / 42.21 ms │             48.14 / 50.78 ±1.49 / 52.19 ms │  1.31x slower │
│ QQuery 13 │        547.99 / 563.50 ±11.83 / 578.39 ms │          493.29 / 499.60 ±4.24 / 506.56 ms │ +1.13x faster │
│ QQuery 14 │         900.89 / 914.34 ±7.50 / 921.87 ms │          941.81 / 949.02 ±7.22 / 961.81 ms │     no change │
│ QQuery 15 │            19.35 / 21.45 ±1.74 / 23.41 ms │             18.66 / 21.01 ±2.35 / 24.94 ms │     no change │
│ QQuery 16 │               7.08 / 7.75 ±1.03 / 9.78 ms │                6.78 / 7.32 ±0.80 / 8.89 ms │ +1.06x faster │
│ QQuery 17 │         199.02 / 204.32 ±4.31 / 209.90 ms │          261.08 / 263.95 ±3.89 / 271.60 ms │  1.29x slower │
│ QQuery 18 │        446.63 / 486.33 ±21.24 / 509.32 ms │         389.33 / 461.17 ±40.42 / 501.54 ms │ +1.05x faster │
│ QQuery 19 │         143.64 / 145.01 ±1.44 / 147.05 ms │          144.56 / 146.51 ±1.56 / 148.90 ms │     no change │
│ QQuery 20 │            15.73 / 16.86 ±1.27 / 19.21 ms │             15.74 / 16.87 ±0.63 / 17.56 ms │     no change │
│ QQuery 21 │            26.39 / 27.48 ±0.64 / 28.27 ms │             26.99 / 28.43 ±0.99 / 29.65 ms │     no change │
│ QQuery 22 │         504.26 / 510.07 ±4.59 / 516.02 ms │          496.71 / 504.14 ±4.22 / 507.33 ms │     no change │
│ QQuery 23 │      1213.02 / 1229.16 ±9.75 / 1243.17 ms │       1265.18 / 1271.09 ±3.91 / 1277.22 ms │     no change │
│ QQuery 24 │         124.98 / 126.73 ±1.51 / 128.53 ms │          633.23 / 636.26 ±2.11 / 639.35 ms │  5.02x slower │
│ QQuery 25 │         301.39 / 307.79 ±4.56 / 315.01 ms │          483.39 / 491.05 ±6.65 / 501.05 ms │  1.60x slower │
│ QQuery 26 │         143.96 / 147.74 ±2.51 / 150.92 ms │          146.84 / 153.02 ±6.15 / 164.60 ms │     no change │
│ QQuery 27 │               6.64 / 7.17 ±0.39 / 7.60 ms │                6.38 / 6.95 ±0.67 / 8.26 ms │     no change │
│ QQuery 28 │         223.17 / 231.79 ±5.14 / 236.77 ms │          220.26 / 230.52 ±6.18 / 239.17 ms │     no change │
│ QQuery 29 │         249.30 / 257.18 ±5.65 / 264.69 ms │          398.23 / 407.69 ±5.01 / 412.61 ms │  1.59x slower │
│ QQuery 30 │            53.00 / 59.24 ±4.45 / 65.41 ms │             51.13 / 57.87 ±4.12 / 62.42 ms │     no change │
│ QQuery 31 │         177.00 / 178.82 ±3.18 / 185.15 ms │          175.37 / 179.17 ±2.34 / 181.91 ms │     no change │
│ QQuery 32 │            13.80 / 14.31 ±0.37 / 14.74 ms │             13.70 / 14.23 ±0.47 / 14.85 ms │     no change │
│ QQuery 33 │         132.49 / 133.64 ±1.23 / 135.98 ms │          131.27 / 132.94 ±1.54 / 135.58 ms │     no change │
│ QQuery 34 │               6.73 / 7.22 ±0.51 / 8.11 ms │                7.01 / 7.48 ±0.41 / 8.19 ms │     no change │
│ QQuery 35 │         148.01 / 150.92 ±2.55 / 155.39 ms │          146.04 / 149.42 ±3.50 / 155.53 ms │     no change │
│ QQuery 36 │               6.20 / 6.56 ±0.63 / 7.83 ms │                6.24 / 6.40 ±0.21 / 6.82 ms │     no change │
│ QQuery 37 │               5.17 / 5.25 ±0.07 / 5.34 ms │                5.32 / 5.70 ±0.42 / 6.47 ms │  1.09x slower │
│ QQuery 38 │         109.50 / 111.22 ±2.19 / 115.52 ms │          105.69 / 110.01 ±3.71 / 116.35 ms │     no change │
│ QQuery 39 │         137.58 / 139.52 ±3.17 / 145.82 ms │          133.86 / 136.97 ±1.86 / 138.98 ms │     no change │
│ QQuery 40 │         132.96 / 140.75 ±7.40 / 153.65 ms │          134.97 / 139.16 ±5.63 / 150.04 ms │     no change │
│ QQuery 41 │            14.01 / 15.52 ±1.15 / 17.02 ms │             15.37 / 16.51 ±0.87 / 17.98 ms │  1.06x slower │
│ QQuery 42 │         114.26 / 115.43 ±0.89 / 116.42 ms │          109.02 / 116.64 ±3.99 / 120.62 ms │     no change │
│ QQuery 43 │               5.81 / 6.00 ±0.19 / 6.29 ms │                5.77 / 6.04 ±0.29 / 6.56 ms │     no change │
│ QQuery 44 │            10.79 / 12.09 ±1.21 / 14.18 ms │             11.07 / 11.91 ±0.58 / 12.84 ms │     no change │
│ QQuery 45 │            42.74 / 46.53 ±2.10 / 48.22 ms │             71.51 / 74.49 ±2.03 / 77.77 ms │  1.60x slower │
│ QQuery 46 │              8.15 / 8.86 ±1.04 / 10.92 ms │                8.00 / 8.27 ±0.18 / 8.56 ms │ +1.07x faster │
│ QQuery 47 │         782.72 / 792.59 ±8.16 / 805.18 ms │          723.83 / 735.82 ±8.98 / 747.11 ms │ +1.08x faster │
│ QQuery 48 │        475.94 / 492.22 ±12.21 / 510.30 ms │          437.72 / 451.62 ±8.94 / 463.79 ms │ +1.09x faster │
│ QQuery 49 │         285.27 / 288.64 ±2.55 / 292.55 ms │         334.25 / 351.21 ±10.34 / 364.13 ms │  1.22x slower │
│ QQuery 50 │         532.66 / 539.78 ±7.72 / 554.31 ms │         512.83 / 530.79 ±15.22 / 556.87 ms │     no change │
│ QQuery 51 │         212.23 / 220.23 ±5.37 / 227.22 ms │          209.01 / 214.72 ±4.68 / 221.90 ms │     no change │
│ QQuery 52 │         108.22 / 114.49 ±5.00 / 120.54 ms │          107.89 / 114.50 ±4.09 / 119.84 ms │     no change │
│ QQuery 53 │         144.91 / 150.16 ±4.36 / 158.14 ms │           97.84 / 107.99 ±6.26 / 115.92 ms │ +1.39x faster │
│ QQuery 54 │         128.11 / 130.94 ±2.26 / 134.36 ms │          131.04 / 134.21 ±2.11 / 137.01 ms │     no change │
│ QQuery 55 │         111.56 / 115.91 ±2.65 / 119.62 ms │          107.18 / 113.64 ±3.42 / 117.24 ms │     no change │
│ QQuery 56 │         129.50 / 134.09 ±3.59 / 140.37 ms │          131.91 / 134.89 ±2.04 / 138.14 ms │     no change │
│ QQuery 57 │         191.95 / 193.97 ±2.53 / 198.79 ms │          185.79 / 189.68 ±2.48 / 192.30 ms │     no change │
│ QQuery 58 │         226.34 / 228.45 ±1.66 / 231.19 ms │          216.30 / 219.97 ±2.12 / 222.77 ms │     no change │
│ QQuery 59 │         283.58 / 284.72 ±1.13 / 286.35 ms │          275.66 / 280.18 ±2.63 / 283.74 ms │     no change │
│ QQuery 60 │         137.46 / 139.69 ±1.78 / 141.87 ms │          136.48 / 139.48 ±1.55 / 140.77 ms │     no change │
│ QQuery 61 │            11.90 / 12.40 ±0.81 / 14.00 ms │             12.05 / 12.47 ±0.76 / 14.00 ms │     no change │
│ QQuery 62 │       873.84 / 942.03 ±62.23 / 1059.40 ms │         887.77 / 918.94 ±18.97 / 940.74 ms │     no change │
│ QQuery 63 │         142.27 / 147.77 ±5.08 / 156.44 ms │          110.67 / 115.43 ±2.95 / 119.98 ms │ +1.28x faster │
│ QQuery 64 │ 27632.85 / 28777.62 ±768.27 / 29912.57 ms │ 28122.69 / 29286.35 ±1039.35 / 30911.65 ms │     no change │
│ QQuery 65 │         364.61 / 378.73 ±8.27 / 386.64 ms │         327.94 / 343.46 ±12.07 / 359.67 ms │ +1.10x faster │
│ QQuery 66 │         198.69 / 202.98 ±3.34 / 207.01 ms │          196.58 / 202.18 ±3.40 / 206.36 ms │     no change │
│ QQuery 67 │        495.45 / 509.36 ±13.16 / 531.27 ms │         483.75 / 492.50 ±10.93 / 513.37 ms │     no change │
│ QQuery 68 │             8.39 / 10.89 ±2.27 / 13.87 ms │              9.24 / 11.15 ±1.44 / 13.27 ms │     no change │
│ QQuery 69 │         177.56 / 182.53 ±5.46 / 191.61 ms │          156.56 / 163.41 ±6.60 / 174.42 ms │ +1.12x faster │
│ QQuery 70 │         424.99 / 438.22 ±9.14 / 451.18 ms │          413.77 / 422.17 ±7.66 / 435.60 ms │     no change │
│ QQuery 71 │         127.97 / 131.81 ±3.06 / 137.00 ms │          125.97 / 131.59 ±2.85 / 133.50 ms │     no change │
│ QQuery 72 │      1180.12 / 1194.76 ±9.66 / 1204.75 ms │       1307.47 / 1311.98 ±3.23 / 1316.90 ms │  1.10x slower │
│ QQuery 73 │               6.70 / 7.36 ±0.91 / 9.16 ms │                6.76 / 7.64 ±0.49 / 8.13 ms │     no change │
│ QQuery 74 │         492.43 / 503.01 ±5.73 / 509.10 ms │          536.64 / 544.02 ±5.46 / 552.42 ms │  1.08x slower │
│ QQuery 75 │         279.36 / 287.45 ±5.04 / 292.82 ms │          317.52 / 320.10 ±2.07 / 322.74 ms │  1.11x slower │
│ QQuery 76 │         280.01 / 284.28 ±2.25 / 286.59 ms │          170.40 / 173.76 ±2.87 / 179.06 ms │ +1.64x faster │
│ QQuery 77 │         228.34 / 231.05 ±1.75 / 232.75 ms │          188.44 / 198.23 ±4.99 / 202.44 ms │ +1.17x faster │
│ QQuery 78 │         304.18 / 308.53 ±4.40 / 316.19 ms │          300.08 / 303.98 ±2.79 / 307.37 ms │     no change │
│ QQuery 79 │         261.07 / 264.58 ±2.66 / 267.65 ms │          230.24 / 234.08 ±2.08 / 235.86 ms │ +1.13x faster │
│ QQuery 80 │         282.61 / 286.25 ±2.96 / 291.38 ms │          251.15 / 258.36 ±4.22 / 264.08 ms │ +1.11x faster │
│ QQuery 81 │            31.36 / 32.49 ±0.90 / 33.57 ms │             31.22 / 32.13 ±0.85 / 33.66 ms │     no change │
│ QQuery 82 │            47.45 / 49.51 ±2.01 / 53.16 ms │             66.99 / 67.81 ±0.96 / 69.68 ms │  1.37x slower │
│ QQuery 83 │            44.62 / 45.77 ±1.09 / 47.81 ms │             45.71 / 46.80 ±0.61 / 47.41 ms │     no change │
│ QQuery 84 │            63.17 / 64.84 ±1.19 / 66.38 ms │             62.77 / 64.59 ±1.01 / 65.87 ms │     no change │
│ QQuery 85 │         276.81 / 284.45 ±5.46 / 292.09 ms │          246.49 / 255.72 ±5.25 / 261.12 ms │ +1.11x faster │
│ QQuery 86 │            47.88 / 49.87 ±1.06 / 50.88 ms │             48.38 / 50.08 ±1.85 / 53.12 ms │     no change │
│ QQuery 87 │         102.27 / 107.93 ±4.49 / 115.89 ms │          103.13 / 108.36 ±3.16 / 112.07 ms │     no change │
│ QQuery 88 │         128.64 / 133.44 ±4.08 / 140.15 ms │          123.23 / 132.54 ±6.41 / 140.09 ms │     no change │
│ QQuery 89 │         152.61 / 159.17 ±5.93 / 168.84 ms │          138.21 / 145.41 ±4.75 / 152.54 ms │ +1.09x faster │
│ QQuery 90 │            25.22 / 26.65 ±1.34 / 28.60 ms │             24.64 / 27.09 ±1.47 / 29.05 ms │     no change │
│ QQuery 91 │          97.23 / 103.85 ±3.42 / 106.33 ms │           98.31 / 101.44 ±2.76 / 105.91 ms │     no change │
│ QQuery 92 │            53.41 / 55.83 ±2.24 / 59.66 ms │             50.42 / 52.74 ±1.37 / 54.23 ms │ +1.06x faster │
│ QQuery 93 │         187.74 / 189.48 ±1.09 / 190.51 ms │          186.61 / 188.84 ±1.39 / 190.26 ms │     no change │
│ QQuery 94 │            67.99 / 68.60 ±0.45 / 69.16 ms │             60.37 / 61.36 ±0.80 / 62.45 ms │ +1.12x faster │
│ QQuery 95 │         146.52 / 149.04 ±1.42 / 150.68 ms │          138.59 / 141.62 ±1.73 / 143.57 ms │     no change │
│ QQuery 96 │            87.13 / 88.43 ±0.88 / 89.36 ms │             75.90 / 82.41 ±3.32 / 85.04 ms │ +1.07x faster │
│ QQuery 97 │         153.31 / 155.48 ±1.28 / 156.73 ms │          152.33 / 155.47 ±2.25 / 157.68 ms │     no change │
│ QQuery 98 │         122.37 / 124.51 ±1.54 / 126.88 ms │         157.37 / 168.65 ±12.06 / 190.97 ms │  1.35x slower │
│ QQuery 99 │  10720.87 / 10753.39 ±26.73 / 10792.59 ms │   10685.25 / 10741.07 ±29.92 / 10771.58 ms │     no change │
└───────────┴───────────────────────────────────────────┴────────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                  ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                  │ 61362.08ms │
│ Total Time (combine-21351-21580)   │ 62579.17ms │
│ Average Time (HEAD)                │   619.82ms │
│ Average Time (combine-21351-21580) │   632.11ms │
│ Queries Faster                     │         23 │
│ Queries Slower                     │         16 │
│ Queries with No Change             │         60 │
│ Queries with Failure               │          0 │
└────────────────────────────────────┴────────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 307.2s
Peak memory 35.2 GiB
Avg memory 25.4 GiB
CPU user 606.8s
CPU sys 27.9s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 313.3s
Peak memory 36.1 GiB
Avg memory 25.9 GiB
CPU user 624.4s
CPU sys 27.2s
Peak spill 0 B

File an issue against this benchmark runner

@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-c4276105993-1558-6vcnx 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 combine-21351-21580 (e195044) to afc0784 (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-c4276105993-1560-s4d45 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 combine-21351-21580 (e195044) to afc0784 (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-c4276105993-1559-b5pk9 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 combine-21351-21580 (e195044) to afc0784 (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 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 combine-21351-21580
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                   HEAD ┃                   combine-21351-21580 ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │           1.17 / 4.39 ±6.33 / 17.05 ms │          1.26 / 4.68 ±6.61 / 17.91 ms │  1.07x slower │
│ QQuery 1  │         15.47 / 15.82 ±0.22 / 16.14 ms │        12.53 / 13.15 ±0.42 / 13.74 ms │ +1.20x faster │
│ QQuery 2  │         45.30 / 45.60 ±0.34 / 46.23 ms │        36.22 / 36.71 ±0.36 / 37.10 ms │ +1.24x faster │
│ QQuery 3  │         41.38 / 42.36 ±0.89 / 43.94 ms │        31.09 / 31.30 ±0.11 / 31.40 ms │ +1.35x faster │
│ QQuery 4  │     288.08 / 302.45 ±12.19 / 324.98 ms │     251.00 / 262.80 ±7.45 / 274.27 ms │ +1.15x faster │
│ QQuery 5  │     338.77 / 357.93 ±14.15 / 381.69 ms │    304.50 / 320.18 ±14.99 / 347.33 ms │ +1.12x faster │
│ QQuery 6  │           6.00 / 8.33 ±3.62 / 15.37 ms │           5.94 / 6.39 ±0.48 / 7.18 ms │ +1.30x faster │
│ QQuery 7  │         22.02 / 22.30 ±0.26 / 22.73 ms │       16.10 / 24.11 ±13.97 / 51.92 ms │  1.08x slower │
│ QQuery 8  │      422.40 / 430.64 ±7.36 / 440.02 ms │    372.56 / 389.60 ±15.52 / 412.61 ms │ +1.11x faster │
│ QQuery 9  │     666.16 / 686.29 ±21.08 / 724.28 ms │     525.13 / 534.99 ±9.40 / 552.05 ms │ +1.28x faster │
│ QQuery 10 │      118.08 / 121.82 ±3.83 / 127.23 ms │      98.51 / 100.30 ±2.54 / 105.33 ms │ +1.21x faster │
│ QQuery 11 │      131.37 / 136.25 ±4.57 / 143.34 ms │     109.27 / 113.61 ±2.75 / 115.97 ms │ +1.20x faster │
│ QQuery 12 │     372.08 / 386.31 ±11.35 / 404.59 ms │    326.74 / 348.24 ±12.23 / 362.77 ms │ +1.11x faster │
│ QQuery 13 │     497.64 / 514.55 ±11.09 / 526.86 ms │    462.81 / 483.59 ±12.07 / 497.91 ms │ +1.06x faster │
│ QQuery 14 │      383.81 / 397.93 ±8.02 / 405.74 ms │     339.29 / 351.63 ±7.20 / 359.58 ms │ +1.13x faster │
│ QQuery 15 │     349.63 / 375.67 ±16.87 / 398.50 ms │     346.79 / 351.64 ±5.75 / 362.71 ms │ +1.07x faster │
│ QQuery 16 │     711.69 / 738.93 ±16.21 / 761.14 ms │    685.63 / 717.81 ±19.34 / 738.66 ms │     no change │
│ QQuery 17 │     715.38 / 728.63 ±11.05 / 744.99 ms │     692.58 / 700.49 ±4.81 / 706.26 ms │     no change │
│ QQuery 18 │  1466.94 / 1521.19 ±47.70 / 1586.30 ms │ 1382.58 / 1478.06 ±57.82 / 1535.30 ms │     no change │
│ QQuery 19 │         38.03 / 38.97 ±0.84 / 40.35 ms │       30.88 / 43.41 ±24.30 / 92.00 ms │  1.11x slower │
│ QQuery 20 │     734.44 / 755.29 ±15.92 / 771.97 ms │     514.85 / 527.19 ±9.65 / 543.00 ms │ +1.43x faster │
│ QQuery 21 │     743.58 / 760.24 ±12.88 / 777.45 ms │     574.55 / 586.12 ±6.88 / 594.44 ms │ +1.30x faster │
│ QQuery 22 │  1187.64 / 1212.77 ±14.63 / 1229.92 ms │     969.17 / 979.10 ±6.23 / 985.08 ms │ +1.24x faster │
│ QQuery 23 │      262.70 / 272.42 ±6.66 / 282.97 ms │     117.90 / 124.26 ±4.70 / 130.48 ms │ +2.19x faster │
│ QQuery 24 │        95.89 / 99.25 ±2.95 / 104.36 ms │        44.19 / 44.95 ±0.58 / 45.66 ms │ +2.21x faster │
│ QQuery 25 │      178.86 / 182.10 ±3.60 / 187.28 ms │     144.16 / 145.92 ±2.72 / 151.31 ms │ +1.25x faster │
│ QQuery 26 │      114.46 / 117.49 ±1.80 / 119.39 ms │        62.14 / 64.25 ±2.61 / 68.72 ms │ +1.83x faster │
│ QQuery 27 │     960.22 / 979.63 ±13.43 / 996.85 ms │     722.23 / 729.76 ±3.97 / 733.18 ms │ +1.34x faster │
│ QQuery 28 │  3352.68 / 3428.16 ±46.81 / 3499.26 ms │ 3079.86 / 3177.39 ±49.80 / 3215.57 ms │ +1.08x faster │
│ QQuery 29 │         50.34 / 56.26 ±7.79 / 71.06 ms │        43.21 / 46.81 ±3.47 / 53.29 ms │ +1.20x faster │
│ QQuery 30 │     362.26 / 377.47 ±12.92 / 398.84 ms │    329.06 / 341.30 ±10.63 / 354.45 ms │ +1.11x faster │
│ QQuery 31 │     360.67 / 381.70 ±14.30 / 401.79 ms │     336.14 / 346.18 ±7.34 / 357.20 ms │ +1.10x faster │
│ QQuery 32 │ 1068.16 / 1196.68 ±135.81 / 1423.47 ms │ 1035.87 / 1077.16 ±46.25 / 1165.09 ms │ +1.11x faster │
│ QQuery 33 │  1467.29 / 1516.52 ±31.47 / 1554.10 ms │ 1505.29 / 1525.56 ±22.97 / 1568.71 ms │     no change │
│ QQuery 34 │  1474.64 / 1576.38 ±55.60 / 1629.04 ms │ 1497.30 / 1529.08 ±26.95 / 1571.00 ms │     no change │
│ QQuery 35 │      430.97 / 438.61 ±6.94 / 448.46 ms │    316.94 / 343.49 ±17.13 / 366.83 ms │ +1.28x faster │
│ QQuery 36 │      108.35 / 112.90 ±2.39 / 115.39 ms │        64.67 / 69.99 ±3.00 / 73.54 ms │ +1.61x faster │
│ QQuery 37 │         52.23 / 56.35 ±3.65 / 62.05 ms │        41.58 / 45.75 ±2.54 / 48.68 ms │ +1.23x faster │
│ QQuery 38 │         57.42 / 61.56 ±3.26 / 65.54 ms │        38.26 / 40.85 ±2.29 / 44.87 ms │ +1.51x faster │
│ QQuery 39 │      180.65 / 187.27 ±4.82 / 193.43 ms │     118.43 / 129.32 ±9.59 / 145.87 ms │ +1.45x faster │
│ QQuery 40 │         29.42 / 32.27 ±3.24 / 38.60 ms │        21.16 / 22.66 ±0.98 / 23.80 ms │ +1.42x faster │
│ QQuery 41 │         25.84 / 27.37 ±1.40 / 30.01 ms │        20.07 / 20.67 ±0.38 / 21.12 ms │ +1.32x faster │
│ QQuery 42 │         21.57 / 22.40 ±0.52 / 23.13 ms │        16.74 / 17.34 ±0.83 / 18.95 ms │ +1.29x faster │
└───────────┴────────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                  ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                  │ 20727.40ms │
│ Total Time (combine-21351-21580)   │ 18247.79ms │
│ Average Time (HEAD)                │   482.03ms │
│ Average Time (combine-21351-21580) │   424.37ms │
│ Queries Faster                     │         35 │
│ Queries Slower                     │          3 │
│ Queries with No Change             │          5 │
│ Queries with Failure               │          0 │
└────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 104.7s
Peak memory 36.3 GiB
Avg memory 26.0 GiB
CPU user 943.5s
CPU sys 98.8s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 92.3s
Peak memory 38.2 GiB
Avg memory 27.4 GiB
CPU user 937.8s
CPU sys 90.3s
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 combine-21351-21580
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                       HEAD ┃                        combine-21351-21580 ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │                6.30 / 6.76 ±0.75 / 8.25 ms │                6.24 / 6.69 ±0.81 / 8.30 ms │     no change │
│ QQuery 2  │          114.44 / 115.56 ±0.88 / 116.94 ms │          111.96 / 112.97 ±0.65 / 113.91 ms │     no change │
│ QQuery 3  │          110.03 / 112.17 ±2.02 / 115.72 ms │          109.61 / 110.61 ±0.81 / 111.60 ms │     no change │
│ QQuery 4  │      1050.36 / 1075.19 ±13.82 / 1092.15 ms │      1045.01 / 1061.88 ±11.67 / 1076.35 ms │     no change │
│ QQuery 5  │          192.44 / 197.88 ±3.33 / 201.46 ms │          193.69 / 197.23 ±2.41 / 200.10 ms │     no change │
│ QQuery 6  │          258.06 / 262.67 ±5.62 / 273.15 ms │          256.37 / 263.57 ±4.42 / 268.39 ms │     no change │
│ QQuery 7  │          327.27 / 335.82 ±4.95 / 340.50 ms │          331.56 / 339.09 ±4.29 / 344.25 ms │     no change │
│ QQuery 8  │          158.76 / 165.77 ±3.83 / 169.97 ms │          158.73 / 163.20 ±4.39 / 170.59 ms │     no change │
│ QQuery 9  │          243.09 / 254.65 ±9.07 / 265.29 ms │          238.12 / 241.37 ±4.67 / 250.50 ms │ +1.06x faster │
│ QQuery 10 │          171.05 / 182.86 ±8.42 / 197.24 ms │          175.96 / 178.55 ±3.96 / 186.44 ms │     no change │
│ QQuery 11 │          703.96 / 712.26 ±4.94 / 717.38 ms │         690.50 / 709.63 ±10.49 / 721.93 ms │     no change │
│ QQuery 12 │             38.00 / 40.57 ±2.84 / 45.96 ms │             37.41 / 39.50 ±2.24 / 43.75 ms │     no change │
│ QQuery 13 │         546.17 / 561.24 ±11.23 / 575.11 ms │         546.67 / 562.70 ±11.80 / 583.04 ms │     no change │
│ QQuery 14 │         896.95 / 913.57 ±11.93 / 931.80 ms │          908.46 / 918.37 ±9.19 / 930.94 ms │     no change │
│ QQuery 15 │             19.02 / 21.60 ±1.81 / 23.81 ms │             19.69 / 22.17 ±2.84 / 27.44 ms │     no change │
│ QQuery 16 │                6.91 / 7.55 ±0.93 / 9.38 ms │                6.91 / 7.12 ±0.20 / 7.42 ms │ +1.06x faster │
│ QQuery 17 │          201.16 / 206.24 ±3.04 / 209.33 ms │          204.05 / 208.74 ±3.72 / 213.36 ms │     no change │
│ QQuery 18 │         423.52 / 484.98 ±33.93 / 527.26 ms │         395.62 / 438.17 ±43.27 / 492.23 ms │ +1.11x faster │
│ QQuery 19 │          145.43 / 147.35 ±2.42 / 151.55 ms │          140.67 / 145.73 ±2.63 / 147.66 ms │     no change │
│ QQuery 20 │             16.12 / 16.90 ±0.83 / 18.47 ms │             14.93 / 15.73 ±0.61 / 16.69 ms │ +1.07x faster │
│ QQuery 21 │             26.87 / 27.98 ±0.68 / 28.59 ms │             28.41 / 28.93 ±0.36 / 29.30 ms │     no change │
│ QQuery 22 │          500.58 / 506.65 ±5.07 / 513.91 ms │          504.34 / 507.05 ±2.42 / 511.33 ms │     no change │
│ QQuery 23 │      1229.90 / 1260.29 ±35.17 / 1329.15 ms │       1232.43 / 1236.21 ±2.67 / 1239.67 ms │     no change │
│ QQuery 24 │          122.87 / 124.67 ±1.22 / 126.52 ms │          119.79 / 125.22 ±3.01 / 128.38 ms │     no change │
│ QQuery 25 │          299.59 / 305.93 ±5.30 / 315.57 ms │          302.82 / 304.85 ±1.10 / 305.81 ms │     no change │
│ QQuery 26 │         137.58 / 152.47 ±14.86 / 180.68 ms │          146.67 / 154.26 ±5.83 / 162.53 ms │     no change │
│ QQuery 27 │                6.47 / 6.83 ±0.41 / 7.63 ms │                6.62 / 7.15 ±0.53 / 8.04 ms │     no change │
│ QQuery 28 │         226.06 / 236.12 ±17.26 / 270.51 ms │          233.45 / 235.05 ±1.79 / 238.21 ms │     no change │
│ QQuery 29 │          243.97 / 251.39 ±5.28 / 260.49 ms │          249.40 / 253.34 ±2.57 / 256.42 ms │     no change │
│ QQuery 30 │             57.04 / 58.62 ±1.15 / 59.95 ms │             56.32 / 60.23 ±3.04 / 65.07 ms │     no change │
│ QQuery 31 │          177.97 / 178.91 ±1.04 / 180.92 ms │          179.34 / 183.23 ±4.76 / 192.49 ms │     no change │
│ QQuery 32 │             14.32 / 15.10 ±0.51 / 15.91 ms │             14.04 / 14.84 ±0.57 / 15.75 ms │     no change │
│ QQuery 33 │          134.25 / 136.39 ±1.31 / 137.62 ms │          134.36 / 137.49 ±2.45 / 141.18 ms │     no change │
│ QQuery 34 │                6.71 / 7.03 ±0.25 / 7.41 ms │                6.90 / 7.56 ±0.94 / 9.40 ms │  1.08x slower │
│ QQuery 35 │          152.34 / 153.20 ±0.69 / 154.08 ms │          154.53 / 156.08 ±1.32 / 158.49 ms │     no change │
│ QQuery 36 │                6.25 / 6.70 ±0.48 / 7.62 ms │                6.26 / 6.41 ±0.18 / 6.75 ms │     no change │
│ QQuery 37 │                5.24 / 5.32 ±0.06 / 5.41 ms │                5.26 / 5.43 ±0.14 / 5.69 ms │     no change │
│ QQuery 38 │           98.03 / 108.55 ±6.01 / 115.97 ms │          108.55 / 111.48 ±3.90 / 119.16 ms │     no change │
│ QQuery 39 │          138.25 / 139.97 ±1.58 / 142.56 ms │          136.21 / 138.52 ±1.71 / 140.09 ms │     no change │
│ QQuery 40 │          135.35 / 140.70 ±6.39 / 153.24 ms │          135.46 / 140.00 ±6.76 / 153.36 ms │     no change │
│ QQuery 41 │             14.04 / 15.21 ±1.39 / 17.69 ms │             13.89 / 14.53 ±0.53 / 15.45 ms │     no change │
│ QQuery 42 │          114.63 / 116.27 ±1.50 / 118.29 ms │          108.84 / 116.32 ±4.33 / 122.11 ms │     no change │
│ QQuery 43 │                5.66 / 5.81 ±0.20 / 6.21 ms │                5.85 / 5.97 ±0.16 / 6.29 ms │     no change │
│ QQuery 44 │             11.38 / 12.86 ±1.57 / 15.82 ms │             11.23 / 12.87 ±1.17 / 14.82 ms │     no change │
│ QQuery 45 │             43.38 / 47.40 ±2.20 / 50.08 ms │             44.48 / 46.26 ±1.33 / 48.33 ms │     no change │
│ QQuery 46 │                8.35 / 8.90 ±0.36 / 9.49 ms │                8.24 / 8.65 ±0.32 / 9.13 ms │     no change │
│ QQuery 47 │          768.20 / 784.31 ±9.40 / 794.81 ms │          791.40 / 797.86 ±4.54 / 802.85 ms │     no change │
│ QQuery 48 │          482.84 / 492.77 ±9.80 / 507.89 ms │         482.75 / 496.38 ±10.66 / 509.51 ms │     no change │
│ QQuery 49 │          285.89 / 287.42 ±1.38 / 289.98 ms │          283.81 / 289.07 ±4.55 / 294.97 ms │     no change │
│ QQuery 50 │         522.23 / 546.46 ±13.98 / 563.63 ms │         530.83 / 552.73 ±12.14 / 567.94 ms │     no change │
│ QQuery 51 │          216.42 / 221.49 ±3.91 / 226.20 ms │          223.31 / 226.33 ±1.60 / 227.71 ms │     no change │
│ QQuery 52 │          115.44 / 118.25 ±1.66 / 120.59 ms │          114.62 / 116.60 ±1.12 / 117.98 ms │     no change │
│ QQuery 53 │          144.08 / 148.55 ±3.54 / 153.17 ms │          143.11 / 148.63 ±3.07 / 152.48 ms │     no change │
│ QQuery 54 │          131.24 / 132.67 ±1.34 / 134.87 ms │          129.56 / 134.61 ±4.08 / 139.41 ms │     no change │
│ QQuery 55 │          111.14 / 114.04 ±2.23 / 117.26 ms │          109.82 / 115.52 ±3.01 / 118.49 ms │     no change │
│ QQuery 56 │          132.85 / 135.45 ±1.85 / 137.18 ms │          133.10 / 135.15 ±1.15 / 136.35 ms │     no change │
│ QQuery 57 │          187.78 / 191.93 ±3.26 / 197.50 ms │          189.31 / 194.63 ±3.62 / 198.61 ms │     no change │
│ QQuery 58 │          229.99 / 231.77 ±1.20 / 233.38 ms │          226.93 / 230.29 ±2.18 / 233.75 ms │     no change │
│ QQuery 59 │          283.51 / 289.31 ±4.49 / 296.49 ms │          283.26 / 285.63 ±1.91 / 288.18 ms │     no change │
│ QQuery 60 │          140.15 / 141.68 ±1.03 / 142.86 ms │          142.50 / 143.96 ±1.13 / 145.92 ms │     no change │
│ QQuery 61 │             12.10 / 13.06 ±0.73 / 13.71 ms │             12.17 / 12.93 ±0.75 / 14.32 ms │     no change │
│ QQuery 62 │        904.89 / 969.62 ±38.01 / 1011.62 ms │        887.15 / 959.33 ±50.11 / 1032.44 ms │     no change │
│ QQuery 63 │          143.71 / 149.62 ±3.31 / 153.83 ms │          147.22 / 151.34 ±3.86 / 157.50 ms │     no change │
│ QQuery 64 │ 28836.96 / 29812.46 ±1174.33 / 31850.83 ms │ 27709.32 / 28753.30 ±1088.04 / 30514.15 ms │     no change │
│ QQuery 65 │          366.95 / 373.62 ±4.22 / 378.38 ms │          374.41 / 378.70 ±3.00 / 383.35 ms │     no change │
│ QQuery 66 │          195.34 / 200.48 ±3.88 / 206.53 ms │          200.75 / 204.51 ±2.97 / 207.57 ms │     no change │
│ QQuery 67 │         491.45 / 510.14 ±10.88 / 523.29 ms │          518.82 / 528.44 ±9.90 / 545.87 ms │     no change │
│ QQuery 68 │              8.83 / 10.62 ±1.71 / 13.61 ms │              8.79 / 11.11 ±3.12 / 17.01 ms │     no change │
│ QQuery 69 │          171.14 / 178.09 ±5.69 / 185.61 ms │          178.38 / 183.26 ±4.50 / 190.67 ms │     no change │
│ QQuery 70 │          438.52 / 446.77 ±5.64 / 452.15 ms │         434.02 / 452.03 ±10.65 / 463.68 ms │     no change │
│ QQuery 71 │          128.46 / 131.91 ±1.92 / 134.02 ms │          133.46 / 136.52 ±2.44 / 140.96 ms │     no change │
│ QQuery 72 │       1204.04 / 1223.73 ±9.85 / 1229.32 ms │       1215.26 / 1226.58 ±8.21 / 1240.18 ms │     no change │
│ QQuery 73 │                7.03 / 7.78 ±0.56 / 8.69 ms │                6.61 / 6.98 ±0.35 / 7.58 ms │ +1.12x faster │
│ QQuery 74 │          495.70 / 511.87 ±9.49 / 523.56 ms │          511.42 / 522.74 ±8.62 / 534.84 ms │     no change │
│ QQuery 75 │          291.62 / 295.35 ±2.30 / 298.36 ms │          296.38 / 298.51 ±1.75 / 301.38 ms │     no change │
│ QQuery 76 │          288.47 / 292.73 ±2.47 / 295.69 ms │          278.78 / 288.57 ±5.31 / 294.86 ms │     no change │
│ QQuery 77 │          234.06 / 237.85 ±2.63 / 241.77 ms │          230.79 / 235.12 ±3.48 / 241.14 ms │     no change │
│ QQuery 78 │          304.26 / 311.11 ±4.71 / 317.94 ms │          310.18 / 313.46 ±2.58 / 317.97 ms │     no change │
│ QQuery 79 │          262.49 / 266.44 ±3.62 / 273.05 ms │          263.10 / 267.54 ±3.52 / 273.01 ms │     no change │
│ QQuery 80 │          285.13 / 289.63 ±3.65 / 295.91 ms │          286.34 / 292.47 ±3.72 / 297.33 ms │     no change │
│ QQuery 81 │             30.40 / 32.77 ±2.51 / 37.36 ms │             31.73 / 33.53 ±1.42 / 35.88 ms │     no change │
│ QQuery 82 │             49.75 / 50.96 ±1.40 / 53.69 ms │             48.23 / 50.39 ±1.86 / 53.51 ms │     no change │
│ QQuery 83 │             44.95 / 46.43 ±1.02 / 47.76 ms │             46.13 / 47.45 ±1.03 / 49.22 ms │     no change │
│ QQuery 84 │             64.85 / 66.73 ±1.49 / 69.28 ms │             66.80 / 67.68 ±0.81 / 68.91 ms │     no change │
│ QQuery 85 │          284.67 / 290.78 ±5.06 / 297.66 ms │          280.87 / 287.34 ±4.50 / 294.75 ms │     no change │
│ QQuery 86 │             48.22 / 50.42 ±2.73 / 55.78 ms │             48.35 / 50.82 ±2.40 / 53.95 ms │     no change │
│ QQuery 87 │           99.09 / 109.33 ±6.14 / 118.17 ms │          110.81 / 113.69 ±2.09 / 115.94 ms │     no change │
│ QQuery 88 │          130.32 / 134.01 ±3.99 / 141.44 ms │          128.20 / 133.00 ±3.32 / 138.53 ms │     no change │
│ QQuery 89 │          149.31 / 161.69 ±7.78 / 172.60 ms │          155.71 / 165.99 ±6.61 / 174.69 ms │     no change │
│ QQuery 90 │             24.53 / 27.17 ±1.99 / 30.43 ms │             22.92 / 29.01 ±4.24 / 34.85 ms │  1.07x slower │
│ QQuery 91 │          100.80 / 105.65 ±2.81 / 109.52 ms │          105.06 / 107.36 ±3.35 / 113.90 ms │     no change │
│ QQuery 92 │             53.30 / 54.99 ±1.07 / 56.39 ms │             54.58 / 55.33 ±0.58 / 56.07 ms │     no change │
│ QQuery 93 │          188.84 / 190.39 ±1.54 / 193.09 ms │          190.30 / 191.51 ±0.96 / 192.81 ms │     no change │
│ QQuery 94 │             68.99 / 70.60 ±1.17 / 72.14 ms │             69.20 / 69.77 ±0.51 / 70.38 ms │     no change │
│ QQuery 95 │          150.77 / 152.32 ±1.22 / 153.76 ms │          149.36 / 151.20 ±1.19 / 152.98 ms │     no change │
│ QQuery 96 │             84.55 / 88.25 ±1.98 / 90.11 ms │             82.91 / 89.23 ±3.35 / 92.32 ms │     no change │
│ QQuery 97 │          148.68 / 153.88 ±3.23 / 158.74 ms │          156.10 / 158.90 ±2.27 / 162.41 ms │     no change │
│ QQuery 98 │          122.14 / 125.09 ±2.32 / 129.05 ms │          122.73 / 124.80 ±1.96 / 128.35 ms │     no change │
│ QQuery 99 │   10717.47 / 10730.62 ±10.27 / 10743.87 ms │   10697.16 / 10736.84 ±30.31 / 10773.93 ms │     no change │
└───────────┴────────────────────────────────────────────┴────────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                  ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                  │ 62561.91ms │
│ Total Time (combine-21351-21580)   │ 61515.65ms │
│ Average Time (HEAD)                │   631.94ms │
│ Average Time (combine-21351-21580) │   621.37ms │
│ Queries Faster                     │          5 │
│ Queries Slower                     │          2 │
│ Queries with No Change             │         92 │
│ Queries with Failure               │          0 │
└────────────────────────────────────┴────────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 313.2s
Peak memory 34.4 GiB
Avg memory 24.3 GiB
CPU user 627.7s
CPU sys 28.6s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 308.0s
Peak memory 36.6 GiB
Avg memory 25.3 GiB
CPU user 604.7s
CPU sys 28.2s
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

datasource Changes to the datasource crate sqllogictest SQL Logic Tests (.slt)

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants