Skip to content

Adaptive (runtime, stats-based) conjunct reordering for FilterExec#22698

Open
adriangb wants to merge 9 commits into
apache:mainfrom
pydantic:lift-selectivity-stats
Open

Adaptive (runtime, stats-based) conjunct reordering for FilterExec#22698
adriangb wants to merge 9 commits into
apache:mainfrom
pydantic:lift-selectivity-stats

Conversation

@adriangb

@adriangb adriangb commented Jun 1, 2026

Copy link
Copy Markdown
Contributor

Which issue does this PR close?

Rationale for this change

Predicate evaluation order matters: running a selective predicate first lets it
gate the work of the predicates after it. The static cheap/expensive heuristic
(#22343) sorts conjuncts into two cost classes and stable-sorts within each, so
it does nothing to order multiple similarly-expensive predicates; and
BinaryExpr's AND short-circuit only gates on a leftmost selective conjunct.
So a conjunction of several expensive predicates whose selective member is not
written first is evaluated with every predicate scanning ~every row — and
neither mechanism fixes it.

This PR adds runtime, statistics-based conjunct reordering for FilterExec:
it measures each conjunct's selectivity and cost on the rows that actually reach
it and runs the ones that discard the most rows per unit of CPU time first.
Maximising discards-per-second is exactly minimising cost_per_row / (1 - pass_rate),
the classic optimal ordering key for independent conjuncts.

It is off by default (datafusion.execution.adaptive_filter_reordering).

What changes are included in this PR?

Everything lives in a new private module,
datafusion/physical-plan/src/adaptive_filter.rs; FilterExec itself gains one
field, an Option on the stream, and a two-arm match in the poll loop. No plan,
EXPLAIN, statistics, or public-API changes beyond the config flag.

  • The compact-once evaluation loop: conjuncts are evaluated sequentially,
    masks combined with cheap bitwise ANDs, and the working batch is physically
    compacted to the survivors once the accumulated mask keeps ≤20% of rows. This
    compaction is what makes ordering pay off — a fused BinaryExpr AND chain
    evaluates ~every conjunct on ~every row regardless of order. (An earlier
    revision of this PR validated adoptions with A/B trials and a
    champion/challenger arbiter; benchmarking showed the compact-once loop is
    where the win actually comes from, so this PR ships the simple one-shot
    cost-model design and leaves A/B validation as possible future work.)
  • Warm-up and settle: each conjunct's marginal pass rate and per-row cost
    are measured for 8 batches; conjuncts are then ranked by discards-per-
    nanosecond, and the ranked order is adopted only if its expected cost is
    materially (≥5%) cheaper
    than the written order. If not, the settled path
    evaluates the original fused predicate — identical to the feature being off.
    Compact-once is used only in service of a reorder.
  • Cross-stream pooling (AdaptiveFilterShared): all partition streams of
    one FilterExec pool their measurements; the first to finish the warm-up
    publishes the settled order via an epoch atomic (one relaxed load per batch
    for the others). The warm-up is paid roughly once per query, not once per
    stream — which is what makes the win materialise when each stream only sees a
    handful of batches.
  • Safety rails: volatile predicates are never reordered; reset_state
    gives re-executions (e.g. recursive queries) fresh measurements; predicate
    rewrites reset the pooled stats; empty batches don't consume the warm-up;
    results are provably order-independent (a conjunction's value doesn't depend
    on evaluation order).
  • Config flag execution.adaptive_filter_reordering (experimental,
    default false), plus regenerated configs.md / information_schema.

Known limitations (documented in the module): the statistics are
conditional — each conjunct is measured on the rows that survived the ones
before it — so correlated conjuncts can be misjudged, and the settle is
one-shot with no drift re-measurement. The material-win guard makes adoption
conservative. Drift re-thaw, confidence intervals, and A/B-validated adoption
are explicitly future work layered on this core.

Reuse note (#22237 / #22144): the adaptive parquet filter-placement work
needs the same ideas (per-predicate selectivity/cost accumulators, a
measure → settle → publish pattern) but a different arrangement type and
lifetime. Everything here is deliberately pub(crate): rather than pre-build a
shared abstraction in physical-expr-common from a single consumer, the plan
is to lift the small shared pieces once the second consumer's shape is
concrete. Nothing in this PR commits any public API beyond the config flag.

Are these changes tested?

Yes:

  • Unit tests for the ranking key, expected-cost model, warm-up boundary
    (mask always equals the plain predicate's, before and after settling),
    no-reorder-runs-plain-predicate, cross-stream pooling/adoption, empty-batch
    and timer-resolution edge cases, and reset_state.
  • adaptive_filter.slt: the table is stored as 64-row batches so the flag-on
    queries cross the warm-up and exercise the settled (reordered) path
    end-to-end, including a NULL-producing conjunct; results and EXPLAIN are
    identical with the flag on and off.

Are there any user-facing changes?

One new config option, datafusion.execution.adaptive_filter_reordering
(experimental, default false). When enabled, query results never change, but
observable side effects of fallible predicates can — even when no reorder is
adopted — because while measuring (and after a reorder) conjuncts are evaluated
only on rows that survived the conjuncts before them, so an error the fused
predicate would have raised on an already-filtered row (e.g.
b <> 0 AND 1/b > 2 evaluating 1/b on every row) may not occur. Predicates
containing volatile expressions are never reordered.

@github-actions github-actions Bot added documentation Improvements or additions to documentation physical-expr Changes to the physical-expr crates sqllogictest SQL Logic Tests (.slt) common Related to common crate physical-plan Changes to the physical-plan crate labels Jun 1, 2026
@adriangb

adriangb commented Jun 1, 2026

Copy link
Copy Markdown
Contributor Author

run benchmarks

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4593095184-389-pg64x 6.12.68+ #1 SMP Wed Apr 1 02:23:28 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 lift-selectivity-stats (5e71ea4) to 85bc5ef (merge-base) diff using: clickbench_partitioned
Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4593095184-391-ctjg4 6.12.68+ #1 SMP Wed Apr 1 02:23:28 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 lift-selectivity-stats (5e71ea4) to 85bc5ef (merge-base) diff using: tpch
Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4593095184-390-w2tfn 6.12.68+ #1 SMP Wed Apr 1 02:23:28 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 lift-selectivity-stats (5e71ea4) to 85bc5ef (merge-base) diff using: tpcds
Results will be posted here when complete


File an issue against this benchmark runner

@github-actions

github-actions Bot commented Jun 1, 2026

Copy link
Copy Markdown

Thank you for opening this pull request!

Reviewer note: cargo-semver-checks reported the current version number is not SemVer-compatible with the changes in this pull request (compared against the base branch).

Details
     Cloning apache/main
    Building datafusion-common v54.0.0 (current)
       Built [  27.518s] (current)
     Parsing datafusion-common v54.0.0 (current)
      Parsed [   0.051s] (current)
    Building datafusion-common v54.0.0 (baseline)
       Built [  26.123s] (baseline)
     Parsing datafusion-common v54.0.0 (baseline)
      Parsed [   0.051s] (baseline)
    Checking datafusion-common v54.0.0 -> v54.0.0 (no change; assume patch)
     Checked [   0.808s] 223 checks: 222 pass, 1 fail, 0 warn, 30 skip

--- failure constructible_struct_adds_field: externally-constructible struct adds field ---

Description:
A pub struct constructible with a struct literal has a new pub field. Existing struct literals must be updated to include the new field.
        ref: https://doc.rust-lang.org/reference/expressions/struct-expr.html
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.48.0/src/lints/constructible_struct_adds_field.ron

Failed in:
  field ExecutionOptions.adaptive_filter_reordering in /home/runner/work/datafusion/datafusion/datafusion/common/src/config.rs:723

     Summary semver requires new major version: 1 major and 0 minor checks failed
    Finished [  55.880s] datafusion-common
    Building datafusion-physical-plan v54.0.0 (current)
       Built [  28.684s] (current)
     Parsing datafusion-physical-plan v54.0.0 (current)
      Parsed [   0.115s] (current)
    Building datafusion-physical-plan v54.0.0 (baseline)
       Built [  28.869s] (baseline)
     Parsing datafusion-physical-plan v54.0.0 (baseline)
      Parsed [   0.112s] (baseline)
    Checking datafusion-physical-plan v54.0.0 -> v54.0.0 (no change; assume patch)
     Checked [   0.792s] 223 checks: 223 pass, 30 skip
     Summary no semver update required
    Finished [  59.911s] datafusion-physical-plan
    Building datafusion-sqllogictest v54.0.0 (current)
       Built [ 149.612s] (current)
     Parsing datafusion-sqllogictest v54.0.0 (current)
      Parsed [   0.019s] (current)
    Building datafusion-sqllogictest v54.0.0 (baseline)
       Built [ 147.482s] (baseline)
     Parsing datafusion-sqllogictest v54.0.0 (baseline)
      Parsed [   0.019s] (baseline)
    Checking datafusion-sqllogictest v54.0.0 -> v54.0.0 (no change; assume patch)
     Checked [   0.097s] 223 checks: 223 pass, 30 skip
     Summary no semver update required
    Finished [ 299.635s] datafusion-sqllogictest

@github-actions github-actions Bot added the auto detected api change Auto detected API change label Jun 1, 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 lift-selectivity-stats
--------------------
Benchmark tpch_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┓
┃ Query     ┃                           HEAD ┃         lift-selectivity-stats ┃       Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━┩
│ QQuery 1  │ 38.60 / 40.15 ±1.11 / 41.83 ms │ 38.12 / 39.19 ±1.29 / 41.17 ms │    no change │
│ QQuery 2  │ 18.25 / 18.94 ±0.67 / 20.10 ms │ 18.60 / 18.75 ±0.13 / 18.95 ms │    no change │
│ QQuery 3  │ 33.32 / 34.21 ±1.08 / 36.32 ms │ 30.89 / 32.94 ±2.44 / 37.48 ms │    no change │
│ QQuery 4  │ 17.20 / 17.65 ±0.66 / 18.95 ms │ 17.06 / 17.50 ±0.44 / 18.33 ms │    no change │
│ QQuery 5  │ 38.04 / 40.19 ±1.13 / 41.33 ms │ 40.74 / 42.20 ±2.45 / 47.08 ms │ 1.05x slower │
│ QQuery 6  │ 16.08 / 16.16 ±0.07 / 16.28 ms │ 16.09 / 16.73 ±1.11 / 18.93 ms │    no change │
│ QQuery 7  │ 42.55 / 44.68 ±2.22 / 47.81 ms │ 45.16 / 46.48 ±1.73 / 49.80 ms │    no change │
│ QQuery 8  │ 42.44 / 43.33 ±0.89 / 44.53 ms │ 42.49 / 42.82 ±0.28 / 43.32 ms │    no change │
│ QQuery 9  │ 48.18 / 49.13 ±0.98 / 50.46 ms │ 49.06 / 49.77 ±0.51 / 50.47 ms │    no change │
│ QQuery 10 │ 41.65 / 41.84 ±0.21 / 42.23 ms │ 41.93 / 42.78 ±1.37 / 45.51 ms │    no change │
│ QQuery 11 │ 13.18 / 13.51 ±0.33 / 14.08 ms │ 13.02 / 13.32 ±0.28 / 13.79 ms │    no change │
│ QQuery 12 │ 23.50 / 24.05 ±0.34 / 24.37 ms │ 23.81 / 24.04 ±0.21 / 24.40 ms │    no change │
│ QQuery 13 │ 31.80 / 34.24 ±2.04 / 37.51 ms │ 32.99 / 34.81 ±1.63 / 37.50 ms │    no change │
│ QQuery 14 │ 23.34 / 23.65 ±0.22 / 23.92 ms │ 23.54 / 23.73 ±0.12 / 23.88 ms │    no change │
│ QQuery 15 │ 32.38 / 33.30 ±0.90 / 35.00 ms │ 31.43 / 31.78 ±0.44 / 32.51 ms │    no change │
│ QQuery 16 │ 13.98 / 14.07 ±0.09 / 14.24 ms │ 13.83 / 14.03 ±0.16 / 14.31 ms │    no change │
│ QQuery 17 │ 72.51 / 73.77 ±1.24 / 76.01 ms │ 73.86 / 75.71 ±1.90 / 79.27 ms │    no change │
│ QQuery 18 │ 57.89 / 60.26 ±2.14 / 64.27 ms │ 59.46 / 59.99 ±0.28 / 60.24 ms │    no change │
│ QQuery 19 │ 32.56 / 32.89 ±0.38 / 33.61 ms │ 32.71 / 33.12 ±0.54 / 34.17 ms │    no change │
│ QQuery 20 │ 31.90 / 32.26 ±0.32 / 32.79 ms │ 31.92 / 32.21 ±0.24 / 32.51 ms │    no change │
│ QQuery 21 │ 55.45 / 56.90 ±1.26 / 58.57 ms │ 54.49 / 56.90 ±1.29 / 58.32 ms │    no change │
│ QQuery 22 │ 13.94 / 14.24 ±0.35 / 14.83 ms │ 13.59 / 14.17 ±0.46 / 14.93 ms │    no change │
└───────────┴────────────────────────────────┴────────────────────────────────┴──────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━┓
┃ Benchmark Summary                     ┃          ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━┩
│ Total Time (HEAD)                     │ 759.43ms │
│ Total Time (lift-selectivity-stats)   │ 762.96ms │
│ Average Time (HEAD)                   │  34.52ms │
│ Average Time (lift-selectivity-stats) │  34.68ms │
│ Queries Faster                        │        0 │
│ Queries Slower                        │        1 │
│ Queries with No Change                │       21 │
│ Queries with Failure                  │        0 │
└───────────────────────────────────────┴──────────┘

Resource Usage

tpch — base (merge-base)

Metric Value
Wall time 5.0s
Peak memory 5.7 GiB
Avg memory 4.9 GiB
CPU user 29.6s
CPU sys 2.2s
Peak spill 0 B

tpch — branch

Metric Value
Wall time 5.0s
Peak memory 5.7 GiB
Avg memory 4.9 GiB
CPU user 29.9s
CPU sys 2.2s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

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

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

Comparing HEAD and lift-selectivity-stats
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃                lift-selectivity-stats ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │           5.90 / 6.41 ±0.87 / 8.16 ms │           5.90 / 6.37 ±0.88 / 8.12 ms │     no change │
│ QQuery 2  │        79.54 / 79.77 ±0.16 / 79.99 ms │        81.11 / 81.52 ±0.25 / 81.79 ms │     no change │
│ QQuery 3  │        28.45 / 28.95 ±0.29 / 29.31 ms │        28.91 / 29.32 ±0.30 / 29.68 ms │     no change │
│ QQuery 4  │     483.36 / 487.62 ±3.22 / 492.72 ms │     487.01 / 490.85 ±3.13 / 496.59 ms │     no change │
│ QQuery 5  │        51.50 / 52.40 ±1.04 / 54.27 ms │        52.25 / 52.73 ±0.53 / 53.72 ms │     no change │
│ QQuery 6  │        36.14 / 36.44 ±0.29 / 36.86 ms │        36.54 / 36.83 ±0.23 / 37.24 ms │     no change │
│ QQuery 7  │        95.37 / 96.57 ±0.77 / 97.70 ms │        95.91 / 96.45 ±0.29 / 96.75 ms │     no change │
│ QQuery 8  │        36.31 / 38.71 ±3.23 / 45.06 ms │        37.82 / 39.53 ±2.72 / 44.95 ms │     no change │
│ QQuery 9  │        54.00 / 54.69 ±0.54 / 55.52 ms │        53.60 / 55.54 ±2.05 / 59.20 ms │     no change │
│ QQuery 10 │        68.71 / 68.99 ±0.33 / 69.61 ms │        68.69 / 68.91 ±0.16 / 69.09 ms │     no change │
│ QQuery 11 │     300.63 / 303.06 ±3.10 / 309.17 ms │     295.87 / 299.86 ±2.69 / 304.15 ms │     no change │
│ QQuery 12 │        28.43 / 28.81 ±0.28 / 29.24 ms │        28.53 / 28.87 ±0.26 / 29.19 ms │     no change │
│ QQuery 13 │     118.99 / 119.74 ±0.64 / 120.56 ms │     119.54 / 120.06 ±0.32 / 120.40 ms │     no change │
│ QQuery 14 │     505.84 / 510.44 ±4.11 / 516.34 ms │    505.29 / 511.56 ±10.27 / 531.95 ms │     no change │
│ QQuery 15 │        57.96 / 59.10 ±1.12 / 61.21 ms │        58.92 / 60.13 ±0.79 / 61.03 ms │     no change │
│ QQuery 16 │           6.79 / 6.95 ±0.14 / 7.19 ms │           7.01 / 7.12 ±0.16 / 7.43 ms │     no change │
│ QQuery 17 │        81.13 / 82.48 ±1.32 / 84.77 ms │        80.81 / 82.01 ±0.97 / 83.70 ms │     no change │
│ QQuery 18 │     123.87 / 124.79 ±0.88 / 126.34 ms │     124.82 / 125.69 ±0.58 / 126.33 ms │     no change │
│ QQuery 19 │        41.80 / 42.60 ±0.64 / 43.71 ms │        42.14 / 42.69 ±0.47 / 43.47 ms │     no change │
│ QQuery 20 │        35.40 / 35.82 ±0.24 / 36.06 ms │        35.98 / 36.36 ±0.35 / 36.91 ms │     no change │
│ QQuery 21 │        16.95 / 17.15 ±0.13 / 17.30 ms │        17.07 / 17.18 ±0.12 / 17.35 ms │     no change │
│ QQuery 22 │        62.03 / 62.94 ±0.90 / 64.39 ms │        62.37 / 62.75 ±0.50 / 63.73 ms │     no change │
│ QQuery 23 │     340.69 / 344.85 ±3.41 / 349.87 ms │     343.40 / 346.64 ±2.72 / 350.29 ms │     no change │
│ QQuery 24 │     224.58 / 225.61 ±1.48 / 228.51 ms │     224.25 / 226.42 ±2.25 / 229.54 ms │     no change │
│ QQuery 25 │     113.57 / 115.02 ±0.99 / 116.64 ms │     113.86 / 116.90 ±2.35 / 120.68 ms │     no change │
│ QQuery 26 │        57.88 / 58.43 ±0.32 / 58.86 ms │        58.39 / 59.03 ±0.51 / 59.64 ms │     no change │
│ QQuery 27 │           6.57 / 6.72 ±0.17 / 7.04 ms │           6.70 / 6.80 ±0.15 / 7.10 ms │     no change │
│ QQuery 28 │        56.57 / 60.29 ±1.86 / 61.34 ms │        60.47 / 61.60 ±0.67 / 62.38 ms │     no change │
│ QQuery 29 │      98.79 / 101.09 ±1.99 / 104.71 ms │       97.92 / 99.46 ±1.69 / 102.26 ms │     no change │
│ QQuery 30 │        31.60 / 32.70 ±0.69 / 33.68 ms │        32.21 / 32.74 ±0.48 / 33.44 ms │     no change │
│ QQuery 31 │     111.52 / 113.02 ±2.19 / 117.37 ms │     111.18 / 112.74 ±1.09 / 114.37 ms │     no change │
│ QQuery 32 │        20.37 / 21.35 ±1.39 / 24.04 ms │        20.11 / 20.35 ±0.30 / 20.90 ms │     no change │
│ QQuery 33 │        38.36 / 39.26 ±0.95 / 40.99 ms │        38.44 / 38.68 ±0.20 / 39.03 ms │     no change │
│ QQuery 34 │          9.23 / 9.68 ±0.48 / 10.45 ms │          9.40 / 9.70 ±0.26 / 10.04 ms │     no change │
│ QQuery 35 │        76.36 / 77.29 ±0.64 / 78.22 ms │        76.03 / 76.53 ±0.38 / 77.11 ms │     no change │
│ QQuery 36 │           5.90 / 6.06 ±0.17 / 6.37 ms │           5.97 / 6.11 ±0.18 / 6.46 ms │     no change │
│ QQuery 37 │           6.71 / 6.85 ±0.15 / 7.10 ms │           6.80 / 6.87 ±0.05 / 6.94 ms │     no change │
│ QQuery 38 │        62.45 / 64.12 ±1.23 / 65.90 ms │        63.03 / 64.27 ±1.11 / 65.85 ms │     no change │
│ QQuery 39 │     450.63 / 455.74 ±3.98 / 460.52 ms │     456.69 / 463.58 ±5.33 / 471.56 ms │     no change │
│ QQuery 40 │        23.43 / 23.87 ±0.60 / 25.05 ms │        22.94 / 23.19 ±0.22 / 23.60 ms │     no change │
│ QQuery 41 │        11.18 / 11.38 ±0.20 / 11.76 ms │        11.45 / 11.57 ±0.13 / 11.80 ms │     no change │
│ QQuery 42 │        23.87 / 24.10 ±0.18 / 24.36 ms │        23.72 / 23.98 ±0.22 / 24.37 ms │     no change │
│ QQuery 43 │           4.79 / 4.89 ±0.15 / 5.18 ms │           4.84 / 4.94 ±0.10 / 5.14 ms │     no change │
│ QQuery 44 │        10.65 / 10.72 ±0.06 / 10.79 ms │        10.77 / 10.84 ±0.04 / 10.87 ms │     no change │
│ QQuery 45 │        38.09 / 39.80 ±2.85 / 45.48 ms │        38.30 / 40.94 ±2.77 / 44.96 ms │     no change │
│ QQuery 46 │        11.45 / 11.64 ±0.13 / 11.84 ms │        11.83 / 12.10 ±0.30 / 12.57 ms │     no change │
│ QQuery 47 │     228.88 / 231.25 ±2.09 / 234.84 ms │     230.39 / 235.31 ±5.12 / 244.83 ms │     no change │
│ QQuery 48 │        95.85 / 96.85 ±0.56 / 97.40 ms │        96.40 / 96.97 ±0.62 / 98.11 ms │     no change │
│ QQuery 49 │        76.89 / 79.24 ±2.19 / 82.70 ms │        77.34 / 79.29 ±2.49 / 84.10 ms │     no change │
│ QQuery 50 │        59.70 / 60.37 ±0.81 / 61.90 ms │        59.23 / 60.08 ±0.59 / 60.82 ms │     no change │
│ QQuery 51 │        90.55 / 92.71 ±1.86 / 95.95 ms │        91.11 / 93.30 ±1.54 / 95.47 ms │     no change │
│ QQuery 52 │        24.05 / 25.58 ±2.74 / 31.06 ms │        23.83 / 24.35 ±0.45 / 25.01 ms │     no change │
│ QQuery 53 │        29.34 / 32.19 ±4.82 / 41.81 ms │        30.21 / 30.65 ±0.31 / 31.11 ms │     no change │
│ QQuery 54 │        55.50 / 56.02 ±0.52 / 56.96 ms │        55.66 / 55.96 ±0.23 / 56.24 ms │     no change │
│ QQuery 55 │        23.34 / 23.66 ±0.30 / 24.20 ms │        23.55 / 23.79 ±0.25 / 24.27 ms │     no change │
│ QQuery 56 │        38.94 / 39.39 ±0.39 / 40.00 ms │        38.97 / 39.67 ±0.58 / 40.61 ms │     no change │
│ QQuery 57 │     176.48 / 178.94 ±3.62 / 186.12 ms │     177.47 / 179.15 ±2.10 / 183.24 ms │     no change │
│ QQuery 58 │     116.27 / 117.90 ±1.85 / 121.31 ms │     118.67 / 120.50 ±1.82 / 123.50 ms │     no change │
│ QQuery 59 │     115.87 / 116.84 ±0.49 / 117.21 ms │     117.92 / 118.72 ±0.48 / 119.29 ms │     no change │
│ QQuery 60 │        39.31 / 39.65 ±0.25 / 40.04 ms │        39.24 / 41.62 ±2.34 / 46.08 ms │     no change │
│ QQuery 61 │        12.76 / 13.07 ±0.18 / 13.28 ms │        13.27 / 13.45 ±0.19 / 13.80 ms │     no change │
│ QQuery 62 │        46.36 / 47.77 ±2.32 / 52.41 ms │        46.11 / 46.61 ±0.30 / 46.99 ms │     no change │
│ QQuery 63 │        30.02 / 30.78 ±0.47 / 31.26 ms │        29.88 / 30.06 ±0.13 / 30.28 ms │     no change │
│ QQuery 64 │     397.24 / 408.19 ±6.43 / 415.10 ms │     397.61 / 402.08 ±4.73 / 408.42 ms │     no change │
│ QQuery 65 │     143.52 / 148.69 ±3.03 / 152.96 ms │     143.99 / 149.24 ±2.95 / 152.12 ms │     no change │
│ QQuery 66 │        78.71 / 79.62 ±0.79 / 80.99 ms │        79.17 / 79.83 ±0.41 / 80.25 ms │     no change │
│ QQuery 67 │     249.66 / 255.71 ±4.77 / 262.11 ms │     243.87 / 251.95 ±5.88 / 258.56 ms │     no change │
│ QQuery 68 │        11.77 / 11.92 ±0.11 / 12.06 ms │        11.92 / 12.17 ±0.25 / 12.63 ms │     no change │
│ QQuery 69 │        63.30 / 66.88 ±3.53 / 72.74 ms │        62.63 / 63.63 ±1.52 / 66.65 ms │     no change │
│ QQuery 70 │     106.55 / 111.23 ±5.22 / 117.87 ms │     105.63 / 107.04 ±1.12 / 108.50 ms │     no change │
│ QQuery 71 │        35.54 / 35.85 ±0.26 / 36.28 ms │        36.04 / 38.98 ±5.25 / 49.48 ms │  1.09x slower │
│ QQuery 72 │ 2152.91 / 2208.05 ±52.28 / 2297.72 ms │ 2066.94 / 2196.25 ±86.55 / 2324.75 ms │     no change │
│ QQuery 73 │          9.45 / 9.86 ±0.54 / 10.88 ms │         9.34 / 10.51 ±1.81 / 14.09 ms │  1.07x slower │
│ QQuery 74 │     169.04 / 173.80 ±3.64 / 179.95 ms │     170.06 / 175.17 ±4.88 / 184.41 ms │     no change │
│ QQuery 75 │     147.29 / 152.50 ±5.35 / 159.78 ms │     147.84 / 149.48 ±0.96 / 150.56 ms │     no change │
│ QQuery 76 │        35.34 / 35.68 ±0.21 / 35.92 ms │        35.19 / 35.38 ±0.20 / 35.72 ms │     no change │
│ QQuery 77 │        60.99 / 63.97 ±3.35 / 70.46 ms │        61.30 / 65.76 ±3.82 / 72.05 ms │     no change │
│ QQuery 78 │     189.39 / 195.43 ±5.19 / 204.20 ms │     189.88 / 195.24 ±3.99 / 200.00 ms │     no change │
│ QQuery 79 │        67.16 / 67.60 ±0.23 / 67.82 ms │        67.39 / 67.96 ±0.57 / 68.89 ms │     no change │
│ QQuery 80 │     101.70 / 103.58 ±1.34 / 105.32 ms │     101.16 / 103.16 ±2.23 / 107.45 ms │     no change │
│ QQuery 81 │        25.56 / 29.77 ±4.50 / 36.08 ms │        25.93 / 28.22 ±3.90 / 36.00 ms │ +1.05x faster │
│ QQuery 82 │        16.37 / 16.79 ±0.24 / 17.00 ms │        16.63 / 16.98 ±0.43 / 17.83 ms │     no change │
│ QQuery 83 │        40.21 / 40.47 ±0.27 / 40.86 ms │        40.14 / 40.70 ±0.60 / 41.81 ms │     no change │
│ QQuery 84 │        34.51 / 34.69 ±0.11 / 34.81 ms │        34.16 / 34.66 ±0.26 / 34.83 ms │     no change │
│ QQuery 85 │     108.64 / 112.89 ±3.26 / 116.77 ms │     108.37 / 112.43 ±3.77 / 118.61 ms │     no change │
│ QQuery 86 │        24.95 / 25.48 ±0.56 / 26.56 ms │        25.18 / 25.69 ±0.38 / 26.16 ms │     no change │
│ QQuery 87 │        64.70 / 65.38 ±0.82 / 66.88 ms │        63.72 / 64.99 ±0.97 / 66.42 ms │     no change │
│ QQuery 88 │        62.60 / 64.61 ±2.38 / 69.28 ms │        61.72 / 62.37 ±0.60 / 63.25 ms │     no change │
│ QQuery 89 │        36.67 / 38.82 ±2.44 / 42.21 ms │        36.56 / 40.19 ±3.70 / 44.99 ms │     no change │
│ QQuery 90 │        17.12 / 17.27 ±0.22 / 17.71 ms │        16.97 / 17.17 ±0.22 / 17.52 ms │     no change │
│ QQuery 91 │        45.14 / 45.65 ±0.59 / 46.74 ms │        45.11 / 45.92 ±0.43 / 46.25 ms │     no change │
│ QQuery 92 │        30.03 / 30.45 ±0.39 / 31.10 ms │        30.15 / 30.41 ±0.24 / 30.84 ms │     no change │
│ QQuery 93 │        50.87 / 52.28 ±1.02 / 53.43 ms │        50.97 / 51.93 ±0.91 / 53.06 ms │     no change │
│ QQuery 94 │        39.32 / 40.51 ±1.57 / 43.55 ms │        38.45 / 41.05 ±2.78 / 44.75 ms │     no change │
│ QQuery 95 │        85.11 / 87.23 ±1.64 / 89.91 ms │        85.66 / 86.80 ±1.24 / 89.09 ms │     no change │
│ QQuery 96 │        24.12 / 24.43 ±0.32 / 25.03 ms │        24.47 / 24.88 ±0.32 / 25.27 ms │     no change │
│ QQuery 97 │        46.08 / 46.99 ±1.44 / 49.85 ms │        46.31 / 46.64 ±0.23 / 46.87 ms │     no change │
│ QQuery 98 │        42.92 / 44.38 ±0.99 / 45.67 ms │        43.75 / 44.47 ±0.55 / 45.23 ms │     no change │
│ QQuery 99 │        69.69 / 70.28 ±0.39 / 70.82 ms │        70.12 / 70.56 ±0.35 / 70.98 ms │     no change │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                     ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                     │ 10508.09ms │
│ Total Time (lift-selectivity-stats)   │ 10507.70ms │
│ Average Time (HEAD)                   │   106.14ms │
│ Average Time (lift-selectivity-stats) │   106.14ms │
│ Queries Faster                        │          1 │
│ Queries Slower                        │          2 │
│ Queries with No Change                │         96 │
│ Queries with Failure                  │          0 │
└───────────────────────────────────────┴────────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 55.0s
Peak memory 7.0 GiB
Avg memory 6.2 GiB
CPU user 239.3s
CPU sys 6.9s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 55.0s
Peak memory 7.1 GiB
Avg memory 6.3 GiB
CPU user 237.8s
CPU sys 6.4s
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 lift-selectivity-stats
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃                lift-selectivity-stats ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.18 / 3.37 ±4.28 / 11.93 ms │          1.17 / 3.38 ±4.30 / 11.99 ms │     no change │
│ QQuery 1  │        12.25 / 12.75 ±0.34 / 13.16 ms │        12.30 / 12.63 ±0.19 / 12.85 ms │     no change │
│ QQuery 2  │        35.68 / 36.24 ±0.65 / 37.51 ms │        35.39 / 35.89 ±0.35 / 36.49 ms │     no change │
│ QQuery 3  │        31.44 / 32.49 ±0.95 / 34.11 ms │        30.95 / 31.15 ±0.15 / 31.35 ms │     no change │
│ QQuery 4  │     232.58 / 234.40 ±2.57 / 239.43 ms │     229.42 / 234.55 ±3.29 / 239.12 ms │     no change │
│ QQuery 5  │     277.10 / 279.65 ±2.11 / 282.96 ms │     280.52 / 282.27 ±1.48 / 284.81 ms │     no change │
│ QQuery 6  │           1.19 / 1.33 ±0.22 / 1.78 ms │           1.19 / 1.34 ±0.24 / 1.83 ms │     no change │
│ QQuery 7  │        13.60 / 13.71 ±0.07 / 13.80 ms │        13.65 / 13.82 ±0.11 / 13.97 ms │     no change │
│ QQuery 8  │     325.45 / 330.75 ±3.56 / 334.04 ms │     332.21 / 333.67 ±1.04 / 335.12 ms │     no change │
│ QQuery 9  │     466.36 / 472.90 ±5.65 / 481.40 ms │     469.80 / 483.74 ±9.77 / 498.56 ms │     no change │
│ QQuery 10 │        70.38 / 71.34 ±0.65 / 72.31 ms │        70.92 / 77.00 ±8.62 / 94.01 ms │  1.08x slower │
│ QQuery 11 │        81.83 / 84.98 ±5.16 / 95.27 ms │        82.03 / 83.31 ±1.05 / 85.01 ms │     no change │
│ QQuery 12 │     271.56 / 276.31 ±4.13 / 281.35 ms │     274.63 / 282.71 ±5.37 / 289.85 ms │     no change │
│ QQuery 13 │     378.59 / 391.29 ±9.15 / 405.80 ms │     380.03 / 385.98 ±7.89 / 400.66 ms │     no change │
│ QQuery 14 │    286.66 / 298.31 ±10.58 / 315.00 ms │    291.19 / 305.57 ±15.54 / 334.61 ms │     no change │
│ QQuery 15 │     274.09 / 280.46 ±4.13 / 285.50 ms │    279.63 / 297.92 ±22.65 / 341.50 ms │  1.06x slower │
│ QQuery 16 │     626.69 / 636.47 ±7.96 / 648.93 ms │    624.05 / 642.15 ±11.84 / 660.82 ms │     no change │
│ QQuery 17 │     629.32 / 644.33 ±9.03 / 652.67 ms │    636.04 / 648.91 ±10.53 / 666.05 ms │     no change │
│ QQuery 18 │ 1275.69 / 1300.83 ±17.59 / 1319.77 ms │ 1290.19 / 1311.60 ±16.32 / 1334.63 ms │     no change │
│ QQuery 19 │        27.74 / 29.70 ±3.07 / 35.80 ms │        27.98 / 31.11 ±5.57 / 42.22 ms │     no change │
│ QQuery 20 │    522.94 / 542.46 ±16.87 / 569.25 ms │     522.83 / 532.03 ±7.87 / 542.73 ms │     no change │
│ QQuery 21 │     595.89 / 604.86 ±6.29 / 614.16 ms │     596.79 / 605.63 ±9.20 / 621.60 ms │     no change │
│ QQuery 22 │  1078.45 / 1088.12 ±6.48 / 1096.06 ms │ 1073.11 / 1084.34 ±10.73 / 1104.12 ms │     no change │
│ QQuery 23 │ 3251.99 / 3297.64 ±32.24 / 3342.42 ms │ 3261.45 / 3292.63 ±19.12 / 3319.73 ms │     no change │
│ QQuery 24 │        41.85 / 43.84 ±3.53 / 50.89 ms │        42.57 / 44.58 ±1.93 / 47.09 ms │     no change │
│ QQuery 25 │     112.07 / 114.18 ±1.66 / 116.02 ms │    112.19 / 122.12 ±14.15 / 149.26 ms │  1.07x slower │
│ QQuery 26 │        41.98 / 44.79 ±2.47 / 47.86 ms │        42.45 / 44.64 ±2.90 / 50.26 ms │     no change │
│ QQuery 27 │     669.13 / 681.49 ±8.32 / 694.31 ms │     681.67 / 685.68 ±2.37 / 688.32 ms │     no change │
│ QQuery 28 │ 3068.44 / 3102.79 ±18.08 / 3117.97 ms │ 3063.72 / 3084.14 ±28.99 / 3141.29 ms │     no change │
│ QQuery 29 │        40.45 / 45.87 ±5.97 / 53.88 ms │       40.54 / 46.27 ±10.61 / 67.46 ms │     no change │
│ QQuery 30 │     305.61 / 313.89 ±4.38 / 317.61 ms │    305.09 / 321.45 ±10.30 / 333.93 ms │     no change │
│ QQuery 31 │     291.34 / 298.47 ±6.87 / 309.26 ms │     300.32 / 307.90 ±6.71 / 316.02 ms │     no change │
│ QQuery 32 │   958.58 / 997.66 ±26.08 / 1035.11 ms │  999.36 / 1042.47 ±29.48 / 1086.19 ms │     no change │
│ QQuery 33 │ 1503.09 / 1535.50 ±28.03 / 1569.85 ms │ 1502.73 / 1532.15 ±27.30 / 1579.36 ms │     no change │
│ QQuery 34 │ 1535.22 / 1565.03 ±26.21 / 1609.06 ms │ 1509.49 / 1556.33 ±30.97 / 1606.83 ms │     no change │
│ QQuery 35 │    293.25 / 319.09 ±31.85 / 371.80 ms │    288.65 / 302.89 ±14.68 / 328.68 ms │ +1.05x faster │
│ QQuery 36 │        68.12 / 75.88 ±7.47 / 85.25 ms │       66.25 / 77.04 ±10.43 / 96.38 ms │     no change │
│ QQuery 37 │        36.14 / 40.14 ±4.70 / 47.04 ms │        35.82 / 38.61 ±3.93 / 46.32 ms │     no change │
│ QQuery 38 │        40.78 / 45.97 ±6.39 / 58.57 ms │        42.98 / 45.67 ±3.80 / 52.96 ms │     no change │
│ QQuery 39 │    142.78 / 159.37 ±14.50 / 185.45 ms │     155.58 / 160.28 ±4.45 / 167.13 ms │     no change │
│ QQuery 40 │        13.94 / 16.25 ±3.90 / 24.04 ms │        14.02 / 14.52 ±0.36 / 14.98 ms │ +1.12x faster │
│ QQuery 41 │        13.91 / 14.48 ±0.55 / 15.45 ms │        13.62 / 15.62 ±3.61 / 22.82 ms │  1.08x slower │
│ QQuery 42 │        13.17 / 15.15 ±3.38 / 21.90 ms │        13.28 / 13.47 ±0.19 / 13.82 ms │ +1.12x faster │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                     ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                     │ 20394.52ms │
│ Total Time (lift-selectivity-stats)   │ 20469.15ms │
│ Average Time (HEAD)                   │   474.29ms │
│ Average Time (lift-selectivity-stats) │   476.03ms │
│ Queries Faster                        │          3 │
│ Queries Slower                        │          4 │
│ Queries with No Change                │         36 │
│ Queries with Failure                  │          0 │
└───────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 105.0s
Peak memory 30.7 GiB
Avg memory 23.3 GiB
CPU user 1042.7s
CPU sys 80.5s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 105.0s
Peak memory 30.5 GiB
Avg memory 22.9 GiB
CPU user 1044.9s
CPU sys 81.6s
Peak spill 0 B

File an issue against this benchmark runner

@adriangb

adriangb commented Jun 1, 2026

Copy link
Copy Markdown
Contributor Author

run benchmarks

env:
  DATAFUSION_EXECUTION_ADAPTIVE_FILTER_REORDERING: true

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4593483789-393-l7kzn 6.12.68+ #1 SMP Wed Apr 1 02:23:28 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 lift-selectivity-stats (5e71ea4) to 85bc5ef (merge-base) diff using: tpcds
Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4593483789-394-mr9rk 6.12.68+ #1 SMP Wed Apr 1 02:23:28 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 lift-selectivity-stats (5e71ea4) to 85bc5ef (merge-base) diff using: tpch
Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4593483789-392-9q7fl 6.12.68+ #1 SMP Wed Apr 1 02:23:28 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 lift-selectivity-stats (5e71ea4) to 85bc5ef (merge-base) diff using: clickbench_partitioned
Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark 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 lift-selectivity-stats
--------------------
Benchmark tpch_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                           HEAD ┃         lift-selectivity-stats ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │ 37.96 / 39.80 ±2.12 / 43.53 ms │ 38.10 / 38.80 ±1.03 / 40.85 ms │     no change │
│ QQuery 2  │ 18.55 / 20.75 ±3.43 / 27.49 ms │ 18.08 / 18.65 ±0.46 / 19.36 ms │ +1.11x faster │
│ QQuery 3  │ 30.88 / 32.37 ±1.26 / 34.09 ms │ 30.43 / 33.54 ±1.75 / 35.84 ms │     no change │
│ QQuery 4  │ 16.88 / 17.47 ±0.67 / 18.77 ms │ 17.13 / 17.26 ±0.11 / 17.46 ms │     no change │
│ QQuery 5  │ 37.22 / 39.35 ±1.43 / 40.64 ms │ 37.75 / 39.31 ±1.31 / 40.66 ms │     no change │
│ QQuery 6  │ 15.90 / 16.09 ±0.21 / 16.46 ms │ 15.84 / 16.12 ±0.29 / 16.61 ms │     no change │
│ QQuery 7  │ 42.77 / 44.59 ±1.18 / 46.04 ms │ 44.74 / 46.06 ±1.02 / 47.08 ms │     no change │
│ QQuery 8  │ 42.30 / 42.69 ±0.26 / 43.01 ms │ 42.36 / 42.66 ±0.17 / 42.88 ms │     no change │
│ QQuery 9  │ 48.06 / 49.59 ±0.84 / 50.60 ms │ 48.35 / 49.28 ±0.70 / 50.50 ms │     no change │
│ QQuery 10 │ 41.60 / 42.05 ±0.60 / 43.25 ms │ 41.76 / 42.26 ±0.47 / 43.16 ms │     no change │
│ QQuery 11 │ 12.89 / 13.10 ±0.11 / 13.20 ms │ 12.88 / 13.05 ±0.15 / 13.31 ms │     no change │
│ QQuery 12 │ 23.80 / 24.70 ±0.77 / 25.87 ms │ 20.58 / 20.86 ±0.18 / 21.11 ms │ +1.18x faster │
│ QQuery 13 │ 31.71 / 33.06 ±1.31 / 35.55 ms │ 32.23 / 33.56 ±1.16 / 35.41 ms │     no change │
│ QQuery 14 │ 23.35 / 23.61 ±0.17 / 23.87 ms │ 23.44 / 23.66 ±0.15 / 23.84 ms │     no change │
│ QQuery 15 │ 30.82 / 31.50 ±0.88 / 33.21 ms │ 31.67 / 32.31 ±0.80 / 33.86 ms │     no change │
│ QQuery 16 │ 13.76 / 14.07 ±0.18 / 14.30 ms │ 14.24 / 14.38 ±0.10 / 14.54 ms │     no change │
│ QQuery 17 │ 72.86 / 73.25 ±0.22 / 73.56 ms │ 71.84 / 73.39 ±1.16 / 75.41 ms │     no change │
│ QQuery 18 │ 57.52 / 59.20 ±1.18 / 60.76 ms │ 57.76 / 59.08 ±1.02 / 60.73 ms │     no change │
│ QQuery 19 │ 32.60 / 33.21 ±0.77 / 34.73 ms │ 32.53 / 33.36 ±0.78 / 34.71 ms │     no change │
│ QQuery 20 │ 31.65 / 31.74 ±0.05 / 31.79 ms │ 31.87 / 32.07 ±0.19 / 32.34 ms │     no change │
│ QQuery 21 │ 55.22 / 56.42 ±1.08 / 58.30 ms │ 54.62 / 56.95 ±1.67 / 58.98 ms │     no change │
│ QQuery 22 │ 13.94 / 14.33 ±0.49 / 15.17 ms │ 13.72 / 13.79 ±0.06 / 13.89 ms │     no change │
└───────────┴────────────────────────────────┴────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━┓
┃ Benchmark Summary                     ┃          ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━┩
│ Total Time (HEAD)                     │ 752.95ms │
│ Total Time (lift-selectivity-stats)   │ 750.40ms │
│ Average Time (HEAD)                   │  34.22ms │
│ Average Time (lift-selectivity-stats) │  34.11ms │
│ Queries Faster                        │        2 │
│ Queries Slower                        │        0 │
│ Queries with No Change                │       20 │
│ Queries with Failure                  │        0 │
└───────────────────────────────────────┴──────────┘

Resource Usage

tpch — base (merge-base)

Metric Value
Wall time 5.0s
Peak memory 5.7 GiB
Avg memory 4.9 GiB
CPU user 29.4s
CPU sys 2.2s
Peak spill 0 B

tpch — branch

Metric Value
Wall time 5.0s
Peak memory 5.7 GiB
Avg memory 4.9 GiB
CPU user 29.5s
CPU sys 2.1s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

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

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

Comparing HEAD and lift-selectivity-stats
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃                lift-selectivity-stats ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │           5.87 / 6.39 ±0.91 / 8.20 ms │           5.81 / 6.29 ±0.85 / 7.98 ms │     no change │
│ QQuery 2  │        80.40 / 80.49 ±0.14 / 80.77 ms │        80.75 / 80.99 ±0.21 / 81.29 ms │     no change │
│ QQuery 3  │        28.90 / 29.42 ±0.27 / 29.67 ms │        29.27 / 29.51 ±0.23 / 29.93 ms │     no change │
│ QQuery 4  │     497.61 / 504.12 ±5.31 / 513.47 ms │     502.60 / 510.32 ±6.55 / 518.41 ms │     no change │
│ QQuery 5  │        51.86 / 52.26 ±0.48 / 53.16 ms │        53.08 / 53.48 ±0.48 / 54.42 ms │     no change │
│ QQuery 6  │        36.63 / 37.03 ±0.27 / 37.44 ms │        36.43 / 37.16 ±0.40 / 37.49 ms │     no change │
│ QQuery 7  │       95.79 / 97.23 ±1.93 / 100.85 ms │       97.34 / 99.85 ±3.46 / 106.65 ms │     no change │
│ QQuery 8  │        37.66 / 38.25 ±0.43 / 38.91 ms │        37.69 / 37.94 ±0.16 / 38.15 ms │     no change │
│ QQuery 9  │        52.98 / 55.00 ±1.24 / 56.50 ms │        54.86 / 55.82 ±0.87 / 57.26 ms │     no change │
│ QQuery 10 │        68.86 / 69.26 ±0.29 / 69.78 ms │        69.27 / 69.77 ±0.29 / 70.12 ms │     no change │
│ QQuery 11 │     300.92 / 310.94 ±6.18 / 319.37 ms │     313.07 / 317.61 ±2.62 / 320.30 ms │     no change │
│ QQuery 12 │        28.84 / 29.28 ±0.29 / 29.74 ms │        29.19 / 29.54 ±0.25 / 29.95 ms │     no change │
│ QQuery 13 │     119.21 / 120.87 ±1.80 / 123.82 ms │     121.76 / 123.99 ±3.37 / 130.67 ms │     no change │
│ QQuery 14 │     505.56 / 508.47 ±2.72 / 512.47 ms │     513.36 / 517.06 ±2.91 / 521.43 ms │     no change │
│ QQuery 15 │        59.55 / 60.52 ±0.67 / 61.58 ms │        61.32 / 63.83 ±3.07 / 68.87 ms │  1.05x slower │
│ QQuery 16 │           6.83 / 7.02 ±0.24 / 7.45 ms │           6.88 / 7.04 ±0.16 / 7.34 ms │     no change │
│ QQuery 17 │        82.21 / 84.80 ±4.22 / 93.21 ms │        83.09 / 83.78 ±0.86 / 85.44 ms │     no change │
│ QQuery 18 │     126.52 / 127.70 ±1.18 / 129.44 ms │     128.02 / 129.38 ±1.46 / 132.09 ms │     no change │
│ QQuery 19 │        42.33 / 42.46 ±0.08 / 42.58 ms │        43.01 / 43.25 ±0.30 / 43.84 ms │     no change │
│ QQuery 20 │        36.27 / 36.77 ±0.28 / 37.06 ms │        35.76 / 36.42 ±0.39 / 36.94 ms │     no change │
│ QQuery 21 │        17.21 / 17.42 ±0.15 / 17.61 ms │        17.11 / 17.29 ±0.16 / 17.53 ms │     no change │
│ QQuery 22 │        63.20 / 63.59 ±0.28 / 64.00 ms │        62.45 / 62.87 ±0.22 / 63.06 ms │     no change │
│ QQuery 23 │     346.34 / 351.02 ±4.76 / 357.49 ms │     343.95 / 350.73 ±4.87 / 358.19 ms │     no change │
│ QQuery 24 │     225.98 / 228.74 ±4.17 / 236.96 ms │     225.35 / 230.30 ±4.32 / 235.86 ms │     no change │
│ QQuery 25 │     114.63 / 117.57 ±2.41 / 120.86 ms │     114.18 / 115.52 ±1.45 / 118.21 ms │     no change │
│ QQuery 26 │        58.62 / 58.98 ±0.35 / 59.53 ms │        59.17 / 59.56 ±0.36 / 60.08 ms │     no change │
│ QQuery 27 │           6.63 / 6.79 ±0.15 / 7.08 ms │           6.54 / 6.69 ±0.16 / 6.99 ms │     no change │
│ QQuery 28 │        56.40 / 60.62 ±2.12 / 62.02 ms │        56.83 / 61.81 ±5.10 / 71.05 ms │     no change │
│ QQuery 29 │      97.97 / 101.08 ±3.16 / 107.13 ms │       97.94 / 99.09 ±0.91 / 100.43 ms │     no change │
│ QQuery 30 │        32.49 / 32.89 ±0.29 / 33.31 ms │        32.79 / 33.17 ±0.30 / 33.62 ms │     no change │
│ QQuery 31 │     112.37 / 114.23 ±2.24 / 118.32 ms │     113.08 / 115.06 ±2.13 / 119.01 ms │     no change │
│ QQuery 32 │        20.34 / 20.81 ±0.34 / 21.34 ms │        20.32 / 20.59 ±0.23 / 21.01 ms │     no change │
│ QQuery 33 │        39.08 / 39.25 ±0.17 / 39.58 ms │        38.38 / 38.82 ±0.41 / 39.49 ms │     no change │
│ QQuery 34 │          9.47 / 9.97 ±0.38 / 10.37 ms │           9.54 / 9.70 ±0.15 / 9.93 ms │     no change │
│ QQuery 35 │        77.70 / 78.68 ±0.94 / 79.98 ms │        77.14 / 79.59 ±2.51 / 84.00 ms │     no change │
│ QQuery 36 │           5.97 / 6.11 ±0.17 / 6.42 ms │           5.95 / 6.06 ±0.17 / 6.40 ms │     no change │
│ QQuery 37 │          7.04 / 8.13 ±1.99 / 12.11 ms │           6.83 / 6.99 ±0.11 / 7.18 ms │ +1.16x faster │
│ QQuery 38 │        64.14 / 64.86 ±1.02 / 66.83 ms │        62.56 / 64.16 ±1.00 / 65.57 ms │     no change │
│ QQuery 39 │     454.99 / 461.63 ±5.33 / 468.22 ms │     456.56 / 460.55 ±2.93 / 463.53 ms │     no change │
│ QQuery 40 │        23.34 / 23.61 ±0.38 / 24.35 ms │        23.33 / 23.48 ±0.09 / 23.60 ms │     no change │
│ QQuery 41 │        11.38 / 11.61 ±0.27 / 12.13 ms │        11.43 / 11.60 ±0.19 / 11.95 ms │     no change │
│ QQuery 42 │        24.04 / 24.22 ±0.12 / 24.38 ms │        23.93 / 24.33 ±0.34 / 24.91 ms │     no change │
│ QQuery 43 │          4.82 / 6.60 ±3.20 / 12.99 ms │           4.88 / 5.00 ±0.13 / 5.22 ms │ +1.32x faster │
│ QQuery 44 │        10.95 / 12.42 ±2.40 / 17.21 ms │        10.86 / 11.04 ±0.15 / 11.23 ms │ +1.12x faster │
│ QQuery 45 │        39.23 / 40.18 ±0.72 / 41.18 ms │        39.16 / 39.72 ±0.43 / 40.30 ms │     no change │
│ QQuery 46 │        11.88 / 12.31 ±0.66 / 13.63 ms │        11.66 / 11.98 ±0.23 / 12.37 ms │     no change │
│ QQuery 47 │     233.58 / 238.95 ±4.87 / 247.21 ms │     232.33 / 235.60 ±2.69 / 238.66 ms │     no change │
│ QQuery 48 │        96.95 / 97.23 ±0.20 / 97.51 ms │      98.22 / 100.30 ±3.20 / 106.68 ms │     no change │
│ QQuery 49 │        78.34 / 79.35 ±1.82 / 82.98 ms │        78.23 / 79.22 ±1.00 / 80.52 ms │     no change │
│ QQuery 50 │        59.63 / 60.05 ±0.31 / 60.45 ms │        59.90 / 60.31 ±0.22 / 60.51 ms │     no change │
│ QQuery 51 │       95.27 / 97.53 ±1.83 / 100.36 ms │        93.71 / 95.97 ±1.64 / 98.38 ms │     no change │
│ QQuery 52 │        24.45 / 24.79 ±0.24 / 25.04 ms │        24.85 / 25.13 ±0.34 / 25.73 ms │     no change │
│ QQuery 53 │        29.90 / 30.02 ±0.12 / 30.20 ms │        30.02 / 30.39 ±0.29 / 30.92 ms │     no change │
│ QQuery 54 │        55.97 / 56.33 ±0.35 / 56.98 ms │        55.59 / 56.24 ±0.55 / 56.90 ms │     no change │
│ QQuery 55 │        23.80 / 24.08 ±0.18 / 24.30 ms │        23.79 / 23.90 ±0.09 / 24.04 ms │     no change │
│ QQuery 56 │        39.22 / 43.08 ±7.12 / 57.30 ms │        38.95 / 40.24 ±1.97 / 44.15 ms │ +1.07x faster │
│ QQuery 57 │     175.50 / 177.47 ±1.25 / 179.15 ms │     176.75 / 179.15 ±2.80 / 183.77 ms │     no change │
│ QQuery 58 │     116.37 / 119.38 ±3.49 / 125.78 ms │     119.10 / 119.99 ±1.43 / 122.83 ms │     no change │
│ QQuery 59 │     117.57 / 119.26 ±2.87 / 124.98 ms │     118.04 / 120.81 ±3.32 / 127.20 ms │     no change │
│ QQuery 60 │        39.51 / 40.41 ±0.61 / 41.39 ms │        39.77 / 40.41 ±0.55 / 41.31 ms │     no change │
│ QQuery 61 │        13.05 / 13.27 ±0.22 / 13.62 ms │        13.14 / 13.21 ±0.08 / 13.34 ms │     no change │
│ QQuery 62 │        45.57 / 46.10 ±0.30 / 46.41 ms │        47.03 / 47.23 ±0.15 / 47.46 ms │     no change │
│ QQuery 63 │        29.78 / 30.23 ±0.36 / 30.87 ms │        30.16 / 30.40 ±0.17 / 30.56 ms │     no change │
│ QQuery 64 │    395.95 / 409.41 ±14.28 / 428.22 ms │     399.31 / 406.61 ±4.95 / 412.75 ms │     no change │
│ QQuery 65 │     145.01 / 151.75 ±5.59 / 159.22 ms │     145.19 / 151.83 ±3.59 / 155.38 ms │     no change │
│ QQuery 66 │        79.38 / 80.48 ±0.63 / 81.12 ms │        80.09 / 83.26 ±5.35 / 93.94 ms │     no change │
│ QQuery 67 │     251.95 / 258.05 ±4.50 / 265.60 ms │     253.13 / 258.35 ±5.51 / 267.75 ms │     no change │
│ QQuery 68 │        12.13 / 12.39 ±0.24 / 12.80 ms │        11.85 / 12.06 ±0.20 / 12.35 ms │     no change │
│ QQuery 69 │        62.88 / 63.56 ±0.67 / 64.77 ms │        63.16 / 63.60 ±0.33 / 64.15 ms │     no change │
│ QQuery 70 │    105.01 / 115.49 ±11.01 / 131.54 ms │     105.38 / 107.05 ±1.09 / 108.72 ms │ +1.08x faster │
│ QQuery 71 │        35.74 / 36.73 ±0.58 / 37.43 ms │        35.82 / 39.62 ±5.98 / 51.54 ms │  1.08x slower │
│ QQuery 72 │ 2100.01 / 2170.55 ±68.28 / 2259.28 ms │ 2153.09 / 2246.72 ±56.21 / 2326.64 ms │     no change │
│ QQuery 73 │           9.34 / 9.55 ±0.23 / 9.98 ms │         9.52 / 10.00 ±0.43 / 10.69 ms │     no change │
│ QQuery 74 │     172.82 / 176.91 ±3.37 / 182.62 ms │     177.00 / 180.93 ±6.55 / 193.98 ms │     no change │
│ QQuery 75 │     148.07 / 149.71 ±1.60 / 152.78 ms │     149.61 / 152.02 ±3.46 / 158.84 ms │     no change │
│ QQuery 76 │        35.49 / 35.81 ±0.17 / 35.95 ms │        35.78 / 36.11 ±0.27 / 36.51 ms │     no change │
│ QQuery 77 │        62.70 / 66.15 ±5.51 / 77.13 ms │        61.85 / 62.48 ±0.46 / 63.21 ms │ +1.06x faster │
│ QQuery 78 │     188.40 / 197.01 ±6.63 / 208.76 ms │     192.08 / 195.91 ±4.20 / 201.38 ms │     no change │
│ QQuery 79 │        67.20 / 67.66 ±0.25 / 67.90 ms │        67.73 / 69.63 ±3.17 / 75.93 ms │     no change │
│ QQuery 80 │     101.00 / 105.12 ±4.66 / 114.22 ms │     102.35 / 105.30 ±3.06 / 110.84 ms │     no change │
│ QQuery 81 │        25.82 / 26.32 ±0.42 / 27.09 ms │        25.81 / 26.05 ±0.17 / 26.24 ms │     no change │
│ QQuery 82 │        16.48 / 16.94 ±0.52 / 17.93 ms │        16.58 / 16.95 ±0.37 / 17.63 ms │     no change │
│ QQuery 83 │        39.93 / 40.37 ±0.42 / 40.97 ms │        40.33 / 43.03 ±3.63 / 50.18 ms │  1.07x slower │
│ QQuery 84 │        34.87 / 35.13 ±0.26 / 35.59 ms │        34.88 / 36.84 ±3.04 / 42.90 ms │     no change │
│ QQuery 85 │     109.72 / 114.76 ±5.78 / 125.66 ms │     109.54 / 110.92 ±1.09 / 112.65 ms │     no change │
│ QQuery 86 │        25.16 / 25.70 ±0.37 / 26.32 ms │        25.21 / 25.49 ±0.32 / 26.01 ms │     no change │
│ QQuery 87 │        64.77 / 65.42 ±0.37 / 65.85 ms │        64.13 / 66.74 ±2.80 / 71.92 ms │     no change │
│ QQuery 88 │        62.98 / 65.72 ±3.72 / 73.07 ms │        62.04 / 62.92 ±0.67 / 64.11 ms │     no change │
│ QQuery 89 │        36.27 / 37.03 ±0.52 / 37.76 ms │        36.03 / 36.65 ±0.37 / 37.17 ms │     no change │
│ QQuery 90 │        16.91 / 17.03 ±0.09 / 17.15 ms │        16.87 / 17.08 ±0.16 / 17.28 ms │     no change │
│ QQuery 91 │        44.58 / 45.77 ±0.63 / 46.43 ms │        45.19 / 46.70 ±2.23 / 51.12 ms │     no change │
│ QQuery 92 │        30.45 / 30.85 ±0.49 / 31.80 ms │        30.29 / 32.42 ±3.15 / 38.62 ms │  1.05x slower │
│ QQuery 93 │        51.25 / 52.29 ±1.24 / 54.66 ms │        51.71 / 52.79 ±0.82 / 54.23 ms │     no change │
│ QQuery 94 │        40.04 / 41.78 ±2.46 / 46.64 ms │        39.18 / 39.53 ±0.41 / 40.20 ms │ +1.06x faster │
│ QQuery 95 │        85.23 / 86.75 ±0.99 / 88.21 ms │        84.24 / 86.77 ±2.22 / 90.55 ms │     no change │
│ QQuery 96 │        24.61 / 24.81 ±0.18 / 25.02 ms │        24.37 / 25.25 ±1.30 / 27.80 ms │     no change │
│ QQuery 97 │        46.75 / 47.98 ±1.43 / 50.68 ms │        46.57 / 47.27 ±0.40 / 47.68 ms │     no change │
│ QQuery 98 │        44.15 / 45.97 ±2.70 / 51.30 ms │        43.22 / 43.51 ±0.45 / 44.40 ms │ +1.06x faster │
│ QQuery 99 │        69.47 / 70.02 ±0.39 / 70.61 ms │        70.80 / 71.13 ±0.30 / 71.69 ms │     no change │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                     ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                     │ 10566.11ms │
│ Total Time (lift-selectivity-stats)   │ 10666.78ms │
│ Average Time (HEAD)                   │   106.73ms │
│ Average Time (lift-selectivity-stats) │   107.75ms │
│ Queries Faster                        │          8 │
│ Queries Slower                        │          4 │
│ Queries with No Change                │         87 │
│ Queries with Failure                  │          0 │
└───────────────────────────────────────┴────────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 55.0s
Peak memory 6.8 GiB
Avg memory 6.2 GiB
CPU user 240.4s
CPU sys 6.8s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 55.0s
Peak memory 6.8 GiB
Avg memory 6.3 GiB
CPU user 240.3s
CPU sys 6.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 lift-selectivity-stats
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃                lift-selectivity-stats ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.18 / 3.38 ±4.29 / 11.96 ms │          1.16 / 3.36 ±4.30 / 11.96 ms │     no change │
│ QQuery 1  │        12.46 / 12.64 ±0.12 / 12.79 ms │        12.11 / 12.44 ±0.21 / 12.68 ms │     no change │
│ QQuery 2  │        35.82 / 36.31 ±0.30 / 36.62 ms │        35.83 / 36.23 ±0.32 / 36.73 ms │     no change │
│ QQuery 3  │        30.74 / 31.31 ±0.56 / 32.37 ms │        30.63 / 31.42 ±0.76 / 32.67 ms │     no change │
│ QQuery 4  │     222.56 / 227.15 ±2.94 / 230.34 ms │     227.05 / 231.04 ±2.39 / 234.37 ms │     no change │
│ QQuery 5  │     273.77 / 277.27 ±2.74 / 280.77 ms │     274.01 / 279.53 ±4.36 / 287.26 ms │     no change │
│ QQuery 6  │           1.19 / 1.34 ±0.22 / 1.78 ms │           1.16 / 1.32 ±0.23 / 1.76 ms │     no change │
│ QQuery 7  │        13.66 / 13.87 ±0.15 / 14.09 ms │        13.48 / 13.61 ±0.10 / 13.74 ms │     no change │
│ QQuery 8  │     324.12 / 331.26 ±5.46 / 337.88 ms │     325.80 / 331.23 ±4.56 / 337.43 ms │     no change │
│ QQuery 9  │     457.86 / 469.37 ±8.98 / 479.74 ms │     458.88 / 473.14 ±9.98 / 488.38 ms │     no change │
│ QQuery 10 │        69.88 / 70.84 ±0.81 / 72.02 ms │        69.86 / 70.42 ±0.73 / 71.85 ms │     no change │
│ QQuery 11 │        82.23 / 84.94 ±4.30 / 93.50 ms │        80.67 / 84.22 ±2.40 / 88.21 ms │     no change │
│ QQuery 12 │     268.15 / 275.01 ±5.12 / 280.92 ms │     272.40 / 277.06 ±4.51 / 284.84 ms │     no change │
│ QQuery 13 │    368.44 / 386.64 ±15.50 / 407.35 ms │    365.72 / 380.17 ±11.85 / 394.45 ms │     no change │
│ QQuery 14 │     284.08 / 288.14 ±3.99 / 294.29 ms │     283.95 / 289.28 ±5.13 / 296.08 ms │     no change │
│ QQuery 15 │     270.76 / 281.64 ±8.50 / 293.21 ms │     273.57 / 282.06 ±5.47 / 290.40 ms │     no change │
│ QQuery 16 │    613.97 / 633.30 ±14.55 / 655.44 ms │    633.54 / 650.56 ±15.78 / 678.54 ms │     no change │
│ QQuery 17 │    627.57 / 642.36 ±15.38 / 672.10 ms │     633.27 / 638.88 ±5.81 / 647.16 ms │     no change │
│ QQuery 18 │ 1286.56 / 1298.98 ±17.57 / 1333.29 ms │ 1248.48 / 1308.50 ±52.34 / 1405.38 ms │     no change │
│ QQuery 19 │        27.83 / 28.50 ±0.48 / 29.16 ms │        27.71 / 30.58 ±4.74 / 40.04 ms │  1.07x slower │
│ QQuery 20 │    520.62 / 528.79 ±10.06 / 548.20 ms │    515.63 / 544.83 ±41.82 / 627.94 ms │     no change │
│ QQuery 21 │     597.20 / 600.28 ±2.46 / 603.86 ms │     596.67 / 603.40 ±8.35 / 619.49 ms │     no change │
│ QQuery 22 │ 1068.45 / 1082.17 ±11.96 / 1099.67 ms │ 1068.38 / 1078.88 ±10.23 / 1098.45 ms │     no change │
│ QQuery 23 │ 3204.98 / 3239.96 ±25.33 / 3275.62 ms │ 3225.26 / 3249.92 ±16.13 / 3274.56 ms │     no change │
│ QQuery 24 │        41.87 / 46.42 ±4.67 / 52.54 ms │        41.46 / 43.56 ±2.71 / 48.60 ms │ +1.07x faster │
│ QQuery 25 │     112.05 / 117.80 ±8.20 / 133.70 ms │     112.06 / 113.66 ±1.75 / 116.96 ms │     no change │
│ QQuery 26 │        42.08 / 43.69 ±2.18 / 47.97 ms │        42.10 / 43.36 ±1.27 / 45.40 ms │     no change │
│ QQuery 27 │     671.63 / 680.57 ±7.53 / 691.76 ms │     672.26 / 678.59 ±6.08 / 688.60 ms │     no change │
│ QQuery 28 │ 3022.68 / 3078.00 ±29.56 / 3107.44 ms │ 3056.17 / 3069.97 ±18.31 / 3105.62 ms │     no change │
│ QQuery 29 │        40.15 / 40.64 ±0.48 / 41.47 ms │        40.63 / 44.10 ±6.10 / 56.25 ms │  1.09x slower │
│ QQuery 30 │    304.75 / 319.07 ±14.91 / 340.83 ms │     301.49 / 307.64 ±4.70 / 314.84 ms │     no change │
│ QQuery 31 │     285.56 / 297.27 ±8.15 / 307.50 ms │     291.93 / 299.39 ±6.45 / 310.48 ms │     no change │
│ QQuery 32 │   941.65 / 983.57 ±26.84 / 1025.22 ms │   957.18 / 980.96 ±24.72 / 1020.41 ms │     no change │
│ QQuery 33 │  1489.03 / 1496.63 ±6.61 / 1507.09 ms │ 1490.78 / 1524.38 ±33.42 / 1578.29 ms │     no change │
│ QQuery 34 │ 1481.03 / 1511.74 ±23.60 / 1544.94 ms │ 1502.03 / 1529.85 ±18.33 / 1547.78 ms │     no change │
│ QQuery 35 │    282.21 / 310.20 ±41.19 / 392.08 ms │    280.58 / 302.49 ±21.35 / 333.66 ms │     no change │
│ QQuery 36 │        66.46 / 78.28 ±8.81 / 88.69 ms │        69.97 / 73.53 ±2.52 / 77.63 ms │ +1.06x faster │
│ QQuery 37 │        35.51 / 42.75 ±8.94 / 58.80 ms │        37.03 / 44.09 ±8.32 / 58.20 ms │     no change │
│ QQuery 38 │        41.20 / 46.42 ±5.24 / 56.11 ms │        43.07 / 43.93 ±0.97 / 45.41 ms │ +1.06x faster │
│ QQuery 39 │     154.92 / 156.59 ±1.82 / 159.88 ms │    131.67 / 154.07 ±13.24 / 173.15 ms │     no change │
│ QQuery 40 │        13.75 / 14.58 ±1.10 / 16.76 ms │        16.31 / 16.83 ±0.52 / 17.76 ms │  1.15x slower │
│ QQuery 41 │        13.37 / 14.24 ±1.34 / 16.90 ms │        15.84 / 16.31 ±0.57 / 17.36 ms │  1.15x slower │
│ QQuery 42 │        12.92 / 13.22 ±0.19 / 13.51 ms │        13.65 / 15.92 ±4.41 / 24.74 ms │  1.20x slower │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                     ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                     │ 20137.14ms │
│ Total Time (lift-selectivity-stats)   │ 20204.65ms │
│ Average Time (HEAD)                   │   468.31ms │
│ Average Time (lift-selectivity-stats) │   469.88ms │
│ Queries Faster                        │          3 │
│ Queries Slower                        │          5 │
│ Queries with No Change                │         35 │
│ Queries with Failure                  │          0 │
└───────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 105.0s
Peak memory 29.9 GiB
Avg memory 23.1 GiB
CPU user 1034.5s
CPU sys 75.8s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 105.0s
Peak memory 30.1 GiB
Avg memory 22.9 GiB
CPU user 1034.7s
CPU sys 78.0s
Peak spill 0 B

File an issue against this benchmark runner

@adriangb

adriangb commented Jun 1, 2026

Copy link
Copy Markdown
Contributor Author

run benchmarks

env:
  DATAFUSION_EXECUTION_ADAPTIVE_FILTER_REORDERING: true

@adriangbot

Copy link
Copy Markdown

Benchmark for this request failed.

Last 20 lines of output:

Click to expand
Cloning into '/workspace/datafusion-branch'...
From https://github.com/apache/datafusion
 * [new ref]         refs/pull/22698/head -> lift-selectivity-stats
 * branch            main                 -> FETCH_HEAD
Switched to branch 'lift-selectivity-stats'
85bc5ef7473d608604dc2e8bd81184505a1f6c19
Cloning into '/workspace/datafusion-base'...
HEAD is now at 85bc5ef fix: Projection stats Absent for columns referenced >1 time (#22679)
rustc 1.95.0 (59807616e 2026-04-14)
5e71ea4bd7436e797944a53367c326ab4088dc93
85bc5ef7473d608604dc2e8bd81184505a1f6c19

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-c4593706269-396-l9mwp 6.12.68+ #1 SMP Wed Apr 1 02:23:28 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 lift-selectivity-stats (5e71ea4) to 85bc5ef (merge-base) diff using: tpcds
Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

Benchmark for this request failed.

Last 20 lines of output:

Click to expand
Cloning into '/workspace/datafusion-branch'...
From https://github.com/apache/datafusion
 * [new ref]         refs/pull/22698/head -> lift-selectivity-stats
 * branch            main                 -> FETCH_HEAD
Switched to branch 'lift-selectivity-stats'
85bc5ef7473d608604dc2e8bd81184505a1f6c19
Cloning into '/workspace/datafusion-base'...
HEAD is now at 85bc5ef fix: Projection stats Absent for columns referenced >1 time (#22679)
rustc 1.95.0 (59807616e 2026-04-14)
5e71ea4bd7436e797944a53367c326ab4088dc93
85bc5ef7473d608604dc2e8bd81184505a1f6c19

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 lift-selectivity-stats
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃                lift-selectivity-stats ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │           5.82 / 6.31 ±0.87 / 8.05 ms │           5.93 / 6.42 ±0.80 / 8.01 ms │     no change │
│ QQuery 2  │        79.80 / 80.04 ±0.27 / 80.37 ms │        81.53 / 82.47 ±0.85 / 84.05 ms │     no change │
│ QQuery 3  │        28.89 / 29.05 ±0.14 / 29.27 ms │        29.20 / 29.56 ±0.24 / 29.82 ms │     no change │
│ QQuery 4  │     494.27 / 500.08 ±3.79 / 505.86 ms │     499.47 / 505.08 ±4.91 / 511.99 ms │     no change │
│ QQuery 5  │        51.25 / 51.62 ±0.44 / 52.47 ms │        51.44 / 52.04 ±0.34 / 52.40 ms │     no change │
│ QQuery 6  │        36.17 / 36.79 ±0.31 / 37.03 ms │        36.64 / 36.96 ±0.17 / 37.12 ms │     no change │
│ QQuery 7  │        95.33 / 95.90 ±0.50 / 96.62 ms │       96.38 / 98.83 ±2.80 / 104.28 ms │     no change │
│ QQuery 8  │        37.33 / 39.03 ±3.06 / 45.14 ms │        37.17 / 38.18 ±0.62 / 38.81 ms │     no change │
│ QQuery 9  │        54.23 / 55.76 ±1.33 / 57.97 ms │        52.93 / 57.22 ±2.52 / 60.63 ms │     no change │
│ QQuery 10 │        69.45 / 69.74 ±0.30 / 70.20 ms │        68.89 / 69.43 ±0.40 / 69.86 ms │     no change │
│ QQuery 11 │     311.56 / 315.99 ±3.44 / 320.23 ms │     307.05 / 309.09 ±1.23 / 310.26 ms │     no change │
│ QQuery 12 │        28.94 / 29.22 ±0.28 / 29.68 ms │        29.03 / 29.41 ±0.26 / 29.82 ms │     no change │
│ QQuery 13 │     119.05 / 120.71 ±1.59 / 123.35 ms │     120.30 / 121.32 ±0.60 / 122.00 ms │     no change │
│ QQuery 14 │     504.86 / 508.49 ±3.00 / 513.68 ms │     506.04 / 509.97 ±2.13 / 512.31 ms │     no change │
│ QQuery 15 │        58.80 / 60.48 ±1.32 / 61.94 ms │        59.47 / 62.60 ±2.62 / 66.62 ms │     no change │
│ QQuery 16 │          7.02 / 8.73 ±3.15 / 15.02 ms │           7.14 / 7.31 ±0.23 / 7.75 ms │ +1.19x faster │
│ QQuery 17 │        81.33 / 83.02 ±1.66 / 85.85 ms │        81.70 / 83.09 ±1.15 / 84.59 ms │     no change │
│ QQuery 18 │     126.69 / 127.94 ±1.71 / 131.24 ms │     129.83 / 131.09 ±1.00 / 132.43 ms │     no change │
│ QQuery 19 │        42.26 / 42.62 ±0.36 / 43.27 ms │        42.77 / 42.99 ±0.19 / 43.28 ms │     no change │
│ QQuery 20 │        36.09 / 36.34 ±0.22 / 36.64 ms │        35.85 / 36.54 ±0.56 / 37.21 ms │     no change │
│ QQuery 21 │        17.49 / 17.98 ±0.64 / 19.18 ms │        17.43 / 17.59 ±0.18 / 17.89 ms │     no change │
│ QQuery 22 │        64.51 / 64.98 ±0.58 / 66.09 ms │        62.65 / 64.23 ±0.95 / 65.31 ms │     no change │
│ QQuery 23 │     349.52 / 356.04 ±6.30 / 363.90 ms │     356.04 / 361.58 ±4.41 / 367.32 ms │     no change │
│ QQuery 24 │     226.34 / 230.94 ±6.39 / 243.55 ms │     227.31 / 232.72 ±7.61 / 247.68 ms │     no change │
│ QQuery 25 │     113.98 / 117.00 ±2.18 / 120.36 ms │     115.56 / 118.61 ±3.02 / 123.10 ms │     no change │
│ QQuery 26 │        58.71 / 59.17 ±0.56 / 60.20 ms │        60.79 / 61.26 ±0.38 / 61.73 ms │     no change │
│ QQuery 27 │           6.91 / 7.07 ±0.16 / 7.36 ms │           6.78 / 6.96 ±0.18 / 7.31 ms │     no change │
│ QQuery 28 │        60.56 / 62.92 ±4.24 / 71.40 ms │        60.21 / 65.07 ±4.80 / 74.30 ms │     no change │
│ QQuery 29 │      99.32 / 101.20 ±2.39 / 105.90 ms │     100.11 / 101.08 ±1.06 / 103.11 ms │     no change │
│ QQuery 30 │        33.17 / 33.39 ±0.17 / 33.67 ms │        34.02 / 34.71 ±0.43 / 35.35 ms │     no change │
│ QQuery 31 │     112.34 / 114.83 ±1.63 / 116.74 ms │     115.67 / 116.64 ±0.98 / 118.40 ms │     no change │
│ QQuery 32 │        21.55 / 21.65 ±0.06 / 21.74 ms │        21.24 / 21.57 ±0.34 / 22.14 ms │     no change │
│ QQuery 33 │        39.14 / 39.79 ±0.48 / 40.39 ms │        40.28 / 40.67 ±0.33 / 41.27 ms │     no change │
│ QQuery 34 │          9.74 / 9.89 ±0.12 / 10.07 ms │        10.01 / 10.21 ±0.23 / 10.64 ms │     no change │
│ QQuery 35 │        78.15 / 80.76 ±3.16 / 86.98 ms │        80.19 / 82.53 ±3.12 / 88.66 ms │     no change │
│ QQuery 36 │          6.09 / 7.66 ±3.00 / 13.67 ms │           6.46 / 6.57 ±0.10 / 6.73 ms │ +1.17x faster │
│ QQuery 37 │           7.03 / 7.26 ±0.16 / 7.48 ms │           7.40 / 7.60 ±0.18 / 7.81 ms │     no change │
│ QQuery 38 │        65.03 / 66.15 ±1.31 / 68.57 ms │        67.19 / 68.33 ±0.75 / 69.07 ms │     no change │
│ QQuery 39 │     454.35 / 467.85 ±8.59 / 478.34 ms │     470.33 / 479.43 ±6.34 / 489.37 ms │     no change │
│ QQuery 40 │        23.29 / 23.39 ±0.06 / 23.47 ms │        23.94 / 26.98 ±3.63 / 33.79 ms │  1.15x slower │
│ QQuery 41 │        11.39 / 11.56 ±0.32 / 12.20 ms │        11.75 / 11.85 ±0.15 / 12.14 ms │     no change │
│ QQuery 42 │        23.56 / 27.69 ±5.04 / 37.21 ms │        24.58 / 24.86 ±0.31 / 25.36 ms │ +1.11x faster │
│ QQuery 43 │           4.98 / 5.14 ±0.20 / 5.54 ms │           5.01 / 5.13 ±0.13 / 5.39 ms │     no change │
│ QQuery 44 │        10.85 / 11.19 ±0.46 / 12.02 ms │        10.92 / 11.13 ±0.19 / 11.45 ms │     no change │
│ QQuery 45 │        38.85 / 39.30 ±0.38 / 39.89 ms │        40.27 / 41.19 ±0.87 / 42.68 ms │     no change │
│ QQuery 46 │        12.15 / 12.57 ±0.33 / 12.98 ms │        11.91 / 12.08 ±0.11 / 12.19 ms │     no change │
│ QQuery 47 │     229.34 / 235.11 ±3.91 / 239.39 ms │     234.76 / 243.73 ±6.84 / 254.08 ms │     no change │
│ QQuery 48 │        96.71 / 97.54 ±0.62 / 98.34 ms │     100.33 / 101.97 ±2.50 / 106.95 ms │     no change │
│ QQuery 49 │        78.13 / 79.23 ±1.06 / 81.24 ms │        78.87 / 79.20 ±0.49 / 80.16 ms │     no change │
│ QQuery 50 │        60.04 / 60.40 ±0.24 / 60.72 ms │        60.33 / 63.91 ±4.26 / 70.68 ms │  1.06x slower │
│ QQuery 51 │       92.39 / 95.01 ±3.43 / 101.61 ms │       95.31 / 98.34 ±2.76 / 103.39 ms │     no change │
│ QQuery 52 │        24.14 / 24.38 ±0.27 / 24.89 ms │        24.52 / 24.76 ±0.21 / 25.05 ms │     no change │
│ QQuery 53 │        29.87 / 30.10 ±0.24 / 30.54 ms │        29.95 / 30.28 ±0.20 / 30.51 ms │     no change │
│ QQuery 54 │        55.58 / 56.31 ±0.40 / 56.78 ms │        56.18 / 58.88 ±4.03 / 66.84 ms │     no change │
│ QQuery 55 │        23.56 / 23.78 ±0.14 / 23.96 ms │        23.62 / 24.06 ±0.47 / 24.79 ms │     no change │
│ QQuery 56 │        39.09 / 39.96 ±0.57 / 40.74 ms │        39.20 / 39.69 ±0.42 / 40.32 ms │     no change │
│ QQuery 57 │     178.78 / 179.25 ±0.69 / 180.58 ms │     178.30 / 179.73 ±0.79 / 180.74 ms │     no change │
│ QQuery 58 │     116.42 / 119.18 ±3.73 / 126.42 ms │     117.96 / 118.94 ±0.63 / 119.54 ms │     no change │
│ QQuery 59 │     117.65 / 121.68 ±4.25 / 128.99 ms │     118.35 / 119.99 ±1.66 / 123.15 ms │     no change │
│ QQuery 60 │        39.25 / 40.39 ±0.64 / 40.98 ms │        39.44 / 40.25 ±0.75 / 41.65 ms │     no change │
│ QQuery 61 │        13.27 / 13.51 ±0.27 / 13.84 ms │        13.28 / 13.39 ±0.12 / 13.61 ms │     no change │
│ QQuery 62 │        46.11 / 46.51 ±0.28 / 46.88 ms │        46.89 / 48.45 ±2.82 / 54.09 ms │     no change │
│ QQuery 63 │        29.49 / 29.94 ±0.25 / 30.22 ms │        30.66 / 31.53 ±1.19 / 33.90 ms │  1.05x slower │
│ QQuery 64 │     393.38 / 398.72 ±4.32 / 406.62 ms │    401.67 / 417.84 ±16.92 / 448.06 ms │     no change │
│ QQuery 65 │     146.82 / 153.16 ±6.38 / 165.09 ms │     143.93 / 149.63 ±3.21 / 152.89 ms │     no change │
│ QQuery 66 │        78.86 / 84.01 ±7.83 / 99.53 ms │        81.31 / 84.52 ±5.30 / 95.08 ms │     no change │
│ QQuery 67 │     253.34 / 260.87 ±5.55 / 267.80 ms │     257.07 / 263.58 ±3.36 / 266.43 ms │     no change │
│ QQuery 68 │        12.06 / 12.25 ±0.13 / 12.44 ms │        12.22 / 12.33 ±0.10 / 12.50 ms │     no change │
│ QQuery 69 │        62.75 / 63.32 ±0.40 / 63.92 ms │        63.38 / 68.00 ±6.18 / 80.12 ms │  1.07x slower │
│ QQuery 70 │    106.19 / 114.35 ±11.83 / 137.05 ms │     107.84 / 110.28 ±2.94 / 114.43 ms │     no change │
│ QQuery 71 │        35.35 / 35.95 ±0.40 / 36.53 ms │        35.84 / 36.39 ±0.54 / 37.23 ms │     no change │
│ QQuery 72 │ 2058.69 / 2175.08 ±63.62 / 2232.46 ms │ 2139.15 / 2213.49 ±38.81 / 2253.11 ms │     no change │
│ QQuery 73 │           9.38 / 9.65 ±0.20 / 9.92 ms │          9.58 / 9.72 ±0.16 / 10.04 ms │     no change │
│ QQuery 74 │     173.14 / 177.60 ±2.68 / 180.90 ms │     173.85 / 181.21 ±6.16 / 191.89 ms │     no change │
│ QQuery 75 │     147.58 / 148.96 ±1.12 / 150.46 ms │     149.57 / 155.16 ±8.99 / 173.09 ms │     no change │
│ QQuery 76 │        35.11 / 37.01 ±2.12 / 41.08 ms │        35.41 / 35.80 ±0.29 / 36.28 ms │     no change │
│ QQuery 77 │        62.08 / 62.53 ±0.40 / 63.26 ms │        61.47 / 63.84 ±3.81 / 71.40 ms │     no change │
│ QQuery 78 │     191.12 / 194.23 ±2.22 / 197.94 ms │     193.92 / 196.85 ±2.08 / 200.39 ms │     no change │
│ QQuery 79 │        67.68 / 68.04 ±0.33 / 68.67 ms │        69.14 / 71.50 ±3.49 / 78.43 ms │  1.05x slower │
│ QQuery 80 │     101.69 / 107.53 ±9.15 / 125.68 ms │     101.73 / 103.23 ±0.92 / 104.21 ms │     no change │
│ QQuery 81 │        26.06 / 26.56 ±0.33 / 26.93 ms │        26.35 / 31.36 ±4.56 / 37.67 ms │  1.18x slower │
│ QQuery 82 │        16.56 / 16.64 ±0.08 / 16.80 ms │        17.59 / 17.89 ±0.32 / 18.46 ms │  1.08x slower │
│ QQuery 83 │        40.26 / 40.60 ±0.27 / 40.92 ms │        41.39 / 42.25 ±0.65 / 43.31 ms │     no change │
│ QQuery 84 │        34.75 / 34.84 ±0.08 / 34.97 ms │        35.42 / 35.79 ±0.30 / 36.20 ms │     no change │
│ QQuery 85 │     110.06 / 115.53 ±6.53 / 126.32 ms │     109.80 / 113.38 ±3.46 / 117.74 ms │     no change │
│ QQuery 86 │        25.19 / 25.71 ±0.38 / 26.09 ms │        26.44 / 26.86 ±0.36 / 27.53 ms │     no change │
│ QQuery 87 │        63.81 / 64.48 ±0.49 / 65.16 ms │        66.81 / 67.51 ±0.76 / 68.88 ms │     no change │
│ QQuery 88 │        62.87 / 66.02 ±3.11 / 70.95 ms │        62.92 / 63.20 ±0.26 / 63.61 ms │     no change │
│ QQuery 89 │        36.16 / 36.61 ±0.49 / 37.51 ms │        36.68 / 40.88 ±5.24 / 49.13 ms │  1.12x slower │
│ QQuery 90 │        16.84 / 17.10 ±0.25 / 17.50 ms │        17.26 / 17.55 ±0.21 / 17.89 ms │     no change │
│ QQuery 91 │        45.57 / 45.98 ±0.46 / 46.87 ms │        46.52 / 47.12 ±0.41 / 47.81 ms │     no change │
│ QQuery 92 │        29.48 / 29.98 ±0.31 / 30.39 ms │        31.24 / 31.55 ±0.22 / 31.86 ms │  1.05x slower │
│ QQuery 93 │        50.27 / 53.53 ±2.12 / 56.34 ms │        51.45 / 55.30 ±4.03 / 63.04 ms │     no change │
│ QQuery 94 │        38.91 / 39.41 ±0.50 / 40.33 ms │        39.63 / 42.75 ±3.23 / 47.88 ms │  1.08x slower │
│ QQuery 95 │        83.68 / 84.50 ±0.77 / 85.72 ms │        86.00 / 87.49 ±1.14 / 89.04 ms │     no change │
│ QQuery 96 │        23.85 / 24.12 ±0.23 / 24.48 ms │        24.47 / 24.83 ±0.29 / 25.31 ms │     no change │
│ QQuery 97 │        45.96 / 48.57 ±3.49 / 55.41 ms │        46.58 / 47.08 ±0.44 / 47.86 ms │     no change │
│ QQuery 98 │        42.43 / 43.26 ±0.66 / 44.26 ms │        43.69 / 44.39 ±0.36 / 44.70 ms │     no change │
│ QQuery 99 │        69.82 / 70.11 ±0.23 / 70.49 ms │        70.83 / 71.35 ±0.44 / 71.94 ms │     no change │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                     ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                     │ 10574.30ms │
│ Total Time (lift-selectivity-stats)   │ 10739.18ms │
│ Average Time (HEAD)                   │   106.81ms │
│ Average Time (lift-selectivity-stats) │   108.48ms │
│ Queries Faster                        │          3 │
│ Queries Slower                        │         10 │
│ Queries with No Change                │         86 │
│ Queries with Failure                  │          0 │
└───────────────────────────────────────┴────────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 55.0s
Peak memory 6.7 GiB
Avg memory 6.1 GiB
CPU user 239.0s
CPU sys 6.4s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 55.0s
Peak memory 6.9 GiB
Avg memory 6.3 GiB
CPU user 243.1s
CPU sys 6.9s
Peak spill 0 B

File an issue against this benchmark runner

@adriangb adriangb force-pushed the lift-selectivity-stats branch 3 times, most recently from a24471d to 4d7b733 Compare June 2, 2026 02:29
@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 lift-selectivity-stats
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃                lift-selectivity-stats ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.24 / 3.99 ±5.42 / 14.82 ms │          1.25 / 3.95 ±5.34 / 14.63 ms │     no change │
│ QQuery 1  │        12.60 / 12.74 ±0.12 / 12.94 ms │        12.54 / 12.83 ±0.15 / 12.97 ms │     no change │
│ QQuery 2  │        35.57 / 36.03 ±0.34 / 36.51 ms │        36.56 / 36.97 ±0.23 / 37.21 ms │     no change │
│ QQuery 3  │        30.72 / 31.15 ±0.57 / 32.27 ms │        31.36 / 31.55 ±0.10 / 31.65 ms │     no change │
│ QQuery 4  │     218.35 / 225.27 ±4.82 / 230.70 ms │     219.99 / 224.63 ±3.48 / 230.60 ms │     no change │
│ QQuery 5  │     271.35 / 272.77 ±0.96 / 274.35 ms │     271.09 / 272.82 ±1.58 / 275.30 ms │     no change │
│ QQuery 6  │           1.25 / 1.41 ±0.24 / 1.88 ms │           1.29 / 1.45 ±0.24 / 1.91 ms │     no change │
│ QQuery 7  │        13.51 / 13.70 ±0.16 / 13.96 ms │        13.57 / 13.81 ±0.13 / 13.95 ms │     no change │
│ QQuery 8  │     315.48 / 319.45 ±2.51 / 322.04 ms │     317.45 / 320.82 ±2.35 / 323.70 ms │     no change │
│ QQuery 9  │     448.53 / 461.01 ±6.75 / 468.54 ms │    439.19 / 460.80 ±14.35 / 483.41 ms │     no change │
│ QQuery 10 │        69.85 / 70.64 ±0.56 / 71.47 ms │        71.79 / 72.70 ±0.69 / 73.58 ms │     no change │
│ QQuery 11 │        81.31 / 82.29 ±0.66 / 83.40 ms │       83.02 / 88.82 ±8.64 / 106.03 ms │  1.08x slower │
│ QQuery 12 │     261.62 / 267.61 ±5.10 / 274.24 ms │     265.91 / 274.59 ±8.41 / 289.14 ms │     no change │
│ QQuery 13 │     358.24 / 368.08 ±6.35 / 376.32 ms │     369.65 / 377.73 ±7.70 / 388.43 ms │     no change │
│ QQuery 14 │     278.33 / 282.65 ±2.71 / 286.39 ms │     278.97 / 285.54 ±4.71 / 292.94 ms │     no change │
│ QQuery 15 │    265.79 / 277.12 ±14.93 / 306.66 ms │     269.05 / 279.66 ±9.98 / 292.93 ms │     no change │
│ QQuery 16 │     602.85 / 610.34 ±5.94 / 620.91 ms │     610.33 / 616.56 ±6.22 / 624.71 ms │     no change │
│ QQuery 17 │     606.44 / 622.82 ±9.97 / 633.49 ms │     617.54 / 624.92 ±4.81 / 632.52 ms │     no change │
│ QQuery 18 │ 1239.71 / 1289.67 ±30.90 / 1326.12 ms │ 1250.56 / 1282.87 ±30.36 / 1322.67 ms │     no change │
│ QQuery 19 │        27.81 / 28.41 ±0.43 / 29.08 ms │        28.04 / 31.33 ±6.32 / 43.97 ms │  1.10x slower │
│ QQuery 20 │     515.62 / 522.06 ±6.73 / 534.14 ms │    517.70 / 533.76 ±13.69 / 552.68 ms │     no change │
│ QQuery 21 │     512.33 / 520.67 ±5.17 / 528.21 ms │     523.50 / 528.03 ±4.32 / 534.70 ms │     no change │
│ QQuery 22 │    981.77 / 993.96 ±6.52 / 1001.34 ms │    986.86 / 993.72 ±5.92 / 1000.59 ms │     no change │
│ QQuery 23 │ 3070.25 / 3105.88 ±27.52 / 3154.59 ms │ 3052.93 / 3097.25 ±33.63 / 3137.11 ms │     no change │
│ QQuery 24 │        41.57 / 42.54 ±0.86 / 44.02 ms │        41.65 / 44.36 ±4.53 / 53.41 ms │     no change │
│ QQuery 25 │     111.56 / 112.52 ±0.80 / 113.79 ms │     112.75 / 113.61 ±0.77 / 114.60 ms │     no change │
│ QQuery 26 │        41.85 / 42.20 ±0.29 / 42.74 ms │        41.76 / 46.87 ±7.79 / 62.25 ms │  1.11x slower │
│ QQuery 27 │    668.72 / 680.83 ±11.74 / 700.43 ms │     669.18 / 672.10 ±3.15 / 678.04 ms │     no change │
│ QQuery 28 │ 3002.80 / 3024.56 ±12.68 / 3040.35 ms │ 2996.54 / 3012.59 ±12.43 / 3029.59 ms │     no change │
│ QQuery 29 │        40.16 / 40.43 ±0.29 / 40.98 ms │        40.40 / 40.71 ±0.21 / 41.04 ms │     no change │
│ QQuery 30 │     291.08 / 301.98 ±8.58 / 313.35 ms │     292.27 / 304.56 ±9.38 / 317.31 ms │     no change │
│ QQuery 31 │    280.31 / 294.45 ±13.10 / 316.68 ms │     284.05 / 294.66 ±9.85 / 311.65 ms │     no change │
│ QQuery 32 │    943.67 / 965.18 ±18.14 / 986.64 ms │    921.61 / 955.77 ±29.77 / 991.65 ms │     no change │
│ QQuery 33 │ 1443.40 / 1481.28 ±28.18 / 1520.74 ms │ 1442.33 / 1475.50 ±27.02 / 1519.37 ms │     no change │
│ QQuery 34 │ 1435.29 / 1493.23 ±38.17 / 1539.73 ms │ 1464.13 / 1507.12 ±26.23 / 1533.80 ms │     no change │
│ QQuery 35 │    269.96 / 307.66 ±45.34 / 394.98 ms │    273.92 / 290.27 ±15.89 / 319.27 ms │ +1.06x faster │
│ QQuery 36 │        66.32 / 75.49 ±6.45 / 82.60 ms │        64.64 / 67.31 ±2.87 / 72.89 ms │ +1.12x faster │
│ QQuery 37 │        35.70 / 39.57 ±2.06 / 41.52 ms │        36.11 / 42.68 ±4.15 / 48.88 ms │  1.08x slower │
│ QQuery 38 │        42.42 / 46.53 ±3.39 / 51.23 ms │        41.83 / 49.39 ±6.28 / 56.47 ms │  1.06x slower │
│ QQuery 39 │    140.50 / 151.87 ±11.93 / 173.40 ms │     143.07 / 146.88 ±2.96 / 151.16 ms │     no change │
│ QQuery 40 │        13.69 / 18.44 ±5.61 / 28.63 ms │        13.83 / 17.63 ±4.02 / 23.34 ms │     no change │
│ QQuery 41 │        13.50 / 13.64 ±0.14 / 13.90 ms │        13.46 / 16.44 ±5.56 / 27.55 ms │  1.21x slower │
│ QQuery 42 │        12.72 / 13.75 ±1.46 / 16.64 ms │        13.02 / 14.85 ±3.17 / 21.18 ms │  1.08x slower │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                     ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                     │ 19565.86ms │
│ Total Time (lift-selectivity-stats)   │ 19580.40ms │
│ Average Time (HEAD)                   │   455.02ms │
│ Average Time (lift-selectivity-stats) │   455.36ms │
│ Queries Faster                        │          2 │
│ Queries Slower                        │          7 │
│ Queries with No Change                │         34 │
│ Queries with Failure                  │          0 │
└───────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 100.0s
Peak memory 11.8 GiB
Avg memory 4.7 GiB
CPU user 1008.1s
CPU sys 67.9s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 100.0s
Peak memory 11.4 GiB
Avg memory 4.4 GiB
CPU user 1007.1s
CPU sys 69.3s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

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

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

Comparing HEAD and lift-selectivity-stats
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃                lift-selectivity-stats ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.26 / 4.03 ±5.43 / 14.89 ms │          1.23 / 4.01 ±5.45 / 14.91 ms │     no change │
│ QQuery 1  │        12.49 / 12.84 ±0.21 / 13.06 ms │        12.49 / 13.09 ±0.38 / 13.65 ms │     no change │
│ QQuery 2  │        36.01 / 36.26 ±0.25 / 36.56 ms │        35.78 / 36.00 ±0.22 / 36.33 ms │     no change │
│ QQuery 3  │        30.62 / 31.17 ±0.54 / 32.19 ms │        30.67 / 30.89 ±0.20 / 31.17 ms │     no change │
│ QQuery 4  │     227.82 / 230.83 ±2.53 / 235.29 ms │     226.14 / 228.24 ±2.45 / 232.99 ms │     no change │
│ QQuery 5  │     274.02 / 276.72 ±2.56 / 280.19 ms │     273.67 / 275.97 ±1.58 / 278.39 ms │     no change │
│ QQuery 6  │           1.30 / 1.45 ±0.23 / 1.89 ms │           1.27 / 1.43 ±0.24 / 1.90 ms │     no change │
│ QQuery 7  │        13.79 / 13.92 ±0.08 / 14.01 ms │        14.06 / 14.30 ±0.15 / 14.49 ms │     no change │
│ QQuery 8  │     323.05 / 327.97 ±4.32 / 333.53 ms │     323.80 / 325.83 ±1.16 / 326.92 ms │     no change │
│ QQuery 9  │     460.74 / 465.83 ±3.39 / 469.84 ms │     458.50 / 466.07 ±5.60 / 474.63 ms │     no change │
│ QQuery 10 │        71.50 / 74.07 ±2.31 / 78.38 ms │        70.23 / 71.26 ±1.15 / 73.45 ms │     no change │
│ QQuery 11 │        83.16 / 85.64 ±2.36 / 88.62 ms │        81.49 / 86.13 ±5.91 / 97.73 ms │     no change │
│ QQuery 12 │     271.88 / 275.59 ±3.74 / 282.43 ms │     266.55 / 277.82 ±9.66 / 292.54 ms │     no change │
│ QQuery 13 │     374.94 / 377.47 ±2.26 / 381.08 ms │    362.78 / 375.86 ±13.95 / 401.36 ms │     no change │
│ QQuery 14 │     282.13 / 284.74 ±2.62 / 289.71 ms │     283.80 / 289.98 ±6.56 / 302.72 ms │     no change │
│ QQuery 15 │     270.67 / 275.31 ±5.17 / 284.03 ms │     279.02 / 287.61 ±6.45 / 293.80 ms │     no change │
│ QQuery 16 │     613.72 / 620.04 ±7.01 / 633.03 ms │    613.12 / 627.39 ±13.57 / 647.43 ms │     no change │
│ QQuery 17 │     611.30 / 624.24 ±9.38 / 639.64 ms │     625.20 / 632.06 ±6.14 / 641.84 ms │     no change │
│ QQuery 18 │ 1250.72 / 1278.08 ±15.14 / 1296.02 ms │ 1240.54 / 1271.81 ±22.48 / 1308.26 ms │     no change │
│ QQuery 19 │       28.28 / 41.78 ±18.47 / 75.72 ms │       27.91 / 34.97 ±12.73 / 60.36 ms │ +1.19x faster │
│ QQuery 20 │     517.53 / 527.30 ±9.50 / 544.97 ms │    515.61 / 529.09 ±13.15 / 553.71 ms │     no change │
│ QQuery 21 │     519.16 / 523.88 ±4.50 / 532.22 ms │     514.88 / 525.89 ±8.92 / 541.51 ms │     no change │
│ QQuery 22 │   998.69 / 1000.13 ±0.99 / 1001.38 ms │   987.22 / 998.22 ±11.14 / 1016.97 ms │     no change │
│ QQuery 23 │ 3059.97 / 3097.10 ±25.97 / 3137.67 ms │ 3052.87 / 3118.79 ±35.32 / 3152.65 ms │     no change │
│ QQuery 24 │        41.75 / 46.66 ±7.35 / 61.13 ms │        41.84 / 43.81 ±2.04 / 47.74 ms │ +1.06x faster │
│ QQuery 25 │     113.07 / 116.46 ±4.07 / 123.91 ms │     114.18 / 115.34 ±1.09 / 116.98 ms │     no change │
│ QQuery 26 │        41.58 / 42.31 ±0.70 / 43.41 ms │        42.17 / 45.47 ±5.46 / 56.35 ms │  1.07x slower │
│ QQuery 27 │     671.94 / 674.38 ±1.95 / 677.53 ms │     677.70 / 681.84 ±2.90 / 685.75 ms │     no change │
│ QQuery 28 │ 3013.20 / 3045.34 ±20.69 / 3073.37 ms │  3015.18 / 3028.91 ±9.70 / 3039.63 ms │     no change │
│ QQuery 29 │        40.82 / 41.00 ±0.15 / 41.28 ms │       40.73 / 48.92 ±10.37 / 66.61 ms │  1.19x slower │
│ QQuery 30 │    304.54 / 315.31 ±11.99 / 338.04 ms │     302.22 / 310.12 ±6.97 / 322.18 ms │     no change │
│ QQuery 31 │     280.68 / 294.47 ±8.00 / 305.33 ms │     280.42 / 290.67 ±6.82 / 298.96 ms │     no change │
│ QQuery 32 │    936.87 / 968.69 ±19.56 / 989.09 ms │    964.07 / 973.37 ±10.04 / 990.31 ms │     no change │
│ QQuery 33 │ 1464.76 / 1508.31 ±31.59 / 1560.17 ms │ 1466.40 / 1497.19 ±26.00 / 1540.61 ms │     no change │
│ QQuery 34 │ 1502.18 / 1516.45 ±13.13 / 1534.95 ms │ 1496.76 / 1528.43 ±34.07 / 1594.67 ms │     no change │
│ QQuery 35 │    278.34 / 310.75 ±35.47 / 370.61 ms │    283.07 / 324.41 ±35.32 / 377.86 ms │     no change │
│ QQuery 36 │        70.24 / 74.44 ±2.87 / 78.90 ms │        67.74 / 76.02 ±8.78 / 92.22 ms │     no change │
│ QQuery 37 │        36.07 / 37.30 ±1.55 / 40.34 ms │        36.10 / 37.01 ±0.88 / 38.56 ms │     no change │
│ QQuery 38 │        40.90 / 45.15 ±3.28 / 50.65 ms │        42.68 / 46.02 ±2.84 / 50.85 ms │     no change │
│ QQuery 39 │     131.01 / 146.22 ±9.75 / 161.55 ms │     142.86 / 148.24 ±6.44 / 160.47 ms │     no change │
│ QQuery 40 │        14.05 / 14.40 ±0.28 / 14.77 ms │        14.56 / 14.72 ±0.15 / 15.00 ms │     no change │
│ QQuery 41 │        13.48 / 15.54 ±3.18 / 21.84 ms │        14.08 / 14.48 ±0.26 / 14.69 ms │ +1.07x faster │
│ QQuery 42 │        13.20 / 13.44 ±0.21 / 13.77 ms │        13.26 / 15.42 ±3.99 / 23.39 ms │  1.15x slower │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                     ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                     │ 19712.96ms │
│ Total Time (lift-selectivity-stats)   │ 19763.10ms │
│ Average Time (HEAD)                   │   458.44ms │
│ Average Time (lift-selectivity-stats) │   459.61ms │
│ Queries Faster                        │          3 │
│ Queries Slower                        │          3 │
│ Queries with No Change                │         37 │
│ Queries with Failure                  │          0 │
└───────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 100.0s
Peak memory 11.4 GiB
Avg memory 4.5 GiB
CPU user 1013.5s
CPU sys 68.6s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 100.0s
Peak memory 10.1 GiB
Avg memory 4.2 GiB
CPU user 1015.3s
CPU sys 71.5s
Peak spill 0 B

File an issue against this benchmark runner

@adriangb

adriangb commented Jul 3, 2026

Copy link
Copy Markdown
Contributor Author

run benchmark tpch10 clickbench_partitioned tpcds

baseline:
ref: a456356
changed:
ref: a456356

@adriangb

adriangb commented Jul 3, 2026

Copy link
Copy Markdown
Contributor Author

run benchmark tpch10 clickbench_partitioned tpcds

baseline:
ref: a456356
env:
DATAFUSION_EXECUTION_ADAPTIVE_FILTER_REORDERING: "false"
changed:
ref: a456356
env:
DATAFUSION_EXECUTION_ADAPTIVE_FILTER_REORDERING: "true"

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4873746305-833-zrdf7 6.12.85+ #1 SMP Mon May 11 08:17:35 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 a456356 (a456356) to a456356 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-c4873746448-829-fvqlq 6.12.85+ #1 SMP Mon May 11 08:17:35 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 a456356 (a456356) to a456356 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-c4873746448-830-vtkmj 6.12.85+ #1 SMP Mon May 11 08:17:35 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 a456356 (a456356) to a456356 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-c4873746448-831-278jg 6.12.85+ #1 SMP Mon May 11 08:17:35 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 a456356 (a456356) to a456356 diff using: tpcds
Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4873746305-832-lt6t5 6.12.85+ #1 SMP Mon May 11 08:17:35 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 a456356 (a456356) to a456356 diff using: tpch10
Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

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

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

Comparing HEAD and lift-selectivity-stats
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃                lift-selectivity-stats ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │           5.62 / 6.14 ±0.80 / 7.73 ms │           5.78 / 6.22 ±0.73 / 7.67 ms │     no change │
│ QQuery 2  │        80.99 / 81.21 ±0.23 / 81.57 ms │        81.29 / 81.55 ±0.24 / 81.92 ms │     no change │
│ QQuery 3  │        29.96 / 30.19 ±0.20 / 30.49 ms │        29.88 / 30.14 ±0.32 / 30.76 ms │     no change │
│ QQuery 4  │     503.49 / 508.15 ±3.32 / 513.70 ms │     501.57 / 505.66 ±2.50 / 508.66 ms │     no change │
│ QQuery 5  │        52.78 / 53.17 ±0.40 / 53.69 ms │        52.59 / 53.18 ±0.52 / 54.08 ms │     no change │
│ QQuery 6  │        36.81 / 37.71 ±0.55 / 38.38 ms │        37.15 / 37.38 ±0.23 / 37.81 ms │     no change │
│ QQuery 7  │       94.55 / 96.31 ±2.02 / 100.25 ms │        92.81 / 94.04 ±1.59 / 97.18 ms │     no change │
│ QQuery 8  │        37.18 / 37.63 ±0.42 / 38.38 ms │        37.36 / 37.80 ±0.36 / 38.26 ms │     no change │
│ QQuery 9  │        52.56 / 55.33 ±2.12 / 59.01 ms │        57.30 / 58.25 ±0.84 / 59.55 ms │  1.05x slower │
│ QQuery 10 │        64.05 / 64.32 ±0.21 / 64.65 ms │        63.53 / 63.79 ±0.23 / 64.08 ms │     no change │
│ QQuery 11 │     314.58 / 317.65 ±2.05 / 320.27 ms │     316.38 / 320.28 ±2.93 / 323.80 ms │     no change │
│ QQuery 12 │        29.13 / 29.53 ±0.24 / 29.83 ms │        29.28 / 29.80 ±0.40 / 30.28 ms │     no change │
│ QQuery 13 │     119.74 / 120.80 ±1.08 / 122.71 ms │     120.41 / 121.78 ±1.00 / 122.81 ms │     no change │
│ QQuery 14 │     422.21 / 426.02 ±2.60 / 429.65 ms │     425.77 / 429.36 ±3.93 / 436.03 ms │     no change │
│ QQuery 15 │        59.13 / 60.52 ±0.94 / 61.51 ms │        60.14 / 60.66 ±0.41 / 61.40 ms │     no change │
│ QQuery 16 │           6.97 / 7.15 ±0.24 / 7.62 ms │           7.08 / 7.23 ±0.16 / 7.48 ms │     no change │
│ QQuery 17 │        81.01 / 81.84 ±0.58 / 82.72 ms │        81.61 / 84.84 ±3.77 / 91.55 ms │     no change │
│ QQuery 18 │     124.36 / 125.23 ±0.63 / 126.19 ms │     126.05 / 127.26 ±0.89 / 128.64 ms │     no change │
│ QQuery 19 │        42.11 / 43.23 ±1.34 / 45.83 ms │        42.90 / 43.91 ±0.87 / 45.28 ms │     no change │
│ QQuery 20 │        36.14 / 36.93 ±0.95 / 38.73 ms │        36.70 / 37.85 ±0.90 / 39.41 ms │     no change │
│ QQuery 21 │        18.02 / 18.26 ±0.26 / 18.75 ms │        18.13 / 18.43 ±0.18 / 18.58 ms │     no change │
│ QQuery 22 │        64.09 / 65.68 ±2.48 / 70.61 ms │        64.14 / 64.62 ±0.52 / 65.63 ms │     no change │
│ QQuery 23 │     350.25 / 357.52 ±6.73 / 368.79 ms │     357.15 / 359.59 ±1.80 / 361.86 ms │     no change │
│ QQuery 24 │     227.98 / 232.36 ±4.03 / 237.95 ms │     231.04 / 233.24 ±2.73 / 238.58 ms │     no change │
│ QQuery 25 │     111.96 / 113.62 ±1.54 / 116.24 ms │     112.50 / 116.49 ±3.72 / 123.32 ms │     no change │
│ QQuery 26 │        58.66 / 59.71 ±1.19 / 61.90 ms │        57.32 / 57.57 ±0.22 / 57.95 ms │     no change │
│ QQuery 27 │           6.55 / 6.69 ±0.18 / 7.03 ms │           6.53 / 6.72 ±0.15 / 6.98 ms │     no change │
│ QQuery 28 │        57.85 / 61.41 ±1.80 / 62.69 ms │        56.96 / 59.93 ±1.93 / 62.42 ms │     no change │
│ QQuery 29 │      99.06 / 102.01 ±2.69 / 106.31 ms │      99.61 / 101.69 ±1.93 / 104.97 ms │     no change │
│ QQuery 30 │        33.35 / 33.54 ±0.22 / 33.94 ms │        33.06 / 33.25 ±0.16 / 33.52 ms │     no change │
│ QQuery 31 │     114.09 / 115.44 ±2.16 / 119.71 ms │     113.00 / 115.41 ±3.51 / 122.37 ms │     no change │
│ QQuery 32 │        21.63 / 21.87 ±0.27 / 22.36 ms │        21.42 / 22.24 ±0.89 / 23.79 ms │     no change │
│ QQuery 33 │        38.46 / 39.47 ±0.90 / 41.00 ms │        38.84 / 39.49 ±0.65 / 40.67 ms │     no change │
│ QQuery 34 │        10.34 / 10.42 ±0.06 / 10.48 ms │        10.38 / 10.81 ±0.26 / 11.05 ms │     no change │
│ QQuery 35 │        74.44 / 74.90 ±0.53 / 75.92 ms │        74.08 / 74.45 ±0.27 / 74.86 ms │     no change │
│ QQuery 36 │           5.92 / 6.08 ±0.21 / 6.47 ms │           6.03 / 6.12 ±0.18 / 6.47 ms │     no change │
│ QQuery 37 │           6.99 / 7.16 ±0.09 / 7.25 ms │           7.25 / 7.29 ±0.03 / 7.32 ms │     no change │
│ QQuery 38 │        63.82 / 65.17 ±1.44 / 67.80 ms │        63.34 / 64.72 ±0.71 / 65.34 ms │     no change │
│ QQuery 39 │        87.44 / 88.25 ±0.53 / 89.06 ms │        87.84 / 88.28 ±0.39 / 88.91 ms │     no change │
│ QQuery 40 │        24.15 / 24.42 ±0.32 / 24.98 ms │        24.00 / 24.05 ±0.04 / 24.11 ms │     no change │
│ QQuery 41 │        11.72 / 11.88 ±0.19 / 12.25 ms │        11.90 / 12.04 ±0.13 / 12.26 ms │     no change │
│ QQuery 42 │        24.46 / 24.98 ±0.53 / 25.74 ms │        24.36 / 24.69 ±0.37 / 25.42 ms │     no change │
│ QQuery 43 │           4.94 / 5.05 ±0.15 / 5.34 ms │           5.03 / 5.13 ±0.15 / 5.42 ms │     no change │
│ QQuery 44 │           9.54 / 9.75 ±0.15 / 9.98 ms │         9.67 / 10.77 ±1.96 / 14.69 ms │  1.11x slower │
│ QQuery 45 │        39.83 / 41.77 ±1.70 / 44.10 ms │        40.94 / 41.99 ±1.10 / 44.11 ms │     no change │
│ QQuery 46 │        12.22 / 12.63 ±0.44 / 13.44 ms │        12.31 / 12.78 ±0.47 / 13.47 ms │     no change │
│ QQuery 47 │     238.18 / 242.13 ±4.50 / 250.81 ms │     236.86 / 238.43 ±1.74 / 241.75 ms │     no change │
│ QQuery 48 │       96.79 / 99.48 ±1.46 / 100.89 ms │        96.62 / 97.67 ±0.83 / 99.15 ms │     no change │
│ QQuery 49 │        77.94 / 81.32 ±3.51 / 87.54 ms │        77.61 / 80.33 ±2.93 / 85.16 ms │     no change │
│ QQuery 50 │        59.70 / 59.98 ±0.18 / 60.18 ms │        59.43 / 59.85 ±0.32 / 60.28 ms │     no change │
│ QQuery 51 │        91.55 / 93.89 ±2.19 / 97.75 ms │        92.87 / 95.13 ±2.42 / 99.74 ms │     no change │
│ QQuery 52 │        24.87 / 26.03 ±1.69 / 29.33 ms │        24.81 / 24.87 ±0.05 / 24.92 ms │     no change │
│ QQuery 53 │        30.50 / 30.72 ±0.25 / 31.03 ms │        30.31 / 30.76 ±0.30 / 31.18 ms │     no change │
│ QQuery 54 │        57.02 / 57.43 ±0.41 / 58.12 ms │        56.44 / 57.04 ±0.55 / 58.00 ms │     no change │
│ QQuery 55 │        24.10 / 24.46 ±0.37 / 25.15 ms │        23.91 / 24.11 ±0.18 / 24.39 ms │     no change │
│ QQuery 56 │        39.63 / 40.02 ±0.28 / 40.44 ms │        39.73 / 41.60 ±1.99 / 45.41 ms │     no change │
│ QQuery 57 │     178.29 / 179.83 ±1.63 / 182.74 ms │     176.70 / 178.38 ±1.17 / 180.16 ms │     no change │
│ QQuery 58 │     117.27 / 119.31 ±1.77 / 121.95 ms │     116.66 / 118.06 ±1.49 / 120.73 ms │     no change │
│ QQuery 59 │     118.77 / 119.25 ±0.26 / 119.52 ms │     119.13 / 120.31 ±1.54 / 123.31 ms │     no change │
│ QQuery 60 │        40.24 / 41.82 ±1.38 / 44.02 ms │        40.96 / 41.39 ±0.48 / 42.24 ms │     no change │
│ QQuery 61 │        12.86 / 12.96 ±0.07 / 13.04 ms │        12.83 / 13.03 ±0.17 / 13.32 ms │     no change │
│ QQuery 62 │        46.74 / 46.97 ±0.24 / 47.42 ms │        46.53 / 46.94 ±0.26 / 47.25 ms │     no change │
│ QQuery 63 │        30.28 / 30.57 ±0.19 / 30.84 ms │        30.14 / 30.43 ±0.16 / 30.61 ms │     no change │
│ QQuery 64 │     413.11 / 418.13 ±3.76 / 424.09 ms │     416.40 / 420.14 ±4.22 / 427.05 ms │     no change │
│ QQuery 65 │     146.35 / 148.82 ±2.32 / 152.35 ms │     148.68 / 153.64 ±3.50 / 158.48 ms │     no change │
│ QQuery 66 │        80.42 / 81.23 ±0.93 / 83.04 ms │        80.66 / 81.84 ±1.45 / 84.65 ms │     no change │
│ QQuery 67 │     251.91 / 256.35 ±3.68 / 263.07 ms │     247.52 / 255.55 ±5.45 / 263.94 ms │     no change │
│ QQuery 68 │        12.40 / 12.64 ±0.38 / 13.38 ms │        12.18 / 12.42 ±0.17 / 12.62 ms │     no change │
│ QQuery 69 │        57.75 / 58.19 ±0.41 / 58.96 ms │        58.03 / 58.48 ±0.29 / 58.85 ms │     no change │
│ QQuery 70 │     105.96 / 109.28 ±3.15 / 113.59 ms │     105.88 / 111.08 ±6.06 / 121.86 ms │     no change │
│ QQuery 71 │        35.98 / 37.28 ±1.68 / 40.58 ms │        36.23 / 36.64 ±0.55 / 37.73 ms │     no change │
│ QQuery 72 │ 2096.29 / 2221.37 ±92.53 / 2367.59 ms │ 2050.44 / 2105.05 ±40.82 / 2157.16 ms │ +1.06x faster │
│ QQuery 73 │          9.78 / 9.95 ±0.14 / 10.17 ms │         9.85 / 10.14 ±0.27 / 10.63 ms │     no change │
│ QQuery 74 │     176.97 / 181.08 ±2.82 / 185.24 ms │     180.00 / 183.03 ±2.74 / 188.17 ms │     no change │
│ QQuery 75 │     152.05 / 154.47 ±2.22 / 157.42 ms │     152.98 / 157.01 ±4.66 / 165.85 ms │     no change │
│ QQuery 76 │        36.12 / 36.68 ±0.53 / 37.44 ms │        36.06 / 36.23 ±0.19 / 36.57 ms │     no change │
│ QQuery 77 │        62.27 / 62.98 ±0.77 / 64.42 ms │        61.90 / 65.70 ±4.02 / 72.50 ms │     no change │
│ QQuery 78 │     186.95 / 192.14 ±4.23 / 197.67 ms │     187.87 / 191.24 ±3.07 / 195.34 ms │     no change │
│ QQuery 79 │        68.23 / 68.58 ±0.37 / 69.16 ms │        67.51 / 68.69 ±0.90 / 70.19 ms │     no change │
│ QQuery 80 │     100.86 / 105.54 ±5.58 / 115.90 ms │     101.16 / 102.62 ±0.90 / 103.71 ms │     no change │
│ QQuery 81 │        26.35 / 26.56 ±0.15 / 26.81 ms │        26.79 / 28.67 ±3.20 / 35.06 ms │  1.08x slower │
│ QQuery 82 │        16.99 / 17.16 ±0.13 / 17.32 ms │        17.17 / 18.82 ±1.71 / 21.98 ms │  1.10x slower │
│ QQuery 83 │        41.01 / 41.34 ±0.31 / 41.78 ms │        41.55 / 42.30 ±0.69 / 43.55 ms │     no change │
│ QQuery 84 │        31.22 / 31.40 ±0.18 / 31.73 ms │        31.29 / 31.88 ±0.33 / 32.30 ms │     no change │
│ QQuery 85 │     108.90 / 111.72 ±2.83 / 115.23 ms │     108.07 / 110.71 ±3.78 / 118.17 ms │     no change │
│ QQuery 86 │        25.69 / 26.08 ±0.36 / 26.68 ms │        25.78 / 26.45 ±0.71 / 27.83 ms │     no change │
│ QQuery 87 │        63.99 / 64.87 ±0.87 / 66.54 ms │        65.55 / 66.15 ±0.40 / 66.67 ms │     no change │
│ QQuery 88 │        64.12 / 64.86 ±0.44 / 65.24 ms │        64.64 / 64.88 ±0.17 / 65.15 ms │     no change │
│ QQuery 89 │        36.34 / 37.04 ±0.57 / 37.81 ms │        36.70 / 38.52 ±2.57 / 43.56 ms │     no change │
│ QQuery 90 │        17.61 / 17.87 ±0.17 / 18.06 ms │        17.57 / 18.61 ±1.61 / 21.82 ms │     no change │
│ QQuery 91 │        46.17 / 46.68 ±0.48 / 47.45 ms │        46.50 / 47.09 ±0.58 / 48.14 ms │     no change │
│ QQuery 92 │        29.97 / 30.41 ±0.38 / 31.08 ms │        30.78 / 31.01 ±0.25 / 31.34 ms │     no change │
│ QQuery 93 │        50.44 / 52.25 ±1.30 / 53.93 ms │        50.79 / 51.56 ±0.63 / 52.35 ms │     no change │
│ QQuery 94 │        39.31 / 39.71 ±0.37 / 40.34 ms │        39.06 / 39.39 ±0.30 / 39.81 ms │     no change │
│ QQuery 95 │        82.17 / 82.86 ±0.67 / 83.94 ms │        84.04 / 85.88 ±2.63 / 90.97 ms │     no change │
│ QQuery 96 │        24.74 / 25.04 ±0.22 / 25.39 ms │        25.08 / 25.28 ±0.19 / 25.59 ms │     no change │
│ QQuery 97 │        47.57 / 49.35 ±1.87 / 52.18 ms │        47.03 / 47.59 ±0.33 / 48.06 ms │     no change │
│ QQuery 98 │        42.97 / 43.72 ±0.57 / 44.67 ms │        43.42 / 43.83 ±0.32 / 44.24 ms │     no change │
│ QQuery 99 │        70.30 / 70.92 ±0.37 / 71.39 ms │        70.75 / 72.80 ±3.23 / 79.23 ms │     no change │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                     ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                     │ 10169.82ms │
│ Total Time (lift-selectivity-stats)   │ 10081.97ms │
│ Average Time (HEAD)                   │   102.73ms │
│ Average Time (lift-selectivity-stats) │   101.84ms │
│ Queries Faster                        │          1 │
│ Queries Slower                        │          4 │
│ Queries with No Change                │         94 │
│ Queries with Failure                  │          0 │
└───────────────────────────────────────┴────────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 55.0s
Peak memory 2.3 GiB
Avg memory 1.6 GiB
CPU user 229.5s
CPU sys 6.2s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 55.0s
Peak memory 2.2 GiB
Avg memory 1.5 GiB
CPU user 227.2s
CPU sys 6.0s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

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

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

Comparing HEAD and lift-selectivity-stats
--------------------
Benchmark tpch_sf10.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                 HEAD ┃             lift-selectivity-stats ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │    314.65 / 317.02 ±1.77 / 319.91 ms │  318.86 / 321.24 ±2.03 / 324.44 ms │     no change │
│ QQuery 2  │    104.81 / 106.55 ±1.40 / 108.25 ms │  105.17 / 107.92 ±2.26 / 111.81 ms │     no change │
│ QQuery 3  │    240.26 / 245.58 ±4.79 / 251.74 ms │  243.43 / 246.68 ±2.12 / 249.89 ms │     no change │
│ QQuery 4  │    119.50 / 121.16 ±1.31 / 122.85 ms │  121.86 / 124.73 ±3.14 / 130.67 ms │     no change │
│ QQuery 5  │    359.74 / 372.98 ±8.12 / 384.74 ms │  373.57 / 378.73 ±6.06 / 390.43 ms │     no change │
│ QQuery 6  │    125.38 / 127.82 ±1.99 / 130.97 ms │  126.98 / 130.97 ±5.03 / 140.84 ms │     no change │
│ QQuery 7  │    488.05 / 491.50 ±3.33 / 497.47 ms │  489.24 / 498.54 ±7.50 / 507.45 ms │     no change │
│ QQuery 8  │    392.32 / 403.68 ±6.41 / 410.17 ms │  392.76 / 401.84 ±7.24 / 412.57 ms │     no change │
│ QQuery 9  │    565.58 / 573.57 ±7.97 / 587.40 ms │  569.13 / 579.74 ±8.85 / 591.53 ms │     no change │
│ QQuery 10 │    300.98 / 313.28 ±9.92 / 329.29 ms │  323.23 / 334.25 ±9.49 / 350.07 ms │  1.07x slower │
│ QQuery 11 │       87.31 / 89.94 ±2.05 / 92.37 ms │   88.62 / 95.21 ±10.93 / 116.99 ms │  1.06x slower │
│ QQuery 12 │    180.88 / 185.18 ±5.52 / 195.48 ms │  183.19 / 190.16 ±5.66 / 200.23 ms │     no change │
│ QQuery 13 │   297.76 / 316.86 ±12.05 / 331.01 ms │ 295.94 / 320.77 ±22.36 / 348.68 ms │     no change │
│ QQuery 14 │    177.57 / 184.71 ±7.48 / 197.55 ms │  177.82 / 182.45 ±5.09 / 192.32 ms │     no change │
│ QQuery 15 │    314.82 / 317.35 ±2.31 / 320.13 ms │  314.88 / 321.94 ±3.78 / 325.89 ms │     no change │
│ QQuery 16 │       67.45 / 69.89 ±2.14 / 73.15 ms │     66.68 / 68.08 ±1.97 / 71.94 ms │     no change │
│ QQuery 17 │ 674.95 / 847.93 ±328.34 / 1504.52 ms │  685.45 / 696.63 ±7.88 / 707.64 ms │ +1.22x faster │
│ QQuery 18 │   728.16 / 745.42 ±16.43 / 771.86 ms │ 750.78 / 766.20 ±20.41 / 806.23 ms │     no change │
│ QQuery 19 │   248.85 / 263.69 ±19.66 / 301.95 ms │ 256.58 / 272.97 ±14.56 / 295.46 ms │     no change │
│ QQuery 20 │    281.38 / 293.62 ±8.48 / 306.53 ms │  289.33 / 302.36 ±9.69 / 313.43 ms │     no change │
│ QQuery 21 │    684.08 / 696.33 ±6.94 / 702.79 ms │  695.55 / 710.35 ±9.10 / 720.30 ms │     no change │
│ QQuery 22 │       62.36 / 65.14 ±2.37 / 69.17 ms │     62.80 / 64.20 ±0.96 / 65.44 ms │     no change │
└───────────┴──────────────────────────────────────┴────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┓
┃ Benchmark Summary                     ┃           ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━┩
│ Total Time (HEAD)                     │ 7149.20ms │
│ Total Time (lift-selectivity-stats)   │ 7115.98ms │
│ Average Time (HEAD)                   │  324.96ms │
│ Average Time (lift-selectivity-stats) │  323.45ms │
│ Queries Faster                        │         1 │
│ Queries Slower                        │         2 │
│ Queries with No Change                │        19 │
│ Queries with Failure                  │         0 │
└───────────────────────────────────────┴───────────┘

Resource Usage

tpch10 — base (merge-base)

Metric Value
Wall time 40.0s
Peak memory 5.1 GiB
Avg memory 1.4 GiB
CPU user 356.9s
CPU sys 20.3s
Peak spill 0 B

tpch10 — branch

Metric Value
Wall time 40.0s
Peak memory 5.1 GiB
Avg memory 1.3 GiB
CPU user 359.6s
CPU sys 21.3s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

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

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

Comparing HEAD and lift-selectivity-stats
--------------------
Benchmark tpch_sf10.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                               HEAD ┃             lift-selectivity-stats ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │  318.83 / 321.03 ±1.29 / 322.58 ms │  316.57 / 319.52 ±1.95 / 321.80 ms │     no change │
│ QQuery 2  │  108.63 / 110.43 ±1.61 / 113.43 ms │  106.03 / 108.83 ±2.67 / 113.40 ms │     no change │
│ QQuery 3  │  249.84 / 257.10 ±4.60 / 263.28 ms │  245.71 / 250.12 ±3.66 / 254.76 ms │     no change │
│ QQuery 4  │  123.53 / 125.58 ±1.78 / 128.27 ms │  121.41 / 123.30 ±1.95 / 126.69 ms │     no change │
│ QQuery 5  │  381.17 / 388.68 ±5.04 / 396.31 ms │  374.99 / 383.20 ±8.85 / 396.26 ms │     no change │
│ QQuery 6  │  129.37 / 132.39 ±2.76 / 137.52 ms │  109.27 / 112.95 ±4.04 / 120.64 ms │ +1.17x faster │
│ QQuery 7  │  506.82 / 520.55 ±8.95 / 534.91 ms │ 504.40 / 528.40 ±19.77 / 562.61 ms │     no change │
│ QQuery 8  │  404.02 / 411.08 ±5.68 / 418.09 ms │  406.19 / 416.61 ±8.74 / 428.75 ms │     no change │
│ QQuery 9  │  600.78 / 609.38 ±9.16 / 626.21 ms │ 595.18 / 611.34 ±13.77 / 631.00 ms │     no change │
│ QQuery 10 │ 323.36 / 338.88 ±13.08 / 359.89 ms │  310.62 / 326.49 ±8.53 / 335.32 ms │     no change │
│ QQuery 11 │     87.49 / 90.24 ±2.11 / 93.24 ms │    89.23 / 96.48 ±7.96 / 111.52 ms │  1.07x slower │
│ QQuery 12 │ 185.96 / 196.15 ±12.23 / 218.42 ms │  132.89 / 137.88 ±8.06 / 153.95 ms │ +1.42x faster │
│ QQuery 13 │ 316.76 / 332.75 ±11.01 / 350.42 ms │ 302.91 / 323.63 ±11.71 / 337.01 ms │     no change │
│ QQuery 14 │  183.35 / 188.76 ±6.30 / 199.89 ms │  184.29 / 191.44 ±6.41 / 200.70 ms │     no change │
│ QQuery 15 │  317.61 / 322.86 ±2.76 / 325.56 ms │  326.88 / 334.25 ±5.20 / 342.66 ms │     no change │
│ QQuery 16 │     69.01 / 74.14 ±5.88 / 85.22 ms │     68.13 / 70.60 ±2.07 / 73.19 ms │     no change │
│ QQuery 17 │ 684.92 / 706.46 ±13.04 / 720.62 ms │  688.00 / 703.01 ±9.20 / 716.45 ms │     no change │
│ QQuery 18 │ 782.62 / 804.52 ±21.99 / 846.10 ms │ 760.82 / 775.11 ±13.02 / 795.68 ms │     no change │
│ QQuery 19 │ 259.30 / 285.44 ±43.90 / 373.01 ms │ 254.18 / 269.49 ±12.87 / 287.91 ms │ +1.06x faster │
│ QQuery 20 │  307.44 / 314.37 ±5.88 / 322.14 ms │  309.38 / 315.80 ±3.80 / 319.27 ms │     no change │
│ QQuery 21 │ 707.64 / 723.26 ±14.64 / 751.09 ms │  735.16 / 743.62 ±9.47 / 759.92 ms │     no change │
│ QQuery 22 │     64.32 / 66.49 ±2.50 / 70.64 ms │     65.36 / 69.64 ±5.80 / 81.14 ms │     no change │
└───────────┴────────────────────────────────────┴────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┓
┃ Benchmark Summary                     ┃           ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━┩
│ Total Time (HEAD)                     │ 7320.54ms │
│ Total Time (lift-selectivity-stats)   │ 7211.72ms │
│ Average Time (HEAD)                   │  332.75ms │
│ Average Time (lift-selectivity-stats) │  327.81ms │
│ Queries Faster                        │         3 │
│ Queries Slower                        │         1 │
│ Queries with No Change                │        18 │
│ Queries with Failure                  │         0 │
└───────────────────────────────────────┴───────────┘

Resource Usage

tpch10 — base (merge-base)

Metric Value
Wall time 40.0s
Peak memory 5.0 GiB
Avg memory 1.3 GiB
CPU user 369.6s
CPU sys 22.6s
Peak spill 0 B

tpch10 — branch

Metric Value
Wall time 40.0s
Peak memory 5.1 GiB
Avg memory 1.5 GiB
CPU user 365.1s
CPU sys 22.3s
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-c4873746305-834-pdfgl 6.12.85+ #1 SMP Mon May 11 08:17:35 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 a456356 (a456356) to a456356 diff using: tpcds
Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

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

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

Comparing HEAD and lift-selectivity-stats
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃                lift-selectivity-stats ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.30 / 4.29 ±5.78 / 15.85 ms │          1.23 / 4.10 ±5.58 / 15.26 ms │     no change │
│ QQuery 1  │        13.32 / 13.68 ±0.19 / 13.87 ms │        12.86 / 13.24 ±0.23 / 13.54 ms │     no change │
│ QQuery 2  │        36.41 / 37.01 ±0.55 / 37.88 ms │        35.94 / 36.24 ±0.31 / 36.81 ms │     no change │
│ QQuery 3  │        32.40 / 33.12 ±0.73 / 34.45 ms │        31.39 / 31.62 ±0.23 / 32.03 ms │     no change │
│ QQuery 4  │     261.88 / 263.77 ±1.49 / 265.64 ms │     240.44 / 244.00 ±2.08 / 246.47 ms │ +1.08x faster │
│ QQuery 5  │     298.80 / 304.46 ±4.05 / 309.63 ms │     281.53 / 286.58 ±3.64 / 290.03 ms │ +1.06x faster │
│ QQuery 6  │           1.33 / 1.50 ±0.25 / 1.99 ms │           1.28 / 1.42 ±0.23 / 1.89 ms │ +1.05x faster │
│ QQuery 7  │        14.77 / 15.03 ±0.18 / 15.29 ms │        14.18 / 16.28 ±3.73 / 23.74 ms │  1.08x slower │
│ QQuery 8  │     366.85 / 375.00 ±5.18 / 381.34 ms │     346.07 / 351.16 ±5.20 / 357.75 ms │ +1.07x faster │
│ QQuery 9  │    515.62 / 530.58 ±13.43 / 553.19 ms │     485.20 / 494.55 ±6.48 / 504.96 ms │ +1.07x faster │
│ QQuery 10 │        72.97 / 74.27 ±1.43 / 76.89 ms │        72.94 / 74.33 ±0.72 / 74.90 ms │     no change │
│ QQuery 11 │        87.39 / 88.27 ±0.64 / 89.23 ms │        83.61 / 84.82 ±0.62 / 85.26 ms │     no change │
│ QQuery 12 │     302.31 / 308.97 ±6.12 / 318.57 ms │     280.55 / 292.85 ±9.65 / 309.49 ms │ +1.06x faster │
│ QQuery 13 │     414.89 / 423.79 ±8.03 / 433.84 ms │    382.72 / 396.78 ±13.92 / 415.02 ms │ +1.07x faster │
│ QQuery 14 │     316.97 / 326.27 ±7.03 / 336.87 ms │     296.84 / 301.80 ±4.78 / 310.44 ms │ +1.08x faster │
│ QQuery 15 │    307.93 / 319.87 ±10.26 / 337.57 ms │    287.62 / 304.04 ±10.36 / 315.66 ms │     no change │
│ QQuery 16 │     681.21 / 689.82 ±5.06 / 696.21 ms │    647.26 / 661.60 ±10.41 / 679.69 ms │     no change │
│ QQuery 17 │     698.44 / 705.11 ±4.89 / 713.26 ms │     659.46 / 672.11 ±9.57 / 687.84 ms │     no change │
│ QQuery 18 │ 1414.02 / 1431.87 ±17.11 / 1454.92 ms │ 1331.72 / 1358.61 ±26.63 / 1400.83 ms │ +1.05x faster │
│ QQuery 19 │       29.42 / 37.47 ±14.00 / 65.43 ms │       28.73 / 36.91 ±12.36 / 61.29 ms │     no change │
│ QQuery 20 │     533.00 / 539.75 ±7.32 / 553.20 ms │     518.60 / 524.41 ±5.32 / 534.26 ms │     no change │
│ QQuery 21 │     529.09 / 535.69 ±8.86 / 553.15 ms │     515.50 / 521.90 ±4.09 / 527.33 ms │     no change │
│ QQuery 22 │  1047.03 / 1052.44 ±3.50 / 1055.28 ms │   993.99 / 1003.73 ±6.90 / 1014.06 ms │     no change │
│ QQuery 23 │ 3268.88 / 3291.22 ±17.20 / 3312.71 ms │ 3104.86 / 3145.22 ±25.42 / 3179.37 ms │     no change │
│ QQuery 24 │        43.06 / 47.19 ±5.67 / 57.88 ms │        42.15 / 43.09 ±0.59 / 43.79 ms │ +1.10x faster │
│ QQuery 25 │     115.63 / 117.79 ±2.89 / 123.47 ms │     113.93 / 114.83 ±0.65 / 115.59 ms │     no change │
│ QQuery 26 │        43.16 / 46.83 ±5.22 / 57.09 ms │        42.48 / 46.78 ±5.95 / 58.41 ms │     no change │
│ QQuery 27 │     685.93 / 696.09 ±8.02 / 710.30 ms │     679.64 / 685.73 ±8.37 / 701.62 ms │     no change │
│ QQuery 28 │ 3162.42 / 3182.83 ±21.52 / 3222.69 ms │ 3092.06 / 3106.27 ±10.51 / 3119.40 ms │     no change │
│ QQuery 29 │        41.98 / 44.57 ±4.73 / 54.02 ms │      41.63 / 67.67 ±33.94 / 133.94 ms │  1.52x slower │
│ QQuery 30 │     328.91 / 342.36 ±7.88 / 353.59 ms │    309.63 / 321.58 ±11.67 / 342.93 ms │ +1.06x faster │
│ QQuery 31 │    305.73 / 326.55 ±11.42 / 340.43 ms │     297.97 / 308.61 ±5.95 / 314.07 ms │ +1.06x faster │
│ QQuery 32 │ 1052.90 / 1105.36 ±39.77 / 1159.88 ms │  978.03 / 1026.48 ±36.67 / 1090.52 ms │ +1.08x faster │
│ QQuery 33 │ 1637.28 / 1670.28 ±30.21 / 1716.89 ms │ 1542.35 / 1584.68 ±34.79 / 1629.86 ms │ +1.05x faster │
│ QQuery 34 │ 1670.30 / 1718.57 ±35.41 / 1773.08 ms │ 1538.23 / 1602.98 ±47.88 / 1686.04 ms │ +1.07x faster │
│ QQuery 35 │    316.62 / 346.51 ±37.56 / 415.03 ms │    300.77 / 312.78 ±12.06 / 335.70 ms │ +1.11x faster │
│ QQuery 36 │        77.47 / 82.19 ±5.75 / 93.23 ms │        73.59 / 80.77 ±6.66 / 90.04 ms │     no change │
│ QQuery 37 │        37.21 / 38.05 ±0.48 / 38.52 ms │        38.39 / 41.94 ±3.18 / 46.97 ms │  1.10x slower │
│ QQuery 38 │        43.62 / 47.45 ±5.58 / 58.29 ms │        41.56 / 44.65 ±1.85 / 46.73 ms │ +1.06x faster │
│ QQuery 39 │     161.89 / 167.54 ±5.52 / 176.06 ms │     152.02 / 162.59 ±8.72 / 173.23 ms │     no change │
│ QQuery 40 │        14.94 / 16.83 ±2.14 / 20.36 ms │        14.73 / 15.03 ±0.18 / 15.30 ms │ +1.12x faster │
│ QQuery 41 │        14.58 / 14.78 ±0.13 / 14.99 ms │        14.50 / 14.73 ±0.13 / 14.92 ms │     no change │
│ QQuery 42 │        13.91 / 17.01 ±5.61 / 28.22 ms │        13.71 / 15.27 ±2.64 / 20.54 ms │ +1.11x faster │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                     ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                     │ 21432.03ms │
│ Total Time (lift-selectivity-stats)   │ 20454.80ms │
│ Average Time (HEAD)                   │   498.42ms │
│ Average Time (lift-selectivity-stats) │   475.69ms │
│ Queries Faster                        │         19 │
│ Queries Slower                        │          3 │
│ Queries with No Change                │         21 │
│ Queries with Failure                  │          0 │
└───────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 110.0s
Peak memory 11.7 GiB
Avg memory 4.6 GiB
CPU user 1096.2s
CPU sys 83.0s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 105.0s
Peak memory 11.0 GiB
Avg memory 4.2 GiB
CPU user 1046.0s
CPU sys 76.4s
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 lift-selectivity-stats
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃                lift-selectivity-stats ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.21 / 4.03 ±5.51 / 15.05 ms │          1.22 / 4.10 ±5.62 / 15.33 ms │     no change │
│ QQuery 1  │        12.83 / 13.03 ±0.20 / 13.41 ms │        12.83 / 13.20 ±0.22 / 13.45 ms │     no change │
│ QQuery 2  │        36.14 / 37.25 ±1.11 / 39.22 ms │        36.79 / 37.04 ±0.19 / 37.33 ms │     no change │
│ QQuery 3  │        30.61 / 31.55 ±0.82 / 32.96 ms │        31.76 / 32.07 ±0.25 / 32.50 ms │     no change │
│ QQuery 4  │     231.35 / 237.36 ±3.16 / 240.38 ms │     231.69 / 234.49 ±1.54 / 236.10 ms │     no change │
│ QQuery 5  │     273.97 / 277.94 ±3.15 / 282.24 ms │     276.94 / 279.12 ±2.27 / 282.58 ms │     no change │
│ QQuery 6  │           1.24 / 1.40 ±0.23 / 1.85 ms │           1.27 / 1.42 ±0.24 / 1.88 ms │     no change │
│ QQuery 7  │        14.04 / 14.16 ±0.08 / 14.26 ms │        14.21 / 14.55 ±0.21 / 14.77 ms │     no change │
│ QQuery 8  │     330.34 / 332.24 ±1.57 / 334.72 ms │     332.65 / 336.06 ±2.43 / 339.70 ms │     no change │
│ QQuery 9  │     471.67 / 479.18 ±6.82 / 490.27 ms │    466.94 / 482.08 ±14.12 / 502.74 ms │     no change │
│ QQuery 10 │        72.29 / 73.84 ±2.55 / 78.93 ms │        72.05 / 73.96 ±2.24 / 77.48 ms │     no change │
│ QQuery 11 │        83.98 / 84.28 ±0.31 / 84.84 ms │        83.56 / 84.95 ±1.11 / 86.96 ms │     no change │
│ QQuery 12 │     276.87 / 284.29 ±6.61 / 294.47 ms │     276.25 / 280.78 ±3.58 / 286.41 ms │     no change │
│ QQuery 13 │    378.14 / 397.83 ±13.92 / 415.00 ms │     377.73 / 390.08 ±7.56 / 397.37 ms │     no change │
│ QQuery 14 │     288.36 / 294.91 ±3.86 / 299.95 ms │     288.69 / 296.09 ±6.54 / 306.71 ms │     no change │
│ QQuery 15 │     276.76 / 283.98 ±5.55 / 291.55 ms │     278.00 / 283.17 ±3.62 / 289.25 ms │     no change │
│ QQuery 16 │     619.75 / 629.95 ±8.53 / 641.42 ms │     618.14 / 635.59 ±9.70 / 645.28 ms │     no change │
│ QQuery 17 │     636.91 / 640.77 ±3.57 / 646.80 ms │     634.30 / 640.13 ±5.56 / 650.16 ms │     no change │
│ QQuery 18 │ 1275.85 / 1301.73 ±26.68 / 1343.39 ms │ 1283.29 / 1311.56 ±27.55 / 1344.68 ms │     no change │
│ QQuery 19 │        28.13 / 31.00 ±5.31 / 41.60 ms │        28.66 / 29.98 ±2.09 / 34.13 ms │     no change │
│ QQuery 20 │    515.80 / 529.75 ±12.31 / 547.09 ms │    513.35 / 533.36 ±13.64 / 555.47 ms │     no change │
│ QQuery 21 │     514.97 / 519.68 ±3.79 / 525.30 ms │     512.81 / 518.62 ±4.04 / 524.89 ms │     no change │
│ QQuery 22 │   991.46 / 1004.43 ±7.61 / 1015.26 ms │  996.36 / 1009.24 ±10.58 / 1026.28 ms │     no change │
│ QQuery 23 │ 3085.18 / 3116.85 ±30.57 / 3163.62 ms │ 3075.35 / 3139.21 ±49.04 / 3209.13 ms │     no change │
│ QQuery 24 │        41.54 / 46.28 ±7.49 / 61.11 ms │        41.46 / 42.24 ±0.52 / 43.03 ms │ +1.10x faster │
│ QQuery 25 │     112.89 / 115.39 ±3.49 / 122.24 ms │     113.08 / 115.27 ±2.07 / 117.98 ms │     no change │
│ QQuery 26 │        42.45 / 44.95 ±2.22 / 47.79 ms │       42.51 / 50.90 ±13.06 / 76.38 ms │  1.13x slower │
│ QQuery 27 │     673.60 / 682.92 ±6.49 / 690.58 ms │    675.05 / 683.22 ±11.55 / 705.93 ms │     no change │
│ QQuery 28 │ 3065.38 / 3079.40 ±10.98 / 3093.03 ms │ 3077.26 / 3107.41 ±33.11 / 3169.28 ms │     no change │
│ QQuery 29 │      41.58 / 65.11 ±21.41 / 104.01 ms │      41.64 / 56.64 ±22.84 / 101.07 ms │ +1.15x faster │
│ QQuery 30 │     302.20 / 312.04 ±7.43 / 324.51 ms │     308.14 / 317.30 ±8.15 / 332.42 ms │     no change │
│ QQuery 31 │    285.43 / 299.78 ±13.54 / 324.33 ms │    297.25 / 309.49 ±13.31 / 334.10 ms │     no change │
│ QQuery 32 │   969.90 / 997.76 ±22.44 / 1037.87 ms │   940.60 / 987.40 ±31.42 / 1029.15 ms │     no change │
│ QQuery 33 │ 1486.23 / 1543.50 ±56.25 / 1636.89 ms │  1508.03 / 1521.12 ±8.63 / 1531.07 ms │     no change │
│ QQuery 34 │ 1498.97 / 1553.05 ±37.86 / 1614.86 ms │ 1506.18 / 1531.86 ±23.92 / 1569.11 ms │     no change │
│ QQuery 35 │    292.86 / 315.96 ±30.82 / 374.64 ms │    289.33 / 354.71 ±74.67 / 483.83 ms │  1.12x slower │
│ QQuery 36 │        68.25 / 73.87 ±6.69 / 85.94 ms │        66.45 / 72.18 ±5.19 / 80.51 ms │     no change │
│ QQuery 37 │        36.89 / 40.04 ±3.11 / 45.88 ms │        35.49 / 37.54 ±2.89 / 43.25 ms │ +1.07x faster │
│ QQuery 38 │        42.87 / 45.32 ±2.04 / 48.53 ms │        41.88 / 44.36 ±2.98 / 50.03 ms │     no change │
│ QQuery 39 │     144.98 / 158.17 ±7.69 / 168.05 ms │    142.31 / 154.14 ±12.90 / 176.42 ms │     no change │
│ QQuery 40 │        14.60 / 15.73 ±1.95 / 19.63 ms │        15.07 / 15.58 ±0.59 / 16.71 ms │     no change │
│ QQuery 41 │        13.90 / 14.54 ±0.51 / 15.47 ms │        14.23 / 17.50 ±5.04 / 27.53 ms │  1.20x slower │
│ QQuery 42 │        13.79 / 16.97 ±3.55 / 22.62 ms │        13.77 / 15.77 ±3.42 / 22.59 ms │ +1.08x faster │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                     ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                     │ 20042.21ms │
│ Total Time (lift-selectivity-stats)   │ 20095.48ms │
│ Average Time (HEAD)                   │   466.10ms │
│ Average Time (lift-selectivity-stats) │   467.34ms │
│ Queries Faster                        │          4 │
│ Queries Slower                        │          3 │
│ Queries with No Change                │         36 │
│ Queries with Failure                  │          0 │
└───────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 105.0s
Peak memory 12.0 GiB
Avg memory 4.5 GiB
CPU user 1025.3s
CPU sys 71.7s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 105.0s
Peak memory 12.1 GiB
Avg memory 4.4 GiB
CPU user 1025.3s
CPU sys 72.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 lift-selectivity-stats
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃                lift-selectivity-stats ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │           5.65 / 6.17 ±0.83 / 7.81 ms │           5.70 / 6.22 ±0.82 / 7.84 ms │     no change │
│ QQuery 2  │        82.30 / 82.90 ±0.57 / 83.94 ms │        81.40 / 81.71 ±0.44 / 82.58 ms │     no change │
│ QQuery 3  │        30.09 / 30.39 ±0.36 / 31.09 ms │        29.83 / 30.08 ±0.15 / 30.28 ms │     no change │
│ QQuery 4  │     508.14 / 511.15 ±2.22 / 514.83 ms │     500.28 / 503.73 ±3.55 / 510.14 ms │     no change │
│ QQuery 5  │        52.61 / 53.26 ±0.52 / 54.15 ms │        52.08 / 52.77 ±0.59 / 53.76 ms │     no change │
│ QQuery 6  │        37.71 / 37.86 ±0.12 / 37.99 ms │        37.08 / 37.22 ±0.08 / 37.29 ms │     no change │
│ QQuery 7  │        95.50 / 96.06 ±0.34 / 96.52 ms │        94.04 / 95.67 ±1.96 / 99.54 ms │     no change │
│ QQuery 8  │        37.81 / 38.32 ±0.42 / 38.80 ms │        37.25 / 38.21 ±0.64 / 39.15 ms │     no change │
│ QQuery 9  │        53.63 / 55.66 ±1.91 / 59.08 ms │        53.58 / 54.95 ±1.08 / 56.24 ms │     no change │
│ QQuery 10 │        64.08 / 64.57 ±0.37 / 65.01 ms │        63.25 / 63.71 ±0.39 / 64.20 ms │     no change │
│ QQuery 11 │     316.97 / 319.88 ±2.09 / 322.03 ms │     311.56 / 315.97 ±4.71 / 321.75 ms │     no change │
│ QQuery 12 │        28.88 / 29.55 ±0.44 / 30.01 ms │        29.06 / 29.36 ±0.33 / 29.97 ms │     no change │
│ QQuery 13 │     120.70 / 121.18 ±0.24 / 121.36 ms │     119.36 / 120.37 ±0.73 / 121.02 ms │     no change │
│ QQuery 14 │     423.64 / 424.76 ±1.40 / 427.48 ms │     418.79 / 425.49 ±6.44 / 434.48 ms │     no change │
│ QQuery 15 │        59.59 / 60.29 ±0.67 / 61.44 ms │        58.86 / 59.53 ±0.79 / 60.97 ms │     no change │
│ QQuery 16 │           6.95 / 7.15 ±0.18 / 7.46 ms │           6.80 / 6.95 ±0.17 / 7.26 ms │     no change │
│ QQuery 17 │        81.53 / 84.05 ±2.96 / 88.95 ms │        80.46 / 82.00 ±1.26 / 84.28 ms │     no change │
│ QQuery 18 │     124.66 / 126.27 ±0.89 / 127.25 ms │     123.84 / 127.14 ±4.51 / 135.62 ms │     no change │
│ QQuery 19 │        42.55 / 43.09 ±0.54 / 44.08 ms │        42.05 / 42.30 ±0.18 / 42.61 ms │     no change │
│ QQuery 20 │        36.44 / 37.37 ±0.61 / 38.02 ms │        35.58 / 36.54 ±0.96 / 37.71 ms │     no change │
│ QQuery 21 │        18.00 / 18.22 ±0.22 / 18.56 ms │        17.85 / 18.15 ±0.20 / 18.41 ms │     no change │
│ QQuery 22 │        64.06 / 64.87 ±0.69 / 65.68 ms │        63.81 / 64.60 ±0.62 / 65.67 ms │     no change │
│ QQuery 23 │     351.83 / 357.41 ±4.00 / 362.75 ms │     351.67 / 353.64 ±1.89 / 356.92 ms │     no change │
│ QQuery 24 │     229.71 / 234.07 ±4.81 / 240.17 ms │     228.28 / 231.63 ±6.29 / 244.21 ms │     no change │
│ QQuery 25 │     111.80 / 115.45 ±4.55 / 124.29 ms │     110.91 / 112.60 ±1.19 / 114.52 ms │     no change │
│ QQuery 26 │        58.70 / 59.34 ±0.38 / 59.75 ms │        57.72 / 59.47 ±1.56 / 62.11 ms │     no change │
│ QQuery 27 │           6.42 / 6.61 ±0.18 / 6.92 ms │           6.48 / 6.58 ±0.17 / 6.93 ms │     no change │
│ QQuery 28 │        59.73 / 62.42 ±1.41 / 63.51 ms │        56.43 / 60.63 ±2.14 / 62.15 ms │     no change │
│ QQuery 29 │      99.08 / 100.57 ±1.30 / 102.30 ms │        97.59 / 98.57 ±0.74 / 99.72 ms │     no change │
│ QQuery 30 │        32.72 / 33.30 ±0.31 / 33.56 ms │        33.18 / 33.94 ±0.89 / 35.61 ms │     no change │
│ QQuery 31 │     114.49 / 115.39 ±0.52 / 116.05 ms │     113.72 / 114.20 ±0.54 / 115.24 ms │     no change │
│ QQuery 32 │        21.39 / 22.54 ±1.98 / 26.49 ms │        21.10 / 21.27 ±0.15 / 21.54 ms │ +1.06x faster │
│ QQuery 33 │        39.42 / 40.38 ±0.90 / 42.09 ms │        39.26 / 39.88 ±0.78 / 41.36 ms │     no change │
│ QQuery 34 │        10.26 / 10.70 ±0.53 / 11.74 ms │         9.84 / 10.18 ±0.20 / 10.48 ms │     no change │
│ QQuery 35 │        74.03 / 74.77 ±0.44 / 75.36 ms │        73.42 / 74.00 ±0.48 / 74.62 ms │     no change │
│ QQuery 36 │           5.89 / 6.08 ±0.22 / 6.52 ms │           5.93 / 6.03 ±0.16 / 6.35 ms │     no change │
│ QQuery 37 │           7.22 / 7.28 ±0.06 / 7.38 ms │           7.17 / 7.22 ±0.04 / 7.27 ms │     no change │
│ QQuery 38 │        64.97 / 65.81 ±1.26 / 68.31 ms │        63.34 / 63.83 ±0.64 / 65.07 ms │     no change │
│ QQuery 39 │        87.88 / 88.58 ±0.50 / 89.36 ms │        86.78 / 88.21 ±1.85 / 91.85 ms │     no change │
│ QQuery 40 │        24.23 / 24.51 ±0.26 / 24.96 ms │        23.99 / 24.46 ±0.33 / 24.95 ms │     no change │
│ QQuery 41 │        11.80 / 11.99 ±0.18 / 12.32 ms │        11.70 / 11.86 ±0.16 / 12.17 ms │     no change │
│ QQuery 42 │        25.03 / 25.44 ±0.37 / 25.97 ms │        24.32 / 24.81 ±0.40 / 25.40 ms │     no change │
│ QQuery 43 │           5.17 / 5.31 ±0.17 / 5.63 ms │           4.94 / 5.06 ±0.15 / 5.35 ms │     no change │
│ QQuery 44 │          9.75 / 9.90 ±0.16 / 10.10 ms │           9.24 / 9.42 ±0.16 / 9.71 ms │     no change │
│ QQuery 45 │        40.45 / 42.56 ±1.67 / 44.58 ms │        39.48 / 40.78 ±1.82 / 44.38 ms │     no change │
│ QQuery 46 │        12.31 / 12.92 ±0.67 / 14.20 ms │        11.85 / 12.37 ±0.36 / 12.87 ms │     no change │
│ QQuery 47 │     236.97 / 241.23 ±4.51 / 249.95 ms │     230.72 / 236.02 ±3.14 / 239.64 ms │     no change │
│ QQuery 48 │        97.88 / 98.22 ±0.18 / 98.38 ms │        96.56 / 97.52 ±0.71 / 98.54 ms │     no change │
│ QQuery 49 │        78.46 / 79.94 ±1.50 / 82.61 ms │        76.82 / 78.05 ±1.10 / 80.11 ms │     no change │
│ QQuery 50 │        59.71 / 60.05 ±0.28 / 60.50 ms │        60.04 / 60.30 ±0.26 / 60.80 ms │     no change │
│ QQuery 51 │       93.51 / 96.42 ±3.29 / 102.68 ms │        92.55 / 93.65 ±1.19 / 95.61 ms │     no change │
│ QQuery 52 │        24.97 / 25.12 ±0.16 / 25.41 ms │        24.68 / 26.13 ±2.73 / 31.59 ms │     no change │
│ QQuery 53 │        30.39 / 30.67 ±0.33 / 31.19 ms │        30.42 / 31.91 ±1.32 / 34.36 ms │     no change │
│ QQuery 54 │        56.81 / 57.15 ±0.23 / 57.47 ms │        56.29 / 57.24 ±0.53 / 57.90 ms │     no change │
│ QQuery 55 │        24.30 / 24.54 ±0.17 / 24.75 ms │        24.08 / 24.36 ±0.29 / 24.91 ms │     no change │
│ QQuery 56 │        40.04 / 40.38 ±0.28 / 40.84 ms │        39.64 / 40.14 ±0.33 / 40.47 ms │     no change │
│ QQuery 57 │     178.04 / 180.23 ±2.33 / 184.60 ms │     175.65 / 179.13 ±3.23 / 185.22 ms │     no change │
│ QQuery 58 │     118.34 / 120.58 ±2.05 / 124.09 ms │     117.79 / 118.97 ±1.55 / 122.02 ms │     no change │
│ QQuery 59 │     119.94 / 121.80 ±2.80 / 127.35 ms │     119.40 / 119.73 ±0.17 / 119.89 ms │     no change │
│ QQuery 60 │        41.44 / 42.02 ±0.49 / 42.69 ms │        40.42 / 40.84 ±0.30 / 41.14 ms │     no change │
│ QQuery 61 │        12.90 / 13.11 ±0.20 / 13.48 ms │        12.49 / 13.21 ±0.96 / 15.09 ms │     no change │
│ QQuery 62 │        46.80 / 47.32 ±0.46 / 48.18 ms │        46.71 / 46.92 ±0.25 / 47.41 ms │     no change │
│ QQuery 63 │        30.49 / 30.73 ±0.20 / 31.02 ms │        30.33 / 30.68 ±0.36 / 31.14 ms │     no change │
│ QQuery 64 │     414.12 / 419.73 ±6.40 / 431.85 ms │     410.94 / 414.23 ±4.28 / 422.53 ms │     no change │
│ QQuery 65 │     145.39 / 148.11 ±1.91 / 150.91 ms │     140.44 / 149.82 ±5.14 / 155.99 ms │     no change │
│ QQuery 66 │        80.31 / 81.01 ±0.67 / 82.26 ms │        79.97 / 80.66 ±0.52 / 81.54 ms │     no change │
│ QQuery 67 │     248.20 / 254.57 ±5.11 / 262.72 ms │     247.49 / 252.16 ±5.30 / 261.43 ms │     no change │
│ QQuery 68 │        12.35 / 12.59 ±0.15 / 12.82 ms │        12.62 / 16.00 ±5.93 / 27.86 ms │  1.27x slower │
│ QQuery 69 │        58.58 / 58.86 ±0.20 / 59.21 ms │        58.15 / 58.96 ±0.81 / 60.51 ms │     no change │
│ QQuery 70 │     105.70 / 110.33 ±7.42 / 125.11 ms │     107.85 / 110.16 ±2.35 / 114.35 ms │     no change │
│ QQuery 71 │        36.59 / 37.14 ±0.44 / 37.63 ms │        36.20 / 40.35 ±5.86 / 51.88 ms │  1.09x slower │
│ QQuery 72 │ 2144.31 / 2194.76 ±41.56 / 2242.39 ms │ 2155.36 / 2224.04 ±58.48 / 2302.94 ms │     no change │
│ QQuery 73 │         9.94 / 10.12 ±0.16 / 10.39 ms │         9.82 / 10.19 ±0.37 / 10.65 ms │     no change │
│ QQuery 74 │     180.27 / 183.50 ±4.97 / 193.32 ms │     176.96 / 178.56 ±0.92 / 179.73 ms │     no change │
│ QQuery 75 │     152.28 / 153.24 ±1.02 / 155.09 ms │     151.45 / 152.21 ±0.54 / 153.03 ms │     no change │
│ QQuery 76 │        38.09 / 40.80 ±3.72 / 47.95 ms │        36.47 / 40.19 ±5.94 / 52.00 ms │     no change │
│ QQuery 77 │        62.86 / 63.35 ±0.28 / 63.64 ms │        61.99 / 63.04 ±0.93 / 64.59 ms │     no change │
│ QQuery 78 │     189.17 / 191.62 ±2.44 / 195.97 ms │     187.47 / 194.37 ±8.30 / 210.18 ms │     no change │
│ QQuery 79 │        68.00 / 68.23 ±0.13 / 68.41 ms │        67.44 / 68.32 ±0.51 / 68.87 ms │     no change │
│ QQuery 80 │     100.56 / 104.43 ±5.11 / 114.48 ms │     100.61 / 104.09 ±4.23 / 112.34 ms │     no change │
│ QQuery 81 │        26.12 / 26.49 ±0.20 / 26.64 ms │        26.13 / 26.45 ±0.24 / 26.79 ms │     no change │
│ QQuery 82 │        17.12 / 17.31 ±0.15 / 17.47 ms │        16.67 / 17.01 ±0.36 / 17.64 ms │     no change │
│ QQuery 83 │        41.35 / 41.73 ±0.32 / 42.12 ms │        41.24 / 41.50 ±0.24 / 41.88 ms │     no change │
│ QQuery 84 │        31.05 / 31.23 ±0.10 / 31.32 ms │        30.71 / 30.97 ±0.20 / 31.18 ms │     no change │
│ QQuery 85 │     109.24 / 113.29 ±7.43 / 128.15 ms │     108.05 / 113.15 ±6.34 / 124.61 ms │     no change │
│ QQuery 86 │        26.04 / 26.35 ±0.20 / 26.66 ms │        25.71 / 26.04 ±0.38 / 26.68 ms │     no change │
│ QQuery 87 │        65.19 / 65.88 ±0.45 / 66.41 ms │        63.98 / 64.96 ±0.70 / 65.68 ms │     no change │
│ QQuery 88 │        64.74 / 67.76 ±5.28 / 78.31 ms │        64.16 / 65.56 ±2.08 / 69.67 ms │     no change │
│ QQuery 89 │        36.72 / 37.73 ±0.65 / 38.50 ms │        36.89 / 37.34 ±0.30 / 37.68 ms │     no change │
│ QQuery 90 │        17.80 / 17.92 ±0.11 / 18.09 ms │        17.64 / 17.69 ±0.03 / 17.74 ms │     no change │
│ QQuery 91 │        47.29 / 48.11 ±0.64 / 48.88 ms │        46.70 / 47.09 ±0.25 / 47.50 ms │     no change │
│ QQuery 92 │        30.44 / 31.04 ±0.41 / 31.73 ms │        30.34 / 31.41 ±0.72 / 32.53 ms │     no change │
│ QQuery 93 │        51.95 / 52.41 ±0.54 / 53.44 ms │        50.49 / 51.31 ±0.81 / 52.68 ms │     no change │
│ QQuery 94 │        39.64 / 40.07 ±0.36 / 40.62 ms │        38.76 / 39.90 ±0.76 / 40.76 ms │     no change │
│ QQuery 95 │        83.28 / 83.88 ±0.47 / 84.49 ms │        83.10 / 83.62 ±0.40 / 84.20 ms │     no change │
│ QQuery 96 │        24.86 / 25.04 ±0.19 / 25.39 ms │        24.69 / 24.96 ±0.25 / 25.30 ms │     no change │
│ QQuery 97 │        48.24 / 49.85 ±2.03 / 53.65 ms │        46.91 / 47.62 ±0.42 / 48.20 ms │     no change │
│ QQuery 98 │        43.34 / 44.13 ±0.55 / 44.95 ms │        44.24 / 44.51 ±0.37 / 45.21 ms │     no change │
│ QQuery 99 │        70.99 / 71.71 ±0.45 / 72.18 ms │        70.60 / 71.05 ±0.23 / 71.20 ms │     no change │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                     ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                     │ 10180.20ms │
│ Total Time (lift-selectivity-stats)   │ 10137.64ms │
│ Average Time (HEAD)                   │   102.83ms │
│ Average Time (lift-selectivity-stats) │   102.40ms │
│ Queries Faster                        │          1 │
│ Queries Slower                        │          2 │
│ Queries with No Change                │         96 │
│ Queries with Failure                  │          0 │
└───────────────────────────────────────┴────────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 55.0s
Peak memory 2.0 GiB
Avg memory 1.4 GiB
CPU user 233.6s
CPU sys 6.0s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 55.0s
Peak memory 2.0 GiB
Avg memory 1.3 GiB
CPU user 233.7s
CPU sys 6.2s
Peak spill 0 B

File an issue against this benchmark runner

@adriangb

adriangb commented Jul 3, 2026

Copy link
Copy Markdown
Contributor Author

Benchmark summary (adaptive filter reordering)

Ran two matched experiments on the PR head (a4563568f3), each pinning
baseline.ref == changed.ref to the same commit so the binary is identical and
only the config flag differs:

  • Feature: adaptive_filter_reordering off vs on (trigger)
  • A/A control: flag off on both sides (trigger) — establishes the per-suite noise floor.

I ran it twice; the control is what makes the numbers trustworthy, because the
per-query noise is large (tpch/tpcds swings up to ±22–27% between identical
binaries; clickbench has a ~4.6% systematic advantage to whichever side runs
second). Only deltas that clear that floor, with tight variance, and are absent
from the A/A control, count.

Wins (reproduced across both runs)

Query off → on Speedup
tpch Q6 ~132 → ~113 ms 1.17× (−15%)
tpch Q12 ~196 → ~138 ms 1.42× (−30%)

Both are multi-conjunct lineitem filters with a buried selective conjunct —
exactly the case this targets (BinaryExpr AND only short-circuits on the
leftmost conjunct). Deltas are 5–10× the run-to-run stddev and do not appear
in the A/A control.

No regressions

  • The apparent tpcds Q72 slowdown in the first run (+7.5%) flipped to −5%
    faster
    in the confirmation run — a sign-flip under the same flag means noise
    (2 s query, ±90 ms baseline variance). tpcds net is −0.9% (faster).
  • Every other "slower" flag falls inside its suite's A/A control noise floor, and
    the two runs disagree on which queries are slower.
  • clickbench: neutral within noise; the engaging multi-conjunct queries
    (Q21/Q22/Q36/Q38–40) are flat. The feature is off by default, and when a
    conjunction doesn't benefit from reordering it evaluates the written predicate
    as-is (no compact-once overhead).
  • 0 correctness failures across all runs (a conjunction's result is
    independent of evaluation order).

Net: two solid wins on the target case, no confirmed regressions, no
correctness changes.

adriangb and others added 4 commits July 10, 2026 13:00
…act-once core)

Add runtime, statistics-based conjunct reordering for `FilterExec`, off by
default behind `datafusion.execution.adaptive_filter_reordering`.

A conjunctive predicate is evaluated through a compact-once loop: conjunct
masks are AND-combined and the working batch is physically compacted to the
surviving rows once the accumulated mask is selective enough, so a selective
conjunct shrinks the batch the conjuncts after it must decode. This
compaction — not reordering a fused `BinaryExpr` AND, which does not compact
between conjuncts — is the source of the win, and reordering compounds it.

Each conjunct is timed and counted on the rows that reach it during a short
warm-up; the conjuncts are then ranked by rows discarded per nanosecond
(`(1 - pass_rate) / cost_per_row`) and, if the ranked order is materially
cheaper than the written one, it is adopted and frozen. Results, plan, and
EXPLAIN are unchanged; volatile predicates are never reordered.

This is the minimal core. Benchmarks (predicate_eval) confirm it captures the
"buried selective conjunct" wins (costsel_q01 ~-14%, width ~-12%) but also
that compact-once regresses cheap-predicate conjunctions (cardinality k8
~+37%) where the compaction overhead is not repaid — a guard that keeps the
plain fused evaluation for those is added in the next commit. Cross-stream
sharing, drift re-measurement, and confidence-interval statistics are later
layers.

Tested by unit tests (compact-once result-equivalence in any order, ranking,
expected-cost weighting, adopt/keep decisions) and an end-to-end
`adaptive_filter.slt` asserting identical results and EXPLAIN with the flag on
and off.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Lh7i9DyeFWuTFWjogrVNkb
A `FilterExec` is split across many partition streams, each seeing a slice of
the data. With per-stream warm-up, every stream pays its own measurement cost,
and when each stream is only a handful of batches long that warm-up is most of
its work — so the reordering win never materialises (and the warm-up overhead
shows up as a regression). Benchmarked: at 12 partitions the costsel_q01 win
collapsed from -67% (single stream) to -14%.

Share the measurements. `AdaptiveFilterShared` holds a per-conjunct stats pool
plus a settled-order epoch, common to every stream of one `FilterExec`. Each
stream measures a batch into a local accumulator and folds it into the pool;
the first stream to reach `WARMUP_BATCHES` pooled batches decides the order and
publishes it by bumping the epoch. Other streams poll the epoch with one
relaxed atomic load per batch and adopt the published order without paying
warm-up. The warm-up is thus paid ~once per query, not once per stream.

Restores the recovered win at default partitioning: width -56..-66%,
costsel_q01 -58%, cardinality k16 -26% (was -12%, -14%, -6% without sharing),
matching or beating the full design. Steady-state regressions on conjunctions
where compaction does not pay (neutral_q61 ~+11%, cardinality k4 ~+5%,
costsel_q02/q03 ~+3-5%) remain — a Fused-vs-CompactOnce guard addresses those
in the next commit.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Lh7i9DyeFWuTFWjogrVNkb
The compact-once loop wins by gating expensive conjuncts behind a selective
one, but its per-conjunct bookkeeping (mask AND, true_count, the compaction
copy) is pure overhead when there is nothing to gate. On a conjunction of
interchangeable predicates — several equally expensive, equally unselective
regexps, say — the warm-up settles on the written order (nothing to reorder)
yet still paid compact-once on every batch, regressing ~11% vs the plain
predicate (predicate_eval neutral_q61).

Guard it: compact-once is adopted only when the warm-up actually reorders the
conjuncts. When the settled order equals the written order, evaluate the
predicate as-is — byte-for-byte the flag-off path, zero overhead. Since every
real win reorders (a selective conjunct moves toward the front), this keeps the
full win while removing the no-reorder regression.

predicate_eval (vs flag off): neutral_q61 +11% -> ~0; wins preserved
(costsel_q01 -60%, width -58..-66%, cardinality k16 -31%). A small residual
remains on low-cardinality cheap conjunctions that do reorder (k4/k8 ~+3-4%),
where compaction's cost is not repaid by gating so few/cheap predicates; the
full champion/challenger arbiter regresses these more (~+10%), so a heavier
guard is not worth it here.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Lh7i9DyeFWuTFWjogrVNkb
Two points raised by @xudong963 that carried over into the compact-once
rewrite of the adaptive `FilterExec` conjunct evaluator:

- Replace `.expect("u32 live")` on the live-row index downcast with a
  let-else returning `internal_err!`, so a broken invariant surfaces as a
  clean error rather than a panic.
- Add a `debug_assert!` documenting that live-row indices are tracked in
  arrow's `u32` `filter`/`take` index space, making the `num_rows as u32`
  cast's precondition explicit.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01R1mvYrjFyTy2kbBoGrWzT6
@adriangb adriangb force-pushed the lift-selectivity-stats branch from a456356 to 511ed51 Compare July 10, 2026 18:15
adriangb and others added 4 commits July 10, 2026 16:59
@xudong963 noted the pooled adaptive-conjunct measurements live on the
`FilterExec` plan node and are reused by every `execute()` call, leaking
the learned conjunct order across independent executions.

Implement `ExecutionPlan::reset_state` for `FilterExec` — the sanctioned
mechanism for exactly this (its trait docs cite `DynamicFilterPhysicalExpr`;
`CrossJoinExec`, `HashJoinExec`, and `SortExec` use it for their build-side
/ dynamic-filter state). It returns a fresh node with a new
`AdaptiveFilterShared` (and fresh metrics), so a re-executed plan re-learns
from scratch, while preserving the still-valid predicate, input, and cached
plan properties. Reordering only ever affects performance, never results,
so this closes a perf-staleness gap, not a correctness bug.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01R1mvYrjFyTy2kbBoGrWzT6
- An empty batch no longer consumes the warm-up: a run of empty batches
  would settle the written order on no evidence, permanently disabling
  adaptation for the stream.
- A conjunct evaluated faster than the timer's resolution now clamps its
  cost to 1ns instead of dropping out of the ranking as unmeasured
  (which sorted the cheapest conjunct last — backwards).
- The u32::MAX row-count guard is now a real internal error instead of a
  debug_assert; in release the indices would have silently wrapped.

Also documents the known limitations of the one-shot, conditional-stats
settle (correlated conjuncts, no drift re-measurement) in the module doc.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01DgXQmKrKgre4epbcSxUHNo
The previous test stored the table as a single batch, so with
WARMUP_BATCHES = 8 the flag-on queries only ever exercised the measuring
path. Store 4000 rows as 64-row batches so the warm-up completes and the
settled (possibly reordered) path runs end-to-end, and add a query whose
conjunct produces NULLs to exercise the null-mask path through real SQL.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01DgXQmKrKgre4epbcSxUHNo
The config docs claimed reordering was the only observable difference;
in fact side effects of fallible predicates can change even when no
reorder is adopted, because while measuring (and after a reorder)
conjuncts are evaluated only on rows that survived the conjuncts before
them. Say so explicitly, with an example, and note in FilterExec that
Clone sharing the pooled measurements is deliberate.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01DgXQmKrKgre4epbcSxUHNo
@adriangb adriangb force-pushed the lift-selectivity-stats branch from 511ed51 to b42f823 Compare July 10, 2026 22:00
…atch strategy

Two review responses:

- AdaptiveConjunction::try_new no longer takes an `enabled` bool that
  short-circuits to None; whether the feature is on is FilterExec's
  policy, so the flag check moves to FilterExec::execute and try_new
  answers only the structural question (reorderable, non-volatile
  conjunction).
- The evaluator's per-batch behaviour is now observable: evaluate is a
  thin wrapper over evaluate_traced, which also reports the
  BatchStrategy used (Measure / Fused / Reordered). Two scenario tests
  exercise the input/output contract end to end — batches in, masks +
  strategy trace out — with per-conjunct costs injected by seeding the
  shared pool with synthetic measurements (the stand-in for a mocked
  clock), so which strategy gets adopted is deterministic: warm-up
  settles on a reorder for cheap-unselective + expensive-selective
  conjuncts, and on the written fused predicate for interchangeable
  ones.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01DgXQmKrKgre4epbcSxUHNo
@adriangb adriangb force-pushed the lift-selectivity-stats branch from 49dd3d8 to a991d38 Compare July 10, 2026 22:16
@adriangb

Copy link
Copy Markdown
Contributor Author

@alamb @xudong963 I think this is ready for review. The meat of the complexity is in adaptive_filter.rs, but the only public API impact is the config option. The rest we can change with time.

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

Labels

auto detected api change Auto detected API change common Related to common 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.

4 participants