Skip to content

perf: simplify HashJoinExec dynamic filter, drop CASE routing#21931

Open
adriangb wants to merge 6 commits intoapache:mainfrom
pydantic:worktree-dynamic-filter-restructure
Open

perf: simplify HashJoinExec dynamic filter, drop CASE routing#21931
adriangb wants to merge 6 commits intoapache:mainfrom
pydantic:worktree-dynamic-filter-restructure

Conversation

@adriangb
Copy link
Copy Markdown
Contributor

@adriangb adriangb commented Apr 29, 2026

Which issue does this PR close?

Rationale for this change

Today the Partitioned-mode HashJoinExec builds a dynamic filter that's structured around the repartition layout:

CASE hash_repartition % N
  WHEN 0 THEN p0_bounds AND (p0_inlist | p0_hash_lookup)
  WHEN 1 THEN p1_bounds AND (p1_inlist | p1_hash_lookup)
  ...
  ELSE false
END

Two problems with this:

  1. Per-row routing-hash cost. Every probe row pays a hash_repartition % N even though the partition's hash table will be probed anyway with a different seed (HASH_JOIN_SEED).
  2. Coupling. The dynamic filter's shape depends on how the build side was repartitioned, even though semantically the filter is just "is this key somewhere in the build side?"

This PR replaces the routing CASE with a structure that depends only on the content of the build side, not its layout, and adds a cross-partition merged `IN (SET)` fast path so small joins can participate in parquet stats / bloom-filter pruning at the scan side.

What changes are included in this PR?

Five commits:

  1. `perf: collapse all-Map dynamic filter into MultiMapLookupExpr` — new `MultiMapLookupExpr` hashes the join keys once with `HASH_JOIN_SEED` and ORs `contain_hashes()` across every reported partition's hash table.
  2. `perf: collapse small all-InList dynamic filter into one cross-partition IN (SET)` — when every reported partition contributed an InList array and the cross-partition union is small enough, concatenate them into a single global `IN (SET)`.
  3. `refactor: drop CASE routing from Partitioned dynamic filters` — `PushdownStrategy` now always carries the `Map` (the join's hash table is built unconditionally) plus an optional InList array; the routing CASE goes away.
  4. `refactor: dedup cross-partition InList, reuse per-partition cap` — combine path deduplicates by `ScalarValue` and re-gates on distinct count. The existing `optimizer.hash_join_inlist_pushdown_max_distinct_values` knob caps both per-partition InList eligibility and the cross-partition merged set.
  5. `docs: rewrite comments to describe the code, not the change` — comment cleanup.

Final filter-shape matrix

input shape
`enable_dynamic_filter_pushdown=false` no filter installed
`CollectLeft`, build empty filter stays at `lit(true)`
`CollectLeft`, build small (under inlist caps) `bounds AND IN (SET)`
`CollectLeft`, build large `bounds AND hash_lookup`
`Partitioned`, all reported partitions empty `lit(false)`
`Partitioned`, any partition canceled `lit(true)`
`Partitioned`, every partition InList AND combined ≤ cap `bounds AND IN (SET)` (parquet-prunable)
`Partitioned`, anything else `bounds AND multi_hash_lookup`

No more `CASE`, no more `hash_repartition`, no more `REPARTITION_RANDOM_STATE` in the dynamic-filter path.

Performance

Per-row cost (Partitioned mode)

Let `N` = number of build-side partitions. For each probe row evaluated by the dynamic filter:

Shape Hashes Hash-table probes Per-row cost
Legacy CASE-by-routing 2 (routing + lookup) 1 (one branch) `O(1)`
`multi_hash_lookup` (all-Map fast path) 1 (lookup) N (one per map) `O(N)`
Merged `IN (SET)` (small-union fast path) 1 1 (one `static_filter`) `O(1)` + scan-side row-group / bloom pruning

Two countervailing forces shape the result:

  • Per-batch overhead: legacy CASE evaluates through `CaseExpr`, which can scale poorly with the number of `WHEN` branches at high N. `multi_hash_lookup` is a single straight-line OR loop and avoids this.
  • Per-row overhead at high N: `multi_hash_lookup` does N probes per row. When the filter runs in the parquet scan hot loop (pushdown=true), this matters more than the CASE per-batch overhead. When the filter runs at join time (pushdown=false), it doesn't.

Benchmarks (TPC-H, runner = c4a-highmem-16, ARM Neoverse-V2, 16 cores)

Triggered four runs covering both N regimes and both pushdown configs.

Default partitioning (N ≈ ncores ≈ 16)

Config `Total Time (HEAD)` `Total Time (PR)` Change
`pushdown_filters=false` 912.79 ms 916.39 ms +0.4% (noise)
`pushdown_filters=true` 1259.10 ms 1166.39 ms −7.4%

In the `pushdown=true` run the wins concentrate on queries where the dynamic filter feeds parquet stats / bloom-filter pruning at the scan:

Query HEAD PR Change
Q17 165 / 171 ms 56 / 56 ms +2.96× faster
Q18 77 / 77 ms 59 / 60 ms +1.30× faster
Q20 47 / 47 ms 44 / 49 ms +1.06× faster
Q3 49 / 49 ms 54 / 55 ms 1.10× slower
Q5 73 / 76 ms 77 / 82 ms 1.05× slower
Q9 112 / 115 ms 124 / 127 ms 1.10× slower
Q13 50 / 50 ms 64 / 64 ms 1.29× slower
Q14 41 / 42 ms 46 / 47 ms 1.11× slower

Q17 alone is 109 ms of the 93 ms total wall-clock improvement — that's the original issue's regression, fixed. The small-query regressions (Q3/Q5/Q9/Q13/Q14) are the all-Map shape paying `O(N)` probes per row for moderate-to-large build sides where the bounds prefix doesn't prune much.

High partition count (`target_partitions=128`)

A stress test of partition-count scaling on the same 16-core box.

Config `Total Time (HEAD)` `Total Time (PR)` Change
`pushdown_filters=false` 2566.31 ms 1756.80 ms −31.5% (1.46× faster)
`pushdown_filters=true` 3209.06 ms 3636.15 ms +13.3%

Pushdown=false @ N=128: 11 queries faster, 0 slower, 11 unchanged. `multi_hash_lookup` cleanly beats the legacy 128-branch `CaseExpr` evaluation. Big wins on Q3 (1.68×), Q5 (1.82×), Q7 (1.75×), Q8 (2.15×), Q9 (1.64×), Q12 (1.81×), Q13 (1.76×), Q17 (1.59×), Q18 (1.29×), Q20 (2.05×), Q21 (1.43×).

Pushdown=true @ N=128: 4 faster, 9 slower. This is the case where the filter runs in the scan hot loop and `multi_hash_lookup`'s `O(N)` probes per row dominate. The wins (Q17 1.87×, Q18 1.39×, Q20 1.76×) survive because their merged `IN (SET)` prunes whole row groups before the per-row filter ever runs. The losses (Q5 1.88×, Q9 1.64×, Q21 1.62×, Q14 1.51×, Q8 1.37×) are the same all-Map shape paying 128 probes per row.

Summary of the regime grid

pushdown=false pushdown=true
N ≈ ncores (default) noise (≈0%) −7.4% (Q17 +2.96×)
N = 128 −31.5% +13.3% (Q17 still +1.87×, but Q5/Q9 etc. regress)

Three of the four configs are wins (one big), one is a regression. The single regressing config is `high N + scan-side pushdown`, which is exactly the scenario `OptionalFilterPhysicalExpr` from #20363 is designed to absorb: the adaptive tracker would measure `multi_hash_lookup`'s low `bytes_pruned_per_second_of_eval_time` for queries like Q5/Q9/Q21 and drop the filter, while keeping Q17/Q18/Q20 (which prune scans aggressively).

A possible structural follow-up — re-introducing partition routing inside `MultiMapLookupExpr` (1 routing hash + 1 probe, so per-row cost matches legacy CASE) — would close the regression at any N, with or without #20363.

Are these changes tested?

  • Existing `joins::hash_join` lib tests pass (380 tests).
  • `physical_optimizer::filter_pushdown` integration tests pass (51 tests). Two snapshots updated:
    • `test_hashjoin_dynamic_filter_pushdown_partitioned` now produces `bounds AND struct(...) IN (SET) ([...])` directly (the size-gated path subsumes what `force_hash_collisions` previously fell into).
    • `test_hashjoin_hash_table_pushdown_partitioned` now positively asserts `multi_hash_lookup` and the absence of `hash_repartition`.
  • `information_schema.slt` updated to reflect the new default for `hash_join_inlist_pushdown_max_distinct_values`.
  • `push_down_filter_parquet.slt` passes.
  • `cargo clippy -p datafusion-physical-plan --all-targets -- -D warnings` is clean.

Are there any user-facing changes?

  • Default lowered: `optimizer.hash_join_inlist_pushdown_max_distinct_values` 150 → 20. Affects which build-side shapes choose InList vs. hash-table pushdown per partition, and now also gates the cross-partition merged InList. Users who depend on the old per-partition behavior can set it back to 150 in their config. Doc string in `config.rs` and `docs/source/user-guide/configs.md` are updated.
  • Plan output: `EXPLAIN ANALYZE` for `Partitioned` hash joins no longer shows `CASE hash_repartition % N WHEN ...`. Instead it shows either `bounds AND struct(...) IN (SET) ([...])` (small joins) or `bounds AND multi_hash_lookup` (everything else).

🤖 Generated with Claude Code

@github-actions github-actions Bot added documentation Improvements or additions to documentation core Core DataFusion crate common Related to common crate physical-plan Changes to the physical-plan crate labels Apr 29, 2026
@adriangb
Copy link
Copy Markdown
Contributor Author

run benchmark tcph

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

@adriangb
Copy link
Copy Markdown
Contributor Author

run benchmark tcph

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
       DATAFUSION_EXECUTION_PARQUET_REORDER_FILTERS: true

@adriangbot
Copy link
Copy Markdown

🤖 Criterion benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4345503296-1912-446v6 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 (7a8272f) to main diff
BENCH_NAME=tcph
BENCH_COMMAND=cargo bench --features=parquet --bench tcph
BENCH_FILTER=
Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot
Copy link
Copy Markdown

Benchmark for this request failed.

Last 20 lines of output:

Click to expand
  Downloaded compression-codecs v0.4.38
  Downloaded cfg_aliases v0.2.1
  Downloaded aws-credential-types v1.2.14
  Downloaded async-stream v0.3.6
  Downloaded atoi v2.0.0
  Downloaded arrow-string v58.1.0
  Downloaded anstyle v1.0.14
  Downloaded axum-core v0.5.6
  Downloaded aws-smithy-xml v0.60.15
  Downloaded aws-smithy-observability v0.2.6
  Downloaded autocfg v1.5.0
  Downloaded ahash v0.8.12
  Downloaded anstream v1.0.0
  Downloaded async-recursion v1.1.1
  Downloaded async-ffi v0.5.0
  Downloaded anes v0.1.6
    Blocking waiting for file lock on package cache
error: no bench target named `tcph` in default-run packages

help: a target with a similar name exists: `chr`

File an issue against this benchmark runner

@adriangbot
Copy link
Copy Markdown

🤖 Criterion benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4345504799-1913-ftp4k 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 (7a8272f) to main diff
BENCH_NAME=tcph
BENCH_COMMAND=cargo bench --features=parquet --bench tcph
BENCH_FILTER=
Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot
Copy link
Copy Markdown

Benchmark for this request failed.

Last 20 lines of output:

Click to expand
  Downloaded clap v4.6.1
  Downloaded ciborium v0.2.2
  Downloaded aws-smithy-xml v0.60.15
  Downloaded async-stream-impl v0.3.6
  Downloaded arrow-csv v58.1.0
  Downloaded compression-core v0.4.32
  Downloaded bytes-utils v0.1.4
  Downloaded blake2 v0.10.6
  Downloaded bitflags v2.11.1
  Downloaded aws-types v1.3.15
  Downloaded aws-smithy-async v1.2.14
  Downloaded anstyle v1.0.14
  Downloaded clap_lex v1.1.0
  Downloaded aws-smithy-query v0.60.15
  Downloaded aws-smithy-observability v0.2.6
  Downloaded arrayref v0.3.9
    Blocking waiting for file lock on package cache
error: no bench target named `tcph` in default-run packages

help: a target with a similar name exists: `chr`

File an issue against this benchmark runner

@adriangb
Copy link
Copy Markdown
Contributor Author

run benchmark tpch

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
       DATAFUSION_EXECUTION_PARQUET_REORDER_FILTERS: true

@adriangb
Copy link
Copy Markdown
Contributor Author

run benchmark tpch

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

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4345545637-1915-vxjfd 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 (7a8272f) 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-c4345547022-1916-gt4f5 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 (7a8272f) to main diff using: tpch
Results will be posted here when complete


File an issue against this benchmark runner

@github-actions github-actions Bot added the sqllogictest SQL Logic Tests (.slt) label Apr 29, 2026
@adriangbot
Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

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

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

Comparing HEAD and worktree-dynamic-filter-restructure
--------------------
Benchmark tpch_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                              HEAD ┃ worktree-dynamic-filter-restructure ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │    43.41 / 44.20 ±0.95 / 46.07 ms │      43.37 / 44.58 ±1.47 / 47.38 ms │     no change │
│ QQuery 2  │    25.18 / 25.59 ±0.35 / 26.10 ms │      25.09 / 25.23 ±0.24 / 25.72 ms │     no change │
│ QQuery 3  │    48.02 / 48.76 ±0.41 / 49.09 ms │      52.88 / 53.66 ±0.85 / 55.19 ms │  1.10x slower │
│ QQuery 4  │    22.73 / 22.86 ±0.11 / 23.02 ms │      22.47 / 22.68 ±0.13 / 22.88 ms │     no change │
│ QQuery 5  │    70.47 / 72.83 ±2.26 / 76.28 ms │      73.07 / 76.76 ±3.21 / 81.56 ms │  1.05x slower │
│ QQuery 6  │    35.98 / 36.50 ±0.54 / 37.55 ms │      36.12 / 37.55 ±1.15 / 38.84 ms │     no change │
│ QQuery 7  │    57.86 / 58.04 ±0.21 / 58.45 ms │      55.25 / 56.19 ±1.09 / 58.34 ms │     no change │
│ QQuery 8  │    79.29 / 80.19 ±0.67 / 81.15 ms │      76.28 / 76.74 ±0.51 / 77.67 ms │     no change │
│ QQuery 9  │ 110.20 / 112.39 ±2.16 / 115.28 ms │   120.81 / 124.17 ±2.52 / 126.74 ms │  1.10x slower │
│ QQuery 10 │    76.60 / 77.36 ±0.60 / 78.04 ms │      76.50 / 76.70 ±0.31 / 77.31 ms │     no change │
│ QQuery 11 │    16.63 / 17.50 ±0.98 / 19.19 ms │      16.15 / 16.94 ±0.76 / 18.03 ms │     no change │
│ QQuery 12 │    46.65 / 47.21 ±0.60 / 48.34 ms │      45.96 / 47.22 ±2.09 / 51.39 ms │     no change │
│ QQuery 13 │    48.67 / 49.58 ±0.56 / 50.27 ms │      63.30 / 63.75 ±0.36 / 64.23 ms │  1.29x slower │
│ QQuery 14 │    40.73 / 41.21 ±0.61 / 42.29 ms │      44.72 / 45.58 ±0.69 / 46.50 ms │  1.11x slower │
│ QQuery 15 │    45.55 / 46.45 ±0.75 / 47.39 ms │      45.01 / 46.74 ±1.97 / 50.52 ms │     no change │
│ QQuery 16 │    23.72 / 24.27 ±0.57 / 25.18 ms │      23.46 / 23.72 ±0.18 / 23.98 ms │     no change │
│ QQuery 17 │ 161.67 / 165.40 ±3.60 / 171.03 ms │      55.41 / 55.87 ±0.49 / 56.52 ms │ +2.96x faster │
│ QQuery 18 │    75.97 / 76.74 ±0.55 / 77.28 ms │      57.68 / 58.81 ±0.99 / 59.97 ms │ +1.30x faster │
│ QQuery 19 │    42.01 / 42.27 ±0.20 / 42.49 ms │      42.38 / 42.80 ±0.29 / 43.14 ms │     no change │
│ QQuery 20 │    45.92 / 46.56 ±0.53 / 47.48 ms │      42.72 / 43.95 ±2.31 / 48.58 ms │ +1.06x faster │
│ QQuery 21 │    84.97 / 86.79 ±2.22 / 91.01 ms │      89.70 / 90.48 ±0.67 / 91.45 ms │     no change │
│ QQuery 22 │    35.83 / 36.41 ±0.32 / 36.77 ms │      36.07 / 36.24 ±0.13 / 36.46 ms │     no change │
└───────────┴───────────────────────────────────┴─────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┓
┃ Benchmark Summary                                  ┃           ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━┩
│ Total Time (HEAD)                                  │ 1259.10ms │
│ Total Time (worktree-dynamic-filter-restructure)   │ 1166.39ms │
│ Average Time (HEAD)                                │   57.23ms │
│ Average Time (worktree-dynamic-filter-restructure) │   53.02ms │
│ Queries Faster                                     │         3 │
│ Queries Slower                                     │         5 │
│ Queries with No Change                             │        14 │
│ Queries with Failure                               │         0 │
└────────────────────────────────────────────────────┴───────────┘

Resource Usage

tpch — base (merge-base)

Metric Value
Wall time 10.0s
Peak memory 5.3 GiB
Avg memory 4.6 GiB
CPU user 47.7s
CPU sys 2.6s
Peak spill 0 B

tpch — branch

Metric Value
Wall time 10.0s
Peak memory 5.3 GiB
Avg memory 4.5 GiB
CPU user 42.2s
CPU sys 2.7s
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 worktree-dynamic-filter-restructure
--------------------
Benchmark tpch_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                           HEAD ┃ worktree-dynamic-filter-restructure ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │ 41.66 / 42.57 ±1.04 / 44.21 ms │      40.50 / 41.42 ±1.12 / 43.61 ms │     no change │
│ QQuery 2  │ 21.92 / 22.31 ±0.47 / 23.20 ms │      20.98 / 21.26 ±0.16 / 21.46 ms │     no change │
│ QQuery 3  │ 39.33 / 43.06 ±2.19 / 46.23 ms │      38.00 / 39.19 ±1.17 / 40.70 ms │ +1.10x faster │
│ QQuery 4  │ 19.18 / 19.43 ±0.14 / 19.59 ms │      18.65 / 19.08 ±0.62 / 20.30 ms │     no change │
│ QQuery 5  │ 48.30 / 50.23 ±1.65 / 52.60 ms │      49.54 / 50.89 ±1.39 / 53.45 ms │     no change │
│ QQuery 6  │ 17.67 / 17.74 ±0.07 / 17.85 ms │      17.64 / 17.83 ±0.15 / 18.08 ms │     no change │
│ QQuery 7  │ 55.53 / 56.45 ±0.75 / 57.57 ms │      54.68 / 56.55 ±1.58 / 58.30 ms │     no change │
│ QQuery 8  │ 48.77 / 48.97 ±0.18 / 49.24 ms │      48.75 / 48.86 ±0.08 / 49.01 ms │     no change │
│ QQuery 9  │ 54.11 / 55.41 ±0.91 / 56.61 ms │      54.78 / 56.06 ±1.70 / 59.40 ms │     no change │
│ QQuery 10 │ 66.35 / 67.23 ±1.43 / 70.07 ms │      67.59 / 69.20 ±1.44 / 71.78 ms │     no change │
│ QQuery 11 │ 14.35 / 14.72 ±0.47 / 15.60 ms │      14.69 / 15.15 ±0.30 / 15.50 ms │     no change │
│ QQuery 12 │ 27.56 / 28.25 ±0.63 / 29.05 ms │      28.14 / 28.76 ±0.80 / 30.30 ms │     no change │
│ QQuery 13 │ 38.35 / 38.83 ±0.29 / 39.13 ms │      39.07 / 39.66 ±0.37 / 40.25 ms │     no change │
│ QQuery 14 │ 28.33 / 28.63 ±0.22 / 28.99 ms │      28.93 / 29.22 ±0.23 / 29.56 ms │     no change │
│ QQuery 15 │ 34.09 / 34.42 ±0.31 / 35.01 ms │      34.76 / 35.24 ±0.37 / 35.86 ms │     no change │
│ QQuery 16 │ 15.70 / 15.80 ±0.07 / 15.90 ms │      16.00 / 16.27 ±0.38 / 17.03 ms │     no change │
│ QQuery 17 │ 79.29 / 80.63 ±0.82 / 81.84 ms │      75.69 / 77.38 ±0.90 / 78.18 ms │     no change │
│ QQuery 18 │ 76.53 / 77.79 ±0.95 / 79.12 ms │      78.73 / 79.49 ±0.46 / 80.05 ms │     no change │
│ QQuery 19 │ 38.12 / 38.39 ±0.16 / 38.58 ms │      38.75 / 39.13 ±0.24 / 39.35 ms │     no change │
│ QQuery 20 │ 40.28 / 41.62 ±2.55 / 46.73 ms │      40.75 / 42.65 ±3.22 / 49.05 ms │     no change │
│ QQuery 21 │ 64.08 / 65.63 ±1.07 / 66.75 ms │      66.91 / 67.85 ±0.80 / 69.22 ms │     no change │
│ QQuery 22 │ 24.47 / 24.68 ±0.14 / 24.82 ms │      24.97 / 25.24 ±0.19 / 25.47 ms │     no change │
└───────────┴────────────────────────────────┴─────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━┓
┃ Benchmark Summary                                  ┃          ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━┩
│ Total Time (HEAD)                                  │ 912.79ms │
│ Total Time (worktree-dynamic-filter-restructure)   │ 916.39ms │
│ Average Time (HEAD)                                │  41.49ms │
│ Average Time (worktree-dynamic-filter-restructure) │  41.65ms │
│ Queries Faster                                     │        1 │
│ Queries Slower                                     │        0 │
│ Queries with No Change                             │       21 │
│ Queries with Failure                               │        0 │
└────────────────────────────────────────────────────┴──────────┘

Resource Usage

tpch — base (merge-base)

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

tpch — branch

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

File an issue against this benchmark runner

@adriangb
Copy link
Copy Markdown
Contributor Author

run benchmark tpch

baseline:
    ref: main
    env:
       DATAFUSION_EXECUTION_TARGET_PARTITIONS=128
       DATAFUSION_EXECUTION_PARQUET_PUSHDOWN_FILTERS: false
       DATAFUSION_EXECUTION_PARQUET_REORDER_FILTERS: false
changed:
    ref: HEAD
    env:
       DATAFUSION_EXECUTION_TARGET_PARTITIONS=128
       DATAFUSION_EXECUTION_PARQUET_PUSHDOWN_FILTERS: false
       DATAFUSION_EXECUTION_PARQUET_REORDER_FILTERS: false

@adriangbot
Copy link
Copy Markdown

Hi @adriangb, your benchmark configuration could not be parsed (#21931 (comment)).

Error: invalid configuration: baseline.env: invalid type: string "DATAFUSION_EXECUTION_TARGET_PARTITIONS=128 DATAFUSION_EXECUTION_PARQUET_PUSHDOWN_FILTERS", expected a map at line 5 column 8

Supported benchmarks:

  • Standard: clickbench_1, clickbench_extended, clickbench_partitioned, clickbench_pushdown, external_aggr, smj, sort_pushdown, sort_pushdown_inexact, sort_pushdown_inexact_overlap, sort_pushdown_inexact_unsorted, sort_pushdown_sorted, topk_tpch, tpcds, tpch, tpch10, tpch_mem, tpch_mem10
  • Criterion: (any)

Usage:

run benchmark <name>           # run specific benchmark(s)
run benchmarks                 # run default suite
run benchmarks <name1> <name2> # run specific benchmarks

Per-side configuration (run benchmark tpch followed by):

env:
SHARED_SETTING: enabled
baseline:
ref: v45.0.0
env:
DATAFUSION_RUNTIME_MEMORY_LIMIT: 1G
changed:
ref: v46.0.0
env:
DATAFUSION_RUNTIME_MEMORY_LIMIT: 2G

File an issue against this benchmark runner

@adriangb
Copy link
Copy Markdown
Contributor Author

run benchmark tpch

baseline:
    ref: main
    env:
       DATAFUSION_EXECUTION_TARGET_PARTITIONS=128
       DATAFUSION_EXECUTION_PARQUET_PUSHDOWN_FILTERS: true
       DATAFUSION_EXECUTION_PARQUET_REORDER_FILTERS: true
changed:
    ref: HEAD
    env:
       DATAFUSION_EXECUTION_TARGET_PARTITIONS=128
       DATAFUSION_EXECUTION_PARQUET_PUSHDOWN_FILTERS: true
       DATAFUSION_EXECUTION_PARQUET_REORDER_FILTERS: true

@adriangbot
Copy link
Copy Markdown

Hi @adriangb, your benchmark configuration could not be parsed (#21931 (comment)).

Error: invalid configuration: baseline.env: invalid type: string "DATAFUSION_EXECUTION_TARGET_PARTITIONS=128 DATAFUSION_EXECUTION_PARQUET_PUSHDOWN_FILTERS", expected a map at line 5 column 8

Supported benchmarks:

  • Standard: clickbench_1, clickbench_extended, clickbench_partitioned, clickbench_pushdown, external_aggr, smj, sort_pushdown, sort_pushdown_inexact, sort_pushdown_inexact_overlap, sort_pushdown_inexact_unsorted, sort_pushdown_sorted, topk_tpch, tpcds, tpch, tpch10, tpch_mem, tpch_mem10
  • Criterion: (any)

Usage:

run benchmark <name>           # run specific benchmark(s)
run benchmarks                 # run default suite
run benchmarks <name1> <name2> # run specific benchmarks

Per-side configuration (run benchmark tpch followed by):

env:
SHARED_SETTING: enabled
baseline:
ref: v45.0.0
env:
DATAFUSION_RUNTIME_MEMORY_LIMIT: 1G
changed:
ref: v46.0.0
env:
DATAFUSION_RUNTIME_MEMORY_LIMIT: 2G

File an issue against this benchmark runner

@adriangb
Copy link
Copy Markdown
Contributor Author

run benchmark tpch

baseline:
    ref: main
    env:
       DATAFUSION_EXECUTION_TARGET_PARTITIONS: 128
       DATAFUSION_EXECUTION_PARQUET_PUSHDOWN_FILTERS: false
       DATAFUSION_EXECUTION_PARQUET_REORDER_FILTERS: false
changed:
    ref: HEAD
    env:
       DATAFUSION_EXECUTION_TARGET_PARTITIONS: 128
       DATAFUSION_EXECUTION_PARQUET_PUSHDOWN_FILTERS: false
       DATAFUSION_EXECUTION_PARQUET_REORDER_FILTERS: false

@adriangb
Copy link
Copy Markdown
Contributor Author

run benchmark tpch

baseline:
    ref: main
    env:
       DATAFUSION_EXECUTION_TARGET_PARTITIONS: 128
       DATAFUSION_EXECUTION_PARQUET_PUSHDOWN_FILTERS: true
       DATAFUSION_EXECUTION_PARQUET_REORDER_FILTERS: true
changed:
    ref: HEAD
    env:
       DATAFUSION_EXECUTION_TARGET_PARTITIONS: 128
       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-c4345772857-1921-hxt5c 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 (18129fe) 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-c4345770652-1920-8dwhv 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 (18129fe) 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 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 worktree-dynamic-filter-restructure
--------------------
Benchmark tpch_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                               HEAD ┃ worktree-dynamic-filter-restructure ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │     50.39 / 51.37 ±0.72 / 52.18 ms │      50.98 / 51.49 ±0.41 / 51.93 ms │     no change │
│ QQuery 2  │     41.24 / 42.35 ±1.13 / 44.39 ms │      42.22 / 43.18 ±1.52 / 46.19 ms │     no change │
│ QQuery 3  │ 121.16 / 137.14 ±10.30 / 149.26 ms │      80.57 / 81.85 ±1.46 / 84.12 ms │ +1.68x faster │
│ QQuery 4  │     35.18 / 37.11 ±1.11 / 38.15 ms │      35.39 / 36.62 ±1.11 / 38.35 ms │     no change │
│ QQuery 5  │ 202.96 / 225.56 ±12.70 / 237.39 ms │   121.17 / 124.14 ±2.37 / 127.42 ms │ +1.82x faster │
│ QQuery 6  │     21.61 / 22.62 ±0.68 / 23.24 ms │      22.16 / 22.79 ±0.61 / 23.75 ms │     no change │
│ QQuery 7  │  209.79 / 218.28 ±4.51 / 222.71 ms │   120.22 / 124.67 ±2.41 / 127.04 ms │ +1.75x faster │
│ QQuery 8  │  207.20 / 212.46 ±3.23 / 216.63 ms │     95.98 / 98.63 ±1.75 / 100.98 ms │ +2.15x faster │
│ QQuery 9  │  196.07 / 198.42 ±2.40 / 202.39 ms │   118.49 / 121.18 ±2.19 / 124.98 ms │ +1.64x faster │
│ QQuery 10 │     83.06 / 84.09 ±0.83 / 85.33 ms │      82.62 / 84.10 ±1.05 / 85.83 ms │     no change │
│ QQuery 11 │     40.02 / 41.99 ±1.88 / 44.95 ms │      40.26 / 41.90 ±1.06 / 43.37 ms │     no change │
│ QQuery 12 │  113.38 / 118.16 ±4.21 / 123.64 ms │      62.57 / 65.21 ±1.62 / 67.20 ms │ +1.81x faster │
│ QQuery 13 │  105.37 / 111.78 ±4.20 / 118.07 ms │      61.98 / 63.48 ±1.16 / 64.82 ms │ +1.76x faster │
│ QQuery 14 │     44.86 / 45.82 ±0.69 / 46.79 ms │      46.48 / 47.54 ±1.38 / 49.97 ms │     no change │
│ QQuery 15 │     60.09 / 62.55 ±1.75 / 64.45 ms │      62.15 / 63.99 ±1.88 / 67.34 ms │     no change │
│ QQuery 16 │     41.66 / 43.44 ±1.00 / 44.29 ms │      41.97 / 44.42 ±1.39 / 45.76 ms │     no change │
│ QQuery 17 │  201.30 / 202.76 ±1.35 / 204.66 ms │   125.61 / 127.81 ±2.07 / 131.26 ms │ +1.59x faster │
│ QQuery 18 │  287.19 / 295.98 ±5.08 / 301.13 ms │   226.72 / 230.02 ±2.75 / 234.29 ms │ +1.29x faster │
│ QQuery 19 │     43.90 / 45.02 ±0.61 / 45.65 ms │      44.09 / 44.77 ±0.51 / 45.66 ms │     no change │
│ QQuery 20 │  127.40 / 139.73 ±6.29 / 145.14 ms │      65.72 / 68.09 ±1.50 / 69.87 ms │ +2.05x faster │
│ QQuery 21 │  181.94 / 191.00 ±8.25 / 205.46 ms │   130.00 / 133.81 ±3.16 / 139.60 ms │ +1.43x faster │
│ QQuery 22 │     37.94 / 38.71 ±0.62 / 39.46 ms │      34.81 / 37.13 ±1.58 / 39.13 ms │     no change │
└───────────┴────────────────────────────────────┴─────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┓
┃ Benchmark Summary                                  ┃           ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━┩
│ Total Time (HEAD)                                  │ 2566.31ms │
│ Total Time (worktree-dynamic-filter-restructure)   │ 1756.80ms │
│ Average Time (HEAD)                                │  116.65ms │
│ Average Time (worktree-dynamic-filter-restructure) │   79.85ms │
│ Queries Faster                                     │        11 │
│ Queries Slower                                     │         0 │
│ Queries with No Change                             │        11 │
│ Queries with Failure                               │         0 │
└────────────────────────────────────────────────────┴───────────┘

Resource Usage

tpch — base (merge-base)

Metric Value
Wall time 15.0s
Peak memory 6.4 GiB
Avg memory 5.5 GiB
CPU user 107.0s
CPU sys 3.7s
Peak spill 0 B

tpch — branch

Metric Value
Wall time 10.0s
Peak memory 6.5 GiB
Avg memory 5.6 GiB
CPU user 58.1s
CPU sys 3.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 worktree-dynamic-filter-restructure
--------------------
Benchmark tpch_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                              HEAD ┃ worktree-dynamic-filter-restructure ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │    52.05 / 53.47 ±1.27 / 55.54 ms │      52.46 / 53.78 ±1.30 / 55.95 ms │     no change │
│ QQuery 2  │    43.53 / 45.21 ±1.02 / 46.38 ms │      44.19 / 47.68 ±1.96 / 49.75 ms │  1.05x slower │
│ QQuery 3  │ 150.12 / 158.75 ±5.93 / 167.47 ms │   162.14 / 166.32 ±3.24 / 169.49 ms │     no change │
│ QQuery 4  │    37.45 / 38.42 ±0.65 / 39.41 ms │      37.47 / 39.01 ±1.57 / 41.51 ms │     no change │
│ QQuery 5  │ 250.10 / 260.92 ±8.26 / 270.85 ms │   482.17 / 490.53 ±6.89 / 498.80 ms │  1.88x slower │
│ QQuery 6  │    37.75 / 38.66 ±1.18 / 40.91 ms │      37.37 / 38.63 ±0.86 / 39.76 ms │     no change │
│ QQuery 7  │ 355.41 / 367.58 ±9.23 / 383.28 ms │   299.28 / 302.02 ±2.32 / 306.23 ms │ +1.22x faster │
│ QQuery 8  │ 275.92 / 292.06 ±8.97 / 301.66 ms │   397.50 / 400.91 ±2.51 / 404.69 ms │  1.37x slower │
│ QQuery 9  │ 307.64 / 313.54 ±3.44 / 317.16 ms │   503.08 / 513.16 ±8.07 / 526.26 ms │  1.64x slower │
│ QQuery 10 │    90.62 / 92.01 ±1.37 / 94.33 ms │      92.26 / 93.08 ±0.94 / 94.78 ms │     no change │
│ QQuery 11 │    38.05 / 39.69 ±1.26 / 41.91 ms │      41.18 / 42.07 ±0.71 / 43.00 ms │  1.06x slower │
│ QQuery 12 │ 136.20 / 148.87 ±7.23 / 156.97 ms │   156.43 / 160.31 ±2.80 / 164.44 ms │  1.08x slower │
│ QQuery 13 │ 118.32 / 125.06 ±8.53 / 140.29 ms │   138.64 / 142.22 ±1.91 / 143.88 ms │  1.14x slower │
│ QQuery 14 │    79.33 / 80.29 ±1.00 / 82.11 ms │   118.86 / 120.90 ±1.58 / 122.93 ms │  1.51x slower │
│ QQuery 15 │    70.79 / 71.76 ±0.78 / 72.92 ms │      68.56 / 72.13 ±2.14 / 74.64 ms │     no change │
│ QQuery 16 │    52.72 / 54.60 ±1.38 / 56.70 ms │      51.29 / 54.30 ±1.66 / 56.01 ms │     no change │
│ QQuery 17 │ 289.38 / 294.78 ±5.76 / 302.41 ms │   155.59 / 157.78 ±1.75 / 160.34 ms │ +1.87x faster │
│ QQuery 18 │ 228.93 / 243.10 ±8.59 / 255.82 ms │   171.78 / 175.22 ±2.07 / 178.18 ms │ +1.39x faster │
│ QQuery 19 │    44.33 / 45.59 ±0.80 / 46.55 ms │      44.85 / 45.29 ±0.41 / 45.81 ms │     no change │
│ QQuery 20 │ 151.21 / 157.23 ±5.36 / 166.85 ms │      87.82 / 89.43 ±1.11 / 90.61 ms │ +1.76x faster │
│ QQuery 21 │ 217.93 / 233.27 ±9.60 / 247.64 ms │   375.11 / 377.42 ±1.62 / 379.55 ms │  1.62x slower │
│ QQuery 22 │    52.66 / 54.19 ±1.64 / 57.34 ms │      51.94 / 53.94 ±1.32 / 56.07 ms │     no change │
└───────────┴───────────────────────────────────┴─────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┓
┃ Benchmark Summary                                  ┃           ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━┩
│ Total Time (HEAD)                                  │ 3209.06ms │
│ Total Time (worktree-dynamic-filter-restructure)   │ 3636.15ms │
│ Average Time (HEAD)                                │  145.87ms │
│ Average Time (worktree-dynamic-filter-restructure) │  165.28ms │
│ Queries Faster                                     │         4 │
│ Queries Slower                                     │         9 │
│ Queries with No Change                             │         9 │
│ Queries with Failure                               │         0 │
└────────────────────────────────────────────────────┴───────────┘

Resource Usage

tpch — base (merge-base)

Metric Value
Wall time 20.0s
Peak memory 6.2 GiB
Avg memory 5.4 GiB
CPU user 140.0s
CPU sys 3.4s
Peak spill 0 B

tpch — branch

Metric Value
Wall time 20.0s
Peak memory 5.9 GiB
Avg memory 5.3 GiB
CPU user 149.8s
CPU sys 3.7s
Peak spill 0 B

File an issue against this benchmark runner

adriangb and others added 2 commits April 29, 2026 17:02
In Partitioned-mode HashJoinExec, when every reported partition's build
side uses a hash-table strategy, replace the routing CASE expression
(`CASE hash_repartition % N WHEN p THEN bounds AND hash_lookup ELSE
false END`) with `global_minmax AND multi_hash_lookup`.

The new MultiMapLookupExpr hashes the join keys once with HASH_JOIN_SEED
and ORs `contain_hashes()` across every partition's hash table,
eliminating both the routing-hash computation and the per-branch
re-hashing that CaseExpr does. Any non-Map partition (InList, Empty)
disqualifies the fast path and we use the legacy CASE unchanged; same
for partitions that were canceled before reporting build data.

Benchmarks (TPC-H SF=1, 7 iters back-to-back):

  TOTAL min vs no-DF:
    legacy CASE:      +3.0%
    multi_hash_lookup: +1.6%   (~halves the regression)

  Per-query (multi_hash_lookup vs CASE):
    Q4  -6.0%   Q5  -3.3%   Q7  -6.0%   Q8  -4.0%
    Q9  -3.5%   Q12 -3.2%   Q17 -1.6%   Q21 -3.8%

Refs: apache#19858

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
…on IN (SET)

When every reported partition for a Partitioned hash join uses InList
pushdown and the cross-partition union would be ≤ 20 array entries,
concatenate the per-partition `ArrayRef`s and emit
`global_minmax AND struct(c0,c1,…) IN (SET)` instead of the routing
CASE. The cap is set so the merged set can participate in parquet
stats / bloom-filter pruning at the scan, which a per-partition CASE
or a `multi_hash_lookup` cannot.

A TPC-H SF=1 cap sweep (cap=20/50/100/200/2000) confirmed 20–50 is
the sweet spot — past ~200 the larger static_filter hash set blows
out of L1 and runtime regresses below the legacy CASE.

The tightened path also subsumes the `force_hash_collisions`
optimization (when the runtime collapses every key into one
partition we get the same shape, just for a different reason) so
both `#[cfg]` snapshot branches in
test_hashjoin_dynamic_filter_pushdown_partitioned now produce the
merged `IN (SET)` form.

Refs: apache#19858

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
@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 worktree-dynamic-filter-restructure
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃   worktree-dynamic-filter-restructure ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.18 / 4.71 ±6.91 / 18.53 ms │          1.28 / 4.85 ±6.95 / 18.75 ms │     no change │
│ QQuery 1  │        12.93 / 12.99 ±0.05 / 13.06 ms │        13.11 / 13.30 ±0.17 / 13.59 ms │     no change │
│ QQuery 2  │        37.75 / 38.06 ±0.26 / 38.37 ms │        36.55 / 37.05 ±0.26 / 37.26 ms │     no change │
│ QQuery 3  │        32.81 / 33.19 ±0.29 / 33.59 ms │        31.86 / 32.39 ±0.30 / 32.69 ms │     no change │
│ QQuery 4  │     248.08 / 259.77 ±9.20 / 269.28 ms │     245.43 / 255.16 ±6.66 / 262.37 ms │     no change │
│ QQuery 5  │    288.22 / 297.83 ±11.55 / 318.71 ms │    284.36 / 294.18 ±10.34 / 311.77 ms │     no change │
│ QQuery 6  │           6.16 / 6.23 ±0.07 / 6.32 ms │           5.47 / 6.02 ±0.45 / 6.75 ms │     no change │
│ QQuery 7  │        16.62 / 16.74 ±0.07 / 16.84 ms │        16.36 / 16.43 ±0.05 / 16.51 ms │     no change │
│ QQuery 8  │     340.24 / 350.02 ±6.21 / 359.64 ms │    332.97 / 343.69 ±10.95 / 359.33 ms │     no change │
│ QQuery 9  │    456.81 / 479.85 ±16.91 / 504.41 ms │    449.43 / 470.62 ±21.87 / 498.34 ms │     no change │
│ QQuery 10 │      96.88 / 102.03 ±2.78 / 104.85 ms │      97.81 / 104.22 ±5.07 / 111.71 ms │     no change │
│ QQuery 11 │     107.57 / 108.70 ±0.99 / 110.53 ms │     109.01 / 109.78 ±0.64 / 110.60 ms │     no change │
│ QQuery 12 │    313.14 / 333.39 ±13.99 / 353.31 ms │    310.66 / 321.50 ±10.99 / 339.08 ms │     no change │
│ QQuery 13 │    443.88 / 465.98 ±15.98 / 486.96 ms │    436.15 / 457.38 ±22.29 / 485.54 ms │     no change │
│ QQuery 14 │     338.90 / 345.05 ±3.18 / 347.78 ms │    330.47 / 342.85 ±10.62 / 355.63 ms │     no change │
│ QQuery 15 │     292.53 / 295.45 ±3.19 / 301.63 ms │    298.62 / 317.47 ±13.46 / 335.51 ms │  1.07x slower │
│ QQuery 16 │    630.12 / 677.64 ±29.09 / 708.18 ms │    647.67 / 668.91 ±11.63 / 682.20 ms │     no change │
│ QQuery 17 │    631.12 / 668.59 ±21.54 / 689.51 ms │    627.85 / 668.97 ±26.37 / 710.84 ms │     no change │
│ QQuery 18 │ 1289.52 / 1319.10 ±17.50 / 1337.54 ms │ 1290.91 / 1316.38 ±21.61 / 1340.28 ms │     no change │
│ QQuery 19 │        30.67 / 35.40 ±7.02 / 49.02 ms │        32.25 / 34.82 ±4.10 / 42.97 ms │     no change │
│ QQuery 20 │     524.25 / 532.66 ±8.22 / 542.81 ms │    520.65 / 534.95 ±12.10 / 553.45 ms │     no change │
│ QQuery 21 │     578.96 / 589.49 ±9.97 / 605.85 ms │    579.24 / 596.66 ±14.65 / 620.04 ms │     no change │
│ QQuery 22 │    936.25 / 947.29 ±11.44 / 968.44 ms │   948.72 / 964.30 ±21.23 / 1005.46 ms │     no change │
│ QQuery 23 │     114.64 / 121.96 ±4.95 / 130.13 ms │    116.11 / 126.49 ±10.17 / 144.71 ms │     no change │
│ QQuery 24 │        41.46 / 45.98 ±6.48 / 58.59 ms │        43.07 / 48.23 ±8.97 / 66.05 ms │     no change │
│ QQuery 25 │     148.61 / 150.74 ±1.63 / 153.20 ms │     148.75 / 152.73 ±2.17 / 154.92 ms │     no change │
│ QQuery 26 │        61.68 / 63.03 ±1.10 / 64.87 ms │        62.78 / 65.08 ±2.27 / 69.02 ms │     no change │
│ QQuery 27 │    726.21 / 741.80 ±12.87 / 762.62 ms │    725.54 / 749.12 ±16.06 / 771.17 ms │     no change │
│ QQuery 28 │ 3077.37 / 3121.85 ±36.79 / 3164.20 ms │ 3106.95 / 3118.29 ±13.99 / 3145.86 ms │     no change │
│ QQuery 29 │        42.48 / 43.78 ±2.10 / 47.97 ms │        42.46 / 42.83 ±0.36 / 43.40 ms │     no change │
│ QQuery 30 │    322.29 / 336.96 ±10.65 / 352.37 ms │     324.13 / 336.97 ±9.96 / 345.90 ms │     no change │
│ QQuery 31 │     318.90 / 328.72 ±7.75 / 339.11 ms │    325.58 / 338.58 ±12.80 / 360.73 ms │     no change │
│ QQuery 32 │  1058.34 / 1067.62 ±8.03 / 1081.12 ms │ 1042.99 / 1053.56 ±13.23 / 1079.36 ms │     no change │
│ QQuery 33 │ 1455.44 / 1503.45 ±40.06 / 1560.37 ms │ 1464.90 / 1524.56 ±37.61 / 1579.46 ms │     no change │
│ QQuery 34 │ 1542.33 / 1591.49 ±36.06 / 1624.86 ms │ 1497.86 / 1562.64 ±39.75 / 1618.67 ms │     no change │
│ QQuery 35 │    297.30 / 327.15 ±24.09 / 369.41 ms │    291.66 / 304.45 ±20.10 / 344.33 ms │ +1.07x faster │
│ QQuery 36 │        65.31 / 69.25 ±4.76 / 78.52 ms │      65.74 / 77.14 ±13.34 / 101.54 ms │  1.11x slower │
│ QQuery 37 │        38.42 / 42.11 ±3.96 / 49.55 ms │        38.33 / 42.02 ±3.36 / 47.52 ms │     no change │
│ QQuery 38 │        35.49 / 39.38 ±4.90 / 48.81 ms │        35.81 / 38.41 ±1.61 / 40.20 ms │     no change │
│ QQuery 39 │     118.51 / 127.45 ±5.99 / 135.47 ms │     131.91 / 137.80 ±6.53 / 149.49 ms │  1.08x slower │
│ QQuery 40 │        19.59 / 21.29 ±2.68 / 26.60 ms │        19.57 / 19.91 ±0.23 / 20.27 ms │ +1.07x faster │
│ QQuery 41 │        17.37 / 17.68 ±0.30 / 18.24 ms │        17.79 / 18.03 ±0.19 / 18.31 ms │     no change │
│ QQuery 42 │        14.61 / 14.81 ±0.13 / 14.93 ms │        15.74 / 18.04 ±4.03 / 26.07 ms │  1.22x slower │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                                  ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                                  │ 17696.66ms │
│ Total Time (worktree-dynamic-filter-restructure)   │ 17686.75ms │
│ Average Time (HEAD)                                │   411.55ms │
│ Average Time (worktree-dynamic-filter-restructure) │   411.32ms │
│ Queries Faster                                     │          2 │
│ Queries Slower                                     │          4 │
│ Queries with No Change                             │         37 │
│ Queries with Failure                               │          0 │
└────────────────────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 90.0s
Peak memory 30.2 GiB
Avg memory 22.8 GiB
CPU user 932.1s
CPU sys 61.3s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 90.0s
Peak memory 29.7 GiB
Avg memory 23.1 GiB
CPU user 929.3s
CPU sys 60.8s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

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

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

Comparing HEAD and worktree-dynamic-filter-restructure
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                     HEAD ┃      worktree-dynamic-filter-restructure ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │              6.82 / 7.35 ±0.88 / 9.12 ms │              7.50 / 7.97 ±0.82 / 9.60 ms │  1.08x slower │
│ QQuery 2  │        144.11 / 145.80 ±1.37 / 147.82 ms │        145.05 / 145.44 ±0.52 / 146.44 ms │     no change │
│ QQuery 3  │        112.89 / 113.97 ±1.00 / 115.83 ms │        113.71 / 114.46 ±0.57 / 115.18 ms │     no change │
│ QQuery 4  │    1301.91 / 1371.80 ±45.41 / 1441.97 ms │     1303.73 / 1313.81 ±7.28 / 1323.52 ms │     no change │
│ QQuery 5  │        177.12 / 177.94 ±0.91 / 179.58 ms │        174.95 / 175.92 ±0.81 / 177.10 ms │     no change │
│ QQuery 6  │        139.63 / 143.46 ±4.86 / 152.80 ms │        164.45 / 167.94 ±3.69 / 175.09 ms │  1.17x slower │
│ QQuery 7  │        334.60 / 339.91 ±5.31 / 347.55 ms │        334.15 / 338.60 ±2.42 / 341.38 ms │     no change │
│ QQuery 8  │        113.10 / 114.83 ±2.19 / 118.94 ms │        112.18 / 112.91 ±1.00 / 114.88 ms │     no change │
│ QQuery 9  │          96.99 / 99.78 ±2.83 / 103.34 ms │         97.64 / 103.06 ±5.20 / 112.06 ms │     no change │
│ QQuery 10 │        103.73 / 105.98 ±2.79 / 111.40 ms │        102.66 / 103.45 ±0.63 / 104.59 ms │     no change │
│ QQuery 11 │       927.86 / 949.55 ±25.50 / 999.47 ms │        918.48 / 925.31 ±6.40 / 934.93 ms │     no change │
│ QQuery 12 │           44.69 / 46.59 ±1.95 / 50.36 ms │           43.17 / 43.61 ±0.52 / 44.59 ms │ +1.07x faster │
│ QQuery 13 │        386.43 / 395.32 ±6.96 / 404.82 ms │        386.48 / 396.05 ±6.21 / 404.15 ms │     no change │
│ QQuery 14 │     1039.18 / 1044.28 ±4.00 / 1051.24 ms │     1029.61 / 1041.36 ±6.59 / 1049.80 ms │     no change │
│ QQuery 15 │           15.93 / 16.23 ±0.28 / 16.74 ms │           14.57 / 14.90 ±0.20 / 15.15 ms │ +1.09x faster │
│ QQuery 16 │              7.94 / 8.04 ±0.10 / 8.23 ms │              7.51 / 7.64 ±0.21 / 8.06 ms │     no change │
│ QQuery 17 │        221.98 / 225.79 ±2.86 / 230.18 ms │        219.58 / 221.83 ±1.67 / 224.18 ms │     no change │
│ QQuery 18 │        125.86 / 127.19 ±0.84 / 128.15 ms │        119.60 / 120.04 ±0.30 / 120.46 ms │ +1.06x faster │
│ QQuery 19 │        151.50 / 155.70 ±4.02 / 162.64 ms │        158.08 / 161.32 ±2.57 / 165.37 ms │     no change │
│ QQuery 20 │           12.91 / 13.05 ±0.11 / 13.22 ms │           13.79 / 13.98 ±0.17 / 14.27 ms │  1.07x slower │
│ QQuery 21 │           18.78 / 19.29 ±0.60 / 20.46 ms │           20.02 / 20.46 ±0.26 / 20.71 ms │  1.06x slower │
│ QQuery 22 │        479.25 / 486.16 ±4.70 / 491.56 ms │        509.71 / 515.38 ±3.50 / 519.88 ms │  1.06x slower │
│ QQuery 23 │    1114.56 / 1130.80 ±12.48 / 1146.58 ms │    1146.90 / 1158.05 ±10.23 / 1176.95 ms │     no change │
│ QQuery 24 │       714.53 / 734.14 ±10.64 / 744.39 ms │        717.36 / 722.28 ±4.71 / 730.46 ms │     no change │
│ QQuery 25 │        331.28 / 337.60 ±7.62 / 350.35 ms │        328.83 / 335.73 ±7.19 / 346.10 ms │     no change │
│ QQuery 26 │           76.90 / 77.79 ±0.91 / 79.50 ms │           77.54 / 77.73 ±0.16 / 77.99 ms │     no change │
│ QQuery 27 │              7.44 / 7.53 ±0.11 / 7.75 ms │              7.14 / 7.28 ±0.15 / 7.57 ms │     no change │
│ QQuery 28 │        146.48 / 149.03 ±2.92 / 154.73 ms │        147.48 / 150.56 ±3.57 / 156.86 ms │     no change │
│ QQuery 29 │        273.31 / 278.78 ±4.64 / 284.26 ms │        270.01 / 274.68 ±8.89 / 292.46 ms │     no change │
│ QQuery 30 │           41.33 / 42.41 ±0.67 / 43.26 ms │           41.17 / 41.82 ±0.37 / 42.12 ms │     no change │
│ QQuery 31 │        163.99 / 168.25 ±4.30 / 175.57 ms │        163.01 / 167.58 ±5.34 / 177.82 ms │     no change │
│ QQuery 32 │           13.25 / 13.42 ±0.22 / 13.84 ms │           13.38 / 13.59 ±0.15 / 13.78 ms │     no change │
│ QQuery 33 │        137.88 / 139.59 ±1.55 / 142.49 ms │        139.47 / 142.76 ±3.32 / 147.97 ms │     no change │
│ QQuery 34 │              7.59 / 7.81 ±0.15 / 7.99 ms │              7.05 / 7.19 ±0.19 / 7.57 ms │ +1.09x faster │
│ QQuery 35 │        100.48 / 103.12 ±2.78 / 106.90 ms │        100.47 / 103.89 ±3.95 / 109.71 ms │     no change │
│ QQuery 36 │              6.53 / 6.85 ±0.23 / 7.21 ms │              6.92 / 7.33 ±0.25 / 7.64 ms │  1.07x slower │
│ QQuery 37 │              8.08 / 8.22 ±0.16 / 8.47 ms │              8.12 / 8.30 ±0.16 / 8.57 ms │     no change │
│ QQuery 38 │           86.19 / 88.68 ±1.88 / 92.02 ms │           84.97 / 87.51 ±1.83 / 89.92 ms │     no change │
│ QQuery 39 │       116.15 / 122.37 ±10.00 / 142.29 ms │        117.31 / 125.38 ±8.20 / 136.11 ms │     no change │
│ QQuery 40 │        102.16 / 104.58 ±2.39 / 108.81 ms │        102.86 / 105.70 ±2.95 / 111.14 ms │     no change │
│ QQuery 41 │           14.38 / 14.72 ±0.30 / 15.29 ms │           14.30 / 14.54 ±0.22 / 14.89 ms │     no change │
│ QQuery 42 │        106.06 / 107.63 ±0.95 / 108.79 ms │        107.00 / 109.68 ±1.98 / 112.46 ms │     no change │
│ QQuery 43 │              6.21 / 6.27 ±0.06 / 6.37 ms │              5.87 / 6.00 ±0.13 / 6.25 ms │     no change │
│ QQuery 44 │           11.49 / 11.77 ±0.15 / 11.90 ms │           10.93 / 11.00 ±0.09 / 11.16 ms │ +1.07x faster │
│ QQuery 45 │           49.68 / 50.45 ±0.61 / 51.52 ms │           47.85 / 48.12 ±0.17 / 48.33 ms │     no change │
│ QQuery 46 │            9.11 / 10.82 ±3.20 / 17.22 ms │              8.47 / 8.70 ±0.19 / 9.05 ms │ +1.24x faster │
│ QQuery 47 │       696.76 / 751.57 ±44.45 / 829.17 ms │       665.06 / 714.64 ±26.70 / 739.29 ms │     no change │
│ QQuery 48 │        273.16 / 281.92 ±5.22 / 288.01 ms │        283.17 / 287.58 ±2.68 / 290.89 ms │     no change │
│ QQuery 49 │        251.09 / 254.08 ±2.18 / 256.62 ms │        253.34 / 256.62 ±2.31 / 260.32 ms │     no change │
│ QQuery 50 │        200.20 / 211.98 ±7.45 / 220.34 ms │        206.80 / 219.25 ±7.16 / 228.10 ms │     no change │
│ QQuery 51 │        177.49 / 182.70 ±6.46 / 194.47 ms │        177.41 / 182.21 ±3.60 / 187.13 ms │     no change │
│ QQuery 52 │        106.63 / 107.57 ±1.11 / 109.70 ms │        109.04 / 110.26 ±0.86 / 111.33 ms │     no change │
│ QQuery 53 │        101.89 / 104.61 ±1.53 / 106.31 ms │        104.76 / 106.58 ±1.83 / 109.95 ms │     no change │
│ QQuery 54 │        143.24 / 146.05 ±2.98 / 150.76 ms │        148.16 / 151.10 ±1.94 / 153.92 ms │     no change │
│ QQuery 55 │        106.14 / 108.06 ±1.52 / 109.77 ms │        108.77 / 110.73 ±1.75 / 113.95 ms │     no change │
│ QQuery 56 │        140.31 / 142.93 ±1.91 / 145.99 ms │        139.87 / 144.69 ±2.74 / 148.33 ms │     no change │
│ QQuery 57 │        166.06 / 169.64 ±3.18 / 175.06 ms │        167.71 / 170.50 ±2.58 / 174.67 ms │     no change │
│ QQuery 58 │        266.13 / 267.37 ±1.05 / 269.16 ms │        267.31 / 270.50 ±2.93 / 274.87 ms │     no change │
│ QQuery 59 │        192.47 / 197.29 ±3.20 / 201.69 ms │        195.60 / 199.25 ±3.03 / 204.53 ms │     no change │
│ QQuery 60 │        141.83 / 145.98 ±3.12 / 151.49 ms │        139.77 / 142.85 ±2.73 / 146.35 ms │     no change │
│ QQuery 61 │           14.12 / 14.24 ±0.15 / 14.52 ms │           13.69 / 13.87 ±0.18 / 14.19 ms │     no change │
│ QQuery 62 │       873.91 / 901.50 ±25.98 / 936.97 ms │       874.60 / 891.39 ±16.98 / 922.72 ms │     no change │
│ QQuery 63 │        104.89 / 107.59 ±3.71 / 114.86 ms │        101.79 / 104.10 ±2.61 / 108.49 ms │     no change │
│ QQuery 64 │       669.72 / 687.22 ±15.53 / 712.15 ms │        659.83 / 674.80 ±8.85 / 684.35 ms │     no change │
│ QQuery 65 │        257.34 / 265.40 ±6.27 / 272.21 ms │       242.62 / 252.34 ±11.16 / 270.52 ms │     no change │
│ QQuery 66 │       218.47 / 236.56 ±20.58 / 274.82 ms │        214.91 / 226.47 ±7.73 / 236.15 ms │     no change │
│ QQuery 67 │        294.23 / 306.12 ±8.49 / 316.83 ms │       293.43 / 311.62 ±19.42 / 344.59 ms │     no change │
│ QQuery 68 │              9.14 / 9.32 ±0.12 / 9.46 ms │              8.59 / 9.13 ±0.37 / 9.66 ms │     no change │
│ QQuery 69 │         98.65 / 100.25 ±1.99 / 104.04 ms │           98.07 / 98.54 ±0.44 / 99.36 ms │     no change │
│ QQuery 70 │        315.08 / 324.35 ±7.99 / 338.78 ms │        311.84 / 325.92 ±8.41 / 334.04 ms │     no change │
│ QQuery 71 │        135.16 / 140.05 ±4.70 / 147.80 ms │        132.65 / 133.89 ±1.39 / 136.55 ms │     no change │
│ QQuery 72 │        588.29 / 597.97 ±9.76 / 616.13 ms │       580.85 / 611.75 ±16.57 / 629.48 ms │     no change │
│ QQuery 73 │              6.55 / 6.76 ±0.24 / 7.23 ms │              7.22 / 7.38 ±0.10 / 7.53 ms │  1.09x slower │
│ QQuery 74 │       544.40 / 576.79 ±21.13 / 604.05 ms │       562.14 / 606.18 ±39.38 / 654.58 ms │  1.05x slower │
│ QQuery 75 │        266.10 / 270.82 ±3.75 / 276.09 ms │        268.67 / 273.50 ±3.55 / 278.32 ms │     no change │
│ QQuery 76 │        129.76 / 134.62 ±3.67 / 140.63 ms │        134.23 / 136.46 ±2.64 / 141.49 ms │     no change │
│ QQuery 77 │        185.79 / 189.78 ±2.75 / 193.25 ms │        191.24 / 194.12 ±1.60 / 195.80 ms │     no change │
│ QQuery 78 │        326.79 / 332.33 ±3.96 / 338.85 ms │        330.98 / 337.57 ±6.87 / 349.86 ms │     no change │
│ QQuery 79 │       231.08 / 241.52 ±11.22 / 257.17 ms │       229.59 / 237.43 ±10.31 / 257.49 ms │     no change │
│ QQuery 80 │        319.41 / 322.98 ±3.98 / 329.95 ms │        322.12 / 324.38 ±1.46 / 326.47 ms │     no change │
│ QQuery 81 │           26.50 / 27.52 ±1.62 / 30.75 ms │           26.71 / 27.11 ±0.39 / 27.65 ms │     no change │
│ QQuery 82 │           39.25 / 40.29 ±0.84 / 41.55 ms │           40.19 / 40.71 ±0.31 / 41.13 ms │     no change │
│ QQuery 83 │           38.53 / 39.12 ±0.40 / 39.57 ms │           37.63 / 38.27 ±0.39 / 38.71 ms │     no change │
│ QQuery 84 │           46.05 / 46.52 ±0.43 / 47.25 ms │           46.29 / 46.68 ±0.37 / 47.35 ms │     no change │
│ QQuery 85 │        140.36 / 143.84 ±3.11 / 148.47 ms │        141.58 / 142.92 ±1.78 / 146.10 ms │     no change │
│ QQuery 86 │           38.33 / 38.82 ±0.32 / 39.18 ms │           37.45 / 38.07 ±0.52 / 38.96 ms │     no change │
│ QQuery 87 │              3.53 / 3.65 ±0.16 / 3.97 ms │              3.62 / 3.73 ±0.16 / 4.04 ms │     no change │
│ QQuery 88 │         99.53 / 101.98 ±3.68 / 109.29 ms │         99.77 / 102.06 ±1.86 / 105.05 ms │     no change │
│ QQuery 89 │        118.71 / 119.97 ±0.87 / 121.18 ms │        116.25 / 119.97 ±4.20 / 127.47 ms │     no change │
│ QQuery 90 │           22.21 / 22.69 ±0.28 / 22.95 ms │           24.17 / 24.54 ±0.26 / 24.85 ms │  1.08x slower │
│ QQuery 91 │           58.07 / 59.93 ±2.08 / 63.87 ms │           58.49 / 59.65 ±0.63 / 60.24 ms │     no change │
│ QQuery 92 │           56.58 / 57.69 ±0.64 / 58.30 ms │           56.48 / 57.48 ±0.98 / 59.30 ms │     no change │
│ QQuery 93 │        179.59 / 186.69 ±3.83 / 191.20 ms │        179.88 / 183.01 ±3.60 / 189.86 ms │     no change │
│ QQuery 94 │           62.66 / 63.21 ±0.38 / 63.65 ms │           61.07 / 62.62 ±1.86 / 66.12 ms │     no change │
│ QQuery 95 │        129.20 / 130.54 ±1.27 / 132.72 ms │        125.63 / 127.68 ±2.48 / 132.17 ms │     no change │
│ QQuery 96 │           68.34 / 69.77 ±1.59 / 72.75 ms │           70.14 / 71.10 ±0.78 / 72.14 ms │     no change │
│ QQuery 97 │        119.16 / 123.44 ±2.55 / 126.43 ms │        120.24 / 123.73 ±2.04 / 125.85 ms │     no change │
│ QQuery 98 │        149.95 / 155.15 ±3.90 / 159.96 ms │        153.41 / 155.80 ±3.18 / 162.01 ms │     no change │
│ QQuery 99 │ 10830.00 / 10947.63 ±60.60 / 10993.78 ms │ 10813.72 / 10880.17 ±57.60 / 10965.09 ms │     no change │
└───────────┴──────────────────────────────────────────┴──────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                                  ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                                  │ 31047.06ms │
│ Total Time (worktree-dynamic-filter-restructure)   │ 30943.71ms │
│ Average Time (HEAD)                                │   313.61ms │
│ Average Time (worktree-dynamic-filter-restructure) │   312.56ms │
│ Queries Faster                                     │          6 │
│ Queries Slower                                     │          9 │
│ Queries with No Change                             │         84 │
│ Queries with Failure                               │          0 │
└────────────────────────────────────────────────────┴────────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 160.0s
Peak memory 6.4 GiB
Avg memory 5.7 GiB
CPU user 246.0s
CPU sys 8.6s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 155.0s
Peak memory 6.3 GiB
Avg memory 5.7 GiB
CPU user 245.7s
CPU sys 7.8s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

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

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

Comparing HEAD and worktree-dynamic-filter-restructure
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃   worktree-dynamic-filter-restructure ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.19 / 4.69 ±6.92 / 18.53 ms │          1.19 / 4.51 ±6.59 / 17.69 ms │     no change │
│ QQuery 1  │        12.16 / 12.51 ±0.23 / 12.85 ms │        12.31 / 12.46 ±0.08 / 12.55 ms │     no change │
│ QQuery 2  │        36.60 / 36.92 ±0.31 / 37.33 ms │        36.60 / 36.87 ±0.30 / 37.39 ms │     no change │
│ QQuery 3  │        32.65 / 33.39 ±0.45 / 33.99 ms │        33.20 / 33.71 ±0.33 / 34.13 ms │     no change │
│ QQuery 4  │     244.21 / 252.08 ±6.54 / 260.20 ms │     244.81 / 250.39 ±9.24 / 268.83 ms │     no change │
│ QQuery 5  │     284.85 / 297.23 ±9.25 / 307.82 ms │     282.32 / 296.01 ±9.14 / 305.21 ms │     no change │
│ QQuery 6  │           6.72 / 7.71 ±0.51 / 8.16 ms │           6.49 / 7.11 ±0.51 / 7.73 ms │ +1.08x faster │
│ QQuery 7  │        14.19 / 14.31 ±0.09 / 14.42 ms │        13.50 / 13.67 ±0.14 / 13.88 ms │     no change │
│ QQuery 8  │    329.22 / 346.05 ±14.54 / 371.92 ms │    329.29 / 344.99 ±11.47 / 358.01 ms │     no change │
│ QQuery 9  │    456.23 / 470.55 ±12.92 / 492.18 ms │    461.69 / 479.28 ±14.81 / 500.34 ms │     no change │
│ QQuery 10 │        72.86 / 76.19 ±3.90 / 83.72 ms │        77.80 / 79.04 ±1.27 / 81.02 ms │     no change │
│ QQuery 11 │        83.12 / 85.01 ±1.55 / 87.05 ms │       87.76 / 90.86 ±4.97 / 100.72 ms │  1.07x slower │
│ QQuery 12 │    275.15 / 291.23 ±12.70 / 313.52 ms │     306.88 / 310.22 ±3.58 / 317.13 ms │  1.07x slower │
│ QQuery 13 │    393.31 / 410.66 ±16.77 / 436.11 ms │    408.45 / 419.61 ±10.19 / 434.44 ms │     no change │
│ QQuery 14 │     284.97 / 292.22 ±9.49 / 310.69 ms │    287.35 / 297.40 ±13.21 / 323.41 ms │     no change │
│ QQuery 15 │     283.71 / 301.03 ±9.74 / 312.18 ms │    288.22 / 303.10 ±14.24 / 325.92 ms │     no change │
│ QQuery 16 │    629.36 / 639.18 ±10.15 / 656.35 ms │    629.65 / 653.74 ±17.21 / 682.86 ms │     no change │
│ QQuery 17 │    628.30 / 644.95 ±19.53 / 679.47 ms │    630.94 / 662.53 ±18.56 / 687.61 ms │     no change │
│ QQuery 18 │ 1309.17 / 1347.42 ±31.01 / 1393.23 ms │ 1295.95 / 1312.42 ±13.21 / 1334.48 ms │     no change │
│ QQuery 19 │        29.61 / 30.26 ±0.39 / 30.78 ms │       28.58 / 34.04 ±10.09 / 54.21 ms │  1.13x slower │
│ QQuery 20 │     520.15 / 534.16 ±8.85 / 546.19 ms │     520.89 / 530.40 ±8.64 / 545.71 ms │     no change │
│ QQuery 21 │     598.64 / 605.89 ±6.45 / 615.89 ms │     601.60 / 609.42 ±5.23 / 615.67 ms │     no change │
│ QQuery 22 │  1075.26 / 1079.90 ±3.85 / 1085.85 ms │ 1078.63 / 1101.41 ±19.45 / 1130.00 ms │     no change │
│ QQuery 23 │ 3367.48 / 3422.97 ±31.56 / 3460.65 ms │ 3378.99 / 3430.08 ±26.32 / 3451.13 ms │     no change │
│ QQuery 24 │        42.35 / 45.76 ±5.09 / 55.89 ms │        44.01 / 47.25 ±5.48 / 58.18 ms │     no change │
│ QQuery 25 │     113.60 / 118.17 ±4.56 / 126.53 ms │     114.53 / 115.64 ±1.06 / 117.55 ms │     no change │
│ QQuery 26 │        42.86 / 44.41 ±1.57 / 47.16 ms │        43.12 / 44.27 ±1.31 / 46.40 ms │     no change │
│ QQuery 27 │     676.24 / 680.93 ±4.73 / 689.23 ms │     677.88 / 689.59 ±7.01 / 698.47 ms │     no change │
│ QQuery 28 │ 3037.14 / 3066.30 ±22.28 / 3097.38 ms │ 3040.47 / 3061.08 ±22.48 / 3100.68 ms │     no change │
│ QQuery 29 │        42.23 / 42.59 ±0.42 / 43.37 ms │        42.18 / 47.11 ±6.01 / 56.25 ms │  1.11x slower │
│ QQuery 30 │     305.82 / 321.98 ±8.88 / 330.80 ms │     332.08 / 336.95 ±4.97 / 344.57 ms │     no change │
│ QQuery 31 │     307.29 / 317.12 ±7.00 / 325.54 ms │     313.03 / 322.31 ±9.16 / 334.34 ms │     no change │
│ QQuery 32 │ 1048.69 / 1087.01 ±27.75 / 1132.01 ms │  1053.94 / 1062.14 ±4.38 / 1066.81 ms │     no change │
│ QQuery 33 │ 1493.34 / 1545.83 ±31.11 / 1580.68 ms │ 1498.22 / 1520.79 ±18.23 / 1553.44 ms │     no change │
│ QQuery 34 │ 1460.45 / 1489.21 ±22.28 / 1518.93 ms │ 1481.06 / 1539.00 ±51.50 / 1628.81 ms │     no change │
│ QQuery 35 │    282.72 / 304.57 ±19.70 / 332.54 ms │     327.08 / 329.93 ±1.75 / 331.98 ms │  1.08x slower │
│ QQuery 36 │        65.24 / 69.22 ±4.38 / 74.59 ms │        65.80 / 73.32 ±8.50 / 89.55 ms │  1.06x slower │
│ QQuery 37 │        34.97 / 38.67 ±6.12 / 50.87 ms │        38.06 / 41.73 ±3.51 / 47.57 ms │  1.08x slower │
│ QQuery 38 │        40.04 / 44.41 ±3.19 / 48.61 ms │        41.31 / 42.72 ±1.24 / 44.41 ms │     no change │
│ QQuery 39 │    126.34 / 143.60 ±13.65 / 167.13 ms │     126.20 / 136.45 ±8.91 / 148.23 ms │     no change │
│ QQuery 40 │        14.27 / 15.62 ±2.05 / 19.70 ms │        14.56 / 18.01 ±3.80 / 24.59 ms │  1.15x slower │
│ QQuery 41 │        13.45 / 14.62 ±1.56 / 17.67 ms │        13.98 / 15.51 ±2.92 / 21.36 ms │  1.06x slower │
│ QQuery 42 │        12.98 / 13.81 ±1.20 / 16.18 ms │        13.28 / 13.57 ±0.15 / 13.72 ms │     no change │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                                  ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                                  │ 20640.34ms │
│ Total Time (worktree-dynamic-filter-restructure)   │ 20770.66ms │
│ Average Time (HEAD)                                │   480.01ms │
│ Average Time (worktree-dynamic-filter-restructure) │   483.04ms │
│ Queries Faster                                     │          1 │
│ Queries Slower                                     │          9 │
│ Queries with No Change                             │         33 │
│ Queries with Failure                               │          0 │
└────────────────────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 105.0s
Peak memory 30.8 GiB
Avg memory 23.5 GiB
CPU user 1086.7s
CPU sys 70.6s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 105.0s
Peak memory 30.4 GiB
Avg memory 23.2 GiB
CPU user 1093.6s
CPU sys 72.9s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot
Copy link
Copy Markdown

Benchmark for this request failed.

Last 20 lines of output:

Click to expand
 Downloading crates ...
  Downloaded prost-derive v0.14.3
  Downloaded anyhow v1.0.102
  Downloaded prost v0.14.3
   Compiling anyhow v1.0.102
   Compiling either v1.15.0
   Compiling datafusion-benchmarks v53.1.0 (/workspace/datafusion-base/benchmarks)
   Compiling itertools v0.14.0
   Compiling prost-derive v0.14.3
   Compiling prost v0.14.3
   Compiling datafusion-proto-common v53.1.0 (/workspace/datafusion-base/datafusion/proto-common)
   Compiling datafusion-proto v53.1.0 (/workspace/datafusion-base/datafusion/proto)
    Finished `bench` profile [optimized + debuginfo] target(s) in 9m 13s
     Running benches/sql.rs (/workspace/datafusion-base/target/release/deps/sql-2c9f51cbfcaf27f8)
Gnuplot not found, using plotters backend

thread 'main' (22082) panicked at benchmarks/benches/sql.rs:131:46:
assertion failed: Execution("Error in result on row 1, column 1 running query \"\nSELECT COUNT(*) > 0 from lineitem;\": expected value \"true\" but got value \"false\" in row: [\"false\"]")
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
error: bench failed, to rerun pass `--bench sql`

File an issue against this benchmark runner

@adriangbot
Copy link
Copy Markdown

Benchmark for this request failed.

Last 20 lines of output:

Click to expand
 Downloading crates ...
  Downloaded prost v0.14.3
  Downloaded anyhow v1.0.102
  Downloaded prost-derive v0.14.3
   Compiling anyhow v1.0.102
   Compiling either v1.15.0
   Compiling datafusion-benchmarks v53.1.0 (/workspace/datafusion-base/benchmarks)
   Compiling itertools v0.14.0
   Compiling prost-derive v0.14.3
   Compiling prost v0.14.3
   Compiling datafusion-proto-common v53.1.0 (/workspace/datafusion-base/datafusion/proto-common)
   Compiling datafusion-proto v53.1.0 (/workspace/datafusion-base/datafusion/proto)
    Finished `bench` profile [optimized + debuginfo] target(s) in 9m 18s
     Running benches/sql.rs (/workspace/datafusion-base/target/release/deps/sql-2c9f51cbfcaf27f8)
Gnuplot not found, using plotters backend

thread 'main' (21351) panicked at benchmarks/benches/sql.rs:131:46:
assertion failed: Execution("Error in result on row 1, column 1 running query \"\nSELECT COUNT(*) > 0 from lineitem;\": expected value \"true\" but got value \"false\" in row: [\"false\"]")
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
error: bench failed, to rerun pass `--bench sql`

File an issue against this benchmark runner

@adriangbot
Copy link
Copy Markdown

Benchmark for this request failed.

Last 20 lines of output:

Click to expand
 Downloading crates ...
  Downloaded prost v0.14.3
  Downloaded anyhow v1.0.102
  Downloaded prost-derive v0.14.3
   Compiling anyhow v1.0.102
   Compiling either v1.15.0
   Compiling datafusion-benchmarks v53.1.0 (/workspace/datafusion-base/benchmarks)
   Compiling itertools v0.14.0
   Compiling prost-derive v0.14.3
   Compiling prost v0.14.3
   Compiling datafusion-proto-common v53.1.0 (/workspace/datafusion-base/datafusion/proto-common)
   Compiling datafusion-proto v53.1.0 (/workspace/datafusion-base/datafusion/proto)
    Finished `bench` profile [optimized + debuginfo] target(s) in 9m 16s
     Running benches/sql.rs (/workspace/datafusion-base/target/release/deps/sql-2c9f51cbfcaf27f8)
Gnuplot not found, using plotters backend

thread 'main' (21962) panicked at benchmarks/benches/sql.rs:131:46:
assertion failed: Execution("Error in result on row 1, column 1 running query \"\nSELECT COUNT(*) > 0 from lineitem;\": expected value \"true\" but got value \"false\" in row: [\"false\"]")
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
error: bench failed, to rerun pass `--bench sql`

File an issue against this benchmark runner

@adriangbot
Copy link
Copy Markdown

Benchmark for this request failed.

Last 20 lines of output:

Click to expand
 Downloading crates ...
  Downloaded prost v0.14.3
  Downloaded prost-derive v0.14.3
  Downloaded anyhow v1.0.102
   Compiling anyhow v1.0.102
   Compiling either v1.15.0
   Compiling datafusion-benchmarks v53.1.0 (/workspace/datafusion-base/benchmarks)
   Compiling itertools v0.14.0
   Compiling prost-derive v0.14.3
   Compiling prost v0.14.3
   Compiling datafusion-proto-common v53.1.0 (/workspace/datafusion-base/datafusion/proto-common)
   Compiling datafusion-proto v53.1.0 (/workspace/datafusion-base/datafusion/proto)
    Finished `bench` profile [optimized + debuginfo] target(s) in 9m 19s
     Running benches/sql.rs (/workspace/datafusion-base/target/release/deps/sql-2c9f51cbfcaf27f8)
Gnuplot not found, using plotters backend

thread 'main' (21313) panicked at benchmarks/benches/sql.rs:131:46:
assertion failed: Execution("Error in result on row 1, column 1 running query \"\nSELECT COUNT(*) > 0 from lineitem;\": expected value \"true\" but got value \"false\" in row: [\"false\"]")
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
error: bench failed, to rerun pass `--bench sql`

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 worktree-dynamic-filter-restructure
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                      HEAD ┃       worktree-dynamic-filter-restructure ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │               6.47 / 7.01 ±0.92 / 8.86 ms │               6.72 / 7.23 ±0.96 / 9.15 ms │     no change │
│ QQuery 2  │         110.78 / 112.15 ±1.61 / 115.23 ms │         112.11 / 112.48 ±0.37 / 113.15 ms │     no change │
│ QQuery 3  │         108.04 / 108.65 ±0.47 / 109.30 ms │         106.86 / 107.51 ±0.65 / 108.58 ms │     no change │
│ QQuery 4  │      1013.81 / 1024.01 ±6.46 / 1032.44 ms │      1019.12 / 1025.38 ±4.06 / 1031.83 ms │     no change │
│ QQuery 5  │         182.15 / 185.43 ±4.69 / 194.61 ms │         181.62 / 183.65 ±2.67 / 188.86 ms │     no change │
│ QQuery 6  │            85.98 / 87.64 ±1.31 / 89.96 ms │            88.18 / 89.44 ±1.38 / 92.08 ms │     no change │
│ QQuery 7  │         310.02 / 316.46 ±4.93 / 324.02 ms │         307.87 / 314.64 ±5.81 / 324.43 ms │     no change │
│ QQuery 8  │         142.60 / 145.06 ±2.00 / 147.89 ms │         144.21 / 145.19 ±0.80 / 146.39 ms │     no change │
│ QQuery 9  │        200.21 / 218.61 ±11.63 / 229.88 ms │        209.63 / 226.68 ±11.20 / 244.40 ms │     no change │
│ QQuery 10 │         152.57 / 158.22 ±7.34 / 172.70 ms │         153.60 / 156.70 ±3.15 / 162.60 ms │     no change │
│ QQuery 11 │         639.07 / 645.78 ±5.70 / 653.81 ms │         644.95 / 647.48 ±1.81 / 649.41 ms │     no change │
│ QQuery 12 │            34.57 / 36.26 ±2.27 / 40.76 ms │            34.94 / 35.18 ±0.22 / 35.48 ms │     no change │
│ QQuery 13 │         512.72 / 518.75 ±3.88 / 523.58 ms │         513.07 / 517.09 ±3.47 / 522.78 ms │     no change │
│ QQuery 14 │         970.38 / 977.53 ±4.11 / 982.06 ms │         976.37 / 979.29 ±2.66 / 983.30 ms │     no change │
│ QQuery 15 │            16.83 / 17.10 ±0.23 / 17.52 ms │            16.20 / 16.46 ±0.31 / 16.98 ms │     no change │
│ QQuery 16 │               6.95 / 7.04 ±0.11 / 7.25 ms │               6.90 / 7.06 ±0.20 / 7.45 ms │     no change │
│ QQuery 17 │         175.15 / 179.16 ±6.74 / 192.59 ms │         172.41 / 175.45 ±4.41 / 184.13 ms │     no change │
│ QQuery 18 │        363.66 / 401.19 ±20.10 / 418.91 ms │         223.76 / 225.41 ±1.41 / 227.49 ms │ +1.78x faster │
│ QQuery 19 │         130.26 / 130.99 ±0.69 / 132.03 ms │         131.54 / 132.99 ±1.26 / 135.05 ms │     no change │
│ QQuery 20 │            13.94 / 14.24 ±0.19 / 14.51 ms │            14.29 / 14.51 ±0.14 / 14.69 ms │     no change │
│ QQuery 21 │            24.99 / 25.43 ±0.31 / 25.83 ms │            24.81 / 24.90 ±0.07 / 25.01 ms │     no change │
│ QQuery 22 │         489.82 / 492.87 ±2.46 / 497.18 ms │         490.48 / 496.01 ±4.42 / 501.66 ms │     no change │
│ QQuery 23 │      1363.25 / 1378.22 ±8.05 / 1384.52 ms │      1321.96 / 1334.25 ±9.13 / 1349.16 ms │     no change │
│ QQuery 24 │         173.71 / 176.12 ±2.02 / 178.75 ms │         173.96 / 177.20 ±4.47 / 185.96 ms │     no change │
│ QQuery 25 │         264.66 / 268.24 ±4.41 / 276.65 ms │         261.52 / 265.63 ±5.53 / 276.50 ms │     no change │
│ QQuery 26 │         130.48 / 134.30 ±6.05 / 146.26 ms │         129.18 / 129.88 ±0.54 / 130.58 ms │     no change │
│ QQuery 27 │               6.42 / 6.64 ±0.19 / 7.00 ms │               6.60 / 6.76 ±0.13 / 6.98 ms │     no change │
│ QQuery 28 │         201.40 / 204.83 ±3.86 / 212.06 ms │         200.85 / 204.91 ±4.99 / 214.54 ms │     no change │
│ QQuery 29 │        215.99 / 223.73 ±12.65 / 248.79 ms │        214.46 / 223.79 ±15.40 / 254.44 ms │     no change │
│ QQuery 30 │            47.90 / 50.03 ±3.71 / 57.45 ms │            48.34 / 50.35 ±1.97 / 53.15 ms │     no change │
│ QQuery 31 │         158.77 / 161.09 ±1.55 / 163.54 ms │         157.81 / 159.33 ±1.22 / 161.41 ms │     no change │
│ QQuery 32 │            13.24 / 13.53 ±0.25 / 13.95 ms │            13.29 / 13.67 ±0.29 / 14.00 ms │     no change │
│ QQuery 33 │         122.99 / 124.58 ±2.65 / 129.86 ms │         124.74 / 127.70 ±3.84 / 135.16 ms │     no change │
│ QQuery 34 │               6.71 / 6.90 ±0.21 / 7.30 ms │               6.89 / 7.05 ±0.18 / 7.38 ms │     no change │
│ QQuery 35 │         129.09 / 133.29 ±4.16 / 141.15 ms │         131.97 / 138.32 ±8.44 / 154.91 ms │     no change │
│ QQuery 36 │               6.21 / 6.38 ±0.18 / 6.69 ms │               6.45 / 6.73 ±0.17 / 6.94 ms │  1.05x slower │
│ QQuery 37 │               5.12 / 5.15 ±0.03 / 5.21 ms │               5.15 / 5.26 ±0.10 / 5.44 ms │     no change │
│ QQuery 38 │         105.20 / 106.22 ±0.93 / 107.79 ms │         107.00 / 108.00 ±0.62 / 108.74 ms │     no change │
│ QQuery 39 │         124.39 / 129.38 ±6.43 / 141.92 ms │         126.48 / 130.20 ±4.04 / 138.04 ms │     no change │
│ QQuery 40 │         118.93 / 121.83 ±2.46 / 125.44 ms │         121.38 / 125.09 ±2.31 / 128.20 ms │     no change │
│ QQuery 41 │            14.26 / 14.50 ±0.24 / 14.97 ms │            13.91 / 14.18 ±0.26 / 14.66 ms │     no change │
│ QQuery 42 │         103.28 / 104.62 ±0.87 / 105.96 ms │         104.32 / 105.59 ±0.95 / 107.22 ms │     no change │
│ QQuery 43 │               5.53 / 5.62 ±0.14 / 5.91 ms │               5.47 / 5.61 ±0.20 / 6.00 ms │     no change │
│ QQuery 44 │            10.38 / 10.49 ±0.10 / 10.68 ms │            10.51 / 10.66 ±0.11 / 10.83 ms │     no change │
│ QQuery 45 │            38.33 / 39.04 ±0.65 / 40.07 ms │            38.15 / 39.64 ±2.20 / 43.99 ms │     no change │
│ QQuery 46 │               8.25 / 8.34 ±0.09 / 8.51 ms │               8.24 / 8.46 ±0.24 / 8.90 ms │     no change │
│ QQuery 47 │         705.53 / 715.55 ±7.86 / 725.72 ms │         710.28 / 725.23 ±8.02 / 732.47 ms │     no change │
│ QQuery 48 │        425.73 / 437.14 ±10.41 / 456.14 ms │        426.80 / 438.64 ±11.86 / 455.02 ms │     no change │
│ QQuery 49 │         258.02 / 260.35 ±1.91 / 263.14 ms │         258.38 / 262.07 ±3.40 / 267.80 ms │     no change │
│ QQuery 50 │         483.40 / 494.01 ±7.52 / 502.18 ms │         496.59 / 499.15 ±2.03 / 502.02 ms │     no change │
│ QQuery 51 │         198.27 / 201.26 ±2.54 / 205.38 ms │         199.50 / 205.42 ±7.86 / 220.98 ms │     no change │
│ QQuery 52 │         102.88 / 103.86 ±0.94 / 105.55 ms │         104.11 / 106.45 ±2.75 / 111.68 ms │     no change │
│ QQuery 53 │         126.13 / 131.83 ±5.74 / 142.50 ms │         126.25 / 128.78 ±1.96 / 132.01 ms │     no change │
│ QQuery 54 │         116.42 / 120.52 ±6.67 / 133.79 ms │         115.14 / 118.36 ±2.77 / 122.12 ms │     no change │
│ QQuery 55 │         101.70 / 103.96 ±1.48 / 106.34 ms │         102.24 / 102.88 ±0.78 / 104.31 ms │     no change │
│ QQuery 56 │         121.88 / 124.24 ±2.23 / 127.39 ms │         123.74 / 126.02 ±1.95 / 129.43 ms │     no change │
│ QQuery 57 │         174.63 / 177.05 ±2.51 / 181.74 ms │         175.95 / 177.96 ±2.32 / 181.98 ms │     no change │
│ QQuery 58 │         210.22 / 211.73 ±1.74 / 214.57 ms │         129.97 / 132.01 ±1.41 / 134.39 ms │ +1.60x faster │
│ QQuery 59 │         249.87 / 253.74 ±2.11 / 256.34 ms │         250.12 / 255.92 ±3.97 / 260.23 ms │     no change │
│ QQuery 60 │         126.22 / 127.81 ±1.61 / 130.91 ms │         127.57 / 127.96 ±0.26 / 128.37 ms │     no change │
│ QQuery 61 │            12.65 / 12.78 ±0.13 / 13.02 ms │            12.59 / 14.57 ±3.66 / 21.88 ms │  1.14x slower │
│ QQuery 62 │         871.85 / 879.27 ±8.76 / 895.73 ms │         861.14 / 868.52 ±5.40 / 875.57 ms │     no change │
│ QQuery 63 │         130.66 / 135.71 ±6.10 / 147.46 ms │         128.04 / 130.28 ±2.43 / 134.92 ms │     no change │
│ QQuery 64 │ 28570.71 / 29681.52 ±788.75 / 30730.98 ms │ 28199.92 / 29632.78 ±753.58 / 30377.84 ms │     no change │
│ QQuery 65 │         328.52 / 330.90 ±2.34 / 335.00 ms │         329.50 / 337.65 ±4.70 / 343.36 ms │     no change │
│ QQuery 66 │         174.53 / 179.88 ±3.69 / 184.04 ms │         176.99 / 179.61 ±2.83 / 185.08 ms │     no change │
│ QQuery 67 │         460.22 / 469.76 ±7.37 / 479.75 ms │        466.23 / 475.65 ±11.34 / 496.74 ms │     no change │
│ QQuery 68 │              8.29 / 9.00 ±1.06 / 11.11 ms │               8.60 / 8.87 ±0.20 / 9.20 ms │     no change │
│ QQuery 69 │         145.12 / 154.22 ±7.39 / 163.07 ms │         146.41 / 158.04 ±7.04 / 164.29 ms │     no change │
│ QQuery 70 │         394.37 / 400.25 ±5.19 / 407.45 ms │         398.00 / 404.28 ±4.79 / 412.29 ms │     no change │
│ QQuery 71 │         117.40 / 121.75 ±3.80 / 128.24 ms │         119.99 / 124.22 ±3.13 / 129.73 ms │     no change │
│ QQuery 72 │     1159.12 / 1172.54 ±22.99 / 1218.35 ms │     1054.99 / 1075.78 ±28.50 / 1132.23 ms │ +1.09x faster │
│ QQuery 73 │               6.59 / 6.75 ±0.19 / 7.12 ms │               6.59 / 6.74 ±0.20 / 7.13 ms │     no change │
│ QQuery 74 │         450.77 / 460.00 ±7.25 / 469.93 ms │         457.83 / 465.08 ±6.23 / 475.70 ms │     no change │
│ QQuery 75 │         254.10 / 261.16 ±5.59 / 270.42 ms │         254.29 / 261.91 ±4.63 / 268.60 ms │     no change │
│ QQuery 76 │         261.25 / 266.32 ±4.36 / 274.32 ms │         280.33 / 283.35 ±2.95 / 288.67 ms │  1.06x slower │
│ QQuery 77 │         209.61 / 214.93 ±3.94 / 219.83 ms │         211.75 / 215.04 ±2.17 / 218.24 ms │     no change │
│ QQuery 78 │         279.80 / 284.97 ±3.23 / 288.63 ms │         283.66 / 286.82 ±2.12 / 289.40 ms │     no change │
│ QQuery 79 │         236.42 / 241.38 ±3.13 / 245.35 ms │         238.89 / 243.02 ±3.50 / 247.59 ms │     no change │
│ QQuery 80 │         261.78 / 265.67 ±2.09 / 267.54 ms │         265.80 / 268.26 ±2.22 / 272.11 ms │     no change │
│ QQuery 81 │            29.49 / 30.30 ±0.96 / 32.11 ms │            29.40 / 30.08 ±0.77 / 31.50 ms │     no change │
│ QQuery 82 │            42.16 / 43.45 ±0.98 / 44.55 ms │            42.05 / 43.76 ±1.42 / 46.25 ms │     no change │
│ QQuery 83 │            42.75 / 44.19 ±1.71 / 47.53 ms │            34.51 / 34.98 ±0.55 / 36.05 ms │ +1.26x faster │
│ QQuery 84 │            60.47 / 62.19 ±2.32 / 66.76 ms │            60.27 / 62.04 ±1.20 / 63.52 ms │     no change │
│ QQuery 85 │         243.48 / 246.55 ±2.86 / 251.73 ms │         248.34 / 253.33 ±3.79 / 259.04 ms │     no change │
│ QQuery 86 │            45.51 / 46.71 ±0.98 / 48.46 ms │            46.28 / 47.05 ±0.68 / 48.28 ms │     no change │
│ QQuery 87 │               3.56 / 3.65 ±0.14 / 3.93 ms │               3.58 / 3.70 ±0.17 / 4.03 ms │     no change │
│ QQuery 88 │         118.48 / 124.35 ±4.08 / 129.08 ms │         113.10 / 122.28 ±5.26 / 129.21 ms │     no change │
│ QQuery 89 │         146.53 / 154.57 ±6.42 / 162.35 ms │         151.06 / 157.69 ±5.04 / 163.10 ms │     no change │
│ QQuery 90 │            22.97 / 23.86 ±0.64 / 24.70 ms │            22.95 / 24.74 ±1.57 / 27.02 ms │     no change │
│ QQuery 91 │            88.86 / 94.23 ±3.67 / 99.89 ms │            86.68 / 92.03 ±3.90 / 96.46 ms │     no change │
│ QQuery 92 │            49.36 / 49.96 ±0.41 / 50.59 ms │            48.65 / 49.71 ±1.06 / 51.60 ms │     no change │
│ QQuery 93 │         177.16 / 180.91 ±2.55 / 185.07 ms │         179.35 / 181.37 ±1.83 / 183.77 ms │     no change │
│ QQuery 94 │            63.55 / 65.48 ±1.45 / 67.72 ms │            62.66 / 64.75 ±1.24 / 66.16 ms │     no change │
│ QQuery 95 │         141.49 / 143.80 ±1.89 / 146.89 ms │         120.94 / 121.31 ±0.20 / 121.49 ms │ +1.19x faster │
│ QQuery 96 │            73.35 / 76.59 ±2.01 / 79.26 ms │            70.27 / 74.98 ±2.67 / 77.79 ms │     no change │
│ QQuery 97 │         134.96 / 141.02 ±3.15 / 143.80 ms │         140.53 / 142.52 ±2.21 / 146.63 ms │     no change │
│ QQuery 98 │         111.39 / 114.76 ±2.51 / 119.07 ms │         112.58 / 114.00 ±1.05 / 115.74 ms │     no change │
│ QQuery 99 │  10689.14 / 10742.95 ±61.40 / 10861.64 ms │  10650.52 / 10704.57 ±34.66 / 10754.27 ms │     no change │
└───────────┴───────────────────────────────────────────┴───────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                                  ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                                  │ 60643.99ms │
│ Total Time (worktree-dynamic-filter-restructure)   │ 60211.18ms │
│ Average Time (HEAD)                                │   612.57ms │
│ Average Time (worktree-dynamic-filter-restructure) │   608.19ms │
│ Queries Faster                                     │          5 │
│ Queries Slower                                     │          3 │
│ Queries with No Change                             │         91 │
│ Queries with Failure                               │          0 │
└────────────────────────────────────────────────────┴────────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 305.1s
Peak memory 18.5 GiB
Avg memory 10.0 GiB
CPU user 597.6s
CPU sys 12.4s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 305.1s
Peak memory 18.4 GiB
Avg memory 10.0 GiB
CPU user 590.3s
CPU sys 12.6s
Peak spill 0 B

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-c4347920152-1934-xw5cp 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 (f717a99) 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-c4347920152-1935-57b9c 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 (f717a99) 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-c4347920152-1936-qkcr7 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 (f717a99) to main diff using: tpch10
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-c4347920152-1937-8km22 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 (f717a99) to main diff using: tpcds
Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot
Copy link
Copy Markdown

🤖 Criterion benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4347920152-1938-4xqr8 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 (f717a99) to main diff
BENCH_NAME=hj
BENCH_COMMAND=cargo bench --features=parquet --bench hj
BENCH_FILTER=
Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot
Copy link
Copy Markdown

Benchmark for this request failed.

Last 20 lines of output:

Click to expand
 * [new ref]         refs/pull/21931/head -> worktree-dynamic-filter-restructure
 * branch            main       -> FETCH_HEAD
Switched to branch 'worktree-dynamic-filter-restructure'
42cd2fa90d18a8a54f433fc94917c20a4d1e7338
From https://github.com/apache/datafusion
 * branch            refs/pull/21931/head -> FETCH_HEAD
Cloning into '/workspace/datafusion-base'...
From https://github.com/apache/datafusion
 * branch            refs/pull/21931/head -> FETCH_HEAD
Your branch is up to date with 'origin/main'.
Already on 'main'
rustc 1.95.0 (59807616e 2026-04-14)
f717a99adc3eee55d2b07676bba57e343b3baf4d
42cd2fa90d18a8a54f433fc94917c20a4d1e7338
    Blocking waiting for file lock on package cache
    Blocking waiting for file lock on package cache
    Blocking waiting for file lock on package cache
error: no bench target named `hj` in default-run packages

help: a target with a similar name exists: `chr`

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-c4347920499-1939-7shw7 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 (f717a99) 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

🤖 Criterion benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4347920499-1943-q2589 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 (f717a99) to main diff
BENCH_NAME=hj
BENCH_COMMAND=cargo bench --features=parquet --bench hj
BENCH_FILTER=
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-c4347920499-1942-d72cl 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 (f717a99) 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 for this request failed.

Last 20 lines of output:

Click to expand
  Downloaded dunce v1.0.5
  Downloaded anyhow v1.0.102
  Downloaded chacha20 v0.10.0
  Downloaded byteorder v1.5.0
  Downloaded aws-smithy-json v0.62.5
  Downloaded form_urlencoded v1.2.2
  Downloaded allocator-api2 v0.2.21
  Downloaded arrow-data v58.1.0
  Downloaded anstyle-query v1.1.5
  Downloaded anstyle v1.0.14
  Downloaded bzip2 v0.6.1
  Downloaded aws-smithy-query v0.60.15
  Downloaded atoi v2.0.0
  Downloaded aws-smithy-runtime-api-macros v1.0.0
  Downloaded ahash v0.8.12
  Downloaded anstream v1.0.0
    Blocking waiting for file lock on package cache
error: no bench target named `hj` in default-run packages

help: a target with a similar name exists: `chr`

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-c4347920499-1941-hx962 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 (f717a99) to main diff using: tpch10
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-c4347920499-1940-4x7q5 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 (f717a99) 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 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 worktree-dynamic-filter-restructure
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                   HEAD ┃    worktree-dynamic-filter-restructure ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │           1.47 / 4.85 ±6.72 / 18.28 ms │           1.54 / 5.13 ±7.01 / 19.15 ms │  1.06x slower │
│ QQuery 1  │         16.96 / 18.02 ±0.68 / 18.91 ms │         16.76 / 18.93 ±1.11 / 19.83 ms │  1.05x slower │
│ QQuery 2  │         42.34 / 42.78 ±0.34 / 43.28 ms │         41.09 / 42.35 ±1.04 / 43.80 ms │     no change │
│ QQuery 3  │         34.30 / 35.46 ±0.95 / 37.05 ms │         34.71 / 35.24 ±0.40 / 35.93 ms │     no change │
│ QQuery 4  │      268.57 / 270.71 ±1.15 / 271.88 ms │      274.18 / 276.51 ±1.44 / 278.04 ms │     no change │
│ QQuery 5  │      321.04 / 323.13 ±1.79 / 326.07 ms │      323.92 / 331.05 ±4.20 / 336.29 ms │     no change │
│ QQuery 6  │         12.26 / 13.18 ±0.60 / 14.13 ms │         14.05 / 17.09 ±3.90 / 24.78 ms │  1.30x slower │
│ QQuery 7  │         25.35 / 27.02 ±2.34 / 31.65 ms │         25.30 / 26.04 ±0.44 / 26.50 ms │     no change │
│ QQuery 8  │      376.79 / 378.80 ±1.65 / 380.96 ms │      378.01 / 382.34 ±2.29 / 384.49 ms │     no change │
│ QQuery 9  │     358.92 / 374.49 ±12.75 / 397.06 ms │     374.19 / 393.09 ±15.27 / 419.74 ms │     no change │
│ QQuery 10 │        96.24 / 98.00 ±1.82 / 100.42 ms │         96.12 / 96.90 ±0.66 / 97.77 ms │     no change │
│ QQuery 11 │      109.27 / 109.90 ±0.74 / 110.87 ms │      109.34 / 110.93 ±1.65 / 113.89 ms │     no change │
│ QQuery 12 │      315.46 / 318.96 ±3.30 / 324.59 ms │      319.54 / 327.53 ±6.33 / 335.23 ms │     no change │
│ QQuery 13 │      564.68 / 575.67 ±7.25 / 587.47 ms │     588.65 / 611.89 ±26.45 / 658.94 ms │  1.06x slower │
│ QQuery 14 │      319.15 / 320.42 ±1.21 / 322.32 ms │     331.87 / 343.39 ±10.01 / 356.11 ms │  1.07x slower │
│ QQuery 15 │      329.25 / 334.56 ±5.81 / 344.54 ms │     328.88 / 366.27 ±51.64 / 466.46 ms │  1.09x slower │
│ QQuery 16 │      694.46 / 707.11 ±8.97 / 718.09 ms │     712.83 / 790.25 ±78.52 / 903.54 ms │  1.12x slower │
│ QQuery 17 │     692.05 / 707.24 ±13.54 / 726.59 ms │     722.29 / 731.34 ±12.28 / 755.26 ms │     no change │
│ QQuery 18 │  1419.04 / 1447.33 ±19.91 / 1478.85 ms │   1466.87 / 1475.15 ±7.77 / 1488.55 ms │     no change │
│ QQuery 19 │        35.57 / 47.77 ±15.79 / 75.28 ms │        35.37 / 51.97 ±15.70 / 77.51 ms │  1.09x slower │
│ QQuery 20 │      525.41 / 534.23 ±7.23 / 543.80 ms │     500.15 / 515.68 ±11.08 / 534.28 ms │     no change │
│ QQuery 21 │      597.84 / 606.78 ±9.32 / 619.38 ms │     594.43 / 631.03 ±35.55 / 697.58 ms │     no change │
│ QQuery 22 │  1050.82 / 1107.46 ±56.54 / 1196.88 ms │  1044.45 / 1083.74 ±24.23 / 1111.39 ms │     no change │
│ QQuery 23 │ 2126.49 / 2324.05 ±125.54 / 2512.03 ms │ 2191.48 / 2429.89 ±150.55 / 2603.46 ms │     no change │
│ QQuery 24 │       51.98 / 84.09 ±35.63 / 146.01 ms │         52.57 / 60.28 ±4.40 / 65.25 ms │ +1.39x faster │
│ QQuery 25 │      116.94 / 120.16 ±2.75 / 124.28 ms │      117.84 / 124.34 ±7.54 / 138.87 ms │     no change │
│ QQuery 26 │         51.68 / 56.05 ±3.39 / 60.53 ms │         48.66 / 54.67 ±4.45 / 62.32 ms │     no change │
│ QQuery 27 │     659.45 / 678.59 ±17.43 / 708.88 ms │      672.73 / 683.82 ±6.52 / 692.06 ms │     no change │
│ QQuery 28 │  2877.34 / 2904.64 ±27.88 / 2951.69 ms │  2961.97 / 3003.72 ±74.72 / 3152.91 ms │     no change │
│ QQuery 29 │        48.45 / 63.35 ±16.83 / 94.57 ms │         50.22 / 51.60 ±1.25 / 53.78 ms │ +1.23x faster │
│ QQuery 30 │      341.21 / 344.90 ±3.42 / 349.32 ms │      348.60 / 352.90 ±3.60 / 359.56 ms │     no change │
│ QQuery 31 │     404.38 / 415.38 ±10.36 / 433.78 ms │      417.65 / 433.42 ±7.96 / 439.35 ms │     no change │
│ QQuery 32 │   1592.42 / 1601.33 ±5.36 / 1607.61 ms │  1694.04 / 1718.48 ±23.93 / 1755.49 ms │  1.07x slower │
│ QQuery 33 │  1532.68 / 1588.53 ±32.48 / 1623.87 ms │  1571.61 / 1597.73 ±17.25 / 1620.14 ms │     no change │
│ QQuery 34 │  1558.23 / 1580.45 ±25.50 / 1622.95 ms │  1604.66 / 1643.55 ±43.21 / 1720.54 ms │     no change │
│ QQuery 35 │      309.73 / 322.95 ±8.56 / 334.01 ms │     310.42 / 327.25 ±16.36 / 357.31 ms │     no change │
│ QQuery 36 │         79.81 / 82.99 ±3.62 / 89.46 ms │         79.21 / 88.43 ±6.90 / 96.60 ms │  1.07x slower │
│ QQuery 37 │         51.02 / 57.02 ±4.53 / 64.97 ms │         47.45 / 53.38 ±6.13 / 64.34 ms │ +1.07x faster │
│ QQuery 38 │         52.85 / 57.32 ±5.70 / 67.51 ms │         52.46 / 58.59 ±4.34 / 64.88 ms │     no change │
│ QQuery 39 │      150.33 / 158.66 ±5.19 / 164.43 ms │      150.22 / 161.73 ±7.63 / 169.47 ms │     no change │
│ QQuery 40 │         28.20 / 29.56 ±1.31 / 31.96 ms │         26.76 / 28.63 ±2.64 / 33.86 ms │     no change │
│ QQuery 41 │         26.94 / 28.51 ±1.51 / 31.35 ms │         25.45 / 29.83 ±4.15 / 36.50 ms │     no change │
│ QQuery 42 │         23.97 / 24.77 ±0.89 / 26.40 ms │         22.49 / 26.59 ±6.46 / 39.40 ms │  1.07x slower │
└───────────┴────────────────────────────────────────┴────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                                  ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                                  │ 20927.17ms │
│ Total Time (worktree-dynamic-filter-restructure)   │ 21592.67ms │
│ Average Time (HEAD)                                │   486.68ms │
│ Average Time (worktree-dynamic-filter-restructure) │   502.16ms │
│ Queries Faster                                     │          3 │
│ Queries Slower                                     │         11 │
│ Queries with No Change                             │         29 │
│ Queries with Failure                               │          0 │
└────────────────────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 110.0s
Peak memory 33.6 GiB
Avg memory 26.6 GiB
CPU user 1117.1s
CPU sys 70.1s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 110.0s
Peak memory 32.8 GiB
Avg memory 26.3 GiB
CPU user 1149.3s
CPU sys 75.5s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

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

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

Comparing HEAD and worktree-dynamic-filter-restructure
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃   worktree-dynamic-filter-restructure ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.46 / 4.92 ±6.80 / 18.52 ms │          1.46 / 4.98 ±6.88 / 18.74 ms │     no change │
│ QQuery 1  │        17.16 / 18.23 ±0.58 / 18.86 ms │        17.91 / 18.45 ±0.53 / 19.40 ms │     no change │
│ QQuery 2  │        41.08 / 41.72 ±0.54 / 42.45 ms │        41.84 / 42.73 ±0.68 / 43.93 ms │     no change │
│ QQuery 3  │        33.43 / 35.03 ±1.27 / 36.32 ms │        33.57 / 34.81 ±1.19 / 36.92 ms │     no change │
│ QQuery 4  │     266.98 / 269.12 ±1.76 / 272.14 ms │     269.28 / 271.39 ±1.57 / 273.68 ms │     no change │
│ QQuery 5  │     320.04 / 322.75 ±1.91 / 325.32 ms │     324.25 / 326.62 ±1.66 / 329.40 ms │     no change │
│ QQuery 6  │        17.66 / 20.10 ±2.79 / 25.34 ms │        18.10 / 19.02 ±0.81 / 20.46 ms │ +1.06x faster │
│ QQuery 7  │        27.48 / 27.62 ±0.10 / 27.76 ms │        28.22 / 30.08 ±3.27 / 36.61 ms │  1.09x slower │
│ QQuery 8  │     380.54 / 381.36 ±0.55 / 381.97 ms │     377.47 / 381.91 ±3.41 / 387.81 ms │     no change │
│ QQuery 9  │     367.47 / 380.12 ±8.94 / 392.81 ms │    368.14 / 385.94 ±15.28 / 406.02 ms │     no change │
│ QQuery 10 │     116.05 / 117.98 ±1.71 / 120.57 ms │     115.74 / 118.69 ±2.26 / 121.63 ms │     no change │
│ QQuery 11 │     128.07 / 129.72 ±1.84 / 132.90 ms │     130.39 / 131.63 ±1.11 / 132.98 ms │     no change │
│ QQuery 12 │    346.07 / 381.57 ±39.41 / 439.10 ms │     348.82 / 355.31 ±9.14 / 373.31 ms │ +1.07x faster │
│ QQuery 13 │     599.60 / 607.03 ±5.44 / 613.10 ms │     598.78 / 602.52 ±2.65 / 606.82 ms │     no change │
│ QQuery 14 │    350.55 / 365.53 ±10.90 / 382.61 ms │     359.03 / 362.00 ±1.92 / 363.86 ms │     no change │
│ QQuery 15 │     326.84 / 329.09 ±2.17 / 332.72 ms │     320.38 / 325.03 ±3.29 / 329.22 ms │     no change │
│ QQuery 16 │     698.47 / 704.56 ±3.38 / 707.72 ms │     704.18 / 712.40 ±8.62 / 722.99 ms │     no change │
│ QQuery 17 │    691.16 / 717.97 ±21.80 / 755.41 ms │     696.32 / 699.85 ±3.16 / 705.24 ms │     no change │
│ QQuery 18 │ 1422.14 / 1446.23 ±22.66 / 1479.92 ms │ 1431.57 / 1447.11 ±12.40 / 1464.21 ms │     no change │
│ QQuery 19 │        35.25 / 36.01 ±0.93 / 37.84 ms │       35.61 / 51.89 ±15.97 / 71.95 ms │  1.44x slower │
│ QQuery 20 │    501.20 / 520.45 ±10.67 / 533.65 ms │     497.03 / 501.28 ±3.18 / 504.50 ms │     no change │
│ QQuery 21 │    567.02 / 589.49 ±15.91 / 615.57 ms │    583.74 / 599.57 ±13.72 / 621.71 ms │     no change │
│ QQuery 22 │    927.62 / 959.43 ±25.00 / 994.04 ms │    935.22 / 959.27 ±18.30 / 984.56 ms │     no change │
│ QQuery 23 │   364.83 / 570.63 ±131.08 / 702.82 ms │    443.69 / 551.66 ±64.20 / 630.98 ms │     no change │
│ QQuery 24 │      81.74 / 99.25 ±15.24 / 125.43 ms │       87.40 / 97.67 ±8.27 / 108.29 ms │     no change │
│ QQuery 25 │     149.77 / 159.36 ±6.87 / 168.44 ms │     149.01 / 158.55 ±7.90 / 170.64 ms │     no change │
│ QQuery 26 │    109.55 / 132.73 ±14.21 / 147.86 ms │     133.68 / 141.73 ±6.16 / 149.09 ms │  1.07x slower │
│ QQuery 27 │    695.92 / 725.08 ±34.00 / 790.41 ms │    693.34 / 706.03 ±11.91 / 723.29 ms │     no change │
│ QQuery 28 │ 2907.85 / 2944.28 ±39.63 / 3009.98 ms │ 2911.39 / 2948.20 ±28.84 / 2995.55 ms │     no change │
│ QQuery 29 │       48.55 / 54.89 ±10.38 / 75.56 ms │       49.48 / 60.94 ±15.38 / 89.13 ms │  1.11x slower │
│ QQuery 30 │     343.70 / 350.09 ±4.06 / 355.39 ms │     348.63 / 354.00 ±4.54 / 360.84 ms │     no change │
│ QQuery 31 │     405.59 / 410.65 ±3.18 / 414.72 ms │     398.26 / 408.08 ±5.89 / 414.34 ms │     no change │
│ QQuery 32 │ 1615.67 / 1669.11 ±29.16 / 1699.77 ms │ 1577.99 / 1621.18 ±38.73 / 1692.39 ms │     no change │
│ QQuery 33 │ 1557.19 / 1576.05 ±12.02 / 1589.39 ms │ 1514.27 / 1568.68 ±50.92 / 1655.35 ms │     no change │
│ QQuery 34 │ 1542.25 / 1576.50 ±18.64 / 1596.51 ms │ 1541.75 / 1571.13 ±15.01 / 1583.27 ms │     no change │
│ QQuery 35 │    302.42 / 329.78 ±42.36 / 414.10 ms │    293.69 / 314.64 ±14.80 / 333.79 ms │     no change │
│ QQuery 36 │        80.21 / 85.03 ±3.24 / 89.07 ms │        76.98 / 80.59 ±2.59 / 84.31 ms │ +1.05x faster │
│ QQuery 37 │        48.77 / 55.32 ±7.27 / 68.42 ms │        48.19 / 56.93 ±6.30 / 65.37 ms │     no change │
│ QQuery 38 │        46.07 / 50.26 ±5.40 / 60.42 ms │        46.60 / 50.48 ±4.45 / 59.15 ms │     no change │
│ QQuery 39 │     144.79 / 150.37 ±4.54 / 154.88 ms │     147.73 / 148.83 ±0.96 / 150.38 ms │     no change │
│ QQuery 40 │        29.45 / 32.12 ±1.95 / 35.39 ms │        29.40 / 31.72 ±2.45 / 35.37 ms │     no change │
│ QQuery 41 │        27.80 / 31.04 ±3.12 / 35.71 ms │        26.90 / 27.29 ±0.33 / 27.69 ms │ +1.14x faster │
│ QQuery 42 │        23.73 / 27.81 ±4.61 / 35.72 ms │        23.83 / 25.59 ±2.22 / 29.96 ms │ +1.09x faster │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                                  ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                                  │ 19436.39ms │
│ Total Time (worktree-dynamic-filter-restructure)   │ 19306.40ms │
│ Average Time (HEAD)                                │   452.01ms │
│ Average Time (worktree-dynamic-filter-restructure) │   448.99ms │
│ Queries Faster                                     │          5 │
│ Queries Slower                                     │          4 │
│ Queries with No Change                             │         34 │
│ Queries with Failure                               │          0 │
└────────────────────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 100.0s
Peak memory 32.3 GiB
Avg memory 26.3 GiB
CPU user 1041.2s
CPU sys 64.0s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 100.0s
Peak memory 31.9 GiB
Avg memory 26.0 GiB
CPU user 1033.4s
CPU sys 65.5s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

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

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

Comparing HEAD and worktree-dynamic-filter-restructure
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                      HEAD ┃       worktree-dynamic-filter-restructure ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │            24.31 / 24.91 ±0.73 / 26.33 ms │            26.93 / 27.20 ±0.32 / 27.81 ms │  1.09x slower │
│ QQuery 2  │         186.34 / 193.78 ±6.07 / 203.54 ms │         182.96 / 189.32 ±5.39 / 197.01 ms │     no change │
│ QQuery 3  │         126.53 / 128.86 ±1.28 / 130.19 ms │         125.23 / 127.18 ±1.92 / 130.50 ms │     no change │
│ QQuery 4  │     1439.55 / 1465.41 ±26.50 / 1499.88 ms │     1394.82 / 1436.34 ±42.07 / 1517.41 ms │     no change │
│ QQuery 5  │        254.81 / 271.42 ±10.22 / 282.30 ms │         241.09 / 250.64 ±7.99 / 261.17 ms │ +1.08x faster │
│ QQuery 6  │         175.15 / 185.03 ±8.77 / 197.32 ms │        168.09 / 190.00 ±19.93 / 215.35 ms │     no change │
│ QQuery 7  │        547.51 / 564.99 ±12.10 / 577.17 ms │         510.54 / 514.86 ±3.29 / 520.71 ms │ +1.10x faster │
│ QQuery 8  │         145.86 / 147.49 ±0.84 / 148.21 ms │         141.80 / 144.47 ±2.42 / 148.87 ms │     no change │
│ QQuery 9  │         169.07 / 175.35 ±5.77 / 182.55 ms │         170.21 / 177.58 ±4.88 / 184.10 ms │     no change │
│ QQuery 10 │         120.96 / 127.82 ±3.63 / 130.99 ms │         121.95 / 126.71 ±3.69 / 130.92 ms │     no change │
│ QQuery 11 │       998.69 / 1009.89 ±8.61 / 1019.80 ms │        944.91 / 965.19 ±12.00 / 980.75 ms │     no change │
│ QQuery 12 │            63.62 / 64.39 ±0.60 / 65.37 ms │            62.72 / 64.37 ±1.46 / 66.42 ms │     no change │
│ QQuery 13 │         399.96 / 409.78 ±9.97 / 427.13 ms │         398.79 / 404.94 ±4.11 / 410.58 ms │     no change │
│ QQuery 14 │     1246.70 / 1265.78 ±13.33 / 1285.34 ms │     1237.65 / 1252.11 ±10.87 / 1269.15 ms │     no change │
│ QQuery 15 │           89.37 / 95.37 ±4.65 / 101.25 ms │            51.17 / 52.27 ±1.08 / 54.21 ms │ +1.82x faster │
│ QQuery 16 │            22.90 / 23.54 ±0.57 / 24.30 ms │            24.97 / 25.60 ±0.63 / 26.71 ms │  1.09x slower │
│ QQuery 17 │         517.83 / 528.73 ±8.11 / 540.81 ms │         401.39 / 413.24 ±8.52 / 423.14 ms │ +1.28x faster │
│ QQuery 18 │         245.33 / 248.61 ±3.94 / 256.37 ms │         185.55 / 192.20 ±9.64 / 211.21 ms │ +1.29x faster │
│ QQuery 19 │         169.78 / 175.54 ±6.44 / 186.63 ms │         170.71 / 175.04 ±3.47 / 179.81 ms │     no change │
│ QQuery 20 │            33.48 / 34.30 ±0.88 / 35.61 ms │            34.04 / 34.79 ±0.88 / 36.29 ms │     no change │
│ QQuery 21 │            34.88 / 35.26 ±0.35 / 35.86 ms │            37.38 / 39.15 ±1.35 / 41.56 ms │  1.11x slower │
│ QQuery 22 │        491.17 / 509.84 ±13.04 / 525.64 ms │         494.79 / 500.73 ±3.83 / 504.80 ms │     no change │
│ QQuery 23 │     1938.85 / 1993.92 ±36.71 / 2024.51 ms │      1774.40 / 1785.15 ±7.75 / 1796.09 ms │ +1.12x faster │
│ QQuery 24 │     1484.18 / 1500.06 ±17.11 / 1531.07 ms │     1264.65 / 1281.00 ±11.94 / 1293.96 ms │ +1.17x faster │
│ QQuery 25 │        661.16 / 685.06 ±12.71 / 698.51 ms │         552.91 / 561.08 ±6.08 / 571.82 ms │ +1.22x faster │
│ QQuery 26 │         167.48 / 178.98 ±9.15 / 195.37 ms │         129.59 / 130.71 ±1.01 / 132.10 ms │ +1.37x faster │
│ QQuery 27 │            24.81 / 25.75 ±0.63 / 26.69 ms │            27.01 / 30.30 ±4.36 / 38.92 ms │  1.18x slower │
│ QQuery 28 │         174.57 / 178.23 ±4.18 / 186.39 ms │         169.73 / 173.34 ±3.11 / 178.75 ms │     no change │
│ QQuery 29 │         613.11 / 623.05 ±5.45 / 628.68 ms │         486.39 / 501.07 ±8.52 / 512.40 ms │ +1.24x faster │
│ QQuery 30 │            80.87 / 83.14 ±1.28 / 84.24 ms │            82.69 / 83.84 ±0.61 / 84.48 ms │     no change │
│ QQuery 31 │         221.20 / 226.31 ±4.67 / 233.70 ms │         209.59 / 223.13 ±9.45 / 235.04 ms │     no change │
│ QQuery 32 │            35.10 / 37.97 ±1.48 / 39.15 ms │            35.99 / 42.81 ±8.65 / 59.59 ms │  1.13x slower │
│ QQuery 33 │         172.08 / 174.95 ±4.43 / 183.78 ms │         169.16 / 170.82 ±1.57 / 173.29 ms │     no change │
│ QQuery 34 │            23.60 / 24.25 ±0.47 / 24.70 ms │            23.32 / 26.63 ±3.10 / 32.34 ms │  1.10x slower │
│ QQuery 35 │         127.12 / 133.25 ±4.15 / 139.70 ms │         127.21 / 130.58 ±3.59 / 137.40 ms │     no change │
│ QQuery 36 │            30.14 / 32.20 ±1.78 / 35.43 ms │            29.02 / 30.96 ±1.38 / 33.20 ms │     no change │
│ QQuery 37 │            17.45 / 18.11 ±0.69 / 19.35 ms │            17.56 / 18.03 ±0.50 / 18.96 ms │     no change │
│ QQuery 38 │         116.90 / 123.54 ±7.38 / 135.53 ms │         118.46 / 125.18 ±5.26 / 132.24 ms │     no change │
│ QQuery 39 │        234.02 / 244.73 ±12.40 / 267.68 ms │         228.74 / 246.71 ±9.18 / 253.78 ms │     no change │
│ QQuery 40 │         180.26 / 189.31 ±8.76 / 205.10 ms │        178.13 / 189.92 ±12.44 / 212.57 ms │     no change │
│ QQuery 41 │            34.56 / 35.31 ±0.44 / 35.89 ms │            34.12 / 34.78 ±0.41 / 35.29 ms │     no change │
│ QQuery 42 │         118.97 / 121.36 ±1.97 / 124.64 ms │         119.47 / 125.09 ±8.92 / 142.76 ms │     no change │
│ QQuery 43 │            21.63 / 22.31 ±0.38 / 22.69 ms │            19.66 / 19.99 ±0.19 / 20.20 ms │ +1.12x faster │
│ QQuery 44 │            52.96 / 55.22 ±2.20 / 58.90 ms │            51.45 / 54.01 ±2.10 / 57.13 ms │     no change │
│ QQuery 45 │         140.70 / 153.27 ±6.97 / 159.81 ms │         102.06 / 105.96 ±3.56 / 111.02 ms │ +1.45x faster │
│ QQuery 46 │            24.25 / 25.16 ±1.16 / 27.39 ms │            23.97 / 24.64 ±0.62 / 25.41 ms │     no change │
│ QQuery 47 │        840.85 / 871.13 ±29.39 / 920.10 ms │        795.55 / 811.51 ±13.84 / 830.60 ms │ +1.07x faster │
│ QQuery 48 │         286.81 / 296.90 ±7.52 / 306.53 ms │        285.22 / 296.64 ±10.63 / 314.15 ms │     no change │
│ QQuery 49 │         356.79 / 362.05 ±4.23 / 365.72 ms │         353.43 / 358.44 ±2.83 / 361.31 ms │     no change │
│ QQuery 50 │         409.77 / 416.81 ±5.38 / 423.24 ms │        330.83 / 345.76 ±11.36 / 361.97 ms │ +1.21x faster │
│ QQuery 51 │         268.26 / 275.30 ±5.54 / 281.52 ms │         267.84 / 274.38 ±5.05 / 282.31 ms │     no change │
│ QQuery 52 │         119.96 / 122.97 ±2.85 / 127.96 ms │         118.60 / 120.24 ±2.92 / 126.08 ms │     no change │
│ QQuery 53 │         123.48 / 126.54 ±2.62 / 129.79 ms │         122.01 / 125.15 ±2.55 / 127.75 ms │     no change │
│ QQuery 54 │         208.94 / 213.91 ±4.08 / 220.04 ms │         205.67 / 208.17 ±2.41 / 212.57 ms │     no change │
│ QQuery 55 │         118.28 / 121.11 ±2.84 / 125.80 ms │         116.81 / 119.80 ±2.41 / 122.72 ms │     no change │
│ QQuery 56 │         166.84 / 170.99 ±3.00 / 175.79 ms │         166.78 / 170.15 ±3.09 / 174.80 ms │     no change │
│ QQuery 57 │         261.82 / 270.39 ±5.12 / 277.48 ms │         256.61 / 263.77 ±5.37 / 271.13 ms │     no change │
│ QQuery 58 │         611.63 / 625.77 ±9.85 / 638.50 ms │         420.56 / 426.80 ±6.69 / 439.65 ms │ +1.47x faster │
│ QQuery 59 │         230.71 / 233.61 ±1.73 / 235.63 ms │         220.98 / 229.24 ±8.87 / 246.24 ms │     no change │
│ QQuery 60 │         173.37 / 181.35 ±7.25 / 194.54 ms │         174.05 / 177.84 ±3.53 / 184.10 ms │     no change │
│ QQuery 61 │            25.05 / 25.69 ±0.49 / 26.34 ms │            25.22 / 26.73 ±0.91 / 27.93 ms │     no change │
│ QQuery 62 │         905.75 / 914.73 ±8.05 / 929.66 ms │        922.22 / 938.83 ±10.11 / 952.18 ms │     no change │
│ QQuery 63 │         128.53 / 133.20 ±5.55 / 142.80 ms │         122.01 / 126.80 ±5.05 / 133.70 ms │     no change │
│ QQuery 64 │     1164.43 / 1209.77 ±37.08 / 1259.08 ms │      1008.14 / 1012.53 ±4.39 / 1020.51 ms │ +1.19x faster │
│ QQuery 65 │        280.83 / 303.74 ±17.44 / 331.96 ms │        280.25 / 296.51 ±10.84 / 313.83 ms │     no change │
│ QQuery 66 │        247.43 / 278.82 ±20.39 / 301.74 ms │        250.42 / 276.12 ±17.58 / 297.15 ms │     no change │
│ QQuery 67 │         321.37 / 326.34 ±7.99 / 342.26 ms │        326.08 / 341.02 ±13.69 / 364.34 ms │     no change │
│ QQuery 68 │            24.61 / 25.62 ±0.90 / 26.74 ms │            25.04 / 30.39 ±7.31 / 44.86 ms │  1.19x slower │
│ QQuery 69 │         117.80 / 123.20 ±4.33 / 130.97 ms │         119.37 / 123.84 ±2.26 / 125.53 ms │     no change │
│ QQuery 70 │        362.78 / 375.85 ±10.41 / 393.57 ms │        358.39 / 374.01 ±12.98 / 395.00 ms │     no change │
│ QQuery 71 │         157.50 / 161.63 ±3.33 / 166.36 ms │         155.49 / 162.12 ±5.75 / 170.75 ms │     no change │
│ QQuery 72 │     2866.36 / 2882.86 ±13.54 / 2901.98 ms │        878.05 / 895.11 ±14.65 / 917.97 ms │ +3.22x faster │
│ QQuery 73 │            23.29 / 23.78 ±0.48 / 24.39 ms │           23.34 / 30.77 ±11.35 / 53.37 ms │  1.29x slower │
│ QQuery 74 │        647.65 / 666.92 ±10.94 / 681.40 ms │        601.00 / 641.16 ±30.30 / 677.12 ms │     no change │
│ QQuery 75 │         389.62 / 396.12 ±4.89 / 403.33 ms │         383.68 / 393.76 ±5.99 / 399.76 ms │     no change │
│ QQuery 76 │        253.98 / 277.99 ±16.45 / 304.86 ms │         209.29 / 211.97 ±1.92 / 214.44 ms │ +1.31x faster │
│ QQuery 77 │         248.42 / 260.06 ±7.89 / 270.50 ms │         240.73 / 249.00 ±9.95 / 268.52 ms │     no change │
│ QQuery 78 │        528.01 / 550.48 ±12.83 / 564.13 ms │        537.25 / 566.36 ±17.51 / 591.04 ms │     no change │
│ QQuery 79 │         250.32 / 264.37 ±8.23 / 272.65 ms │         245.84 / 256.21 ±9.95 / 271.62 ms │     no change │
│ QQuery 80 │         522.45 / 533.00 ±8.13 / 545.07 ms │         517.87 / 528.16 ±8.19 / 541.77 ms │     no change │
│ QQuery 81 │            63.64 / 65.95 ±1.63 / 67.89 ms │            63.91 / 69.35 ±6.08 / 79.88 ms │  1.05x slower │
│ QQuery 82 │            53.95 / 61.14 ±7.64 / 72.75 ms │            57.92 / 58.49 ±0.41 / 58.91 ms │     no change │
│ QQuery 83 │         171.05 / 176.23 ±3.28 / 181.00 ms │         102.73 / 107.43 ±5.50 / 118.00 ms │ +1.64x faster │
│ QQuery 84 │            58.60 / 59.96 ±1.06 / 61.31 ms │            58.91 / 60.32 ±0.92 / 61.53 ms │     no change │
│ QQuery 85 │         219.62 / 231.24 ±6.21 / 237.45 ms │         165.51 / 171.07 ±3.25 / 174.39 ms │ +1.35x faster │
│ QQuery 86 │            57.27 / 58.55 ±0.86 / 59.63 ms │            54.23 / 57.53 ±1.94 / 59.93 ms │     no change │
│ QQuery 87 │               3.68 / 3.78 ±0.16 / 4.10 ms │               3.82 / 3.94 ±0.12 / 4.17 ms │     no change │
│ QQuery 88 │         147.82 / 151.39 ±3.51 / 158.07 ms │         143.63 / 148.88 ±5.69 / 156.01 ms │     no change │
│ QQuery 89 │         143.50 / 149.67 ±8.79 / 167.13 ms │         139.58 / 143.88 ±4.35 / 151.44 ms │     no change │
│ QQuery 90 │            37.79 / 40.16 ±1.62 / 42.30 ms │            35.97 / 36.74 ±0.90 / 38.33 ms │ +1.09x faster │
│ QQuery 91 │            76.13 / 78.09 ±2.03 / 81.80 ms │            74.44 / 76.35 ±1.36 / 78.54 ms │     no change │
│ QQuery 92 │            77.71 / 78.95 ±1.47 / 81.18 ms │            73.22 / 78.38 ±3.33 / 82.17 ms │     no change │
│ QQuery 93 │         323.58 / 330.71 ±5.45 / 336.29 ms │         311.53 / 316.99 ±5.17 / 325.62 ms │     no change │
│ QQuery 94 │            89.13 / 90.44 ±1.06 / 91.74 ms │            85.48 / 91.14 ±3.43 / 94.23 ms │     no change │
│ QQuery 95 │         334.96 / 341.71 ±6.07 / 352.33 ms │         245.32 / 252.61 ±6.79 / 262.38 ms │ +1.35x faster │
│ QQuery 96 │            80.38 / 82.41 ±1.18 / 83.41 ms │            77.64 / 80.07 ±1.84 / 81.99 ms │     no change │
│ QQuery 97 │         173.80 / 178.99 ±4.68 / 187.71 ms │         166.26 / 172.01 ±3.95 / 177.43 ms │     no change │
│ QQuery 98 │         183.75 / 187.97 ±4.88 / 195.98 ms │         168.74 / 174.19 ±4.94 / 180.35 ms │ +1.08x faster │
│ QQuery 99 │ 10957.84 / 11242.15 ±203.51 / 11483.42 ms │ 10887.94 / 11070.49 ±117.96 / 11226.72 ms │     no change │
└───────────┴───────────────────────────────────────────┴───────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                                  ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                                  │ 42204.00ms │
│ Total Time (worktree-dynamic-filter-restructure)   │ 37998.77ms │
│ Average Time (HEAD)                                │   426.30ms │
│ Average Time (worktree-dynamic-filter-restructure) │   383.83ms │
│ Queries Faster                                     │         23 │
│ Queries Slower                                     │          9 │
│ Queries with No Change                             │         67 │
│ Queries with Failure                               │          0 │
└────────────────────────────────────────────────────┴────────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 215.0s
Peak memory 6.4 GiB
Avg memory 5.4 GiB
CPU user 685.2s
CPU sys 26.0s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 195.0s
Peak memory 6.4 GiB
Avg memory 5.3 GiB
CPU user 445.2s
CPU sys 26.5s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot
Copy link
Copy Markdown

Benchmark for this request failed.

Last 20 lines of output:

Click to expand
 Downloading crates ...
  Downloaded prost v0.14.3
  Downloaded prost-derive v0.14.3
  Downloaded anyhow v1.0.102
   Compiling anyhow v1.0.102
   Compiling either v1.15.0
   Compiling datafusion-benchmarks v53.1.0 (/workspace/datafusion-base/benchmarks)
   Compiling itertools v0.14.0
   Compiling prost-derive v0.14.3
   Compiling prost v0.14.3
   Compiling datafusion-proto-common v53.1.0 (/workspace/datafusion-base/datafusion/proto-common)
   Compiling datafusion-proto v53.1.0 (/workspace/datafusion-base/datafusion/proto)
    Finished `bench` profile [optimized + debuginfo] target(s) in 8m 43s
     Running benches/sql.rs (/workspace/datafusion-base/target/release/deps/sql-2c9f51cbfcaf27f8)
Gnuplot not found, using plotters backend

thread 'main' (21027) panicked at benchmarks/benches/sql.rs:131:46:
assertion failed: Execution("Error in result on row 1, column 1 running query \"\nSELECT COUNT(*) > 0 from lineitem;\": expected value \"true\" but got value \"false\" in row: [\"false\"]")
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
error: bench failed, to rerun pass `--bench sql`

File an issue against this benchmark runner

@adriangbot
Copy link
Copy Markdown

Benchmark for this request failed.

Last 20 lines of output:

Click to expand
 Downloading crates ...
  Downloaded anyhow v1.0.102
  Downloaded prost-derive v0.14.3
  Downloaded prost v0.14.3
   Compiling anyhow v1.0.102
   Compiling either v1.15.0
   Compiling datafusion-benchmarks v53.1.0 (/workspace/datafusion-base/benchmarks)
   Compiling itertools v0.14.0
   Compiling prost-derive v0.14.3
   Compiling prost v0.14.3
   Compiling datafusion-proto-common v53.1.0 (/workspace/datafusion-base/datafusion/proto-common)
   Compiling datafusion-proto v53.1.0 (/workspace/datafusion-base/datafusion/proto)
    Finished `bench` profile [optimized + debuginfo] target(s) in 8m 57s
     Running benches/sql.rs (/workspace/datafusion-base/target/release/deps/sql-2c9f51cbfcaf27f8)
Gnuplot not found, using plotters backend

thread 'main' (21020) panicked at benchmarks/benches/sql.rs:131:46:
assertion failed: Execution("Error in result on row 1, column 1 running query \"\nSELECT COUNT(*) > 0 from lineitem;\": expected value \"true\" but got value \"false\" in row: [\"false\"]")
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
error: bench failed, to rerun pass `--bench sql`

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 worktree-dynamic-filter-restructure
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                      HEAD ┃       worktree-dynamic-filter-restructure ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │            24.37 / 24.75 ±0.66 / 26.07 ms │            23.96 / 24.69 ±0.71 / 26.04 ms │     no change │
│ QQuery 2  │         206.29 / 208.06 ±2.30 / 212.60 ms │         203.51 / 204.09 ±0.50 / 204.96 ms │     no change │
│ QQuery 3  │         123.31 / 124.78 ±0.99 / 126.00 ms │         124.95 / 125.44 ±0.44 / 126.06 ms │     no change │
│ QQuery 4  │      1136.06 / 1144.67 ±4.70 / 1148.27 ms │      1136.91 / 1146.00 ±7.25 / 1154.03 ms │     no change │
│ QQuery 5  │        294.21 / 315.17 ±12.93 / 328.57 ms │         285.84 / 292.61 ±3.78 / 296.60 ms │ +1.08x faster │
│ QQuery 6  │         121.99 / 124.89 ±2.21 / 128.27 ms │         125.62 / 130.57 ±4.80 / 138.90 ms │     no change │
│ QQuery 7  │        441.27 / 453.68 ±10.80 / 469.36 ms │         619.35 / 623.28 ±4.85 / 632.62 ms │  1.37x slower │
│ QQuery 8  │         177.11 / 181.95 ±5.15 / 191.89 ms │         179.71 / 182.67 ±3.07 / 188.46 ms │     no change │
│ QQuery 9  │         289.74 / 298.57 ±5.61 / 304.82 ms │         289.57 / 298.06 ±5.38 / 305.76 ms │     no change │
│ QQuery 10 │        174.78 / 185.88 ±11.06 / 206.20 ms │         177.70 / 190.51 ±8.48 / 204.16 ms │     no change │
│ QQuery 11 │         724.99 / 738.55 ±8.84 / 752.13 ms │         734.19 / 742.60 ±4.64 / 748.41 ms │     no change │
│ QQuery 12 │            58.76 / 61.37 ±2.51 / 66.06 ms │            60.02 / 61.07 ±0.71 / 61.94 ms │     no change │
│ QQuery 13 │        542.67 / 554.99 ±10.36 / 573.70 ms │         552.51 / 566.03 ±8.94 / 577.87 ms │     no change │
│ QQuery 14 │     1214.14 / 1245.82 ±24.48 / 1288.46 ms │     1217.20 / 1256.01 ±30.21 / 1292.24 ms │     no change │
│ QQuery 15 │          98.04 / 104.30 ±5.11 / 109.94 ms │            72.25 / 77.62 ±6.80 / 91.05 ms │ +1.34x faster │
│ QQuery 16 │            23.08 / 23.47 ±0.27 / 23.73 ms │            22.87 / 23.91 ±0.76 / 25.23 ms │     no change │
│ QQuery 17 │        295.72 / 310.91 ±10.05 / 327.08 ms │         244.05 / 253.44 ±6.68 / 261.15 ms │ +1.23x faster │
│ QQuery 18 │         819.77 / 826.83 ±5.17 / 835.24 ms │         793.38 / 798.50 ±4.42 / 805.03 ms │     no change │
│ QQuery 19 │         149.78 / 155.34 ±3.19 / 158.54 ms │         154.11 / 156.32 ±2.17 / 159.88 ms │     no change │
│ QQuery 20 │            39.60 / 41.54 ±1.89 / 45.13 ms │            40.68 / 41.53 ±0.72 / 42.57 ms │     no change │
│ QQuery 21 │            43.99 / 45.20 ±1.44 / 48.00 ms │            42.19 / 42.46 ±0.28 / 42.95 ms │ +1.06x faster │
│ QQuery 22 │         519.90 / 529.44 ±5.29 / 535.06 ms │         514.12 / 524.52 ±7.75 / 535.21 ms │     no change │
│ QQuery 23 │     2564.38 / 2592.90 ±24.81 / 2630.63 ms │     4532.57 / 4559.10 ±20.97 / 4590.18 ms │  1.76x slower │
│ QQuery 24 │        589.06 / 618.06 ±20.06 / 644.94 ms │        362.80 / 374.85 ±10.26 / 391.15 ms │ +1.65x faster │
│ QQuery 25 │         564.64 / 574.50 ±6.78 / 582.98 ms │         634.55 / 645.13 ±8.88 / 659.74 ms │  1.12x slower │
│ QQuery 26 │        237.80 / 255.80 ±11.32 / 267.92 ms │         308.27 / 312.99 ±4.29 / 320.44 ms │  1.22x slower │
│ QQuery 27 │            25.20 / 25.80 ±0.51 / 26.44 ms │            25.05 / 25.47 ±0.23 / 25.65 ms │     no change │
│ QQuery 28 │         236.83 / 240.46 ±3.43 / 245.72 ms │        232.95 / 242.66 ±10.02 / 261.00 ms │     no change │
│ QQuery 29 │        379.63 / 399.01 ±15.46 / 420.74 ms │         339.60 / 350.15 ±9.99 / 367.14 ms │ +1.14x faster │
│ QQuery 30 │            85.96 / 87.07 ±1.10 / 88.88 ms │            85.84 / 86.72 ±0.71 / 87.63 ms │     no change │
│ QQuery 31 │         216.27 / 226.62 ±7.13 / 235.32 ms │         212.89 / 222.12 ±7.32 / 232.85 ms │     no change │
│ QQuery 32 │            33.81 / 36.60 ±1.70 / 38.56 ms │           33.52 / 41.64 ±11.82 / 64.99 ms │  1.14x slower │
│ QQuery 33 │         151.72 / 156.27 ±2.69 / 159.78 ms │         159.48 / 161.57 ±2.06 / 164.34 ms │     no change │
│ QQuery 34 │            22.99 / 23.47 ±0.45 / 24.27 ms │            22.55 / 25.51 ±3.33 / 32.00 ms │  1.09x slower │
│ QQuery 35 │         163.45 / 165.82 ±2.22 / 169.51 ms │         166.46 / 170.59 ±3.91 / 177.63 ms │     no change │
│ QQuery 36 │            30.50 / 31.55 ±0.68 / 32.46 ms │            29.87 / 35.29 ±8.86 / 52.98 ms │  1.12x slower │
│ QQuery 37 │            15.55 / 18.37 ±4.55 / 27.43 ms │            15.13 / 15.78 ±0.43 / 16.25 ms │ +1.16x faster │
│ QQuery 38 │         145.37 / 149.88 ±3.75 / 154.19 ms │         143.83 / 148.43 ±4.90 / 157.90 ms │     no change │
│ QQuery 39 │         244.70 / 246.82 ±1.32 / 248.34 ms │        243.09 / 250.34 ±10.18 / 270.32 ms │     no change │
│ QQuery 40 │         206.57 / 215.95 ±6.22 / 224.87 ms │         197.84 / 207.43 ±8.10 / 217.81 ms │     no change │
│ QQuery 41 │            35.18 / 35.87 ±0.56 / 36.74 ms │            34.68 / 35.03 ±0.32 / 35.53 ms │     no change │
│ QQuery 42 │         118.31 / 122.18 ±4.71 / 129.49 ms │         120.27 / 122.64 ±1.32 / 124.01 ms │     no change │
│ QQuery 43 │            19.68 / 19.98 ±0.25 / 20.30 ms │            19.25 / 19.58 ±0.29 / 20.07 ms │     no change │
│ QQuery 44 │            54.15 / 59.76 ±6.35 / 71.95 ms │            54.48 / 59.46 ±7.76 / 74.93 ms │     no change │
│ QQuery 45 │         119.76 / 124.56 ±4.66 / 133.42 ms │            81.18 / 84.12 ±1.78 / 85.86 ms │ +1.48x faster │
│ QQuery 46 │            24.85 / 25.98 ±0.86 / 26.96 ms │            23.85 / 24.59 ±0.91 / 26.23 ms │ +1.06x faster │
│ QQuery 47 │         876.71 / 882.60 ±3.83 / 886.45 ms │         875.75 / 886.62 ±6.03 / 893.33 ms │     no change │
│ QQuery 48 │        458.56 / 474.73 ±18.90 / 510.70 ms │         464.62 / 478.25 ±7.87 / 488.22 ms │     no change │
│ QQuery 49 │         348.63 / 363.03 ±8.08 / 369.83 ms │         351.63 / 358.30 ±6.43 / 369.73 ms │     no change │
│ QQuery 50 │      1323.65 / 1341.34 ±8.89 / 1347.36 ms │     1653.53 / 1667.33 ±10.15 / 1682.98 ms │  1.24x slower │
│ QQuery 51 │         291.39 / 303.12 ±6.32 / 310.20 ms │         301.55 / 304.46 ±2.89 / 309.65 ms │     no change │
│ QQuery 52 │         122.11 / 126.52 ±2.67 / 129.70 ms │         124.62 / 128.32 ±3.26 / 134.22 ms │     no change │
│ QQuery 53 │         155.57 / 163.33 ±7.05 / 175.17 ms │         157.26 / 161.73 ±4.72 / 170.68 ms │     no change │
│ QQuery 54 │         180.60 / 187.38 ±4.83 / 194.96 ms │         179.07 / 183.09 ±3.58 / 189.80 ms │     no change │
│ QQuery 55 │         119.73 / 125.36 ±5.86 / 135.18 ms │         119.86 / 123.37 ±3.18 / 128.44 ms │     no change │
│ QQuery 56 │         155.70 / 159.96 ±2.64 / 163.69 ms │         158.57 / 161.42 ±2.01 / 163.71 ms │     no change │
│ QQuery 57 │         275.36 / 282.85 ±5.45 / 290.44 ms │         276.09 / 282.33 ±3.24 / 285.35 ms │     no change │
│ QQuery 58 │         265.15 / 268.35 ±1.94 / 270.22 ms │         217.11 / 222.69 ±3.95 / 228.13 ms │ +1.20x faster │
│ QQuery 59 │         285.92 / 290.86 ±3.41 / 295.49 ms │         287.95 / 294.31 ±4.47 / 299.63 ms │     no change │
│ QQuery 60 │         158.76 / 163.74 ±3.50 / 168.24 ms │         160.58 / 165.43 ±4.18 / 171.37 ms │     no change │
│ QQuery 61 │            23.37 / 23.63 ±0.25 / 24.05 ms │            24.12 / 24.77 ±0.48 / 25.31 ms │     no change │
│ QQuery 62 │         914.20 / 923.63 ±7.90 / 938.13 ms │         919.75 / 932.25 ±8.77 / 946.07 ms │     no change │
│ QQuery 63 │         155.69 / 166.92 ±8.28 / 181.03 ms │         156.33 / 163.46 ±6.91 / 174.62 ms │     no change │
│ QQuery 64 │     1469.61 / 1494.53 ±16.25 / 1517.09 ms │     1743.60 / 1760.01 ±14.79 / 1782.86 ms │  1.18x slower │
│ QQuery 65 │        379.49 / 387.66 ±10.17 / 407.54 ms │        380.45 / 397.45 ±16.70 / 419.44 ms │     no change │
│ QQuery 66 │         209.37 / 218.97 ±9.43 / 234.72 ms │         211.51 / 218.76 ±7.41 / 229.73 ms │     no change │
│ QQuery 67 │        524.78 / 547.38 ±16.52 / 568.30 ms │        529.89 / 548.56 ±12.05 / 564.04 ms │     no change │
│ QQuery 68 │            25.00 / 25.31 ±0.36 / 26.00 ms │            24.28 / 27.66 ±4.88 / 37.29 ms │  1.09x slower │
│ QQuery 69 │         173.69 / 182.32 ±5.40 / 188.37 ms │        172.78 / 184.78 ±10.10 / 199.96 ms │     no change │
│ QQuery 70 │        449.53 / 459.95 ±12.99 / 485.41 ms │         454.35 / 460.46 ±4.18 / 466.30 ms │     no change │
│ QQuery 71 │         145.97 / 149.40 ±3.13 / 155.03 ms │         150.98 / 158.60 ±9.97 / 177.89 ms │  1.06x slower │
│ QQuery 72 │     3999.94 / 4060.72 ±44.12 / 4128.30 ms │     4412.21 / 4425.75 ±13.12 / 4445.80 ms │  1.09x slower │
│ QQuery 73 │            23.10 / 23.59 ±0.39 / 24.17 ms │            23.29 / 27.09 ±6.34 / 39.75 ms │  1.15x slower │
│ QQuery 74 │        531.71 / 543.21 ±13.34 / 568.82 ms │         542.77 / 547.06 ±4.47 / 554.98 ms │     no change │
│ QQuery 75 │        377.54 / 393.12 ±10.67 / 405.60 ms │         376.66 / 388.68 ±9.03 / 399.38 ms │     no change │
│ QQuery 76 │        663.72 / 695.97 ±25.17 / 740.60 ms │      1106.22 / 1110.87 ±4.02 / 1116.57 ms │  1.60x slower │
│ QQuery 77 │         266.17 / 270.17 ±3.32 / 274.10 ms │         269.75 / 274.36 ±3.33 / 278.42 ms │     no change │
│ QQuery 78 │        401.97 / 416.16 ±10.48 / 433.10 ms │         407.45 / 413.85 ±5.94 / 423.27 ms │     no change │
│ QQuery 79 │         263.98 / 274.08 ±6.58 / 281.53 ms │         262.43 / 273.07 ±8.38 / 283.86 ms │     no change │
│ QQuery 80 │        347.91 / 359.78 ±10.41 / 378.76 ms │         338.28 / 349.05 ±8.40 / 360.12 ms │     no change │
│ QQuery 81 │            61.65 / 62.91 ±0.80 / 63.84 ms │            61.84 / 62.49 ±0.51 / 63.28 ms │     no change │
│ QQuery 82 │            57.91 / 59.35 ±0.97 / 60.88 ms │            57.73 / 61.45 ±5.77 / 72.87 ms │     no change │
│ QQuery 83 │         100.12 / 105.56 ±5.15 / 115.02 ms │          93.86 / 100.05 ±6.29 / 111.96 ms │ +1.06x faster │
│ QQuery 84 │            72.69 / 74.06 ±1.36 / 75.89 ms │            72.69 / 76.23 ±3.12 / 82.00 ms │     no change │
│ QQuery 85 │        358.31 / 379.79 ±15.69 / 402.90 ms │        372.64 / 381.07 ±11.24 / 402.57 ms │     no change │
│ QQuery 86 │            65.33 / 68.72 ±5.14 / 78.92 ms │            66.00 / 67.37 ±1.18 / 68.96 ms │     no change │
│ QQuery 87 │               3.53 / 3.66 ±0.23 / 4.11 ms │               3.59 / 3.73 ±0.27 / 4.27 ms │     no change │
│ QQuery 88 │        158.40 / 166.56 ±10.03 / 185.82 ms │        156.79 / 169.49 ±10.97 / 187.69 ms │     no change │
│ QQuery 89 │        175.81 / 191.41 ±22.86 / 236.22 ms │        176.34 / 187.00 ±11.28 / 201.15 ms │     no change │
│ QQuery 90 │            38.28 / 39.61 ±0.68 / 40.13 ms │            38.23 / 39.40 ±0.91 / 40.42 ms │     no change │
│ QQuery 91 │         107.11 / 113.88 ±7.45 / 127.56 ms │         102.87 / 109.14 ±4.19 / 115.02 ms │     no change │
│ QQuery 92 │            67.05 / 69.81 ±1.78 / 72.49 ms │            67.98 / 71.68 ±3.83 / 78.63 ms │     no change │
│ QQuery 93 │         322.41 / 326.68 ±4.03 / 333.56 ms │         313.52 / 320.56 ±4.79 / 326.04 ms │     no change │
│ QQuery 94 │            90.52 / 91.37 ±0.70 / 92.24 ms │            93.01 / 94.56 ±1.39 / 96.66 ms │     no change │
│ QQuery 95 │         336.58 / 342.91 ±4.20 / 349.32 ms │         293.79 / 304.41 ±7.78 / 312.61 ms │ +1.13x faster │
│ QQuery 96 │            83.03 / 88.23 ±3.96 / 94.58 ms │            84.28 / 86.96 ±2.29 / 89.92 ms │     no change │
│ QQuery 97 │         187.70 / 195.14 ±6.36 / 204.37 ms │         188.22 / 191.97 ±3.19 / 196.15 ms │     no change │
│ QQuery 98 │         138.22 / 141.16 ±2.94 / 145.70 ms │         137.57 / 143.64 ±3.32 / 146.28 ms │     no change │
│ QQuery 99 │ 10864.81 / 11171.83 ±165.92 / 11336.69 ms │ 10842.69 / 11059.94 ±119.52 / 11185.66 ms │     no change │
└───────────┴───────────────────────────────────────────┴───────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                                  ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                                  │ 44595.75ms │
│ Total Time (worktree-dynamic-filter-restructure)   │ 47618.44ms │
│ Average Time (HEAD)                                │   450.46ms │
│ Average Time (worktree-dynamic-filter-restructure) │   480.99ms │
│ Queries Faster                                     │         12 │
│ Queries Slower                                     │         14 │
│ Queries with No Change                             │         73 │
│ Queries with Failure                               │          0 │
└────────────────────────────────────────────────────┴────────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 225.1s
Peak memory 6.5 GiB
Avg memory 5.7 GiB
CPU user 479.8s
CPU sys 25.6s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 240.1s
Peak memory 6.3 GiB
Avg memory 5.7 GiB
CPU user 412.5s
CPU sys 26.9s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot
Copy link
Copy Markdown

Benchmark for this request failed.

Last 20 lines of output:

Click to expand
 Downloading crates ...
  Downloaded prost v0.14.3
  Downloaded prost-derive v0.14.3
  Downloaded anyhow v1.0.102
   Compiling anyhow v1.0.102
   Compiling either v1.15.0
   Compiling datafusion-benchmarks v53.1.0 (/workspace/datafusion-base/benchmarks)
   Compiling itertools v0.14.0
   Compiling prost-derive v0.14.3
   Compiling prost v0.14.3
   Compiling datafusion-proto-common v53.1.0 (/workspace/datafusion-base/datafusion/proto-common)
   Compiling datafusion-proto v53.1.0 (/workspace/datafusion-base/datafusion/proto)
    Finished `bench` profile [optimized + debuginfo] target(s) in 8m 59s
     Running benches/sql.rs (/workspace/datafusion-base/target/release/deps/sql-2c9f51cbfcaf27f8)
Gnuplot not found, using plotters backend

thread 'main' (21031) panicked at benchmarks/benches/sql.rs:131:46:
assertion failed: Execution("Error in result on row 1, column 1 running query \"\nSELECT COUNT(*) > 0 from lineitem;\": expected value \"true\" but got value \"false\" in row: [\"false\"]")
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
error: bench failed, to rerun pass `--bench sql`

File an issue against this benchmark runner

@adriangbot
Copy link
Copy Markdown

Benchmark for this request failed.

Last 20 lines of output:

Click to expand
 Downloading crates ...
  Downloaded prost-derive v0.14.3
  Downloaded prost v0.14.3
  Downloaded anyhow v1.0.102
   Compiling anyhow v1.0.102
   Compiling either v1.15.0
   Compiling datafusion-benchmarks v53.1.0 (/workspace/datafusion-base/benchmarks)
   Compiling itertools v0.14.0
   Compiling prost-derive v0.14.3
   Compiling prost v0.14.3
   Compiling datafusion-proto-common v53.1.0 (/workspace/datafusion-base/datafusion/proto-common)
   Compiling datafusion-proto v53.1.0 (/workspace/datafusion-base/datafusion/proto)
    Finished `bench` profile [optimized + debuginfo] target(s) in 8m 50s
     Running benches/sql.rs (/workspace/datafusion-base/target/release/deps/sql-2c9f51cbfcaf27f8)
Gnuplot not found, using plotters backend

thread 'main' (21062) panicked at benchmarks/benches/sql.rs:131:46:
assertion failed: Execution("Error in result on row 1, column 1 running query \"\nSELECT COUNT(*) > 0 from lineitem;\": expected value \"true\" but got value \"false\" in row: [\"false\"]")
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
error: bench failed, to rerun pass `--bench sql`

File an issue against this benchmark runner

@adriangb adriangb marked this pull request as ready for review April 30, 2026 00:23
@adriangb
Copy link
Copy Markdown
Contributor Author

adriangb commented Apr 30, 2026

@gene-bordegaray @Dandandan I'm curious what you think of this. It's a bit of a compromise:

  1. Faster or neutral at low partition counts for both filter pushdown on and off.
  2. Faster or neutral at high partition counts for pushdown off. Slower for pushdown on. I think this is something we can address later by dynamically disabling optional filters that don't have a good pruning / compute cost ratio.

What this gets us is:

  1. Better perf at settings most benchmarks (and laptops, etc.) run under.
  2. Resolves @gene-bordegaray 's range partitioning issues.

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

Labels

common Related to common crate core Core DataFusion crate documentation Improvements or additions to documentation physical-plan Changes to the physical-plan crate sqllogictest SQL Logic Tests (.slt)

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants