Skip to content

perf: elide redundant HashJoin dynamic-filter membership predicates for contiguous integer domains - #23934

Draft
hhhizzz wants to merge 18 commits into
apache:mainfrom
hhhizzz:codex/q39-contiguous-dynamic-filter
Draft

perf: elide redundant HashJoin dynamic-filter membership predicates for contiguous integer domains#23934
hhhizzz wants to merge 18 commits into
apache:mainfrom
hhhizzz:codex/q39-contiguous-dynamic-filter

Conversation

@hhhizzz

@hhhizzz hhhizzz commented Jul 28, 2026

Copy link
Copy Markdown
Contributor

Which issue does this PR close?

Rationale for this change

HashJoin dynamic filters normally combine inclusive min/max bounds with exact
membership:

min <= probe_key
AND probe_key <= max
AND probe_key IN (build_keys)

Keeping both predicates is useful for a gapped build domain: bounds provide
cheap short-circuiting and statistics pruning, while membership removes values
in the gaps.

For a single-column integer domain, however, membership is exactly equivalent
to the bounds when:

distinct_key_count == max - min + 1

The distinct build keys are a subset of the inclusive [min, max] integer
interval. If the two sets have the same cardinality, they are equal.
Evaluating an InListExpr or HashTableLookupExpr after that proof adds
per-row CPU cost without rejecting any additional probe rows.

This PR canonicalizes that exact case to bounds only. It deliberately preserves
the bounds for their pruning and short-circuit value, and retains the existing
bounds AND membership form whenever equivalence cannot be proven.

This differs from #23701: that PR proposes skipping membership based on filter
placement when pushdown_filters=false. This change is based on domain
equivalence and remains applicable when Arrow RowFilter pushdown is enabled.

What changes are included in this PR?

  • Carry the build hash map's existing distinct-key count with the InList
    pushdown strategy; map-backed strategies reuse Map::num_of_distinct_key().
  • For a single, same-typed integer bound, compare the inclusive range
    cardinality with the distinct-key count using a widened u128 comparison.
  • Skip construction of the redundant InListExpr or
    HashTableLookupExpr after the proof succeeds, while preserving the bounds
    predicate.
  • Apply the same proof to CollectLeft filters and to each reported
    Partitioned filter branch. The count and bounds always describe the same
    build-key set.
  • Add the dynamic_filter_membership_predicates_elided metric, incremented once
    for each membership predicate omitted during filter finalization.
  • Fail closed for gapped domains, multiple join keys, non-integer or mismatched
    bound types, missing or reversed bounds, and ranges whose cardinality cannot
    be represented safely.
  • Propagate dynamic-filter expression construction errors in both CollectLeft
    and Partitioned modes.
  • Replace an unreachable partition-filter fallback with an explicit invariant:
    a partition reported as non-empty must produce a filter.

There is no additional scan or deduplication pass, no new configuration, no
Arrow dependency change, and no public API change.

Are these changes tested?

Yes. Focused unit coverage verifies that:

  • contiguous and duplicate-containing InList inputs produce bounds only;
  • gapped InList inputs retain membership;
  • contiguous map-backed (ArrayMap) inputs omit the resulting
    HashTableLookupExpr;
  • gapped map-backed (ArrayMap) inputs retain the resulting
    HashTableLookupExpr;
  • signed ranges crossing zero are handled;
  • multi-column, non-integer, mismatched-type, reversed, and extreme ranges fail
    closed;
  • missing and null bounds fail closed;
  • bound conversion failures fail closed;
  • membership expression construction errors propagate in both CollectLeft
    and Partitioned modes;
  • the elision metric increments only when the proof succeeds;
  • existing partitioned CASE, bounds-only, and cancellation composition tests
    continue to pass.

The following checks pass:

cargo fmt --all -- --check
cargo clippy -p datafusion-physical-plan --lib --all-features -- -D warnings
cargo test -p datafusion-physical-plan joins::hash_join::shared_bounds::tests --lib

The focused test run completed with 16 passed and 0 failed.

End-to-end benchmark

I compared the merge-base baseline with the current PR head on TPC-DS SF10,
all 99 queries, using ten paired release rounds with alternating AB/BA order.
This is non-formal evidence collected through the datafusion-exp Kubernetes
runner.

Both arms used the same Arrow revision and the same verified tpcds-sf10-v1
dataset. Parquet pushdown filters, filter reordering, and pruning were enabled
for every run. Each arm used a 24 CPU / 48 GiB Pod, 24 partitions, batch size
8192, and one iteration per query.

Component Baseline Candidate
DataFusion b4cde12a85b1201cb6addd8d328d30f4c5691507 c11a51282d12b84f00738485a300cfab96fb9530
Arrow fd2a99e6de6ea0f8a03ee20782cf852726d996cb same

Negative changes favor the candidate.

Metric Change 95% CI
Full-suite workload-weighted total -3.45% [-3.99%, -2.80%]
Equal-query geomean -4.16% [-4.58%, -3.76%]
Q39 geomean -4.18% [-6.20%, -2.11%]
Q39 paired mean delta -102.27 ms [-153.75, -63.57] ms

The candidate was faster in all ten paired full-suite rounds. The guarded
performance comparison passed, and no query crossed the configured material
regression threshold.

Two small-query slowdown signals remain visible: Q8 increased by 11.12 ms
(+7.74%), and Q73 increased by 3.27 ms (+7.36%). Neither is a material
full-suite regression under the predeclared relative-plus-absolute guard.

All 1,980 query executions completed successfully and row counts matched.
The order-sensitive capture reported indeterminate mismatches for Q31, Q65,
and Q71 because their SQL ordering is not total. The same instability occurs
within the baseline (and the same two states occur on both arms for Q65/Q71);
there is no candidate-only result state. An order-independent result digest is
needed before treating these queries as a strict correctness pass.

@github-actions github-actions Bot added the physical-plan Changes to the physical-plan crate label Jul 28, 2026
@hhhizzz
hhhizzz force-pushed the codex/q39-contiguous-dynamic-filter branch from 3a4c7b3 to 118fd47 Compare July 28, 2026 07:54
@github-actions github-actions Bot added the sqllogictest SQL Logic Tests (.slt) label Jul 28, 2026
@codecov-commenter

codecov-commenter commented Jul 28, 2026

Copy link
Copy Markdown

Codecov Report

❌ Patch coverage is 97.91667% with 15 lines in your changes missing coverage. Please review.
✅ Project coverage is 81.16%. Comparing base (bbb552f) to head (c1f7b9b).
⚠️ Report is 4 commits behind head on main.

Files with missing lines Patch % Lines
datafusion/datasource-parquet/src/push_decoder.rs 71.11% 13 Missing ⚠️
datafusion/datasource-parquet/src/opener/mod.rs 98.66% 0 Missing and 1 partial ⚠️
...physical-plan/src/joins/hash_join/shared_bounds.rs 99.80% 1 Missing ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##             main   #23934      +/-   ##
==========================================
+ Coverage   81.14%   81.16%   +0.01%     
==========================================
  Files        1110     1112       +2     
  Lines      386137   387547    +1410     
  Branches   386137   387547    +1410     
==========================================
+ Hits       313347   314567    +1220     
- Misses      54324    54488     +164     
- Partials    18466    18492      +26     

☔ View full report in Codecov by Harness.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@hhhizzz
hhhizzz marked this pull request as ready for review July 28, 2026 13:50
@hhhizzz
hhhizzz force-pushed the codex/q39-contiguous-dynamic-filter branch from 5da6851 to e1e6e19 Compare July 30, 2026 05:22
@Dandandan

Copy link
Copy Markdown
Contributor

run benchmarks

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c5140578100-1331-8f8q4 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 codex/q39-contiguous-dynamic-filter (05b8e8c) to 6636d6b (merge-base) diff

Run configuration
run benchmark 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-c5140578100-1332-6ld66 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 codex/q39-contiguous-dynamic-filter (05b8e8c) to 6636d6b (merge-base) diff

Run configuration
run benchmark 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-c5140578100-1333-sbhws 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 codex/q39-contiguous-dynamic-filter (05b8e8c) to 6636d6b (merge-base) diff

Run configuration
run benchmark tpch

Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

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

Comparing codex/q39-contiguous-dynamic-filter (05b8e8c) to 6636d6b (merge-base) diff

Run configuration
run benchmark tpch
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 codex_q39-contiguous-dynamic-filter
--------------------
Benchmark tpch_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┓
┃ Query     ┃     HEAD ┃ codex_q39-contiguous-dynamic-filter ┃       Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━┩
│ QQuery 1  │ 37.85 ms │                            38.03 ms │    no change │
│ QQuery 2  │ 19.19 ms │                            18.80 ms │    no change │
│ QQuery 3  │ 30.14 ms │                            30.21 ms │    no change │
│ QQuery 4  │ 17.33 ms │                            17.33 ms │    no change │
│ QQuery 5  │ 39.45 ms │                            40.01 ms │    no change │
│ QQuery 6  │ 16.02 ms │                            16.21 ms │    no change │
│ QQuery 7  │ 43.57 ms │                            43.71 ms │    no change │
│ QQuery 8  │ 42.32 ms │                            44.05 ms │    no change │
│ QQuery 9  │ 48.95 ms │                            51.13 ms │    no change │
│ QQuery 10 │ 41.75 ms │                            45.60 ms │ 1.09x slower │
│ QQuery 11 │ 13.26 ms │                            14.69 ms │ 1.11x slower │
│ QQuery 12 │ 24.00 ms │                            25.19 ms │    no change │
│ QQuery 13 │ 32.41 ms │                            34.46 ms │ 1.06x slower │
│ QQuery 14 │ 23.30 ms │                            25.17 ms │ 1.08x slower │
│ QQuery 15 │ 30.85 ms │                            33.42 ms │ 1.08x slower │
│ QQuery 16 │ 13.68 ms │                            14.60 ms │ 1.07x slower │
│ QQuery 17 │ 70.15 ms │                            69.65 ms │    no change │
│ QQuery 18 │ 57.67 ms │                            60.07 ms │    no change │
│ QQuery 19 │ 32.75 ms │                            32.76 ms │    no change │
│ QQuery 20 │ 31.55 ms │                            31.50 ms │    no change │
│ QQuery 21 │ 53.86 ms │                            54.39 ms │    no change │
│ QQuery 22 │ 13.70 ms │                            14.05 ms │    no change │
└───────────┴──────────┴─────────────────────────────────────┴──────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━┓
┃ Benchmark Summary                                  ┃          ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━┩
│ Total Time (HEAD)                                  │ 733.76ms │
│ Total Time (codex_q39-contiguous-dynamic-filter)   │ 755.05ms │
│ Average Time (HEAD)                                │  33.35ms │
│ Average Time (codex_q39-contiguous-dynamic-filter) │  34.32ms │
│ Queries Faster                                     │        0 │
│ Queries Slower                                     │        6 │
│ Queries with No Change                             │       16 │
│ Queries with Failure                               │        0 │
└────────────────────────────────────────────────────┴──────────┘

Distribution per query (min / mean ±stddev / max):

Comparing HEAD and codex_q39-contiguous-dynamic-filter
--------------------
Benchmark tpch_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┓
┃ Query     ┃                           HEAD ┃ codex_q39-contiguous-dynamic-filter ┃       Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━┩
│ QQuery 1  │ 37.85 / 39.18 ±1.22 / 40.78 ms │      38.03 / 39.10 ±1.03 / 40.55 ms │    no change │
│ QQuery 2  │ 19.19 / 19.78 ±0.57 / 20.77 ms │      18.80 / 19.18 ±0.21 / 19.34 ms │    no change │
│ QQuery 3  │ 30.14 / 31.94 ±1.42 / 33.78 ms │      30.21 / 33.60 ±2.80 / 36.80 ms │ 1.05x slower │
│ QQuery 4  │ 17.33 / 17.80 ±0.61 / 18.97 ms │      17.33 / 17.85 ±0.77 / 19.39 ms │    no change │
│ QQuery 5  │ 39.45 / 39.58 ±0.07 / 39.63 ms │      40.01 / 40.49 ±0.87 / 42.23 ms │    no change │
│ QQuery 6  │ 16.02 / 16.77 ±1.25 / 19.26 ms │      16.21 / 16.34 ±0.07 / 16.42 ms │    no change │
│ QQuery 7  │ 43.57 / 44.95 ±1.63 / 48.08 ms │      43.71 / 45.47 ±1.90 / 48.67 ms │    no change │
│ QQuery 8  │ 42.32 / 43.00 ±0.50 / 43.86 ms │      44.05 / 45.51 ±1.59 / 48.54 ms │ 1.06x slower │
│ QQuery 9  │ 48.95 / 49.28 ±0.39 / 50.03 ms │      51.13 / 52.45 ±1.21 / 54.30 ms │ 1.06x slower │
│ QQuery 10 │ 41.75 / 42.73 ±1.25 / 45.15 ms │      45.60 / 46.84 ±1.84 / 50.50 ms │ 1.10x slower │
│ QQuery 11 │ 13.26 / 13.42 ±0.11 / 13.55 ms │      14.69 / 14.80 ±0.10 / 14.96 ms │ 1.10x slower │
│ QQuery 12 │ 24.00 / 24.31 ±0.25 / 24.69 ms │      25.19 / 25.90 ±0.39 / 26.27 ms │ 1.07x slower │
│ QQuery 13 │ 32.41 / 34.52 ±1.57 / 37.00 ms │      34.46 / 35.99 ±1.28 / 37.85 ms │    no change │
│ QQuery 14 │ 23.30 / 23.38 ±0.08 / 23.52 ms │      25.17 / 25.56 ±0.34 / 26.16 ms │ 1.09x slower │
│ QQuery 15 │ 30.85 / 31.21 ±0.40 / 31.91 ms │      33.42 / 33.96 ±0.36 / 34.54 ms │ 1.09x slower │
│ QQuery 16 │ 13.68 / 13.97 ±0.21 / 14.30 ms │      14.60 / 14.98 ±0.31 / 15.39 ms │ 1.07x slower │
│ QQuery 17 │ 70.15 / 70.82 ±0.59 / 71.58 ms │      69.65 / 77.99 ±5.97 / 88.12 ms │ 1.10x slower │
│ QQuery 18 │ 57.67 / 60.63 ±2.18 / 64.01 ms │      60.07 / 63.22 ±2.76 / 67.31 ms │    no change │
│ QQuery 19 │ 32.75 / 33.29 ±0.78 / 34.81 ms │      32.76 / 33.24 ±0.43 / 33.90 ms │    no change │
│ QQuery 20 │ 31.55 / 31.72 ±0.12 / 31.88 ms │      31.50 / 31.67 ±0.14 / 31.85 ms │    no change │
│ QQuery 21 │ 53.86 / 55.02 ±1.17 / 57.23 ms │      54.39 / 55.64 ±1.65 / 58.90 ms │    no change │
│ QQuery 22 │ 13.70 / 14.01 ±0.19 / 14.26 ms │      14.05 / 14.38 ±0.51 / 15.39 ms │    no change │
└───────────┴────────────────────────────────┴─────────────────────────────────────┴──────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━┓
┃ Benchmark Summary                                  ┃          ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━┩
│ Total Time (HEAD)                                  │ 751.32ms │
│ Total Time (codex_q39-contiguous-dynamic-filter)   │ 784.18ms │
│ Average Time (HEAD)                                │  34.15ms │
│ Average Time (codex_q39-contiguous-dynamic-filter) │  35.64ms │
│ Queries Faster                                     │        0 │
│ Queries Slower                                     │       10 │
│ Queries with No Change                             │       12 │
│ Queries with Failure                               │        0 │
└────────────────────────────────────────────────────┴──────────┘

Resource Usage

tpch — base (merge-base)

Metric Value
Wall time 5.0s
Peak memory 1.2 GiB
Avg memory 518.8 MiB
CPU user 21.4s
CPU sys 1.7s
Peak spill 0 B

tpch — branch

Metric Value
Wall time 5.0s
Peak memory 1.2 GiB
Avg memory 514.9 MiB
CPU user 22.8s
CPU sys 1.8s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

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

Comparing codex/q39-contiguous-dynamic-filter (05b8e8c) to 6636d6b (merge-base) diff

Run configuration
run benchmark tpcds
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 codex_q39-contiguous-dynamic-filter
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃       HEAD ┃ codex_q39-contiguous-dynamic-filter ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │    5.55 ms │                             5.52 ms │     no change │
│ QQuery 2  │   80.40 ms │                            79.61 ms │     no change │
│ QQuery 3  │   30.02 ms │                            29.91 ms │     no change │
│ QQuery 4  │  506.52 ms │                           494.51 ms │     no change │
│ QQuery 5  │   52.26 ms │                            51.86 ms │     no change │
│ QQuery 6  │   37.53 ms │                            37.56 ms │     no change │
│ QQuery 7  │   95.20 ms │                           100.16 ms │  1.05x slower │
│ QQuery 8  │   37.39 ms │                            39.97 ms │  1.07x slower │
│ QQuery 9  │   51.49 ms │                            58.65 ms │  1.14x slower │
│ QQuery 10 │   63.87 ms │                            66.13 ms │     no change │
│ QQuery 11 │  319.75 ms │                           309.22 ms │     no change │
│ QQuery 12 │   29.43 ms │                            28.71 ms │     no change │
│ QQuery 13 │  119.95 ms │                           119.68 ms │     no change │
│ QQuery 14 │  419.98 ms │                           413.81 ms │     no change │
│ QQuery 15 │   58.41 ms │                            57.17 ms │     no change │
│ QQuery 16 │    6.78 ms │                             6.65 ms │     no change │
│ QQuery 17 │   81.00 ms │                            79.90 ms │     no change │
│ QQuery 18 │  123.69 ms │                           123.02 ms │     no change │
│ QQuery 19 │   42.66 ms │                            41.58 ms │     no change │
│ QQuery 20 │   36.64 ms │                            35.93 ms │     no change │
│ QQuery 21 │   17.60 ms │                            17.21 ms │     no change │
│ QQuery 22 │   62.93 ms │                            62.54 ms │     no change │
│ QQuery 23 │  350.16 ms │                           342.64 ms │     no change │
│ QQuery 24 │  226.49 ms │                           225.11 ms │     no change │
│ QQuery 25 │  119.35 ms │                           110.14 ms │ +1.08x faster │
│ QQuery 26 │   62.28 ms │                            58.12 ms │ +1.07x faster │
│ QQuery 27 │    7.11 ms │                             6.21 ms │ +1.14x faster │
│ QQuery 28 │   60.61 ms │                            61.29 ms │     no change │
│ QQuery 29 │  104.62 ms │                            96.98 ms │ +1.08x faster │
│ QQuery 30 │   35.97 ms │                            32.47 ms │ +1.11x faster │
│ QQuery 31 │  121.61 ms │                           111.46 ms │ +1.09x faster │
│ QQuery 32 │   22.50 ms │                            20.17 ms │ +1.12x faster │
│ QQuery 33 │   41.12 ms │                            37.88 ms │ +1.09x faster │
│ QQuery 34 │   11.05 ms │                            10.00 ms │ +1.11x faster │
│ QQuery 35 │   82.86 ms │                            72.62 ms │ +1.14x faster │
│ QQuery 36 │    6.64 ms │                             5.77 ms │ +1.15x faster │
│ QQuery 37 │    7.76 ms │                             6.87 ms │ +1.13x faster │
│ QQuery 38 │   70.31 ms │                            61.98 ms │ +1.13x faster │
│ QQuery 39 │  105.64 ms │                            90.81 ms │ +1.16x faster │
│ QQuery 40 │   25.54 ms │                            23.33 ms │ +1.09x faster │
│ QQuery 41 │   12.74 ms │                            11.49 ms │ +1.11x faster │
│ QQuery 42 │   26.43 ms │                            24.50 ms │ +1.08x faster │
│ QQuery 43 │    5.67 ms │                             4.94 ms │ +1.15x faster │
│ QQuery 44 │   10.97 ms │                             9.27 ms │ +1.18x faster │
│ QQuery 45 │   49.97 ms │                            38.41 ms │ +1.30x faster │
│ QQuery 46 │   13.20 ms │                            11.71 ms │ +1.13x faster │
│ QQuery 47 │  287.93 ms │                           241.88 ms │ +1.19x faster │
│ QQuery 48 │  102.37 ms │                           101.17 ms │     no change │
│ QQuery 49 │   82.88 ms │                            82.13 ms │     no change │
│ QQuery 50 │   64.43 ms │                            63.07 ms │     no change │
│ QQuery 51 │   97.10 ms │                            95.73 ms │     no change │
│ QQuery 52 │   25.81 ms │                            26.03 ms │     no change │
│ QQuery 53 │   30.15 ms │                            31.13 ms │     no change │
│ QQuery 54 │   56.85 ms │                            58.50 ms │     no change │
│ QQuery 55 │   25.49 ms │                            25.21 ms │     no change │
│ QQuery 56 │   39.93 ms │                            42.01 ms │  1.05x slower │
│ QQuery 57 │  177.77 ms │                           190.89 ms │  1.07x slower │
│ QQuery 58 │  118.85 ms │                           122.63 ms │     no change │
│ QQuery 59 │  118.60 ms │                           122.00 ms │     no change │
│ QQuery 60 │   40.25 ms │                            42.85 ms │  1.06x slower │
│ QQuery 61 │   12.50 ms │                            13.48 ms │  1.08x slower │
│ QQuery 62 │   46.82 ms │                            48.59 ms │     no change │
│ QQuery 63 │   30.07 ms │                            31.57 ms │  1.05x slower │
│ QQuery 64 │  417.04 ms │                           416.70 ms │     no change │
│ QQuery 65 │  126.61 ms │                           103.06 ms │ +1.23x faster │
│ QQuery 66 │   87.73 ms │                            80.60 ms │ +1.09x faster │
│ QQuery 67 │  279.66 ms │                           244.01 ms │ +1.15x faster │
│ QQuery 68 │   13.37 ms │                            12.80 ms │     no change │
│ QQuery 69 │   59.57 ms │                            58.05 ms │     no change │
│ QQuery 70 │  110.03 ms │                           105.29 ms │     no change │
│ QQuery 71 │   36.35 ms │                            35.98 ms │     no change │
│ QQuery 72 │ 2148.61 ms │                          2065.07 ms │     no change │
│ QQuery 73 │   10.97 ms │                             9.74 ms │ +1.13x faster │
│ QQuery 74 │  218.17 ms │                           170.85 ms │ +1.28x faster │
│ QQuery 75 │  154.99 ms │                           150.02 ms │     no change │
│ QQuery 76 │   35.86 ms │                            35.86 ms │     no change │
│ QQuery 77 │   61.68 ms │                            60.71 ms │     no change │
│ QQuery 78 │  197.59 ms │                           198.68 ms │     no change │
│ QQuery 79 │   67.65 ms │                            67.92 ms │     no change │
│ QQuery 80 │  100.16 ms │                           100.36 ms │     no change │
│ QQuery 81 │   25.61 ms │                            26.46 ms │     no change │
│ QQuery 82 │   16.44 ms │                            16.27 ms │     no change │
│ QQuery 83 │   39.98 ms │                            39.99 ms │     no change │
│ QQuery 84 │   31.15 ms │                            30.71 ms │     no change │
│ QQuery 85 │  107.44 ms │                           108.73 ms │     no change │
│ QQuery 86 │   25.65 ms │                            28.18 ms │  1.10x slower │
│ QQuery 87 │   63.09 ms │                            72.44 ms │  1.15x slower │
│ QQuery 88 │   64.03 ms │                            67.78 ms │  1.06x slower │
│ QQuery 89 │   35.88 ms │                            37.33 ms │     no change │
│ QQuery 90 │   17.41 ms │                            17.06 ms │     no change │
│ QQuery 91 │   45.86 ms │                            46.98 ms │     no change │
│ QQuery 92 │   30.30 ms │                            31.02 ms │     no change │
│ QQuery 93 │   51.63 ms │                            51.12 ms │     no change │
│ QQuery 94 │   38.65 ms │                            38.44 ms │     no change │
│ QQuery 95 │   80.38 ms │                            80.53 ms │     no change │
│ QQuery 96 │   24.39 ms │                            24.43 ms │     no change │
│ QQuery 97 │   46.92 ms │                            47.11 ms │     no change │
│ QQuery 98 │   42.86 ms │                            43.14 ms │     no change │
│ QQuery 99 │   70.41 ms │                            70.20 ms │     no change │
└───────────┴────────────┴─────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                                  ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                                  │ 10201.56ms │
│ Total Time (codex_q39-contiguous-dynamic-filter)   │  9865.96ms │
│ Average Time (HEAD)                                │   103.05ms │
│ Average Time (codex_q39-contiguous-dynamic-filter) │    99.66ms │
│ Queries Faster                                     │         27 │
│ Queries Slower                                     │         11 │
│ Queries with No Change                             │         61 │
│ Queries with Failure                               │          0 │
└────────────────────────────────────────────────────┴────────────┘

Distribution per query (min / mean ±stddev / max):

Comparing HEAD and codex_q39-contiguous-dynamic-filter
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃    codex_q39-contiguous-dynamic-filter ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │           5.55 / 6.13 ±0.91 / 7.92 ms │            5.52 / 6.06 ±0.92 / 7.89 ms │     no change │
│ QQuery 2  │        80.40 / 80.75 ±0.30 / 81.16 ms │         79.61 / 79.89 ±0.15 / 80.05 ms │     no change │
│ QQuery 3  │        30.02 / 30.50 ±0.54 / 31.54 ms │         29.91 / 30.06 ±0.11 / 30.24 ms │     no change │
│ QQuery 4  │     506.52 / 514.35 ±5.67 / 522.62 ms │      494.51 / 499.33 ±3.44 / 503.63 ms │     no change │
│ QQuery 5  │        52.26 / 52.73 ±0.26 / 53.03 ms │         51.86 / 52.12 ±0.14 / 52.28 ms │     no change │
│ QQuery 6  │        37.53 / 37.81 ±0.31 / 38.35 ms │         37.56 / 39.99 ±2.21 / 43.20 ms │  1.06x slower │
│ QQuery 7  │       95.20 / 98.71 ±5.16 / 108.98 ms │      100.16 / 102.71 ±2.92 / 108.32 ms │     no change │
│ QQuery 8  │        37.39 / 37.72 ±0.26 / 38.18 ms │         39.97 / 40.69 ±0.54 / 41.59 ms │  1.08x slower │
│ QQuery 9  │        51.49 / 53.45 ±1.62 / 56.33 ms │         58.65 / 59.53 ±0.73 / 60.80 ms │  1.11x slower │
│ QQuery 10 │        63.87 / 64.44 ±0.51 / 65.30 ms │         66.13 / 66.88 ±0.44 / 67.44 ms │     no change │
│ QQuery 11 │     319.75 / 323.36 ±2.36 / 326.47 ms │     309.22 / 320.98 ±16.31 / 353.30 ms │     no change │
│ QQuery 12 │        29.43 / 29.57 ±0.16 / 29.88 ms │         28.71 / 29.19 ±0.31 / 29.58 ms │     no change │
│ QQuery 13 │     119.95 / 121.72 ±1.77 / 124.44 ms │      119.68 / 122.03 ±3.81 / 129.58 ms │     no change │
│ QQuery 14 │     419.98 / 422.02 ±2.58 / 427.01 ms │      413.81 / 418.20 ±4.05 / 425.12 ms │     no change │
│ QQuery 15 │        58.41 / 59.08 ±0.67 / 60.14 ms │         57.17 / 57.64 ±0.67 / 58.95 ms │     no change │
│ QQuery 16 │           6.78 / 6.93 ±0.17 / 7.26 ms │            6.65 / 6.81 ±0.18 / 7.14 ms │     no change │
│ QQuery 17 │        81.00 / 84.09 ±2.47 / 86.49 ms │         79.90 / 81.67 ±1.96 / 84.12 ms │     no change │
│ QQuery 18 │     123.69 / 125.02 ±1.23 / 127.20 ms │      123.02 / 124.33 ±0.90 / 125.46 ms │     no change │
│ QQuery 19 │        42.66 / 43.34 ±0.83 / 44.85 ms │         41.58 / 41.85 ±0.25 / 42.30 ms │     no change │
│ QQuery 20 │        36.64 / 37.39 ±0.74 / 38.68 ms │         35.93 / 37.07 ±0.90 / 38.58 ms │     no change │
│ QQuery 21 │        17.60 / 17.78 ±0.11 / 17.91 ms │         17.21 / 17.54 ±0.30 / 17.91 ms │     no change │
│ QQuery 22 │        62.93 / 64.42 ±0.83 / 65.45 ms │         62.54 / 63.21 ±0.57 / 64.20 ms │     no change │
│ QQuery 23 │     350.16 / 355.56 ±3.75 / 360.41 ms │      342.64 / 346.29 ±2.25 / 349.25 ms │     no change │
│ QQuery 24 │     226.49 / 231.52 ±4.05 / 237.82 ms │      225.11 / 228.37 ±4.01 / 236.09 ms │     no change │
│ QQuery 25 │     119.35 / 121.48 ±1.88 / 124.88 ms │      110.14 / 111.48 ±1.05 / 113.20 ms │ +1.09x faster │
│ QQuery 26 │        62.28 / 62.44 ±0.13 / 62.63 ms │         58.12 / 60.78 ±3.27 / 67.12 ms │     no change │
│ QQuery 27 │           7.11 / 7.23 ±0.14 / 7.50 ms │            6.21 / 6.35 ±0.17 / 6.68 ms │ +1.14x faster │
│ QQuery 28 │        60.61 / 63.74 ±2.22 / 66.20 ms │         61.29 / 61.89 ±0.47 / 62.47 ms │     no change │
│ QQuery 29 │     104.62 / 107.73 ±3.07 / 112.37 ms │        96.98 / 99.67 ±3.70 / 106.98 ms │ +1.08x faster │
│ QQuery 30 │        35.97 / 36.31 ±0.23 / 36.60 ms │         32.47 / 33.53 ±0.74 / 34.42 ms │ +1.08x faster │
│ QQuery 31 │     121.61 / 123.92 ±2.17 / 127.93 ms │      111.46 / 112.79 ±1.18 / 114.89 ms │ +1.10x faster │
│ QQuery 32 │        22.50 / 22.92 ±0.33 / 23.33 ms │         20.17 / 20.71 ±0.42 / 21.30 ms │ +1.11x faster │
│ QQuery 33 │        41.12 / 41.40 ±0.25 / 41.76 ms │         37.88 / 39.06 ±1.49 / 42.00 ms │ +1.06x faster │
│ QQuery 34 │        11.05 / 11.24 ±0.24 / 11.71 ms │         10.00 / 10.70 ±0.35 / 10.98 ms │     no change │
│ QQuery 35 │        82.86 / 83.73 ±1.14 / 85.92 ms │         72.62 / 73.71 ±0.60 / 74.43 ms │ +1.14x faster │
│ QQuery 36 │           6.64 / 6.72 ±0.09 / 6.89 ms │            5.77 / 5.93 ±0.21 / 6.33 ms │ +1.13x faster │
│ QQuery 37 │           7.76 / 7.82 ±0.05 / 7.88 ms │            6.87 / 6.96 ±0.07 / 7.07 ms │ +1.12x faster │
│ QQuery 38 │        70.31 / 73.13 ±2.90 / 78.74 ms │         61.98 / 62.93 ±0.59 / 63.84 ms │ +1.16x faster │
│ QQuery 39 │     105.64 / 106.86 ±0.92 / 108.17 ms │         90.81 / 91.84 ±1.01 / 93.75 ms │ +1.16x faster │
│ QQuery 40 │        25.54 / 26.71 ±2.15 / 31.01 ms │         23.33 / 23.66 ±0.25 / 24.05 ms │ +1.13x faster │
│ QQuery 41 │        12.74 / 13.13 ±0.29 / 13.62 ms │         11.49 / 11.65 ±0.17 / 11.96 ms │ +1.13x faster │
│ QQuery 42 │        26.43 / 26.94 ±0.57 / 27.98 ms │         24.50 / 24.81 ±0.23 / 25.18 ms │ +1.09x faster │
│ QQuery 43 │           5.67 / 5.78 ±0.08 / 5.88 ms │            4.94 / 5.07 ±0.21 / 5.49 ms │ +1.14x faster │
│ QQuery 44 │        10.97 / 11.08 ±0.14 / 11.35 ms │            9.27 / 9.31 ±0.04 / 9.39 ms │ +1.19x faster │
│ QQuery 45 │        49.97 / 51.62 ±1.37 / 53.39 ms │         38.41 / 38.92 ±0.35 / 39.32 ms │ +1.33x faster │
│ QQuery 46 │        13.20 / 13.36 ±0.13 / 13.54 ms │         11.71 / 11.82 ±0.13 / 12.06 ms │ +1.13x faster │
│ QQuery 47 │     287.93 / 295.06 ±5.73 / 302.28 ms │     241.88 / 271.77 ±16.18 / 285.61 ms │ +1.09x faster │
│ QQuery 48 │     102.37 / 103.34 ±0.57 / 103.85 ms │      101.17 / 101.92 ±0.67 / 102.76 ms │     no change │
│ QQuery 49 │        82.88 / 84.67 ±2.62 / 89.85 ms │         82.13 / 84.68 ±2.84 / 89.79 ms │     no change │
│ QQuery 50 │        64.43 / 65.00 ±0.65 / 65.81 ms │         63.07 / 63.41 ±0.34 / 64.04 ms │     no change │
│ QQuery 51 │        97.10 / 98.24 ±0.68 / 98.97 ms │        95.73 / 99.11 ±3.48 / 105.82 ms │     no change │
│ QQuery 52 │        25.81 / 26.31 ±0.28 / 26.58 ms │         26.03 / 26.24 ±0.16 / 26.47 ms │     no change │
│ QQuery 53 │        30.15 / 32.09 ±2.11 / 35.77 ms │         31.13 / 31.44 ±0.19 / 31.67 ms │     no change │
│ QQuery 54 │        56.85 / 57.51 ±0.41 / 58.08 ms │         58.50 / 59.14 ±0.55 / 60.11 ms │     no change │
│ QQuery 55 │        25.49 / 25.55 ±0.10 / 25.75 ms │         25.21 / 25.37 ±0.16 / 25.67 ms │     no change │
│ QQuery 56 │        39.93 / 40.86 ±0.89 / 42.36 ms │         42.01 / 43.42 ±2.30 / 48.01 ms │  1.06x slower │
│ QQuery 57 │     177.77 / 180.04 ±3.81 / 187.64 ms │      190.89 / 193.42 ±2.52 / 196.72 ms │  1.07x slower │
│ QQuery 58 │     118.85 / 121.25 ±2.17 / 124.60 ms │      122.63 / 124.31 ±2.20 / 128.59 ms │     no change │
│ QQuery 59 │     118.60 / 122.40 ±2.75 / 125.39 ms │      122.00 / 124.12 ±2.95 / 129.97 ms │     no change │
│ QQuery 60 │        40.25 / 41.02 ±0.53 / 41.70 ms │         42.85 / 43.70 ±0.69 / 44.92 ms │  1.07x slower │
│ QQuery 61 │        12.50 / 12.59 ±0.09 / 12.72 ms │         13.48 / 13.64 ±0.12 / 13.83 ms │  1.08x slower │
│ QQuery 62 │        46.82 / 47.47 ±0.70 / 48.81 ms │         48.59 / 48.96 ±0.31 / 49.46 ms │     no change │
│ QQuery 63 │        30.07 / 30.27 ±0.15 / 30.48 ms │         31.57 / 31.87 ±0.23 / 32.19 ms │  1.05x slower │
│ QQuery 64 │     417.04 / 422.35 ±4.61 / 428.90 ms │     416.70 / 443.71 ±14.47 / 460.48 ms │  1.05x slower │
│ QQuery 65 │     126.61 / 136.22 ±5.02 / 141.36 ms │      103.06 / 107.16 ±2.64 / 111.09 ms │ +1.27x faster │
│ QQuery 66 │        87.73 / 89.07 ±0.94 / 90.22 ms │         80.60 / 83.33 ±5.09 / 93.52 ms │ +1.07x faster │
│ QQuery 67 │     279.66 / 291.13 ±9.72 / 307.23 ms │     244.01 / 264.52 ±13.83 / 281.20 ms │ +1.10x faster │
│ QQuery 68 │        13.37 / 13.45 ±0.08 / 13.58 ms │         12.80 / 13.01 ±0.14 / 13.18 ms │     no change │
│ QQuery 69 │        59.57 / 60.13 ±0.72 / 61.54 ms │         58.05 / 58.66 ±0.69 / 59.84 ms │     no change │
│ QQuery 70 │     110.03 / 116.04 ±6.62 / 124.57 ms │     105.29 / 112.72 ±10.83 / 134.14 ms │     no change │
│ QQuery 71 │        36.35 / 36.82 ±0.51 / 37.59 ms │         35.98 / 36.33 ±0.37 / 37.03 ms │     no change │
│ QQuery 72 │ 2148.61 / 2205.56 ±36.60 / 2261.41 ms │ 2065.07 / 2212.01 ±151.74 / 2505.01 ms │     no change │
│ QQuery 73 │        10.97 / 11.21 ±0.26 / 11.60 ms │           9.74 / 9.96 ±0.20 / 10.32 ms │ +1.13x faster │
│ QQuery 74 │     218.17 / 225.97 ±7.83 / 240.57 ms │      170.85 / 175.99 ±5.49 / 183.84 ms │ +1.28x faster │
│ QQuery 75 │     154.99 / 160.11 ±5.15 / 167.04 ms │      150.02 / 154.56 ±5.35 / 164.97 ms │     no change │
│ QQuery 76 │        35.86 / 36.43 ±0.34 / 36.75 ms │         35.86 / 36.18 ±0.20 / 36.42 ms │     no change │
│ QQuery 77 │        61.68 / 62.35 ±0.37 / 62.82 ms │         60.71 / 61.60 ±0.52 / 62.07 ms │     no change │
│ QQuery 78 │     197.59 / 203.12 ±7.09 / 216.85 ms │      198.68 / 199.77 ±1.22 / 201.67 ms │     no change │
│ QQuery 79 │        67.65 / 71.16 ±5.43 / 81.97 ms │         67.92 / 69.35 ±1.70 / 72.15 ms │     no change │
│ QQuery 80 │     100.16 / 101.32 ±0.99 / 102.79 ms │      100.36 / 102.75 ±2.59 / 107.70 ms │     no change │
│ QQuery 81 │        25.61 / 25.97 ±0.29 / 26.28 ms │         26.46 / 26.76 ±0.26 / 27.11 ms │     no change │
│ QQuery 82 │        16.44 / 16.68 ±0.16 / 16.85 ms │         16.27 / 16.41 ±0.16 / 16.64 ms │     no change │
│ QQuery 83 │        39.98 / 43.87 ±4.22 / 50.22 ms │         39.99 / 41.72 ±3.27 / 48.27 ms │     no change │
│ QQuery 84 │        31.15 / 31.53 ±0.21 / 31.78 ms │         30.71 / 32.24 ±1.29 / 34.12 ms │     no change │
│ QQuery 85 │     107.44 / 108.01 ±0.44 / 108.76 ms │      108.73 / 112.57 ±2.84 / 115.80 ms │     no change │
│ QQuery 86 │        25.65 / 25.96 ±0.29 / 26.46 ms │         28.18 / 28.87 ±0.99 / 30.80 ms │  1.11x slower │
│ QQuery 87 │        63.09 / 64.61 ±1.04 / 66.29 ms │         72.44 / 74.97 ±3.24 / 81.13 ms │  1.16x slower │
│ QQuery 88 │        64.03 / 64.47 ±0.43 / 65.25 ms │         67.78 / 68.56 ±0.62 / 69.52 ms │  1.06x slower │
│ QQuery 89 │        35.88 / 36.32 ±0.42 / 37.02 ms │         37.33 / 38.76 ±0.79 / 39.46 ms │  1.07x slower │
│ QQuery 90 │        17.41 / 17.57 ±0.09 / 17.67 ms │         17.06 / 17.29 ±0.18 / 17.60 ms │     no change │
│ QQuery 91 │        45.86 / 47.33 ±2.16 / 51.61 ms │         46.98 / 48.25 ±1.08 / 50.24 ms │     no change │
│ QQuery 92 │        30.30 / 30.88 ±0.77 / 32.35 ms │         31.02 / 32.94 ±1.72 / 35.73 ms │  1.07x slower │
│ QQuery 93 │        51.63 / 52.21 ±0.51 / 53.06 ms │         51.12 / 52.32 ±1.09 / 53.87 ms │     no change │
│ QQuery 94 │        38.65 / 38.90 ±0.22 / 39.25 ms │         38.44 / 38.71 ±0.27 / 39.21 ms │     no change │
│ QQuery 95 │        80.38 / 83.02 ±3.84 / 90.65 ms │         80.53 / 82.96 ±3.79 / 90.47 ms │     no change │
│ QQuery 96 │        24.39 / 24.72 ±0.20 / 24.97 ms │         24.43 / 24.70 ±0.21 / 25.04 ms │     no change │
│ QQuery 97 │        46.92 / 47.54 ±0.62 / 48.72 ms │         47.11 / 47.86 ±0.47 / 48.44 ms │     no change │
│ QQuery 98 │        42.86 / 43.79 ±0.69 / 44.47 ms │         43.14 / 44.05 ±0.73 / 44.87 ms │     no change │
│ QQuery 99 │        70.41 / 70.62 ±0.19 / 70.95 ms │         70.20 / 70.93 ±1.25 / 73.44 ms │     no change │
└───────────┴───────────────────────────────────────┴────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                                  ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                                  │ 10423.85ms │
│ Total Time (codex_q39-contiguous-dynamic-filter)   │ 10225.04ms │
│ Average Time (HEAD)                                │   105.29ms │
│ Average Time (codex_q39-contiguous-dynamic-filter) │   103.28ms │
│ Queries Faster                                     │         25 │
│ Queries Slower                                     │         14 │
│ Queries with No Change                             │         60 │
│ Queries with Failure                               │          0 │
└────────────────────────────────────────────────────┴────────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 55.0s
Peak memory 2.1 GiB
Avg memory 1.5 GiB
CPU user 233.3s
CPU sys 6.5s
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.6s
CPU sys 6.5s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

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

Comparing codex/q39-contiguous-dynamic-filter (05b8e8c) to 6636d6b (merge-base) diff

Run configuration
run benchmark clickbench_partitioned
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 codex_q39-contiguous-dynamic-filter
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃       HEAD ┃ codex_q39-contiguous-dynamic-filter ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │    1.26 ms │                             1.23 ms │     no change │
│ QQuery 1  │   12.76 ms │                            12.54 ms │     no change │
│ QQuery 2  │   35.28 ms │                            35.87 ms │     no change │
│ QQuery 3  │   31.03 ms │                            31.05 ms │     no change │
│ QQuery 4  │  224.88 ms │                           220.56 ms │     no change │
│ QQuery 5  │  272.23 ms │                           270.58 ms │     no change │
│ QQuery 6  │    1.25 ms │                             1.26 ms │     no change │
│ QQuery 7  │   13.46 ms │                            13.54 ms │     no change │
│ QQuery 8  │  320.63 ms │                           322.57 ms │     no change │
│ QQuery 9  │  450.18 ms │                           448.80 ms │     no change │
│ QQuery 10 │   69.79 ms │                            68.38 ms │     no change │
│ QQuery 11 │   80.70 ms │                            79.77 ms │     no change │
│ QQuery 12 │  264.20 ms │                           263.15 ms │     no change │
│ QQuery 13 │  365.74 ms │                           358.60 ms │     no change │
│ QQuery 14 │  281.84 ms │                           278.54 ms │     no change │
│ QQuery 15 │  276.39 ms │                           272.10 ms │     no change │
│ QQuery 16 │  611.11 ms │                           611.50 ms │     no change │
│ QQuery 17 │  615.52 ms │                           612.12 ms │     no change │
│ QQuery 18 │ 1260.43 ms │                          1241.27 ms │     no change │
│ QQuery 19 │   28.01 ms │                            28.32 ms │     no change │
│ QQuery 20 │  513.35 ms │                           517.35 ms │     no change │
│ QQuery 21 │  507.97 ms │                           518.07 ms │     no change │
│ QQuery 22 │  993.53 ms │                           990.64 ms │     no change │
│ QQuery 23 │ 3064.84 ms │                          3068.89 ms │     no change │
│ QQuery 24 │   41.90 ms │                            42.42 ms │     no change │
│ QQuery 25 │  110.88 ms │                           110.22 ms │     no change │
│ QQuery 26 │   41.77 ms │                            41.52 ms │     no change │
│ QQuery 27 │  509.53 ms │                           515.91 ms │     no change │
│ QQuery 28 │ 2886.61 ms │                          2887.70 ms │     no change │
│ QQuery 29 │   40.64 ms │                            40.86 ms │     no change │
│ QQuery 30 │  301.72 ms │                           297.96 ms │     no change │
│ QQuery 31 │  287.54 ms │                           289.39 ms │     no change │
│ QQuery 32 │  937.93 ms │                           926.32 ms │     no change │
│ QQuery 33 │ 1461.18 ms │                          1469.98 ms │     no change │
│ QQuery 34 │ 1466.69 ms │                          1456.05 ms │     no change │
│ QQuery 35 │  276.51 ms │                           282.15 ms │     no change │
│ QQuery 36 │   66.72 ms │                            65.20 ms │     no change │
│ QQuery 37 │   35.50 ms │                            35.04 ms │     no change │
│ QQuery 38 │   43.77 ms │                            39.90 ms │ +1.10x faster │
│ QQuery 39 │  139.16 ms │                           133.79 ms │     no change │
│ QQuery 40 │   14.47 ms │                            14.07 ms │     no change │
│ QQuery 41 │   13.85 ms │                            13.72 ms │     no change │
│ QQuery 42 │   12.79 ms │                            12.84 ms │     no change │
└───────────┴────────────┴─────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                                  ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                                  │ 18985.53ms │
│ Total Time (codex_q39-contiguous-dynamic-filter)   │ 18941.73ms │
│ Average Time (HEAD)                                │   441.52ms │
│ Average Time (codex_q39-contiguous-dynamic-filter) │   440.51ms │
│ Queries Faster                                     │          1 │
│ Queries Slower                                     │          0 │
│ Queries with No Change                             │         42 │
│ Queries with Failure                               │          0 │
└────────────────────────────────────────────────────┴────────────┘

Distribution per query (min / mean ±stddev / max):

Comparing HEAD and codex_q39-contiguous-dynamic-filter
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃   codex_q39-contiguous-dynamic-filter ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.26 / 3.99 ±5.40 / 14.79 ms │          1.23 / 3.90 ±5.28 / 14.47 ms │     no change │
│ QQuery 1  │        12.76 / 12.91 ±0.21 / 13.32 ms │        12.54 / 12.68 ±0.11 / 12.87 ms │     no change │
│ QQuery 2  │        35.28 / 35.79 ±0.37 / 36.24 ms │        35.87 / 36.15 ±0.15 / 36.28 ms │     no change │
│ QQuery 3  │        31.03 / 31.64 ±0.59 / 32.74 ms │        31.05 / 31.40 ±0.27 / 31.74 ms │     no change │
│ QQuery 4  │     224.88 / 227.16 ±1.67 / 229.02 ms │     220.56 / 226.81 ±4.51 / 232.19 ms │     no change │
│ QQuery 5  │     272.23 / 273.79 ±0.95 / 274.92 ms │     270.58 / 273.94 ±2.67 / 278.76 ms │     no change │
│ QQuery 6  │           1.25 / 1.40 ±0.22 / 1.83 ms │           1.26 / 1.41 ±0.21 / 1.82 ms │     no change │
│ QQuery 7  │        13.46 / 13.64 ±0.11 / 13.76 ms │        13.54 / 13.79 ±0.15 / 13.99 ms │     no change │
│ QQuery 8  │     320.63 / 326.70 ±5.00 / 332.32 ms │     322.57 / 328.20 ±5.24 / 337.17 ms │     no change │
│ QQuery 9  │     450.18 / 455.56 ±3.84 / 459.36 ms │    448.80 / 460.62 ±15.67 / 491.50 ms │     no change │
│ QQuery 10 │        69.79 / 70.24 ±0.49 / 71.05 ms │        68.38 / 69.41 ±0.74 / 70.58 ms │     no change │
│ QQuery 11 │        80.70 / 81.41 ±0.73 / 82.81 ms │        79.77 / 80.87 ±0.73 / 81.67 ms │     no change │
│ QQuery 12 │     264.20 / 269.86 ±3.85 / 274.21 ms │     263.15 / 270.38 ±4.98 / 276.96 ms │     no change │
│ QQuery 13 │     365.74 / 371.01 ±5.21 / 380.50 ms │     358.60 / 373.58 ±7.70 / 378.99 ms │     no change │
│ QQuery 14 │     281.84 / 288.71 ±4.99 / 296.52 ms │     278.54 / 284.27 ±8.95 / 301.95 ms │     no change │
│ QQuery 15 │     276.39 / 281.89 ±6.19 / 293.52 ms │     272.10 / 279.16 ±8.27 / 293.37 ms │     no change │
│ QQuery 16 │    611.11 / 622.62 ±12.35 / 644.20 ms │    611.50 / 625.16 ±15.29 / 653.76 ms │     no change │
│ QQuery 17 │     615.52 / 620.90 ±2.93 / 623.52 ms │     612.12 / 622.10 ±7.04 / 633.63 ms │     no change │
│ QQuery 18 │ 1260.43 / 1281.49 ±13.57 / 1300.66 ms │ 1241.27 / 1267.04 ±15.79 / 1284.88 ms │     no change │
│ QQuery 19 │        28.01 / 32.70 ±8.91 / 50.51 ms │        28.32 / 29.42 ±1.36 / 31.91 ms │ +1.11x faster │
│ QQuery 20 │     513.35 / 525.02 ±8.16 / 538.01 ms │     517.35 / 527.34 ±9.86 / 545.71 ms │     no change │
│ QQuery 21 │     507.97 / 521.44 ±8.00 / 530.72 ms │    518.07 / 526.61 ±11.06 / 548.44 ms │     no change │
│ QQuery 22 │  993.53 / 1009.84 ±10.73 / 1026.20 ms │    990.64 / 999.17 ±9.23 / 1017.00 ms │     no change │
│ QQuery 23 │ 3064.84 / 3122.68 ±63.82 / 3246.73 ms │ 3068.89 / 3098.59 ±17.23 / 3115.88 ms │     no change │
│ QQuery 24 │        41.90 / 43.72 ±1.95 / 47.11 ms │        42.42 / 45.28 ±4.11 / 53.41 ms │     no change │
│ QQuery 25 │     110.88 / 111.87 ±0.65 / 112.55 ms │     110.22 / 113.36 ±3.38 / 119.19 ms │     no change │
│ QQuery 26 │        41.77 / 42.46 ±0.86 / 44.06 ms │        41.52 / 45.39 ±6.36 / 57.99 ms │  1.07x slower │
│ QQuery 27 │     509.53 / 517.74 ±6.85 / 530.30 ms │     515.91 / 520.09 ±3.41 / 524.66 ms │     no change │
│ QQuery 28 │ 2886.61 / 2931.70 ±32.68 / 2967.25 ms │ 2887.70 / 2916.27 ±16.75 / 2936.57 ms │     no change │
│ QQuery 29 │        40.64 / 45.90 ±6.13 / 54.13 ms │        40.86 / 43.98 ±5.51 / 54.98 ms │     no change │
│ QQuery 30 │     301.72 / 306.43 ±3.56 / 310.50 ms │    297.96 / 308.62 ±12.82 / 333.84 ms │     no change │
│ QQuery 31 │     287.54 / 298.31 ±6.33 / 306.83 ms │     289.39 / 299.20 ±9.07 / 315.20 ms │     no change │
│ QQuery 32 │    937.93 / 961.12 ±19.70 / 996.36 ms │    926.32 / 951.17 ±13.89 / 964.80 ms │     no change │
│ QQuery 33 │ 1461.18 / 1487.53 ±33.63 / 1553.50 ms │ 1469.98 / 1486.86 ±12.18 / 1504.62 ms │     no change │
│ QQuery 34 │ 1466.69 / 1493.98 ±16.91 / 1515.69 ms │ 1456.05 / 1492.20 ±43.08 / 1560.68 ms │     no change │
│ QQuery 35 │    276.51 / 315.31 ±45.64 / 402.91 ms │    282.15 / 319.73 ±57.08 / 433.04 ms │     no change │
│ QQuery 36 │        66.72 / 72.74 ±4.47 / 78.52 ms │        65.20 / 70.58 ±4.90 / 78.71 ms │     no change │
│ QQuery 37 │        35.50 / 39.97 ±5.38 / 49.07 ms │        35.04 / 39.29 ±3.31 / 44.87 ms │     no change │
│ QQuery 38 │        43.77 / 48.72 ±6.43 / 61.14 ms │        39.90 / 44.69 ±7.05 / 58.67 ms │ +1.09x faster │
│ QQuery 39 │     139.16 / 149.79 ±6.69 / 158.31 ms │    133.79 / 150.87 ±11.24 / 167.95 ms │     no change │
│ QQuery 40 │        14.47 / 17.05 ±2.67 / 20.79 ms │        14.07 / 14.26 ±0.16 / 14.54 ms │ +1.20x faster │
│ QQuery 41 │        13.85 / 17.65 ±7.41 / 32.47 ms │        13.72 / 14.32 ±0.81 / 15.91 ms │ +1.23x faster │
│ QQuery 42 │        12.79 / 14.29 ±2.39 / 19.06 ms │        12.84 / 14.40 ±2.71 / 19.80 ms │     no change │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                                  ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                                  │ 19398.67ms │
│ Total Time (codex_q39-contiguous-dynamic-filter)   │ 19332.59ms │
│ Average Time (HEAD)                                │   451.13ms │
│ Average Time (codex_q39-contiguous-dynamic-filter) │   449.60ms │
│ Queries Faster                                     │          4 │
│ Queries Slower                                     │          1 │
│ Queries with No Change                             │         38 │
│ Queries with Failure                               │          0 │
└────────────────────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 100.0s
Peak memory 11.9 GiB
Avg memory 4.3 GiB
CPU user 993.8s
CPU sys 71.3s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 100.0s
Peak memory 12.1 GiB
Avg memory 4.5 GiB
CPU user 988.2s
CPU sys 71.9s
Peak spill 0 B

File an issue against this benchmark runner

@hhhizzz

hhhizzz commented Jul 31, 2026

Copy link
Copy Markdown
Contributor Author

I'll try to repro the degression on my server and figure out the reason.

@github-actions github-actions Bot added the core Core DataFusion crate label Aug 1, 2026
@hhhizzz
hhhizzz marked this pull request as draft August 1, 2026 13:37
@kumarUjjawal

Copy link
Copy Markdown
Contributor

run benchmarks

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c5157189939-1344-cz9pv 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 codex/q39-contiguous-dynamic-filter (c11a512) to b4cde12 (merge-base) diff

Run configuration
run benchmark 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-c5157189939-1342-qpphb 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 codex/q39-contiguous-dynamic-filter (c11a512) to b4cde12 (merge-base) diff

Run configuration
run benchmark 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-c5157189939-1343-4bbj9 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 codex/q39-contiguous-dynamic-filter (c11a512) to b4cde12 (merge-base) diff

Run configuration
run benchmark 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)

Comparing codex/q39-contiguous-dynamic-filter (c11a512) to b4cde12 (merge-base) diff

Run configuration
run benchmark tpch
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 codex_q39-contiguous-dynamic-filter
--------------------
Benchmark tpch_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┓
┃ Query     ┃     HEAD ┃ codex_q39-contiguous-dynamic-filter ┃    Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━┩
│ QQuery 1  │ 37.78 ms │                            38.57 ms │ no change │
│ QQuery 2  │ 19.17 ms │                            19.21 ms │ no change │
│ QQuery 3  │ 33.68 ms │                            32.71 ms │ no change │
│ QQuery 4  │ 17.26 ms │                            17.72 ms │ no change │
│ QQuery 5  │ 37.68 ms │                            37.93 ms │ no change │
│ QQuery 6  │ 16.14 ms │                            16.32 ms │ no change │
│ QQuery 7  │ 43.63 ms │                            43.47 ms │ no change │
│ QQuery 8  │ 42.48 ms │                            42.67 ms │ no change │
│ QQuery 9  │ 49.03 ms │                            49.35 ms │ no change │
│ QQuery 10 │ 42.56 ms │                            42.31 ms │ no change │
│ QQuery 11 │ 13.42 ms │                            13.53 ms │ no change │
│ QQuery 12 │ 23.92 ms │                            24.08 ms │ no change │
│ QQuery 13 │ 32.46 ms │                            31.77 ms │ no change │
│ QQuery 14 │ 23.45 ms │                            23.15 ms │ no change │
│ QQuery 15 │ 30.88 ms │                            30.94 ms │ no change │
│ QQuery 16 │ 13.73 ms │                            13.82 ms │ no change │
│ QQuery 17 │ 71.29 ms │                            70.34 ms │ no change │
│ QQuery 18 │ 58.12 ms │                            57.79 ms │ no change │
│ QQuery 19 │ 32.98 ms │                            33.29 ms │ no change │
│ QQuery 20 │ 31.55 ms │                            32.00 ms │ no change │
│ QQuery 21 │ 53.96 ms │                            56.46 ms │ no change │
│ QQuery 22 │ 13.96 ms │                            14.38 ms │ no change │
└───────────┴──────────┴─────────────────────────────────────┴───────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━┓
┃ Benchmark Summary                                  ┃          ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━┩
│ Total Time (HEAD)                                  │ 739.12ms │
│ Total Time (codex_q39-contiguous-dynamic-filter)   │ 741.81ms │
│ Average Time (HEAD)                                │  33.60ms │
│ Average Time (codex_q39-contiguous-dynamic-filter) │  33.72ms │
│ Queries Faster                                     │        0 │
│ Queries Slower                                     │        0 │
│ Queries with No Change                             │       22 │
│ Queries with Failure                               │        0 │
└────────────────────────────────────────────────────┴──────────┘

Distribution per query (min / mean ±stddev / max):

Comparing HEAD and codex_q39-contiguous-dynamic-filter
--------------------
Benchmark tpch_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┓
┃ Query     ┃                           HEAD ┃ codex_q39-contiguous-dynamic-filter ┃       Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━┩
│ QQuery 1  │ 37.78 / 39.40 ±1.30 / 41.32 ms │      38.57 / 40.00 ±1.26 / 41.71 ms │    no change │
│ QQuery 2  │ 19.17 / 19.64 ±0.31 / 20.06 ms │      19.21 / 19.79 ±0.33 / 20.20 ms │    no change │
│ QQuery 3  │ 33.68 / 33.99 ±0.26 / 34.32 ms │      32.71 / 33.87 ±0.60 / 34.43 ms │    no change │
│ QQuery 4  │ 17.26 / 17.80 ±0.56 / 18.89 ms │      17.72 / 17.85 ±0.07 / 17.90 ms │    no change │
│ QQuery 5  │ 37.68 / 40.42 ±1.72 / 43.08 ms │      37.93 / 40.47 ±1.29 / 41.41 ms │    no change │
│ QQuery 6  │ 16.14 / 16.26 ±0.12 / 16.45 ms │      16.32 / 16.68 ±0.37 / 17.36 ms │    no change │
│ QQuery 7  │ 43.63 / 44.45 ±0.62 / 45.36 ms │      43.47 / 44.38 ±1.14 / 46.58 ms │    no change │
│ QQuery 8  │ 42.48 / 42.89 ±0.26 / 43.16 ms │      42.67 / 42.87 ±0.15 / 43.07 ms │    no change │
│ QQuery 9  │ 49.03 / 49.87 ±0.93 / 51.63 ms │      49.35 / 50.79 ±1.22 / 53.03 ms │    no change │
│ QQuery 10 │ 42.56 / 43.69 ±0.92 / 44.90 ms │      42.31 / 42.72 ±0.67 / 44.05 ms │    no change │
│ QQuery 11 │ 13.42 / 13.61 ±0.20 / 13.98 ms │      13.53 / 13.97 ±0.67 / 15.30 ms │    no change │
│ QQuery 12 │ 23.92 / 24.45 ±0.50 / 25.23 ms │      24.08 / 24.43 ±0.21 / 24.69 ms │    no change │
│ QQuery 13 │ 32.46 / 34.06 ±0.91 / 35.17 ms │      31.77 / 33.95 ±2.18 / 38.03 ms │    no change │
│ QQuery 14 │ 23.45 / 23.88 ±0.28 / 24.23 ms │      23.15 / 23.50 ±0.18 / 23.65 ms │    no change │
│ QQuery 15 │ 30.88 / 31.08 ±0.16 / 31.36 ms │      30.94 / 31.31 ±0.61 / 32.52 ms │    no change │
│ QQuery 16 │ 13.73 / 13.91 ±0.15 / 14.10 ms │      13.82 / 14.21 ±0.27 / 14.66 ms │    no change │
│ QQuery 17 │ 71.29 / 72.70 ±1.55 / 75.10 ms │      70.34 / 72.09 ±2.20 / 76.43 ms │    no change │
│ QQuery 18 │ 58.12 / 59.09 ±1.16 / 61.31 ms │      57.79 / 60.82 ±2.38 / 64.88 ms │    no change │
│ QQuery 19 │ 32.98 / 33.57 ±0.92 / 35.39 ms │      33.29 / 33.55 ±0.37 / 34.29 ms │    no change │
│ QQuery 20 │ 31.55 / 31.90 ±0.25 / 32.23 ms │      32.00 / 32.25 ±0.21 / 32.52 ms │    no change │
│ QQuery 21 │ 53.96 / 55.43 ±0.75 / 55.99 ms │      56.46 / 57.63 ±0.70 / 58.51 ms │    no change │
│ QQuery 22 │ 13.96 / 14.15 ±0.17 / 14.47 ms │      14.38 / 15.22 ±0.73 / 16.15 ms │ 1.08x slower │
└───────────┴────────────────────────────────┴─────────────────────────────────────┴──────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━┓
┃ Benchmark Summary                                  ┃          ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━┩
│ Total Time (HEAD)                                  │ 756.26ms │
│ Total Time (codex_q39-contiguous-dynamic-filter)   │ 762.35ms │
│ Average Time (HEAD)                                │  34.38ms │
│ Average Time (codex_q39-contiguous-dynamic-filter) │  34.65ms │
│ 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 1.1 GiB
Avg memory 501.9 MiB
CPU user 21.6s
CPU sys 1.8s
Peak spill 0 B

tpch — branch

Metric Value
Wall time 5.0s
Peak memory 1.1 GiB
Avg memory 501.8 MiB
CPU user 22.0s
CPU sys 1.6s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

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

Comparing codex/q39-contiguous-dynamic-filter (c11a512) to b4cde12 (merge-base) diff

Run configuration
run benchmark tpcds
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 codex_q39-contiguous-dynamic-filter
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃       HEAD ┃ codex_q39-contiguous-dynamic-filter ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │    5.36 ms │                             5.38 ms │     no change │
│ QQuery 2  │   79.92 ms │                            78.56 ms │     no change │
│ QQuery 3  │   29.06 ms │                            29.34 ms │     no change │
│ QQuery 4  │  489.13 ms │                           484.12 ms │     no change │
│ QQuery 5  │   51.98 ms │                            51.35 ms │     no change │
│ QQuery 6  │   35.95 ms │                            35.82 ms │     no change │
│ QQuery 7  │   94.97 ms │                            95.21 ms │     no change │
│ QQuery 8  │   36.77 ms │                            36.34 ms │     no change │
│ QQuery 9  │   53.49 ms │                            52.40 ms │     no change │
│ QQuery 10 │   62.83 ms │                            63.23 ms │     no change │
│ QQuery 11 │  297.43 ms │                           298.76 ms │     no change │
│ QQuery 12 │   28.39 ms │                            28.43 ms │     no change │
│ QQuery 13 │  117.34 ms │                           118.51 ms │     no change │
│ QQuery 14 │  409.91 ms │                           413.54 ms │     no change │
│ QQuery 15 │   58.23 ms │                            56.74 ms │     no change │
│ QQuery 16 │    6.58 ms │                             6.56 ms │     no change │
│ QQuery 17 │   79.64 ms │                            79.71 ms │     no change │
│ QQuery 18 │  123.48 ms │                           123.76 ms │     no change │
│ QQuery 19 │   41.64 ms │                            41.52 ms │     no change │
│ QQuery 20 │   35.61 ms │                            35.52 ms │     no change │
│ QQuery 21 │   17.57 ms │                            17.24 ms │     no change │
│ QQuery 22 │   62.17 ms │                            62.53 ms │     no change │
│ QQuery 23 │  343.47 ms │                           344.94 ms │     no change │
│ QQuery 24 │  223.49 ms │                           224.86 ms │     no change │
│ QQuery 25 │  109.83 ms │                           109.53 ms │     no change │
│ QQuery 26 │   57.89 ms │                            58.63 ms │     no change │
│ QQuery 27 │    6.12 ms │                             6.25 ms │     no change │
│ QQuery 28 │   60.96 ms │                            57.56 ms │ +1.06x faster │
│ QQuery 29 │   97.30 ms │                            96.52 ms │     no change │
│ QQuery 30 │   32.65 ms │                            32.42 ms │     no change │
│ QQuery 31 │  110.96 ms │                           110.87 ms │     no change │
│ QQuery 32 │   19.99 ms │                            20.07 ms │     no change │
│ QQuery 33 │   37.71 ms │                            37.20 ms │     no change │
│ QQuery 34 │    9.88 ms │                             9.74 ms │     no change │
│ QQuery 35 │   73.29 ms │                            72.99 ms │     no change │
│ QQuery 36 │    5.66 ms │                             5.77 ms │     no change │
│ QQuery 37 │    6.74 ms │                             6.81 ms │     no change │
│ QQuery 38 │   61.71 ms │                            60.82 ms │     no change │
│ QQuery 39 │   90.91 ms │                            89.02 ms │     no change │
│ QQuery 40 │   23.10 ms │                            23.12 ms │     no change │
│ QQuery 41 │   11.46 ms │                            11.35 ms │     no change │
│ QQuery 42 │   23.71 ms │                            23.65 ms │     no change │
│ QQuery 43 │    4.97 ms │                             5.01 ms │     no change │
│ QQuery 44 │    9.04 ms │                             9.19 ms │     no change │
│ QQuery 45 │   37.76 ms │                            37.84 ms │     no change │
│ QQuery 46 │   11.84 ms │                            11.74 ms │     no change │
│ QQuery 47 │  224.52 ms │                           224.76 ms │     no change │
│ QQuery 48 │   96.50 ms │                            95.60 ms │     no change │
│ QQuery 49 │   76.33 ms │                            76.31 ms │     no change │
│ QQuery 50 │   59.34 ms │                            58.92 ms │     no change │
│ QQuery 51 │   90.36 ms │                            91.24 ms │     no change │
│ QQuery 52 │   24.29 ms │                            23.73 ms │     no change │
│ QQuery 53 │   29.60 ms │                            29.37 ms │     no change │
│ QQuery 54 │   55.60 ms │                            55.11 ms │     no change │
│ QQuery 55 │   23.64 ms │                            23.30 ms │     no change │
│ QQuery 56 │   38.86 ms │                            39.25 ms │     no change │
│ QQuery 57 │  177.44 ms │                           174.97 ms │     no change │
│ QQuery 58 │  115.65 ms │                           115.44 ms │     no change │
│ QQuery 59 │  117.63 ms │                           116.43 ms │     no change │
│ QQuery 60 │   39.10 ms │                            39.51 ms │     no change │
│ QQuery 61 │   12.08 ms │                            12.02 ms │     no change │
│ QQuery 62 │   46.57 ms │                            45.89 ms │     no change │
│ QQuery 63 │   30.40 ms │                            30.04 ms │     no change │
│ QQuery 64 │  409.18 ms │                           409.05 ms │     no change │
│ QQuery 65 │  123.28 ms │                           103.41 ms │ +1.19x faster │
│ QQuery 66 │   81.17 ms │                            79.16 ms │     no change │
│ QQuery 67 │  240.87 ms │                           238.51 ms │     no change │
│ QQuery 68 │   11.89 ms │                            11.68 ms │     no change │
│ QQuery 69 │   57.76 ms │                            57.69 ms │     no change │
│ QQuery 70 │  105.66 ms │                           105.52 ms │     no change │
│ QQuery 71 │   35.12 ms │                            35.14 ms │     no change │
│ QQuery 72 │ 2073.32 ms │                          2117.10 ms │     no change │
│ QQuery 73 │    9.58 ms │                             9.85 ms │     no change │
│ QQuery 74 │  170.24 ms │                           168.28 ms │     no change │
│ QQuery 75 │  149.07 ms │                           148.56 ms │     no change │
│ QQuery 76 │   35.52 ms │                            35.00 ms │     no change │
│ QQuery 77 │   61.19 ms │                            61.30 ms │     no change │
│ QQuery 78 │  197.30 ms │                           196.65 ms │     no change │
│ QQuery 79 │   67.80 ms │                            67.24 ms │     no change │
│ QQuery 80 │  100.16 ms │                            99.26 ms │     no change │
│ QQuery 81 │   25.63 ms │                            25.60 ms │     no change │
│ QQuery 82 │   16.23 ms │                            16.01 ms │     no change │
│ QQuery 83 │   39.23 ms │                            39.28 ms │     no change │
│ QQuery 84 │   30.34 ms │                            29.89 ms │     no change │
│ QQuery 85 │  106.43 ms │                           106.86 ms │     no change │
│ QQuery 86 │   25.34 ms │                            25.19 ms │     no change │
│ QQuery 87 │   61.05 ms │                            62.16 ms │     no change │
│ QQuery 88 │   61.81 ms │                            63.06 ms │     no change │
│ QQuery 89 │   35.39 ms │                            36.16 ms │     no change │
│ QQuery 90 │   16.66 ms │                            16.94 ms │     no change │
│ QQuery 91 │   45.24 ms │                            46.12 ms │     no change │
│ QQuery 92 │   29.15 ms │                            29.30 ms │     no change │
│ QQuery 93 │   49.86 ms │                            49.90 ms │     no change │
│ QQuery 94 │   37.78 ms │                            39.29 ms │     no change │
│ QQuery 95 │   79.43 ms │                            80.50 ms │     no change │
│ QQuery 96 │   24.03 ms │                            23.78 ms │     no change │
│ QQuery 97 │   47.52 ms │                            46.75 ms │     no change │
│ QQuery 98 │   43.04 ms │                            43.41 ms │     no change │
│ QQuery 99 │   70.73 ms │                            70.03 ms │     no change │
└───────────┴────────────┴─────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┓
┃ Benchmark Summary                                  ┃           ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━┩
│ Total Time (HEAD)                                  │ 9719.82ms │
│ Total Time (codex_q39-contiguous-dynamic-filter)   │ 9725.96ms │
│ Average Time (HEAD)                                │   98.18ms │
│ Average Time (codex_q39-contiguous-dynamic-filter) │   98.24ms │
│ Queries Faster                                     │         2 │
│ Queries Slower                                     │         0 │
│ Queries with No Change                             │        97 │
│ Queries with Failure                               │         0 │
└────────────────────────────────────────────────────┴───────────┘

Distribution per query (min / mean ±stddev / max):

Comparing HEAD and codex_q39-contiguous-dynamic-filter
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃   codex_q39-contiguous-dynamic-filter ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │           5.36 / 5.86 ±0.91 / 7.67 ms │           5.38 / 5.87 ±0.90 / 7.66 ms │     no change │
│ QQuery 2  │        79.92 / 80.29 ±0.40 / 80.80 ms │        78.56 / 79.06 ±0.28 / 79.41 ms │     no change │
│ QQuery 3  │        29.06 / 29.52 ±0.41 / 30.27 ms │        29.34 / 29.60 ±0.16 / 29.78 ms │     no change │
│ QQuery 4  │     489.13 / 491.42 ±1.92 / 494.68 ms │     484.12 / 489.83 ±4.19 / 497.15 ms │     no change │
│ QQuery 5  │        51.98 / 52.51 ±0.52 / 53.42 ms │        51.35 / 52.07 ±0.51 / 52.86 ms │     no change │
│ QQuery 6  │        35.95 / 36.50 ±0.30 / 36.85 ms │        35.82 / 36.44 ±0.42 / 36.90 ms │     no change │
│ QQuery 7  │        94.97 / 95.88 ±0.68 / 96.84 ms │        95.21 / 95.86 ±0.66 / 96.78 ms │     no change │
│ QQuery 8  │        36.77 / 37.32 ±0.42 / 37.95 ms │        36.34 / 37.91 ±2.07 / 41.90 ms │     no change │
│ QQuery 9  │        53.49 / 54.80 ±0.82 / 55.83 ms │        52.40 / 54.96 ±1.73 / 57.31 ms │     no change │
│ QQuery 10 │        62.83 / 63.65 ±0.57 / 64.59 ms │        63.23 / 63.87 ±0.52 / 64.37 ms │     no change │
│ QQuery 11 │     297.43 / 303.84 ±3.54 / 308.33 ms │     298.76 / 304.91 ±3.16 / 307.35 ms │     no change │
│ QQuery 12 │        28.39 / 29.07 ±0.39 / 29.42 ms │        28.43 / 28.92 ±0.26 / 29.16 ms │     no change │
│ QQuery 13 │     117.34 / 119.27 ±1.76 / 122.36 ms │     118.51 / 119.49 ±0.99 / 121.37 ms │     no change │
│ QQuery 14 │     409.91 / 416.17 ±5.05 / 424.39 ms │     413.54 / 418.62 ±3.86 / 423.28 ms │     no change │
│ QQuery 15 │        58.23 / 59.04 ±0.57 / 59.94 ms │        56.74 / 58.06 ±0.68 / 58.55 ms │     no change │
│ QQuery 16 │           6.58 / 6.78 ±0.20 / 7.13 ms │           6.56 / 6.68 ±0.19 / 7.05 ms │     no change │
│ QQuery 17 │        79.64 / 81.57 ±2.29 / 86.02 ms │        79.71 / 80.14 ±0.50 / 81.11 ms │     no change │
│ QQuery 18 │     123.48 / 124.49 ±0.86 / 125.60 ms │     123.76 / 125.70 ±1.74 / 128.69 ms │     no change │
│ QQuery 19 │        41.64 / 41.89 ±0.22 / 42.16 ms │        41.52 / 41.86 ±0.22 / 42.22 ms │     no change │
│ QQuery 20 │        35.61 / 36.16 ±0.37 / 36.61 ms │        35.52 / 36.61 ±0.97 / 38.19 ms │     no change │
│ QQuery 21 │        17.57 / 17.67 ±0.08 / 17.80 ms │        17.24 / 17.35 ±0.12 / 17.52 ms │     no change │
│ QQuery 22 │        62.17 / 63.64 ±1.10 / 65.38 ms │        62.53 / 65.28 ±3.80 / 72.76 ms │     no change │
│ QQuery 23 │    343.47 / 355.80 ±15.63 / 386.20 ms │     344.94 / 347.12 ±3.35 / 353.78 ms │     no change │
│ QQuery 24 │     223.49 / 228.58 ±4.29 / 236.06 ms │     224.86 / 226.34 ±1.09 / 227.97 ms │     no change │
│ QQuery 25 │     109.83 / 110.99 ±1.10 / 112.89 ms │     109.53 / 113.39 ±3.65 / 119.47 ms │     no change │
│ QQuery 26 │        57.89 / 59.13 ±2.27 / 63.66 ms │        58.63 / 59.92 ±2.20 / 64.31 ms │     no change │
│ QQuery 27 │           6.12 / 6.93 ±1.27 / 9.44 ms │           6.25 / 6.36 ±0.18 / 6.71 ms │ +1.09x faster │
│ QQuery 28 │        60.96 / 61.73 ±0.67 / 62.78 ms │        57.56 / 61.39 ±1.97 / 63.20 ms │     no change │
│ QQuery 29 │       97.30 / 98.92 ±2.26 / 103.36 ms │        96.52 / 97.63 ±1.17 / 99.85 ms │     no change │
│ QQuery 30 │        32.65 / 33.59 ±0.98 / 35.30 ms │        32.42 / 34.35 ±2.38 / 38.91 ms │     no change │
│ QQuery 31 │     110.96 / 111.90 ±0.86 / 113.36 ms │     110.87 / 111.50 ±0.84 / 113.16 ms │     no change │
│ QQuery 32 │        19.99 / 20.45 ±0.37 / 21.03 ms │        20.07 / 20.31 ±0.14 / 20.47 ms │     no change │
│ QQuery 33 │        37.71 / 39.28 ±2.80 / 44.88 ms │        37.20 / 37.83 ±0.40 / 38.16 ms │     no change │
│ QQuery 34 │         9.88 / 10.19 ±0.30 / 10.64 ms │         9.74 / 11.42 ±1.78 / 14.15 ms │  1.12x slower │
│ QQuery 35 │        73.29 / 74.30 ±0.89 / 75.89 ms │        72.99 / 73.78 ±0.64 / 74.60 ms │     no change │
│ QQuery 36 │           5.66 / 5.79 ±0.19 / 6.16 ms │           5.77 / 5.89 ±0.20 / 6.28 ms │     no change │
│ QQuery 37 │           6.74 / 6.83 ±0.10 / 7.01 ms │           6.81 / 6.97 ±0.13 / 7.18 ms │     no change │
│ QQuery 38 │        61.71 / 61.87 ±0.12 / 62.02 ms │        60.82 / 61.62 ±0.52 / 62.34 ms │     no change │
│ QQuery 39 │        90.91 / 93.16 ±2.18 / 96.74 ms │        89.02 / 90.28 ±1.01 / 92.00 ms │     no change │
│ QQuery 40 │        23.10 / 23.52 ±0.27 / 23.78 ms │        23.12 / 23.47 ±0.28 / 23.91 ms │     no change │
│ QQuery 41 │        11.46 / 11.61 ±0.25 / 12.11 ms │        11.35 / 11.56 ±0.16 / 11.82 ms │     no change │
│ QQuery 42 │        23.71 / 24.42 ±0.66 / 25.63 ms │        23.65 / 24.39 ±0.59 / 25.27 ms │     no change │
│ QQuery 43 │           4.97 / 5.03 ±0.10 / 5.24 ms │           5.01 / 5.10 ±0.12 / 5.34 ms │     no change │
│ QQuery 44 │           9.04 / 9.19 ±0.09 / 9.33 ms │           9.19 / 9.30 ±0.16 / 9.61 ms │     no change │
│ QQuery 45 │        37.76 / 38.47 ±0.55 / 39.11 ms │        37.84 / 38.31 ±0.43 / 38.95 ms │     no change │
│ QQuery 46 │        11.84 / 12.05 ±0.24 / 12.50 ms │        11.74 / 11.92 ±0.15 / 12.11 ms │     no change │
│ QQuery 47 │     224.52 / 229.86 ±4.06 / 236.24 ms │     224.76 / 228.78 ±2.29 / 231.16 ms │     no change │
│ QQuery 48 │        96.50 / 96.99 ±0.46 / 97.65 ms │       95.60 / 98.12 ±1.75 / 101.02 ms │     no change │
│ QQuery 49 │        76.33 / 77.41 ±0.75 / 78.54 ms │        76.31 / 76.87 ±0.39 / 77.45 ms │     no change │
│ QQuery 50 │        59.34 / 61.79 ±3.19 / 68.10 ms │        58.92 / 60.32 ±2.30 / 64.91 ms │     no change │
│ QQuery 51 │        90.36 / 92.81 ±2.26 / 96.69 ms │        91.24 / 92.97 ±1.75 / 95.65 ms │     no change │
│ QQuery 52 │        24.29 / 24.81 ±0.76 / 26.32 ms │        23.73 / 24.17 ±0.38 / 24.85 ms │     no change │
│ QQuery 53 │        29.60 / 29.79 ±0.16 / 29.96 ms │        29.37 / 29.67 ±0.24 / 29.94 ms │     no change │
│ QQuery 54 │        55.60 / 57.24 ±1.88 / 60.38 ms │        55.11 / 56.67 ±1.82 / 60.19 ms │     no change │
│ QQuery 55 │        23.64 / 23.99 ±0.23 / 24.26 ms │        23.30 / 23.87 ±0.60 / 24.86 ms │     no change │
│ QQuery 56 │        38.86 / 38.97 ±0.11 / 39.17 ms │        39.25 / 39.47 ±0.13 / 39.63 ms │     no change │
│ QQuery 57 │     177.44 / 179.39 ±1.94 / 182.82 ms │     174.97 / 178.36 ±4.71 / 187.69 ms │     no change │
│ QQuery 58 │     115.65 / 117.25 ±1.97 / 120.93 ms │     115.44 / 116.64 ±0.89 / 118.14 ms │     no change │
│ QQuery 59 │     117.63 / 118.50 ±0.78 / 119.93 ms │     116.43 / 117.90 ±1.32 / 119.70 ms │     no change │
│ QQuery 60 │        39.10 / 39.76 ±0.53 / 40.33 ms │        39.51 / 39.95 ±0.70 / 41.34 ms │     no change │
│ QQuery 61 │        12.08 / 12.30 ±0.32 / 12.93 ms │        12.02 / 12.23 ±0.16 / 12.51 ms │     no change │
│ QQuery 62 │        46.57 / 48.43 ±2.08 / 52.41 ms │        45.89 / 46.13 ±0.19 / 46.43 ms │     no change │
│ QQuery 63 │        30.40 / 30.95 ±0.41 / 31.63 ms │        30.04 / 31.00 ±0.95 / 32.78 ms │     no change │
│ QQuery 64 │     409.18 / 414.02 ±3.39 / 418.58 ms │     409.05 / 416.39 ±6.51 / 426.19 ms │     no change │
│ QQuery 65 │     123.28 / 125.33 ±1.64 / 126.94 ms │     103.41 / 105.22 ±1.84 / 108.61 ms │ +1.19x faster │
│ QQuery 66 │        81.17 / 82.55 ±1.28 / 84.15 ms │        79.16 / 81.70 ±1.89 / 84.11 ms │     no change │
│ QQuery 67 │     240.87 / 242.68 ±2.48 / 247.55 ms │     238.51 / 242.54 ±4.34 / 250.59 ms │     no change │
│ QQuery 68 │        11.89 / 12.02 ±0.12 / 12.23 ms │        11.68 / 11.84 ±0.23 / 12.29 ms │     no change │
│ QQuery 69 │        57.76 / 58.83 ±1.77 / 62.37 ms │        57.69 / 57.85 ±0.18 / 58.11 ms │     no change │
│ QQuery 70 │     105.66 / 112.28 ±5.33 / 120.02 ms │     105.52 / 110.09 ±5.31 / 120.31 ms │     no change │
│ QQuery 71 │        35.12 / 35.40 ±0.31 / 35.98 ms │        35.14 / 35.60 ±0.27 / 35.97 ms │     no change │
│ QQuery 72 │ 2073.32 / 2194.94 ±89.68 / 2305.40 ms │ 2117.10 / 2160.57 ±37.40 / 2205.89 ms │     no change │
│ QQuery 73 │          9.58 / 9.76 ±0.25 / 10.24 ms │         9.85 / 10.00 ±0.18 / 10.33 ms │     no change │
│ QQuery 74 │     170.24 / 173.25 ±2.52 / 177.36 ms │     168.28 / 172.27 ±2.84 / 175.83 ms │     no change │
│ QQuery 75 │     149.07 / 152.23 ±4.26 / 160.35 ms │     148.56 / 150.04 ±2.44 / 154.90 ms │     no change │
│ QQuery 76 │        35.52 / 35.83 ±0.30 / 36.39 ms │        35.00 / 35.34 ±0.33 / 35.93 ms │     no change │
│ QQuery 77 │        61.19 / 61.80 ±0.34 / 62.09 ms │        61.30 / 61.77 ±0.30 / 62.08 ms │     no change │
│ QQuery 78 │     197.30 / 202.11 ±5.61 / 212.84 ms │     196.65 / 201.17 ±3.94 / 207.92 ms │     no change │
│ QQuery 79 │        67.80 / 70.82 ±5.40 / 81.61 ms │        67.24 / 67.88 ±0.74 / 69.28 ms │     no change │
│ QQuery 80 │     100.16 / 101.34 ±1.77 / 104.80 ms │      99.26 / 100.87 ±1.04 / 102.06 ms │     no change │
│ QQuery 81 │        25.63 / 25.96 ±0.20 / 26.20 ms │        25.60 / 25.91 ±0.29 / 26.42 ms │     no change │
│ QQuery 82 │        16.23 / 16.93 ±1.23 / 19.39 ms │        16.01 / 16.20 ±0.10 / 16.28 ms │     no change │
│ QQuery 83 │        39.23 / 40.87 ±2.13 / 44.99 ms │        39.28 / 40.19 ±0.97 / 42.03 ms │     no change │
│ QQuery 84 │        30.34 / 30.87 ±0.35 / 31.23 ms │        29.89 / 29.98 ±0.06 / 30.05 ms │     no change │
│ QQuery 85 │     106.43 / 107.42 ±0.86 / 109.01 ms │     106.86 / 109.75 ±3.88 / 117.27 ms │     no change │
│ QQuery 86 │        25.34 / 25.83 ±0.36 / 26.43 ms │        25.19 / 25.40 ±0.20 / 25.74 ms │     no change │
│ QQuery 87 │        61.05 / 62.55 ±1.37 / 65.05 ms │        62.16 / 62.71 ±0.62 / 63.51 ms │     no change │
│ QQuery 88 │        61.81 / 62.59 ±0.45 / 63.21 ms │        63.06 / 65.44 ±3.85 / 73.12 ms │     no change │
│ QQuery 89 │        35.39 / 35.62 ±0.16 / 35.84 ms │        36.16 / 37.46 ±1.01 / 39.20 ms │  1.05x slower │
│ QQuery 90 │        16.66 / 16.93 ±0.19 / 17.22 ms │        16.94 / 17.15 ±0.14 / 17.29 ms │     no change │
│ QQuery 91 │        45.24 / 45.55 ±0.22 / 45.88 ms │        46.12 / 46.68 ±0.31 / 47.00 ms │     no change │
│ QQuery 92 │        29.15 / 32.22 ±3.25 / 36.37 ms │        29.30 / 29.69 ±0.35 / 30.31 ms │ +1.09x faster │
│ QQuery 93 │        49.86 / 51.13 ±1.30 / 53.44 ms │        49.90 / 50.87 ±0.60 / 51.65 ms │     no change │
│ QQuery 94 │        37.78 / 38.39 ±0.44 / 39.10 ms │        39.29 / 40.73 ±1.91 / 44.17 ms │  1.06x slower │
│ QQuery 95 │        79.43 / 80.63 ±0.82 / 81.76 ms │        80.50 / 81.86 ±0.85 / 83.19 ms │     no change │
│ QQuery 96 │        24.03 / 25.44 ±1.81 / 28.87 ms │        23.78 / 24.34 ±0.42 / 24.88 ms │     no change │
│ QQuery 97 │        47.52 / 48.61 ±1.88 / 52.37 ms │        46.75 / 47.09 ±0.19 / 47.30 ms │     no change │
│ QQuery 98 │        43.04 / 44.03 ±0.72 / 44.98 ms │        43.41 / 44.67 ±1.06 / 46.45 ms │     no change │
│ QQuery 99 │        70.73 / 71.34 ±0.35 / 71.82 ms │        70.03 / 70.60 ±0.46 / 71.18 ms │     no change │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┓
┃ Benchmark Summary                                  ┃           ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━┩
│ Total Time (HEAD)                                  │ 9979.42ms │
│ Total Time (codex_q39-contiguous-dynamic-filter)   │ 9900.20ms │
│ Average Time (HEAD)                                │  100.80ms │
│ Average Time (codex_q39-contiguous-dynamic-filter) │  100.00ms │
│ Queries Faster                                     │         3 │
│ Queries Slower                                     │         3 │
│ Queries with No Change                             │        93 │
│ Queries with Failure                               │         0 │
└────────────────────────────────────────────────────┴───────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 55.0s
Peak memory 2.2 GiB
Avg memory 1.6 GiB
CPU user 223.7s
CPU sys 6.1s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 50.0s
Peak memory 2.1 GiB
Avg memory 1.5 GiB
CPU user 223.9s
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)

Comparing codex/q39-contiguous-dynamic-filter (c11a512) to b4cde12 (merge-base) diff

Run configuration
run benchmark clickbench_partitioned
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 codex_q39-contiguous-dynamic-filter
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┓
┃ Query     ┃       HEAD ┃ codex_q39-contiguous-dynamic-filter ┃       Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━┩
│ QQuery 0  │    1.26 ms │                             1.29 ms │    no change │
│ QQuery 1  │   12.34 ms │                            13.11 ms │ 1.06x slower │
│ QQuery 2  │   36.16 ms │                            37.03 ms │    no change │
│ QQuery 3  │   31.63 ms │                            32.24 ms │    no change │
│ QQuery 4  │  243.10 ms │                           244.09 ms │    no change │
│ QQuery 5  │  285.75 ms │                           289.37 ms │    no change │
│ QQuery 6  │    1.32 ms │                             1.28 ms │    no change │
│ QQuery 7  │   14.16 ms │                            13.88 ms │    no change │
│ QQuery 8  │  350.75 ms │                           347.42 ms │    no change │
│ QQuery 9  │  492.91 ms │                           481.54 ms │    no change │
│ QQuery 10 │   71.54 ms │                            73.39 ms │    no change │
│ QQuery 11 │   84.19 ms │                            85.24 ms │    no change │
│ QQuery 12 │  289.04 ms │                           294.79 ms │    no change │
│ QQuery 13 │  386.70 ms │                           397.71 ms │    no change │
│ QQuery 14 │  301.94 ms │                           304.21 ms │    no change │
│ QQuery 15 │  299.11 ms │                           293.34 ms │    no change │
│ QQuery 16 │  647.67 ms │                           649.00 ms │    no change │
│ QQuery 17 │  669.78 ms │                           664.61 ms │    no change │
│ QQuery 18 │ 1385.89 ms │                          1352.92 ms │    no change │
│ QQuery 19 │   28.45 ms │                            29.47 ms │    no change │
│ QQuery 20 │  525.16 ms │                           525.37 ms │    no change │
│ QQuery 21 │  520.10 ms │                           527.69 ms │    no change │
│ QQuery 22 │ 1006.26 ms │                          1024.24 ms │    no change │
│ QQuery 23 │ 3198.59 ms │                          3243.90 ms │    no change │
│ QQuery 24 │   42.55 ms │                            42.09 ms │    no change │
│ QQuery 25 │  113.33 ms │                           115.75 ms │    no change │
│ QQuery 26 │   42.53 ms │                            43.35 ms │    no change │
│ QQuery 27 │  525.93 ms │                           525.55 ms │    no change │
│ QQuery 28 │ 2984.51 ms │                          2983.53 ms │    no change │
│ QQuery 29 │   41.62 ms │                            41.75 ms │    no change │
│ QQuery 30 │  315.53 ms │                           315.39 ms │    no change │
│ QQuery 31 │  296.48 ms │                           304.08 ms │    no change │
│ QQuery 32 │ 1003.56 ms │                          1038.99 ms │    no change │
│ QQuery 33 │ 1597.76 ms │                          1608.39 ms │    no change │
│ QQuery 34 │ 1618.37 ms │                          1618.12 ms │    no change │
│ QQuery 35 │  304.86 ms │                           303.77 ms │    no change │
│ QQuery 36 │   68.21 ms │                            69.23 ms │    no change │
│ QQuery 37 │   35.76 ms │                            37.12 ms │    no change │
│ QQuery 38 │   42.67 ms │                            44.14 ms │    no change │
│ QQuery 39 │  149.52 ms │                           156.80 ms │    no change │
│ QQuery 40 │   15.69 ms │                            14.99 ms │    no change │
│ QQuery 41 │   14.59 ms │                            14.48 ms │    no change │
│ QQuery 42 │   13.71 ms │                            13.86 ms │    no change │
└───────────┴────────────┴─────────────────────────────────────┴──────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                                  ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                                  │ 20110.96ms │
│ Total Time (codex_q39-contiguous-dynamic-filter)   │ 20218.49ms │
│ Average Time (HEAD)                                │   467.70ms │
│ Average Time (codex_q39-contiguous-dynamic-filter) │   470.20ms │
│ Queries Faster                                     │          0 │
│ Queries Slower                                     │          1 │
│ Queries with No Change                             │         42 │
│ Queries with Failure                               │          0 │
└────────────────────────────────────────────────────┴────────────┘

Distribution per query (min / mean ±stddev / max):

Comparing HEAD and codex_q39-contiguous-dynamic-filter
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃   codex_q39-contiguous-dynamic-filter ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.26 / 4.16 ±5.58 / 15.32 ms │          1.29 / 4.27 ±5.57 / 15.40 ms │     no change │
│ QQuery 1  │        12.34 / 12.82 ±0.25 / 13.07 ms │        13.11 / 13.42 ±0.34 / 14.06 ms │     no change │
│ QQuery 2  │        36.16 / 36.35 ±0.19 / 36.71 ms │        37.03 / 37.98 ±0.78 / 38.99 ms │     no change │
│ QQuery 3  │        31.63 / 32.16 ±0.55 / 33.15 ms │        32.24 / 32.70 ±0.47 / 33.46 ms │     no change │
│ QQuery 4  │     243.10 / 246.91 ±2.28 / 249.79 ms │     244.09 / 249.39 ±4.75 / 256.74 ms │     no change │
│ QQuery 5  │     285.75 / 291.47 ±4.12 / 296.89 ms │     289.37 / 292.73 ±2.46 / 295.97 ms │     no change │
│ QQuery 6  │           1.32 / 1.56 ±0.22 / 1.94 ms │           1.28 / 1.42 ±0.22 / 1.86 ms │ +1.10x faster │
│ QQuery 7  │        14.16 / 14.42 ±0.17 / 14.69 ms │        13.88 / 14.13 ±0.15 / 14.35 ms │     no change │
│ QQuery 8  │    350.75 / 359.62 ±10.87 / 380.64 ms │     347.42 / 352.53 ±3.99 / 357.29 ms │     no change │
│ QQuery 9  │     492.91 / 499.70 ±4.46 / 504.97 ms │     481.54 / 496.91 ±9.47 / 510.17 ms │     no change │
│ QQuery 10 │        71.54 / 73.32 ±1.04 / 74.62 ms │        73.39 / 74.98 ±1.06 / 76.59 ms │     no change │
│ QQuery 11 │        84.19 / 88.52 ±5.26 / 98.67 ms │        85.24 / 86.43 ±1.25 / 88.71 ms │     no change │
│ QQuery 12 │     289.04 / 295.46 ±6.22 / 307.06 ms │     294.79 / 301.08 ±6.15 / 309.45 ms │     no change │
│ QQuery 13 │    386.70 / 403.63 ±11.82 / 421.86 ms │    397.71 / 404.23 ±10.40 / 424.91 ms │     no change │
│ QQuery 14 │     301.94 / 307.40 ±2.90 / 310.58 ms │     304.21 / 306.54 ±3.04 / 312.49 ms │     no change │
│ QQuery 15 │     299.11 / 303.45 ±2.81 / 307.23 ms │     293.34 / 304.01 ±8.90 / 314.69 ms │     no change │
│ QQuery 16 │    647.67 / 664.82 ±12.08 / 681.24 ms │    649.00 / 680.12 ±15.90 / 693.82 ms │     no change │
│ QQuery 17 │     669.78 / 677.54 ±5.93 / 685.70 ms │    664.61 / 679.97 ±17.31 / 713.13 ms │     no change │
│ QQuery 18 │  1385.89 / 1396.41 ±7.56 / 1405.70 ms │ 1352.92 / 1407.67 ±41.22 / 1453.99 ms │     no change │
│ QQuery 19 │      28.45 / 43.85 ±29.98 / 103.80 ms │      29.47 / 47.90 ±36.26 / 120.42 ms │  1.09x slower │
│ QQuery 20 │    525.16 / 538.38 ±11.75 / 559.50 ms │     525.37 / 531.49 ±4.23 / 535.97 ms │     no change │
│ QQuery 21 │     520.10 / 529.06 ±7.70 / 542.19 ms │     527.69 / 533.34 ±4.76 / 540.19 ms │     no change │
│ QQuery 22 │  1006.26 / 1015.62 ±9.97 / 1034.32 ms │  1024.24 / 1038.02 ±8.47 / 1050.18 ms │     no change │
│ QQuery 23 │ 3198.59 / 3224.00 ±20.52 / 3250.82 ms │ 3243.90 / 3269.76 ±25.59 / 3302.00 ms │     no change │
│ QQuery 24 │        42.55 / 44.10 ±1.46 / 46.70 ms │        42.09 / 47.25 ±6.47 / 59.02 ms │  1.07x slower │
│ QQuery 25 │     113.33 / 116.50 ±1.88 / 118.89 ms │     115.75 / 117.27 ±1.70 / 120.07 ms │     no change │
│ QQuery 26 │        42.53 / 43.10 ±0.50 / 43.92 ms │        43.35 / 47.68 ±6.45 / 60.50 ms │  1.11x slower │
│ QQuery 27 │     525.93 / 537.57 ±8.04 / 548.41 ms │     525.55 / 533.91 ±7.42 / 543.50 ms │     no change │
│ QQuery 28 │ 2984.51 / 3018.98 ±32.26 / 3074.98 ms │ 2983.53 / 3001.98 ±17.55 / 3030.71 ms │     no change │
│ QQuery 29 │        41.62 / 42.25 ±0.45 / 42.92 ms │        41.75 / 45.55 ±7.00 / 59.56 ms │  1.08x slower │
│ QQuery 30 │     315.53 / 326.26 ±6.19 / 334.27 ms │     315.39 / 322.18 ±5.36 / 328.98 ms │     no change │
│ QQuery 31 │    296.48 / 313.36 ±12.46 / 331.48 ms │    304.08 / 313.20 ±13.41 / 339.82 ms │     no change │
│ QQuery 32 │ 1003.56 / 1038.40 ±33.11 / 1100.28 ms │ 1038.99 / 1084.30 ±41.68 / 1159.99 ms │     no change │
│ QQuery 33 │ 1597.76 / 1623.87 ±23.07 / 1654.62 ms │ 1608.39 / 1635.67 ±29.21 / 1689.84 ms │     no change │
│ QQuery 34 │ 1618.37 / 1650.45 ±30.36 / 1699.42 ms │ 1618.12 / 1647.05 ±21.97 / 1683.88 ms │     no change │
│ QQuery 35 │    304.86 / 347.77 ±54.13 / 454.53 ms │    303.77 / 332.96 ±32.04 / 395.22 ms │     no change │
│ QQuery 36 │        68.21 / 75.28 ±5.51 / 83.54 ms │        69.23 / 74.45 ±3.63 / 78.60 ms │     no change │
│ QQuery 37 │        35.76 / 39.96 ±4.48 / 48.33 ms │        37.12 / 39.88 ±3.58 / 46.94 ms │     no change │
│ QQuery 38 │        42.67 / 46.24 ±3.59 / 52.85 ms │        44.14 / 51.32 ±6.92 / 63.61 ms │  1.11x slower │
│ QQuery 39 │     149.52 / 165.01 ±8.96 / 174.06 ms │     156.80 / 163.58 ±6.17 / 170.92 ms │     no change │
│ QQuery 40 │        15.69 / 17.58 ±2.91 / 23.28 ms │        14.99 / 15.30 ±0.36 / 15.98 ms │ +1.15x faster │
│ QQuery 41 │        14.59 / 14.81 ±0.16 / 15.01 ms │        14.48 / 15.20 ±0.79 / 16.70 ms │     no change │
│ QQuery 42 │        13.71 / 14.43 ±0.51 / 15.16 ms │        13.86 / 15.80 ±3.30 / 22.39 ms │  1.10x slower │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                                  ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                                  │ 20536.53ms │
│ Total Time (codex_q39-contiguous-dynamic-filter)   │ 20665.55ms │
│ Average Time (HEAD)                                │   477.59ms │
│ Average Time (codex_q39-contiguous-dynamic-filter) │   480.59ms │
│ Queries Faster                                     │          2 │
│ Queries Slower                                     │          6 │
│ Queries with No Change                             │         35 │
│ Queries with Failure                               │          0 │
└────────────────────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 105.0s
Peak memory 11.1 GiB
Avg memory 4.1 GiB
CPU user 1048.9s
CPU sys 78.3s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 105.0s
Peak memory 13.6 GiB
Avg memory 4.8 GiB
CPU user 1054.2s
CPU sys 79.1s
Peak spill 0 B

File an issue against this benchmark runner

@github-actions github-actions Bot removed the core Core DataFusion crate label Aug 3, 2026
@hhhizzz

hhhizzz commented Aug 3, 2026

Copy link
Copy Markdown
Contributor Author

The benchmark results match the intended scope of this change. In 10 paired
TPC-DS SF10 runs, the candidate improved the full-suite total by 3.45% and Q39
by 4.18%. TPC-H and ClickBench were broadly performance-neutral, with no
material regression. All queries completed successfully with matching row
counts.

@hhhizzz
hhhizzz marked this pull request as ready for review August 3, 2026 03:12
@github-actions github-actions Bot added core Core DataFusion crate datasource Changes to the datasource crate labels Aug 13, 2026
@hhhizzz
hhhizzz marked this pull request as draft August 14, 2026 00:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Avoid redundant HashJoin dynamic-filter membership checks for contiguous integer build keys

5 participants