Skip to content

Adaptive (runtime, stats-based) conjunct reordering for FilterExec — minimal core [benchmarking] - #14

Draft
adriangb wants to merge 3 commits into
adaptive-filter-basefrom
adaptive-filter-simple
Draft

Adaptive (runtime, stats-based) conjunct reordering for FilterExec — minimal core [benchmarking]#14
adriangb wants to merge 3 commits into
adaptive-filter-basefrom
adaptive-filter-simple

Conversation

@adriangb

Copy link
Copy Markdown
Owner

Draft for benchmarking only. A dwindled-down version of
apache#22698, split into a 3-commit stack.

What changes are included in this PR?

Runtime, statistics-based conjunct reordering for FilterExec, off by default
behind datafusion.execution.adaptive_filter_reordering, in three reviewable
commits:

  1. compact-once + reorder core — measure per-conjunct selectivity/cost in a
    warm-up, rank by rows-discarded-per-ns, evaluate via a compact-once loop in
    the better order.
  2. pool measurements across partition streams — streams learn as one; the
    first to settle publishes the order, others adopt it for one atomic load per
    batch.
  3. compact-once only in service of a reorder — when nothing reorders,
    evaluate the plain predicate (byte-for-byte the flag-off path).

~906 lines vs the full PR's 3024. Drops the A/B arbiter, concurrent registry,
Welford/CI stats, and drift re-thaw, which benchmarking showed are not needed
for the core win.

Are these changes tested?

Yes — unit tests (compact-once result-equivalence, ranking, cross-stream
sharing, the no-reorder guard) and an end-to-end adaptive_filter.slt asserting
identical results and EXPLAIN with the flag on and off.

Are there any user-facing changes?

One new experimental config option (default false). When enabled, the evaluation
order of a conjunction may change at runtime; results are unchanged.

🤖 Generated with Claude Code

https://claude.ai/code/session_01Lh7i9DyeFWuTFWjogrVNkb

adriangb and others added 3 commits June 28, 2026 17:51
…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
@github-actions github-actions Bot added documentation Improvements or additions to documentation physical-plan common sqllogictest labels Jun 29, 2026
@adriangb

Copy link
Copy Markdown
Owner Author

run benchmark tpch10 clickbench_partitioned tpcds

baseline:
  ref: adaptive-filter-simple
changed:
  ref: adaptive-filter-simple
  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/adriangb/datafusion
 * [new ref]         refs/pull/14/head -> adaptive-filter-simple
 * branch            main              -> FETCH_HEAD
Switched to branch 'adaptive-filter-simple'
ea2ffdbe4ec216a1a635c606d49431ebab0a4d50
From https://github.com/adriangb/datafusion
 * branch            refs/pull/14/head -> FETCH_HEAD
Already on 'adaptive-filter-simple'
Cloning into '/workspace/datafusion-base'...
From https://github.com/adriangb/datafusion
 * branch            refs/pull/14/head -> FETCH_HEAD
error: pathspec 'adaptive-filter-simple' did not match any file(s) known to git

File an issue against this benchmark runner

2 similar comments
@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/adriangb/datafusion
 * [new ref]         refs/pull/14/head -> adaptive-filter-simple
 * branch            main              -> FETCH_HEAD
Switched to branch 'adaptive-filter-simple'
ea2ffdbe4ec216a1a635c606d49431ebab0a4d50
From https://github.com/adriangb/datafusion
 * branch            refs/pull/14/head -> FETCH_HEAD
Already on 'adaptive-filter-simple'
Cloning into '/workspace/datafusion-base'...
From https://github.com/adriangb/datafusion
 * branch            refs/pull/14/head -> FETCH_HEAD
error: pathspec 'adaptive-filter-simple' did not match any file(s) known to git

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/adriangb/datafusion
 * [new ref]         refs/pull/14/head -> adaptive-filter-simple
 * branch            main              -> FETCH_HEAD
Switched to branch 'adaptive-filter-simple'
ea2ffdbe4ec216a1a635c606d49431ebab0a4d50
From https://github.com/adriangb/datafusion
 * branch            refs/pull/14/head -> FETCH_HEAD
Already on 'adaptive-filter-simple'
Cloning into '/workspace/datafusion-base'...
From https://github.com/adriangb/datafusion
 * branch            refs/pull/14/head -> FETCH_HEAD
error: pathspec 'adaptive-filter-simple' did not match any file(s) known to git

File an issue against this benchmark runner

@adriangb

Copy link
Copy Markdown
Owner Author

run benchmark tpch10 clickbench_partitioned tpcds

changed:
  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-c4836623581-745-sbc6f 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 adaptive-filter-simple (e3182a0) to ea2ffdb (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-c4836623581-743-nmgtt 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 adaptive-filter-simple (e3182a0) to ea2ffdb (merge-base) diff using: tpch10
Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4836623581-744-s4wtz 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 adaptive-filter-simple (e3182a0) to ea2ffdb (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 adaptive-filter-simple
--------------------
Benchmark tpch_sf10.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃                adaptive-filter-simple ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │     314.55 / 315.63 ±0.95 / 316.78 ms │     316.66 / 317.69 ±1.05 / 319.47 ms │     no change │
│ QQuery 2  │     107.84 / 110.24 ±1.24 / 111.36 ms │     108.60 / 110.60 ±1.71 / 113.23 ms │     no change │
│ QQuery 3  │     235.86 / 240.16 ±4.80 / 249.53 ms │     236.33 / 243.72 ±4.22 / 248.33 ms │     no change │
│ QQuery 4  │     112.53 / 114.97 ±1.60 / 116.51 ms │     118.03 / 119.37 ±1.44 / 121.82 ms │     no change │
│ QQuery 5  │     358.60 / 364.86 ±3.47 / 368.36 ms │     350.78 / 364.77 ±9.12 / 379.07 ms │     no change │
│ QQuery 6  │     125.11 / 127.44 ±2.50 / 131.76 ms │     106.65 / 108.81 ±1.44 / 111.13 ms │ +1.17x faster │
│ QQuery 7  │     469.35 / 478.93 ±6.16 / 484.75 ms │    464.80 / 478.16 ±11.30 / 493.63 ms │     no change │
│ QQuery 8  │     386.38 / 391.18 ±4.33 / 396.95 ms │     388.13 / 396.46 ±6.35 / 404.62 ms │     no change │
│ QQuery 9  │    554.80 / 569.80 ±16.03 / 600.32 ms │    566.53 / 575.89 ±14.02 / 603.74 ms │     no change │
│ QQuery 10 │     307.79 / 312.28 ±4.39 / 319.21 ms │     310.21 / 313.23 ±2.88 / 318.20 ms │     no change │
│ QQuery 11 │       85.69 / 93.10 ±8.88 / 109.91 ms │        83.67 / 88.29 ±4.00 / 95.64 ms │ +1.05x faster │
│ QQuery 12 │     177.77 / 185.19 ±6.82 / 198.07 ms │     126.93 / 133.10 ±7.45 / 147.50 ms │ +1.39x faster │
│ QQuery 13 │    292.57 / 303.86 ±10.09 / 321.17 ms │    294.89 / 304.92 ±10.02 / 317.19 ms │     no change │
│ QQuery 14 │     172.92 / 175.85 ±4.53 / 184.89 ms │     176.14 / 181.83 ±4.23 / 186.14 ms │     no change │
│ QQuery 15 │     309.26 / 313.70 ±3.22 / 318.33 ms │     320.94 / 325.56 ±3.92 / 330.97 ms │     no change │
│ QQuery 16 │        72.67 / 74.82 ±2.40 / 79.47 ms │        71.84 / 76.08 ±4.87 / 85.46 ms │     no change │
│ QQuery 17 │  633.41 / 755.02 ±222.82 / 1200.42 ms │     639.03 / 642.11 ±1.75 / 644.14 ms │ +1.18x faster │
│ QQuery 18 │ 1417.88 / 1445.44 ±19.52 / 1464.75 ms │ 1417.78 / 1443.48 ±24.56 / 1485.46 ms │     no change │
│ QQuery 19 │    248.65 / 262.55 ±11.70 / 279.32 ms │    248.99 / 262.47 ±11.77 / 277.27 ms │     no change │
│ QQuery 20 │     282.75 / 288.99 ±4.37 / 295.52 ms │     295.95 / 309.09 ±7.77 / 316.93 ms │  1.07x slower │
│ QQuery 21 │     683.14 / 684.73 ±1.54 / 687.38 ms │     671.15 / 682.75 ±8.33 / 692.15 ms │     no change │
│ QQuery 22 │        59.79 / 62.31 ±1.63 / 64.18 ms │        61.49 / 65.77 ±5.13 / 75.54 ms │  1.06x slower │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┓
┃ Benchmark Summary                     ┃           ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━┩
│ Total Time (HEAD)                     │ 7671.06ms │
│ Total Time (adaptive-filter-simple)   │ 7544.15ms │
│ Average Time (HEAD)                   │  348.68ms │
│ Average Time (adaptive-filter-simple) │  342.92ms │
│ Queries Faster                        │         4 │
│ Queries Slower                        │         2 │
│ Queries with No Change                │        16 │
│ Queries with Failure                  │         0 │
└───────────────────────────────────────┴───────────┘

Resource Usage

tpch10 — base (merge-base)

Metric Value
Wall time 40.0s
Peak memory 4.9 GiB
Avg memory 1.5 GiB
CPU user 386.8s
CPU sys 20.2s
Peak spill 0 B

tpch10 — branch

Metric Value
Wall time 40.0s
Peak memory 4.4 GiB
Avg memory 1.6 GiB
CPU user 384.4s
CPU sys 20.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 adaptive-filter-simple
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃                adaptive-filter-simple ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │           5.74 / 6.17 ±0.80 / 7.77 ms │           5.64 / 6.12 ±0.80 / 7.73 ms │     no change │
│ QQuery 2  │        82.09 / 82.53 ±0.37 / 83.05 ms │        81.18 / 81.75 ±0.30 / 82.00 ms │     no change │
│ QQuery 3  │        29.33 / 29.89 ±0.40 / 30.46 ms │        29.56 / 29.90 ±0.25 / 30.18 ms │     no change │
│ QQuery 4  │     486.21 / 491.62 ±3.46 / 495.65 ms │     485.46 / 491.73 ±3.73 / 495.84 ms │     no change │
│ QQuery 5  │        51.89 / 52.61 ±0.66 / 53.77 ms │        52.77 / 53.30 ±0.41 / 53.83 ms │     no change │
│ QQuery 6  │        36.47 / 36.99 ±0.29 / 37.28 ms │        36.76 / 37.17 ±0.39 / 37.89 ms │     no change │
│ QQuery 7  │        94.75 / 95.52 ±0.68 / 96.51 ms │        92.87 / 93.50 ±0.41 / 94.10 ms │     no change │
│ QQuery 8  │        36.72 / 38.39 ±2.11 / 42.50 ms │        37.31 / 39.04 ±3.20 / 45.44 ms │     no change │
│ QQuery 9  │        53.44 / 56.01 ±1.99 / 59.07 ms │        55.80 / 57.61 ±1.22 / 58.92 ms │     no change │
│ QQuery 10 │        64.34 / 64.66 ±0.29 / 65.14 ms │        63.94 / 64.06 ±0.10 / 64.18 ms │     no change │
│ QQuery 11 │     297.93 / 306.85 ±5.92 / 314.76 ms │     303.96 / 311.04 ±6.00 / 320.20 ms │     no change │
│ QQuery 12 │        28.54 / 29.34 ±0.51 / 29.97 ms │        28.69 / 29.36 ±0.36 / 29.77 ms │     no change │
│ QQuery 13 │     118.82 / 120.09 ±1.37 / 122.73 ms │     119.33 / 119.95 ±0.50 / 120.85 ms │     no change │
│ QQuery 14 │     418.48 / 421.76 ±2.14 / 424.79 ms │     416.41 / 419.43 ±2.70 / 423.72 ms │     no change │
│ QQuery 15 │        57.36 / 58.48 ±0.89 / 59.68 ms │        57.80 / 59.07 ±1.09 / 60.46 ms │     no change │
│ QQuery 16 │           7.05 / 7.16 ±0.14 / 7.43 ms │           6.86 / 7.02 ±0.22 / 7.44 ms │     no change │
│ QQuery 17 │        80.45 / 80.91 ±0.37 / 81.43 ms │        80.19 / 81.37 ±0.95 / 83.09 ms │     no change │
│ QQuery 18 │     126.83 / 128.32 ±1.73 / 131.18 ms │     124.25 / 127.93 ±3.02 / 132.75 ms │     no change │
│ QQuery 19 │        42.09 / 42.35 ±0.22 / 42.62 ms │        42.16 / 42.44 ±0.26 / 42.89 ms │     no change │
│ QQuery 20 │        35.24 / 35.64 ±0.56 / 36.74 ms │        35.60 / 36.57 ±0.56 / 37.26 ms │     no change │
│ QQuery 21 │        17.58 / 17.71 ±0.16 / 18.03 ms │        18.02 / 18.27 ±0.17 / 18.53 ms │     no change │
│ QQuery 22 │        62.29 / 65.74 ±4.82 / 75.30 ms │        63.79 / 64.80 ±1.18 / 67.10 ms │     no change │
│ QQuery 23 │     360.21 / 362.26 ±1.52 / 364.83 ms │     359.47 / 362.28 ±2.40 / 366.54 ms │     no change │
│ QQuery 24 │     226.93 / 228.83 ±2.98 / 234.76 ms │     228.22 / 231.19 ±4.41 / 239.90 ms │     no change │
│ QQuery 25 │     111.44 / 112.28 ±1.00 / 114.23 ms │     111.31 / 112.51 ±1.02 / 114.37 ms │     no change │
│ QQuery 26 │        57.40 / 60.45 ±3.37 / 66.94 ms │        56.58 / 57.80 ±1.24 / 59.99 ms │     no change │
│ QQuery 27 │           6.41 / 6.61 ±0.18 / 6.93 ms │           6.64 / 6.75 ±0.18 / 7.11 ms │     no change │
│ QQuery 28 │        61.38 / 62.04 ±0.71 / 63.40 ms │        59.80 / 60.68 ±0.64 / 61.45 ms │     no change │
│ QQuery 29 │        97.06 / 97.97 ±0.70 / 98.97 ms │        98.10 / 98.77 ±0.45 / 99.27 ms │     no change │
│ QQuery 30 │        32.93 / 36.04 ±3.33 / 41.29 ms │        32.72 / 34.11 ±1.48 / 36.89 ms │ +1.06x faster │
│ QQuery 31 │     112.08 / 113.62 ±1.40 / 116.20 ms │     112.14 / 113.05 ±0.51 / 113.62 ms │     no change │
│ QQuery 32 │        20.67 / 21.01 ±0.42 / 21.83 ms │        20.87 / 21.28 ±0.32 / 21.82 ms │     no change │
│ QQuery 33 │        37.71 / 38.39 ±0.40 / 38.94 ms │        38.36 / 39.33 ±0.95 / 40.96 ms │     no change │
│ QQuery 34 │        10.00 / 11.32 ±2.48 / 16.28 ms │        10.18 / 11.40 ±2.10 / 15.58 ms │     no change │
│ QQuery 35 │        73.06 / 74.19 ±1.28 / 76.65 ms │        73.40 / 73.91 ±0.57 / 75.00 ms │     no change │
│ QQuery 36 │           6.06 / 6.19 ±0.18 / 6.53 ms │           6.02 / 6.17 ±0.17 / 6.50 ms │     no change │
│ QQuery 37 │           7.19 / 7.26 ±0.12 / 7.49 ms │           7.06 / 7.22 ±0.12 / 7.39 ms │     no change │
│ QQuery 38 │        63.39 / 63.78 ±0.26 / 64.06 ms │        63.52 / 64.03 ±0.44 / 64.76 ms │     no change │
│ QQuery 39 │        86.84 / 88.35 ±2.74 / 93.83 ms │        86.86 / 87.80 ±1.45 / 90.69 ms │     no change │
│ QQuery 40 │        23.70 / 23.95 ±0.17 / 24.20 ms │        23.61 / 24.00 ±0.32 / 24.45 ms │     no change │
│ QQuery 41 │        11.73 / 11.87 ±0.16 / 12.18 ms │        11.60 / 11.80 ±0.20 / 12.16 ms │     no change │
│ QQuery 42 │        23.42 / 24.20 ±0.56 / 25.11 ms │        23.71 / 24.35 ±0.65 / 25.43 ms │     no change │
│ QQuery 43 │           5.02 / 5.11 ±0.16 / 5.43 ms │           5.12 / 5.20 ±0.12 / 5.44 ms │     no change │
│ QQuery 44 │           9.45 / 9.62 ±0.13 / 9.78 ms │           9.54 / 9.67 ±0.13 / 9.89 ms │     no change │
│ QQuery 45 │        38.12 / 38.92 ±0.89 / 40.08 ms │        37.77 / 38.42 ±0.37 / 38.80 ms │     no change │
│ QQuery 46 │        11.97 / 12.57 ±0.45 / 13.04 ms │        11.70 / 12.12 ±0.56 / 13.23 ms │     no change │
│ QQuery 47 │     233.13 / 237.69 ±3.20 / 240.89 ms │     235.14 / 239.13 ±3.26 / 244.39 ms │     no change │
│ QQuery 48 │        96.37 / 98.05 ±1.02 / 99.41 ms │       97.76 / 99.65 ±1.11 / 101.00 ms │     no change │
│ QQuery 49 │        75.57 / 76.59 ±0.89 / 78.18 ms │        77.23 / 78.13 ±0.60 / 79.06 ms │     no change │
│ QQuery 50 │        59.41 / 61.48 ±2.99 / 67.38 ms │        59.31 / 61.04 ±2.92 / 66.87 ms │     no change │
│ QQuery 51 │        98.89 / 99.47 ±0.33 / 99.79 ms │      99.18 / 100.94 ±1.73 / 104.23 ms │     no change │
│ QQuery 52 │        23.90 / 24.15 ±0.14 / 24.28 ms │        24.09 / 25.82 ±3.07 / 31.95 ms │  1.07x slower │
│ QQuery 53 │        29.56 / 30.88 ±2.19 / 35.23 ms │        30.39 / 31.50 ±1.77 / 35.03 ms │     no change │
│ QQuery 54 │        56.15 / 57.10 ±0.73 / 58.02 ms │        55.98 / 56.57 ±0.31 / 56.88 ms │     no change │
│ QQuery 55 │        23.62 / 23.84 ±0.17 / 23.98 ms │        23.50 / 23.69 ±0.18 / 24.03 ms │     no change │
│ QQuery 56 │        39.08 / 39.87 ±0.43 / 40.34 ms │        39.64 / 40.45 ±0.64 / 41.33 ms │     no change │
│ QQuery 57 │     180.34 / 181.92 ±1.99 / 185.67 ms │     179.06 / 182.75 ±2.50 / 186.85 ms │     no change │
│ QQuery 58 │     115.94 / 118.54 ±3.16 / 124.61 ms │     115.64 / 117.68 ±2.08 / 121.36 ms │     no change │
│ QQuery 59 │     119.29 / 119.79 ±0.41 / 120.44 ms │     119.61 / 120.21 ±0.66 / 121.24 ms │     no change │
│ QQuery 60 │        39.49 / 40.53 ±0.78 / 41.78 ms │        39.38 / 40.67 ±1.51 / 43.30 ms │     no change │
│ QQuery 61 │        12.45 / 12.67 ±0.22 / 13.09 ms │        12.66 / 12.80 ±0.20 / 13.19 ms │     no change │
│ QQuery 62 │        46.50 / 48.35 ±2.00 / 51.19 ms │        46.29 / 47.33 ±0.75 / 48.62 ms │     no change │
│ QQuery 63 │        29.97 / 30.41 ±0.33 / 30.93 ms │        30.15 / 30.43 ±0.33 / 31.08 ms │     no change │
│ QQuery 64 │     410.30 / 414.44 ±3.39 / 418.33 ms │     412.48 / 416.93 ±4.45 / 422.73 ms │     no change │
│ QQuery 65 │     148.19 / 150.91 ±2.67 / 155.78 ms │     148.72 / 151.14 ±2.07 / 154.12 ms │     no change │
│ QQuery 66 │        80.12 / 81.48 ±0.80 / 82.32 ms │        79.87 / 80.52 ±0.45 / 81.24 ms │     no change │
│ QQuery 67 │     240.96 / 246.70 ±4.38 / 253.39 ms │     239.66 / 246.39 ±6.85 / 259.29 ms │     no change │
│ QQuery 68 │        11.81 / 12.04 ±0.21 / 12.39 ms │        12.19 / 15.58 ±5.31 / 26.11 ms │  1.29x slower │
│ QQuery 69 │        58.60 / 62.02 ±4.55 / 70.44 ms │        58.12 / 58.56 ±0.35 / 59.05 ms │ +1.06x faster │
│ QQuery 70 │     105.01 / 108.56 ±4.37 / 116.38 ms │     105.22 / 108.03 ±2.28 / 111.42 ms │     no change │
│ QQuery 71 │        36.05 / 36.11 ±0.09 / 36.27 ms │        35.93 / 38.48 ±4.11 / 46.68 ms │  1.07x slower │
│ QQuery 72 │ 2187.75 / 2239.61 ±37.81 / 2297.08 ms │ 2145.29 / 2266.62 ±69.50 / 2338.80 ms │     no change │
│ QQuery 73 │         9.68 / 10.13 ±0.31 / 10.63 ms │         9.78 / 10.02 ±0.23 / 10.38 ms │     no change │
│ QQuery 74 │     169.71 / 170.90 ±1.18 / 173.10 ms │     172.46 / 176.12 ±3.75 / 183.26 ms │     no change │
│ QQuery 75 │    149.80 / 156.22 ±10.97 / 178.13 ms │     151.27 / 156.44 ±7.13 / 170.17 ms │     no change │
│ QQuery 76 │        35.05 / 35.54 ±0.26 / 35.84 ms │        36.61 / 38.41 ±2.49 / 43.16 ms │  1.08x slower │
│ QQuery 77 │        62.16 / 65.63 ±3.65 / 71.14 ms │        62.42 / 63.01 ±0.54 / 63.75 ms │     no change │
│ QQuery 78 │     184.94 / 190.63 ±3.56 / 195.25 ms │     186.55 / 190.83 ±3.86 / 197.57 ms │     no change │
│ QQuery 79 │        67.41 / 67.83 ±0.33 / 68.27 ms │        67.73 / 68.19 ±0.35 / 68.77 ms │     no change │
│ QQuery 80 │      99.59 / 100.26 ±0.42 / 100.79 ms │     100.91 / 102.66 ±1.97 / 106.27 ms │     no change │
│ QQuery 81 │        26.20 / 28.75 ±4.57 / 37.89 ms │        26.25 / 26.57 ±0.24 / 26.85 ms │ +1.08x faster │
│ QQuery 82 │        16.52 / 16.87 ±0.32 / 17.44 ms │        16.70 / 16.96 ±0.30 / 17.54 ms │     no change │
│ QQuery 83 │        40.61 / 41.14 ±0.37 / 41.68 ms │        40.44 / 40.88 ±0.26 / 41.18 ms │     no change │
│ QQuery 84 │        30.56 / 30.92 ±0.25 / 31.34 ms │        30.92 / 31.07 ±0.14 / 31.28 ms │     no change │
│ QQuery 85 │     107.83 / 112.68 ±6.24 / 124.25 ms │     107.96 / 111.92 ±3.44 / 116.11 ms │     no change │
│ QQuery 86 │        25.07 / 25.36 ±0.16 / 25.55 ms │        25.41 / 25.59 ±0.17 / 25.87 ms │     no change │
│ QQuery 87 │        63.88 / 64.29 ±0.53 / 65.19 ms │        63.99 / 64.42 ±0.38 / 64.92 ms │     no change │
│ QQuery 88 │        63.37 / 63.76 ±0.34 / 64.22 ms │        64.66 / 65.06 ±0.25 / 65.35 ms │     no change │
│ QQuery 89 │        36.08 / 38.64 ±2.95 / 43.79 ms │        36.38 / 37.11 ±0.56 / 37.70 ms │     no change │
│ QQuery 90 │        17.35 / 17.48 ±0.09 / 17.63 ms │        17.56 / 17.79 ±0.21 / 18.14 ms │     no change │
│ QQuery 91 │        46.36 / 47.08 ±0.56 / 47.86 ms │        46.19 / 46.62 ±0.42 / 47.41 ms │     no change │
│ QQuery 92 │        29.48 / 30.37 ±0.70 / 31.38 ms │        29.48 / 30.20 ±0.47 / 30.97 ms │     no change │
│ QQuery 93 │        49.65 / 51.08 ±0.83 / 52.21 ms │        51.15 / 52.50 ±1.21 / 53.92 ms │     no change │
│ QQuery 94 │        39.16 / 40.75 ±1.69 / 43.87 ms │        38.32 / 38.89 ±0.37 / 39.35 ms │     no change │
│ QQuery 95 │        81.51 / 84.09 ±3.29 / 90.48 ms │        82.32 / 82.71 ±0.33 / 83.14 ms │     no change │
│ QQuery 96 │        24.58 / 24.78 ±0.23 / 25.22 ms │        24.74 / 24.86 ±0.13 / 25.06 ms │     no change │
│ QQuery 97 │        54.62 / 55.34 ±0.54 / 55.99 ms │        55.15 / 57.47 ±2.11 / 60.60 ms │     no change │
│ QQuery 98 │        43.25 / 44.52 ±0.96 / 45.74 ms │        42.65 / 43.66 ±1.01 / 45.43 ms │     no change │
│ QQuery 99 │        71.02 / 71.71 ±0.73 / 72.69 ms │        70.34 / 71.16 ±0.44 / 71.57 ms │     no change │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                     ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                     │ 10125.55ms │
│ Total Time (adaptive-filter-simple)   │ 10167.45ms │
│ Average Time (HEAD)                   │   102.28ms │
│ Average Time (adaptive-filter-simple) │   102.70ms │
│ Queries Faster                        │          3 │
│ Queries Slower                        │          4 │
│ Queries with No Change                │         92 │
│ Queries with Failure                  │          0 │
└───────────────────────────────────────┴────────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 55.0s
Peak memory 1.8 GiB
Avg memory 1.2 GiB
CPU user 232.0s
CPU sys 5.8s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 55.0s
Peak memory 1.9 GiB
Avg memory 1.3 GiB
CPU user 231.8s
CPU sys 5.9s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

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

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

Comparing HEAD and adaptive-filter-simple
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                       HEAD ┃                     adaptive-filter-simple ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │               1.25 / 4.11 ±5.57 / 15.25 ms │               1.21 / 4.06 ±5.53 / 15.11 ms │     no change │
│ QQuery 1  │             12.74 / 13.09 ±0.21 / 13.29 ms │             12.84 / 13.19 ±0.38 / 13.92 ms │     no change │
│ QQuery 2  │             35.68 / 35.98 ±0.34 / 36.56 ms │             36.04 / 36.43 ±0.41 / 37.12 ms │     no change │
│ QQuery 3  │             30.97 / 31.49 ±0.82 / 33.13 ms │             30.68 / 31.39 ±0.43 / 31.90 ms │     no change │
│ QQuery 4  │      1728.34 / 1797.00 ±40.79 / 1852.18 ms │      1686.86 / 1745.69 ±55.02 / 1846.17 ms │     no change │
│ QQuery 5  │     1731.94 / 1871.59 ±172.42 / 2202.77 ms │      1659.61 / 1755.53 ±55.76 / 1830.99 ms │ +1.07x faster │
│ QQuery 6  │             1.30 / 10.07 ±17.05 / 44.17 ms │                1.30 / 1.46 ±0.23 / 1.91 ms │ +6.90x faster │
│ QQuery 7  │             14.08 / 14.42 ±0.18 / 14.61 ms │            14.26 / 28.64 ±28.49 / 85.62 ms │  1.99x slower │
│ QQuery 8  │      2111.99 / 2144.50 ±32.18 / 2204.76 ms │      2054.38 / 2169.00 ±86.71 / 2306.95 ms │     no change │
│ QQuery 9  │         505.39 / 527.49 ±23.60 / 573.01 ms │         481.94 / 510.74 ±20.02 / 537.63 ms │     no change │
│ QQuery 10 │           77.38 / 94.84 ±22.35 / 138.12 ms │           77.21 / 87.20 ±15.18 / 117.30 ms │ +1.09x faster │
│ QQuery 11 │             91.05 / 92.53 ±1.20 / 94.07 ms │             87.95 / 90.50 ±1.78 / 93.35 ms │     no change │
│ QQuery 12 │      1702.14 / 1807.59 ±87.65 / 1913.92 ms │     1751.44 / 1896.26 ±134.25 / 2108.51 ms │     no change │
│ QQuery 13 │         656.54 / 716.88 ±79.37 / 872.82 ms │         619.96 / 707.49 ±86.15 / 854.36 ms │     no change │
│ QQuery 14 │         541.63 / 559.64 ±19.23 / 591.12 ms │         550.16 / 569.18 ±17.26 / 599.85 ms │     no change │
│ QQuery 15 │      1936.84 / 2003.22 ±60.55 / 2074.14 ms │      1904.92 / 2013.31 ±89.75 / 2175.74 ms │     no change │
│ QQuery 16 │     4256.79 / 4380.35 ±149.94 / 4659.19 ms │     4386.64 / 4498.26 ±125.30 / 4653.03 ms │     no change │
│ QQuery 17 │     4130.79 / 4392.53 ±178.04 / 4590.65 ms │     4357.42 / 4486.62 ±130.69 / 4662.14 ms │     no change │
│ QQuery 18 │  17721.34 / 18558.44 ±450.58 / 19084.67 ms │  18014.42 / 18433.31 ±318.56 / 18897.74 ms │     no change │
│ QQuery 19 │             28.89 / 32.44 ±3.23 / 37.05 ms │             28.66 / 29.68 ±0.86 / 30.58 ms │ +1.09x faster │
│ QQuery 20 │         516.86 / 528.37 ±11.53 / 547.30 ms │          519.77 / 523.50 ±3.65 / 529.63 ms │     no change │
│ QQuery 21 │         510.73 / 523.71 ±10.80 / 536.01 ms │          517.50 / 521.62 ±3.10 / 524.92 ms │     no change │
│ QQuery 22 │         991.35 / 997.40 ±5.74 / 1005.69 ms │         986.95 / 994.54 ±6.69 / 1006.32 ms │     no change │
│ QQuery 23 │      3105.26 / 3163.90 ±50.92 / 3238.48 ms │      3094.52 / 3129.25 ±27.56 / 3162.34 ms │     no change │
│ QQuery 24 │             41.39 / 43.34 ±1.48 / 45.92 ms │             41.70 / 54.48 ±9.57 / 67.99 ms │  1.26x slower │
│ QQuery 25 │          111.47 / 115.92 ±5.59 / 126.03 ms │          112.55 / 113.87 ±0.71 / 114.64 ms │     no change │
│ QQuery 26 │             42.10 / 47.69 ±8.43 / 64.27 ms │             42.53 / 44.56 ±2.49 / 49.28 ms │ +1.07x faster │
│ QQuery 27 │          675.20 / 684.41 ±8.17 / 698.32 ms │          681.23 / 684.17 ±2.41 / 688.51 ms │     no change │
│ QQuery 28 │     3463.75 / 3763.17 ±196.35 / 3936.68 ms │     3495.28 / 3626.14 ±100.84 / 3736.68 ms │     no change │
│ QQuery 29 │            40.72 / 63.12 ±12.34 / 77.65 ms │             41.61 / 41.96 ±0.49 / 42.90 ms │ +1.50x faster │
│ QQuery 30 │         569.40 / 591.76 ±13.56 / 611.08 ms │          586.58 / 596.10 ±8.98 / 610.81 ms │     no change │
│ QQuery 31 │         288.30 / 311.29 ±22.88 / 353.47 ms │          295.33 / 307.52 ±9.63 / 320.20 ms │     no change │
│ QQuery 32 │        965.49 / 994.53 ±31.50 / 1048.60 ms │       976.93 / 1047.01 ±53.58 / 1125.60 ms │  1.05x slower │
│ QQuery 33 │ 26110.84 / 28334.73 ±1968.37 / 31810.74 ms │ 24731.78 / 27777.64 ±2132.58 / 30559.58 ms │     no change │
│ QQuery 34 │ 27557.64 / 29738.00 ±1708.82 / 31720.43 ms │ 28060.65 / 29438.34 ±1254.44 / 31170.14 ms │     no change │
│ QQuery 35 │     1066.94 / 1170.99 ±165.55 / 1501.25 ms │      1042.57 / 1098.15 ±52.97 / 1198.62 ms │ +1.07x faster │
│ QQuery 36 │         155.28 / 175.52 ±12.94 / 193.99 ms │          172.07 / 180.00 ±6.14 / 189.09 ms │     no change │
│ QQuery 37 │           39.01 / 57.66 ±28.14 / 112.85 ms │            37.64 / 46.91 ±15.08 / 77.00 ms │ +1.23x faster │
│ QQuery 38 │             42.53 / 44.68 ±1.33 / 46.63 ms │             43.08 / 44.85 ±1.23 / 46.53 ms │     no change │
│ QQuery 39 │          195.08 / 204.54 ±7.50 / 213.90 ms │          190.90 / 196.86 ±4.86 / 204.03 ms │     no change │
│ QQuery 40 │             14.84 / 15.23 ±0.39 / 15.93 ms │             14.84 / 15.35 ±0.49 / 15.99 ms │     no change │
│ QQuery 41 │             14.16 / 14.44 ±0.21 / 14.78 ms │             14.52 / 15.96 ±2.46 / 20.86 ms │  1.11x slower │
│ QQuery 42 │             13.74 / 15.56 ±3.46 / 22.48 ms │             13.67 / 14.16 ±0.30 / 14.62 ms │ +1.10x faster │
└───────────┴────────────────────────────────────────────┴────────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━┓
┃ Benchmark Summary                     ┃             ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━┩
│ Total Time (HEAD)                     │ 110688.14ms │
│ Total Time (adaptive-filter-simple)   │ 109620.89ms │
│ Average Time (HEAD)                   │   2574.14ms │
│ Average Time (adaptive-filter-simple) │   2549.32ms │
│ Queries Faster                        │           9 │
│ Queries Slower                        │           4 │
│ Queries with No Change                │          30 │
│ Queries with Failure                  │           0 │
└───────────────────────────────────────┴─────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 555.1s
Peak memory 11.6 GiB
Avg memory 6.6 GiB
CPU user 4973.4s
CPU sys 338.2s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 550.1s
Peak memory 11.7 GiB
Avg memory 6.6 GiB
CPU user 4971.6s
CPU sys 333.8s
Peak spill 0 B

File an issue against this benchmark runner

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

Labels

common documentation Improvements or additions to documentation physical-plan sqllogictest

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants