Skip to content

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

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

perf: elide redundant HashJoin dynamic-filter membership predicates for contiguous integer domains#23934
hhhizzz wants to merge 5 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 unchanged baseline with this patch on TPC-DS SF10, all 99
queries, using 10 alternating release rounds. Both arms used the same Arrow
commit and enabled Parquet pushdown filters, filter reordering, and pruning.
All queries and rounds completed successfully.

Component Baseline Candidate
DataFusion bb75d925cb7a6b8e1c5dc22bead85efc49754fe3 118fd470f306f87616468ff58060b71f0e761bdb
Arrow b8b59fb38dcc5930d7a087bc3e17bd955a6c9f21 b8b59fb38dcc5930d7a087bc3e17bd955a6c9f21

Ratios are candidate/baseline; values below 1 favor the candidate.

Metric Ratio 95% CI Elapsed-time change
Suite total 0.983529 [0.976737, 0.989774] -1.65%
Equal-query geomean 0.975289 [0.968237, 0.982635] -2.47%
q39 0.967708 [0.949456, 0.985307] -3.23%
q39 separate-arm p95 0.946249 [0.933645, 0.987039] -5.38%

No query triggered the predeclared median or p95
relative-plus-absolute regression guards.

The largest relative point slowdown was q41, with a ratio of 1.096873
(95% CI [1.045096, 1.170716]) and a paired median increase of 4.778 ms
(95% CI [3.227, 8.604]). Its absolute increase remained below the regression
guard threshold.

The benchmark is end-to-end evidence for the patch. The runner did not collect
per-query membership-elision metric hits, so this is not a claim that every
TPC-DS query exercises the optimized path.

The current PR head also contains follow-up coverage tests and tightens an
unreachable fallback into an explicit invariant. These follow-up changes do not
alter the valid-path behavior measured above.

Are there any user-facing changes?

There are no public API or configuration changes. The rewrite is
semantics-preserving.

The current PR head also contains follow-up coverage tests and models non-empty
membership sources explicitly, eliminating an unreachable fallback without
changing valid-path behavior.

@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

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 80.87%. Comparing base (6636d6b) to head (05b8e8c).
⚠️ Report is 1 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main   #23934      +/-   ##
==========================================
+ Coverage   80.86%   80.87%   +0.01%     
==========================================
  Files        1099     1099              
  Lines      374345   374696     +351     
  Branches   374345   374696     +351     
==========================================
+ Hits       302710   303043     +333     
- Misses      53595    53610      +15     
- Partials    18040    18043       +3     

☔ 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.

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

Labels

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

4 participants