Skip to content

Optimize ArrowBytesViewMap with direct value access and simplified API#21348

Closed
Dandandan wants to merge 2 commits intoapache:mainfrom
Dandandan:optimize-bytes-view-map-intern
Closed

Optimize ArrowBytesViewMap with direct value access and simplified API#21348
Dandandan wants to merge 2 commits intoapache:mainfrom
Dandandan:optimize-bytes-view-map-intern

Conversation

@Dandandan
Copy link
Copy Markdown
Contributor

@Dandandan Dandandan commented Apr 3, 2026

Which issue does this PR close?

N/A - performance optimization

Are these changes tested?

Existing tests pass. Test updated to match simplified make_payload_fn signature.

Are there any user-facing changes?

ArrowBytesViewMap::insert_if_new has a changed make_payload_fn signature (breaking API change for downstream users of this internal API).

🤖 Generated with Claude Code

Dandandan and others added 2 commits April 3, 2026 16:36
Hash functions now write all positions including nulls (using a
consistent null sentinel hash) when rehash=false (first column).
This allows with_hashes to skip the buffer zero-fill, saving ~0.5µs
per 8192-element batch on the no-nulls hot path.

Changes:
- with_hashes: use unsafe set_len instead of resize(n, 0)
- hash_array_primitive/hash_array: fill with null sentinel then
  overwrite valid positions via valid_indices()
- hash_string_view_array_inner: write null sentinel instead of skip
- hash_dictionary_inner: write null sentinel for null keys/values
- hash_run_array_inner: fill null run ranges with sentinel
- create_hashes: zero-fill only for complex types (struct, list, map,
  union) whose hash functions always combine with existing values

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Three optimizations for the BytesView hash map hot path:

1. Direct value bytes access: Replace values.value(i).as_ref() with
   direct pointer arithmetic on input_views + input_buffers, avoiding
   the GenericByteViewArray::value() accessor overhead on every hash
   table probe for >12 byte strings.

2. Skip append for inline strings: For strings <=12 bytes, the input
   view is self-contained. Instead of decoding to &[u8] and re-encoding
   via append_value -> make_view, push the input view directly.

3. Simplify make_payload_fn: Change from FnMut(Option<&[u8]>) to
   FnMut() since no caller uses the value bytes parameter. This
   eliminates unnecessary value decoding on the insert path.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
@github-actions github-actions bot added physical-expr Changes to the physical-expr crates common Related to common crate physical-plan Changes to the physical-plan crate labels Apr 3, 2026
@Dandandan
Copy link
Copy Markdown
Contributor Author

run benchmarks

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4183803628-752-dw24q 6.12.55+ #1 SMP Sun Feb 1 08:59:41 UTC 2026 aarch64 GNU/Linux

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

Comparing optimize-bytes-view-map-intern (414fc69) to 1e93a67 (merge-base) diff using: clickbench_partitioned
Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4183803628-754-qjwbf 6.12.55+ #1 SMP Sun Feb 1 08:59:41 UTC 2026 aarch64 GNU/Linux

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

Comparing optimize-bytes-view-map-intern (414fc69) to 1e93a67 (merge-base) diff using: tpch
Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4183803628-753-2l2p2 6.12.55+ #1 SMP Sun Feb 1 08:59:41 UTC 2026 aarch64 GNU/Linux

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

Comparing optimize-bytes-view-map-intern (414fc69) to 1e93a67 (merge-base) diff using: tpcds
Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

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

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

Comparing HEAD and optimize-bytes-view-map-intern
--------------------
Benchmark tpch_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┓
┃ Query     ┃                           HEAD ┃ optimize-bytes-view-map-intern ┃       Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━┩
│ QQuery 1  │ 45.78 / 46.11 ±0.53 / 47.16 ms │ 45.35 / 46.26 ±1.16 / 48.51 ms │    no change │
│ QQuery 2  │ 21.29 / 22.01 ±0.84 / 23.41 ms │ 21.25 / 21.71 ±0.37 / 22.19 ms │    no change │
│ QQuery 3  │ 31.67 / 31.90 ±0.15 / 32.03 ms │ 31.83 / 32.21 ±0.38 / 32.87 ms │    no change │
│ QQuery 4  │ 20.20 / 20.97 ±0.55 / 21.58 ms │ 20.44 / 21.26 ±0.67 / 22.39 ms │    no change │
│ QQuery 5  │ 48.94 / 49.77 ±1.08 / 51.91 ms │ 49.31 / 50.16 ±1.19 / 52.53 ms │    no change │
│ QQuery 6  │ 17.16 / 18.08 ±1.03 / 19.49 ms │ 17.29 / 17.95 ±0.63 / 19.14 ms │    no change │
│ QQuery 7  │ 54.69 / 55.80 ±0.99 / 57.44 ms │ 54.88 / 57.30 ±1.37 / 58.82 ms │    no change │
│ QQuery 8  │ 48.12 / 48.53 ±0.43 / 49.28 ms │ 49.12 / 52.41 ±3.14 / 57.42 ms │ 1.08x slower │
│ QQuery 9  │ 53.77 / 55.15 ±1.06 / 56.83 ms │ 54.46 / 55.86 ±1.18 / 57.98 ms │    no change │
│ QQuery 10 │ 72.35 / 74.54 ±1.85 / 77.34 ms │ 71.76 / 73.59 ±1.11 / 74.52 ms │    no change │
│ QQuery 11 │ 14.17 / 14.37 ±0.21 / 14.72 ms │ 14.32 / 14.53 ±0.16 / 14.80 ms │    no change │
│ QQuery 12 │ 27.48 / 27.91 ±0.32 / 28.39 ms │ 28.27 / 28.32 ±0.06 / 28.43 ms │    no change │
│ QQuery 13 │ 39.52 / 39.97 ±0.40 / 40.61 ms │ 38.92 / 39.60 ±0.55 / 40.35 ms │    no change │
│ QQuery 14 │ 28.61 / 29.65 ±1.46 / 32.53 ms │ 28.77 / 29.90 ±1.58 / 33.01 ms │    no change │
│ QQuery 15 │ 33.73 / 34.11 ±0.39 / 34.83 ms │ 33.85 / 34.09 ±0.21 / 34.35 ms │    no change │
│ QQuery 16 │ 16.15 / 16.46 ±0.41 / 17.26 ms │ 16.02 / 16.90 ±0.48 / 17.37 ms │    no change │
│ QQuery 17 │ 74.26 / 75.44 ±1.00 / 77.03 ms │ 73.38 / 76.13 ±1.81 / 78.67 ms │    no change │
│ QQuery 18 │ 77.71 / 79.80 ±1.89 / 83.20 ms │ 79.19 / 81.29 ±1.64 / 84.07 ms │    no change │
│ QQuery 19 │ 38.27 / 39.28 ±0.97 / 40.88 ms │ 37.66 / 38.01 ±0.23 / 38.24 ms │    no change │
│ QQuery 20 │ 40.54 / 41.31 ±0.46 / 41.96 ms │ 40.61 / 42.58 ±1.97 / 46.16 ms │    no change │
│ QQuery 21 │ 65.12 / 66.57 ±1.31 / 68.91 ms │ 65.76 / 67.57 ±1.09 / 68.83 ms │    no change │
│ QQuery 22 │ 17.92 / 18.83 ±0.82 / 20.23 ms │ 18.43 / 18.96 ±0.35 / 19.48 ms │    no change │
└───────────┴────────────────────────────────┴────────────────────────────────┴──────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━┓
┃ Benchmark Summary                             ┃          ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━┩
│ Total Time (HEAD)                             │ 906.55ms │
│ Total Time (optimize-bytes-view-map-intern)   │ 916.59ms │
│ Average Time (HEAD)                           │  41.21ms │
│ Average Time (optimize-bytes-view-map-intern) │  41.66ms │
│ 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 4.8s
Peak memory 4.0 GiB
Avg memory 3.6 GiB
CPU user 34.0s
CPU sys 2.6s
Disk read 0 B
Disk write 136.0 KiB

tpch — branch

Metric Value
Wall time 4.8s
Peak memory 4.1 GiB
Avg memory 3.6 GiB
CPU user 34.0s
CPU sys 2.8s
Disk read 0 B
Disk write 60.0 KiB

File an issue against this benchmark runner

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

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

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

Comparing HEAD and optimize-bytes-view-map-intern
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                     HEAD ┃           optimize-bytes-view-map-intern ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │           43.96 / 44.46 ±0.75 / 45.95 ms │           44.21 / 44.72 ±0.59 / 45.66 ms │     no change │
│ QQuery 2  │        147.20 / 147.84 ±0.85 / 149.42 ms │        149.22 / 150.04 ±0.73 / 150.98 ms │     no change │
│ QQuery 3  │        115.09 / 116.06 ±0.52 / 116.60 ms │        116.78 / 117.22 ±0.49 / 118.07 ms │     no change │
│ QQuery 4  │    1387.55 / 1418.55 ±28.91 / 1458.81 ms │    1398.01 / 1434.45 ±26.60 / 1461.36 ms │     no change │
│ QQuery 5  │        175.06 / 176.40 ±1.20 / 178.45 ms │        173.82 / 176.77 ±2.46 / 179.79 ms │     no change │
│ QQuery 6  │    1025.45 / 1036.98 ±12.47 / 1054.78 ms │    1062.70 / 1092.22 ±15.15 / 1104.44 ms │  1.05x slower │
│ QQuery 7  │        358.46 / 360.81 ±2.61 / 365.61 ms │        360.35 / 362.96 ±4.17 / 371.28 ms │     no change │
│ QQuery 8  │        116.41 / 118.45 ±1.25 / 119.76 ms │        117.42 / 118.36 ±1.11 / 120.15 ms │     no change │
│ QQuery 9  │        101.95 / 108.55 ±5.38 / 118.40 ms │        102.18 / 106.01 ±2.45 / 108.42 ms │     no change │
│ QQuery 10 │        106.65 / 108.24 ±0.92 / 109.43 ms │        107.42 / 109.24 ±1.17 / 111.00 ms │     no change │
│ QQuery 11 │      996.96 / 1003.69 ±4.34 / 1009.16 ms │     1014.12 / 1024.87 ±7.98 / 1038.58 ms │     no change │
│ QQuery 12 │           48.00 / 49.17 ±1.03 / 51.02 ms │           48.04 / 49.07 ±1.12 / 50.50 ms │     no change │
│ QQuery 13 │        404.37 / 408.12 ±2.48 / 411.74 ms │        405.83 / 408.46 ±1.71 / 410.91 ms │     no change │
│ QQuery 14 │     1028.41 / 1036.22 ±4.96 / 1041.80 ms │    1035.69 / 1051.07 ±10.86 / 1064.59 ms │     no change │
│ QQuery 15 │           16.18 / 17.47 ±1.36 / 20.11 ms │           16.45 / 17.61 ±1.99 / 21.58 ms │     no change │
│ QQuery 16 │           41.36 / 42.71 ±1.25 / 44.66 ms │           41.57 / 42.61 ±0.83 / 43.61 ms │     no change │
│ QQuery 17 │        242.37 / 245.07 ±1.57 / 247.19 ms │        246.14 / 248.61 ±1.73 / 250.92 ms │     no change │
│ QQuery 18 │        130.20 / 132.70 ±1.51 / 134.86 ms │        129.69 / 131.69 ±1.13 / 132.90 ms │     no change │
│ QQuery 19 │        157.91 / 160.25 ±1.71 / 162.35 ms │        156.54 / 159.20 ±1.58 / 161.47 ms │     no change │
│ QQuery 20 │           14.17 / 14.44 ±0.25 / 14.89 ms │           13.89 / 14.66 ±0.50 / 15.14 ms │     no change │
│ QQuery 21 │           19.82 / 20.36 ±0.28 / 20.62 ms │           19.45 / 20.31 ±0.64 / 21.13 ms │     no change │
│ QQuery 22 │        499.77 / 504.83 ±4.03 / 511.12 ms │        491.12 / 496.76 ±3.73 / 502.58 ms │     no change │
│ QQuery 23 │        918.63 / 930.70 ±7.16 / 939.49 ms │        934.33 / 941.85 ±4.56 / 946.58 ms │     no change │
│ QQuery 24 │        420.33 / 424.19 ±3.08 / 427.34 ms │        421.87 / 424.38 ±2.90 / 429.99 ms │     no change │
│ QQuery 25 │        354.91 / 357.59 ±2.26 / 361.35 ms │        357.43 / 361.58 ±2.96 / 366.03 ms │     no change │
│ QQuery 26 │           81.17 / 83.65 ±1.85 / 86.41 ms │           83.74 / 84.59 ±0.96 / 86.47 ms │     no change │
│ QQuery 27 │        351.13 / 352.94 ±1.49 / 354.71 ms │        352.71 / 358.09 ±3.67 / 363.90 ms │     no change │
│ QQuery 28 │        150.25 / 152.25 ±1.64 / 155.09 ms │        150.44 / 153.68 ±1.69 / 155.31 ms │     no change │
│ QQuery 29 │        299.57 / 302.15 ±1.83 / 304.95 ms │        302.39 / 305.37 ±1.83 / 308.14 ms │     no change │
│ QQuery 30 │           42.97 / 44.65 ±0.88 / 45.51 ms │           45.91 / 47.14 ±1.07 / 49.11 ms │  1.06x slower │
│ QQuery 31 │        172.82 / 174.87 ±1.24 / 176.41 ms │        174.47 / 176.57 ±2.06 / 180.48 ms │     no change │
│ QQuery 32 │           57.34 / 58.95 ±1.30 / 60.97 ms │           57.84 / 58.73 ±0.55 / 59.36 ms │     no change │
│ QQuery 33 │        142.63 / 144.35 ±1.28 / 146.39 ms │        142.74 / 144.81 ±2.11 / 148.08 ms │     no change │
│ QQuery 34 │        108.17 / 109.32 ±0.92 / 110.71 ms │        108.66 / 109.94 ±1.07 / 111.44 ms │     no change │
│ QQuery 35 │        108.80 / 109.96 ±0.79 / 111.17 ms │        111.43 / 112.07 ±0.57 / 112.80 ms │     no change │
│ QQuery 36 │        216.84 / 223.40 ±4.73 / 231.53 ms │        220.69 / 224.47 ±2.32 / 227.33 ms │     no change │
│ QQuery 37 │        180.68 / 181.67 ±0.76 / 182.96 ms │        178.69 / 182.34 ±2.50 / 186.25 ms │     no change │
│ QQuery 38 │           87.36 / 90.70 ±2.89 / 95.61 ms │           88.96 / 90.95 ±1.36 / 93.20 ms │     no change │
│ QQuery 39 │        125.92 / 129.27 ±2.66 / 132.64 ms │        129.45 / 132.49 ±1.76 / 134.72 ms │     no change │
│ QQuery 40 │        116.35 / 120.51 ±6.94 / 134.27 ms │        112.99 / 117.83 ±6.70 / 130.94 ms │     no change │
│ QQuery 41 │           16.27 / 17.12 ±0.67 / 17.74 ms │           14.45 / 15.58 ±1.17 / 17.80 ms │ +1.10x faster │
│ QQuery 42 │        108.96 / 110.42 ±1.03 / 111.63 ms │        108.69 / 110.46 ±1.17 / 112.21 ms │     no change │
│ QQuery 43 │           84.36 / 85.87 ±1.04 / 87.35 ms │           85.10 / 86.34 ±0.97 / 87.93 ms │     no change │
│ QQuery 44 │           11.71 / 12.16 ±0.33 / 12.72 ms │           11.86 / 12.57 ±0.91 / 14.35 ms │     no change │
│ QQuery 45 │           53.64 / 54.66 ±0.75 / 55.46 ms │           53.81 / 55.02 ±0.69 / 55.79 ms │     no change │
│ QQuery 46 │        239.95 / 241.43 ±1.08 / 243.02 ms │        240.87 / 243.26 ±1.61 / 245.67 ms │     no change │
│ QQuery 47 │       750.41 / 765.63 ±10.42 / 780.90 ms │        759.36 / 766.19 ±3.91 / 770.17 ms │     no change │
│ QQuery 48 │        291.15 / 294.43 ±4.03 / 301.78 ms │        287.67 / 292.07 ±3.62 / 296.98 ms │     no change │
│ QQuery 49 │        254.91 / 258.06 ±1.61 / 259.42 ms │        254.67 / 258.40 ±3.46 / 263.91 ms │     no change │
│ QQuery 50 │        233.13 / 241.25 ±5.92 / 250.22 ms │        235.16 / 242.91 ±4.95 / 249.16 ms │     no change │
│ QQuery 51 │        183.94 / 188.00 ±2.27 / 190.15 ms │        184.69 / 188.76 ±2.43 / 191.65 ms │     no change │
│ QQuery 52 │        109.52 / 110.62 ±0.83 / 111.46 ms │        109.70 / 110.32 ±0.37 / 110.83 ms │     no change │
│ QQuery 53 │        103.88 / 104.50 ±0.52 / 105.09 ms │        104.71 / 106.12 ±1.19 / 107.92 ms │     no change │
│ QQuery 54 │        149.87 / 151.11 ±0.92 / 152.57 ms │        148.25 / 149.96 ±1.25 / 151.52 ms │     no change │
│ QQuery 55 │        109.26 / 110.09 ±1.33 / 112.74 ms │        109.30 / 111.27 ±1.62 / 113.52 ms │     no change │
│ QQuery 56 │        141.96 / 142.96 ±0.73 / 144.04 ms │        143.03 / 144.30 ±0.96 / 145.51 ms │     no change │
│ QQuery 57 │        176.33 / 178.83 ±1.62 / 180.71 ms │        179.86 / 181.45 ±1.44 / 183.60 ms │     no change │
│ QQuery 58 │        291.97 / 302.66 ±7.24 / 314.46 ms │        308.39 / 316.14 ±9.67 / 334.41 ms │     no change │
│ QQuery 59 │        202.60 / 204.08 ±1.11 / 205.12 ms │        201.76 / 204.67 ±1.92 / 207.52 ms │     no change │
│ QQuery 60 │        144.95 / 146.83 ±1.53 / 149.31 ms │        145.40 / 147.92 ±1.86 / 150.56 ms │     no change │
│ QQuery 61 │        175.01 / 176.61 ±2.19 / 180.86 ms │        175.96 / 177.40 ±1.29 / 179.52 ms │     no change │
│ QQuery 62 │      908.96 / 954.06 ±37.21 / 1011.25 ms │      920.94 / 944.04 ±29.88 / 1000.72 ms │     no change │
│ QQuery 63 │        105.93 / 109.02 ±2.09 / 112.00 ms │        104.14 / 106.89 ±2.60 / 110.48 ms │     no change │
│ QQuery 64 │        704.43 / 715.64 ±5.80 / 720.62 ms │        709.00 / 716.28 ±5.38 / 723.62 ms │     no change │
│ QQuery 65 │        258.58 / 264.49 ±4.34 / 270.22 ms │        264.85 / 267.38 ±2.24 / 271.24 ms │     no change │
│ QQuery 66 │        249.09 / 256.94 ±5.99 / 266.46 ms │       238.77 / 256.80 ±15.67 / 285.12 ms │     no change │
│ QQuery 67 │        322.64 / 328.11 ±4.69 / 336.56 ms │        322.66 / 330.52 ±9.09 / 347.77 ms │     no change │
│ QQuery 68 │        288.75 / 291.00 ±2.68 / 296.07 ms │        288.20 / 290.34 ±2.37 / 294.43 ms │     no change │
│ QQuery 69 │        103.61 / 104.97 ±1.48 / 107.36 ms │        103.54 / 105.02 ±1.50 / 106.99 ms │     no change │
│ QQuery 70 │       334.44 / 351.17 ±11.08 / 367.63 ms │        339.29 / 353.40 ±9.50 / 367.97 ms │     no change │
│ QQuery 71 │        136.64 / 137.55 ±0.83 / 138.92 ms │        137.63 / 139.49 ±1.94 / 143.08 ms │     no change │
│ QQuery 72 │       711.62 / 731.79 ±16.32 / 759.62 ms │        724.61 / 739.28 ±9.39 / 751.70 ms │     no change │
│ QQuery 73 │        103.59 / 105.44 ±1.44 / 107.94 ms │        103.96 / 106.31 ±1.29 / 107.58 ms │     no change │
│ QQuery 74 │        629.93 / 635.01 ±3.64 / 639.63 ms │        629.43 / 638.24 ±6.85 / 649.71 ms │     no change │
│ QQuery 75 │        283.25 / 285.29 ±1.11 / 286.26 ms │        282.78 / 284.14 ±1.05 / 285.48 ms │     no change │
│ QQuery 76 │        132.77 / 135.82 ±1.94 / 138.75 ms │        135.49 / 137.05 ±0.96 / 138.08 ms │     no change │
│ QQuery 77 │        191.95 / 193.59 ±1.19 / 195.08 ms │        192.72 / 194.26 ±1.41 / 196.17 ms │     no change │
│ QQuery 78 │        354.20 / 359.04 ±4.38 / 366.43 ms │        362.15 / 365.87 ±2.84 / 370.73 ms │     no change │
│ QQuery 79 │        242.52 / 245.83 ±3.33 / 250.48 ms │        238.59 / 249.25 ±5.83 / 254.98 ms │     no change │
│ QQuery 80 │        328.76 / 332.52 ±2.77 / 335.79 ms │        332.42 / 336.04 ±2.63 / 340.49 ms │     no change │
│ QQuery 81 │           27.41 / 28.37 ±0.82 / 29.60 ms │           27.49 / 28.93 ±1.48 / 31.33 ms │     no change │
│ QQuery 82 │        197.03 / 200.23 ±2.19 / 202.78 ms │        206.40 / 208.81 ±2.15 / 212.33 ms │     no change │
│ QQuery 83 │           41.40 / 42.17 ±0.83 / 43.40 ms │           42.09 / 42.99 ±1.17 / 45.29 ms │     no change │
│ QQuery 84 │           49.46 / 50.75 ±1.63 / 53.82 ms │           49.33 / 50.82 ±1.26 / 53.10 ms │     no change │
│ QQuery 85 │        150.55 / 152.45 ±1.48 / 154.81 ms │        152.99 / 153.85 ±0.64 / 154.71 ms │     no change │
│ QQuery 86 │           40.05 / 40.60 ±0.31 / 40.91 ms │           40.14 / 40.90 ±0.62 / 41.89 ms │     no change │
│ QQuery 87 │           87.58 / 90.81 ±3.06 / 96.63 ms │          91.35 / 94.97 ±3.41 / 101.01 ms │     no change │
│ QQuery 88 │        100.56 / 101.81 ±1.07 / 103.57 ms │        104.23 / 105.54 ±1.02 / 106.81 ms │     no change │
│ QQuery 89 │        121.19 / 122.45 ±0.99 / 124.13 ms │        120.47 / 123.22 ±1.92 / 126.06 ms │     no change │
│ QQuery 90 │           24.00 / 24.29 ±0.21 / 24.59 ms │           24.02 / 24.35 ±0.26 / 24.74 ms │     no change │
│ QQuery 91 │           64.98 / 66.22 ±0.75 / 66.83 ms │           64.13 / 65.43 ±1.23 / 67.01 ms │     no change │
│ QQuery 92 │           59.19 / 59.86 ±0.71 / 61.07 ms │           58.50 / 59.25 ±0.56 / 60.23 ms │     no change │
│ QQuery 93 │        195.73 / 196.87 ±0.96 / 198.06 ms │        196.85 / 199.81 ±1.87 / 202.73 ms │     no change │
│ QQuery 94 │           61.87 / 62.92 ±0.92 / 64.64 ms │           62.26 / 63.73 ±1.57 / 66.63 ms │     no change │
│ QQuery 95 │        135.07 / 137.15 ±1.56 / 139.51 ms │        137.02 / 138.94 ±1.62 / 140.69 ms │     no change │
│ QQuery 96 │           70.30 / 74.25 ±2.27 / 76.41 ms │           75.22 / 75.97 ±0.61 / 76.81 ms │     no change │
│ QQuery 97 │        133.20 / 135.01 ±1.80 / 138.29 ms │        133.47 / 136.06 ±1.90 / 139.25 ms │     no change │
│ QQuery 98 │        157.73 / 160.40 ±2.08 / 163.93 ms │        156.25 / 157.96 ±1.71 / 160.90 ms │     no change │
│ QQuery 99 │ 10805.96 / 10831.55 ±20.44 / 10867.44 ms │ 10853.68 / 10880.99 ±26.59 / 10928.84 ms │     no change │
└───────────┴──────────────────────────────────────────┴──────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                             ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                             │ 34275.27ms │
│ Total Time (optimize-bytes-view-map-intern)   │ 34538.02ms │
│ Average Time (HEAD)                           │   346.21ms │
│ Average Time (optimize-bytes-view-map-intern) │   348.87ms │
│ Queries Faster                                │          1 │
│ Queries Slower                                │          2 │
│ Queries with No Change                        │         96 │
│ Queries with Failure                          │          0 │
└───────────────────────────────────────────────┴────────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 171.7s
Peak memory 5.5 GiB
Avg memory 4.6 GiB
CPU user 277.1s
CPU sys 17.8s
Disk read 0 B
Disk write 638.1 MiB

tpcds — branch

Metric Value
Wall time 173.0s
Peak memory 5.8 GiB
Avg memory 4.6 GiB
CPU user 278.6s
CPU sys 18.7s
Disk read 0 B
Disk write 148.0 KiB

File an issue against this benchmark runner

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

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

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

Comparing HEAD and optimize-bytes-view-map-intern
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃        optimize-bytes-view-map-intern ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.30 / 4.55 ±6.37 / 17.30 ms │          1.29 / 4.51 ±6.35 / 17.21 ms │     no change │
│ QQuery 1  │        14.44 / 14.79 ±0.19 / 15.02 ms │        14.58 / 14.94 ±0.22 / 15.20 ms │     no change │
│ QQuery 2  │        43.33 / 43.86 ±0.38 / 44.33 ms │        43.42 / 44.03 ±0.41 / 44.51 ms │     no change │
│ QQuery 3  │        42.76 / 44.85 ±1.14 / 46.20 ms │        42.05 / 43.44 ±1.00 / 44.58 ms │     no change │
│ QQuery 4  │     291.11 / 296.68 ±3.50 / 301.81 ms │     286.18 / 295.75 ±9.76 / 314.56 ms │     no change │
│ QQuery 5  │     345.27 / 351.29 ±3.33 / 354.44 ms │     340.15 / 343.16 ±3.08 / 347.46 ms │     no change │
│ QQuery 6  │           5.09 / 5.59 ±0.38 / 6.05 ms │           5.51 / 6.94 ±1.54 / 9.68 ms │  1.24x slower │
│ QQuery 7  │        16.51 / 17.35 ±0.70 / 18.56 ms │        16.99 / 17.70 ±0.86 / 19.39 ms │     no change │
│ QQuery 8  │     415.02 / 426.10 ±6.68 / 434.62 ms │     407.31 / 415.21 ±5.09 / 420.95 ms │     no change │
│ QQuery 9  │     644.50 / 653.08 ±7.34 / 666.47 ms │     641.44 / 652.17 ±7.56 / 664.70 ms │     no change │
│ QQuery 10 │        90.63 / 93.06 ±1.82 / 96.08 ms │       91.16 / 94.30 ±4.29 / 102.67 ms │     no change │
│ QQuery 11 │     103.04 / 104.30 ±0.89 / 105.49 ms │     105.34 / 107.04 ±2.37 / 111.71 ms │     no change │
│ QQuery 12 │     347.44 / 352.39 ±3.83 / 358.22 ms │     347.34 / 359.20 ±7.23 / 367.02 ms │     no change │
│ QQuery 13 │     448.32 / 464.25 ±9.70 / 475.25 ms │    454.37 / 479.10 ±16.69 / 497.83 ms │     no change │
│ QQuery 14 │     351.09 / 359.74 ±4.77 / 365.65 ms │     350.35 / 362.20 ±7.26 / 371.10 ms │     no change │
│ QQuery 15 │    362.09 / 381.78 ±17.30 / 408.54 ms │    379.55 / 399.21 ±24.97 / 447.64 ms │     no change │
│ QQuery 16 │    735.96 / 752.97 ±18.73 / 789.13 ms │    725.41 / 747.23 ±33.77 / 814.37 ms │     no change │
│ QQuery 17 │     715.07 / 723.60 ±6.90 / 734.45 ms │     710.69 / 722.10 ±6.95 / 731.44 ms │     no change │
│ QQuery 18 │ 1400.18 / 1487.12 ±59.95 / 1554.59 ms │ 1439.46 / 1480.00 ±35.40 / 1536.18 ms │     no change │
│ QQuery 19 │       36.29 / 49.55 ±22.51 / 94.44 ms │       35.60 / 43.65 ±13.06 / 69.66 ms │ +1.14x faster │
│ QQuery 20 │    723.34 / 742.03 ±17.91 / 763.95 ms │    728.73 / 740.65 ±13.90 / 763.71 ms │     no change │
│ QQuery 21 │     766.24 / 772.43 ±4.78 / 778.46 ms │     768.20 / 769.28 ±1.05 / 771.26 ms │     no change │
│ QQuery 22 │  1133.46 / 1142.20 ±5.53 / 1149.72 ms │  1137.00 / 1142.81 ±5.54 / 1153.28 ms │     no change │
│ QQuery 23 │ 3064.58 / 3104.33 ±22.88 / 3129.63 ms │ 3083.13 / 3130.89 ±29.37 / 3174.98 ms │     no change │
│ QQuery 24 │      97.91 / 103.12 ±2.95 / 106.62 ms │     100.50 / 102.01 ±1.71 / 105.32 ms │     no change │
│ QQuery 25 │     138.44 / 141.29 ±1.92 / 144.48 ms │     139.91 / 143.34 ±2.42 / 147.00 ms │     no change │
│ QQuery 26 │     100.10 / 101.56 ±1.39 / 103.52 ms │     102.75 / 105.46 ±1.89 / 108.13 ms │     no change │
│ QQuery 27 │     849.06 / 857.03 ±4.96 / 863.26 ms │     850.12 / 855.20 ±5.46 / 862.73 ms │     no change │
│ QQuery 28 │ 7704.55 / 7772.47 ±34.57 / 7795.17 ms │ 7690.33 / 7756.89 ±37.23 / 7790.34 ms │     no change │
│ QQuery 29 │        50.18 / 55.99 ±5.47 / 63.59 ms │        49.92 / 54.41 ±3.28 / 59.64 ms │     no change │
│ QQuery 30 │     361.03 / 369.68 ±5.73 / 375.82 ms │     363.33 / 371.13 ±6.60 / 380.95 ms │     no change │
│ QQuery 31 │     369.07 / 376.05 ±5.49 / 383.15 ms │    364.09 / 381.64 ±12.55 / 396.41 ms │     no change │
│ QQuery 32 │ 1261.70 / 1313.46 ±28.83 / 1342.41 ms │  982.94 / 1037.92 ±55.93 / 1137.09 ms │ +1.27x faster │
│ QQuery 33 │ 1452.37 / 1507.65 ±61.28 / 1620.42 ms │  1483.08 / 1492.53 ±6.70 / 1499.96 ms │     no change │
│ QQuery 34 │ 1456.36 / 1480.08 ±22.66 / 1521.10 ms │ 1438.73 / 1472.23 ±19.49 / 1498.44 ms │     no change │
│ QQuery 35 │     388.58 / 391.81 ±2.15 / 394.71 ms │     395.98 / 398.84 ±2.42 / 402.71 ms │     no change │
│ QQuery 36 │     122.07 / 124.00 ±1.56 / 126.67 ms │     124.17 / 127.07 ±2.52 / 130.12 ms │     no change │
│ QQuery 37 │        47.73 / 48.68 ±0.82 / 49.70 ms │        49.20 / 50.29 ±1.06 / 52.17 ms │     no change │
│ QQuery 38 │        75.47 / 77.23 ±0.96 / 78.37 ms │        77.49 / 78.60 ±0.69 / 79.56 ms │     no change │
│ QQuery 39 │     214.84 / 221.41 ±5.34 / 227.15 ms │     208.76 / 223.58 ±8.81 / 236.48 ms │     no change │
│ QQuery 40 │        24.25 / 26.00 ±1.05 / 27.50 ms │        22.00 / 25.04 ±2.23 / 28.06 ms │     no change │
│ QQuery 41 │        20.08 / 21.06 ±0.80 / 22.15 ms │        20.77 / 22.52 ±1.32 / 24.35 ms │  1.07x slower │
│ QQuery 42 │        19.23 / 19.90 ±0.40 / 20.41 ms │        20.12 / 20.29 ±0.18 / 20.62 ms │     no change │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                             ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                             │ 27396.34ms │
│ Total Time (optimize-bytes-view-map-intern)   │ 27134.49ms │
│ Average Time (HEAD)                           │   637.12ms │
│ Average Time (optimize-bytes-view-map-intern) │   631.03ms │
│ Queries Faster                                │          2 │
│ Queries Slower                                │          2 │
│ Queries with No Change                        │         39 │
│ Queries with Failure                          │          0 │
└───────────────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 138.1s
Peak memory 42.8 GiB
Avg memory 31.9 GiB
CPU user 1290.2s
CPU sys 98.9s
Disk read 0 B
Disk write 4.8 GiB

clickbench_partitioned — branch

Metric Value
Wall time 136.8s
Peak memory 42.6 GiB
Avg memory 31.9 GiB
CPU user 1284.9s
CPU sys 89.9s
Disk read 0 B
Disk write 756.0 KiB

File an issue against this benchmark runner

@Dandandan
Copy link
Copy Markdown
Contributor Author

run benchmark clickbench clickbench_extended

@adriangbot
Copy link
Copy Markdown

🤖 Criterion benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4184604261-763-8sbbd 6.12.55+ #1 SMP Sun Feb 1 08:59:41 UTC 2026 aarch64 GNU/Linux

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

Comparing optimize-bytes-view-map-intern (414fc69) to 1e93a67 (merge-base) diff
BENCH_NAME=clickbench
BENCH_COMMAND=cargo bench --features=parquet --bench clickbench
BENCH_FILTER=
Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot
Copy link
Copy Markdown

Benchmark for this request failed.

Last 20 lines of output:

Click to expand
    string_to_array
    strpos
    struct_query_sql
    substr
    substr_index
    substring
    sum
    to_char
    to_hex
    to_timestamp
    topk_aggregate
    topk_repartition
    translate
    trim
    trunc
    unhex
    upper
    uuid
    window_query_sql
    with_hashes

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-c4184604261-764-48vk5 6.12.55+ #1 SMP Sun Feb 1 08:59:41 UTC 2026 aarch64 GNU/Linux

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

Comparing optimize-bytes-view-map-intern (414fc69) to 1e93a67 (merge-base) diff using: clickbench_extended
Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

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

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

Comparing HEAD and optimize-bytes-view-map-intern
--------------------
Benchmark clickbench_extended.json
--------------------
┏━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query    ┃                                    HEAD ┃          optimize-bytes-view-map-intern ┃        Change ┃
┡━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0 │      806.70 / 838.85 ±29.51 / 893.58 ms │      864.19 / 876.94 ±10.04 / 893.76 ms │     no change │
│ QQuery 1 │       206.55 / 207.81 ±1.01 / 209.45 ms │       204.75 / 205.94 ±1.36 / 208.51 ms │     no change │
│ QQuery 2 │       494.78 / 497.03 ±1.97 / 499.34 ms │       491.50 / 493.76 ±1.28 / 495.10 ms │     no change │
│ QQuery 3 │       313.13 / 314.93 ±1.41 / 316.80 ms │       316.08 / 318.13 ±1.46 / 320.00 ms │     no change │
│ QQuery 4 │       666.77 / 678.72 ±8.25 / 688.97 ms │      662.17 / 678.49 ±13.09 / 701.48 ms │     no change │
│ QQuery 5 │ 9997.22 / 10100.50 ±85.36 / 10191.63 ms │ 9541.09 / 9968.02 ±267.63 / 10259.08 ms │     no change │
│ QQuery 6 │    996.03 / 1011.98 ±18.71 / 1047.84 ms │     999.17 / 1004.07 ±3.88 / 1010.23 ms │     no change │
│ QQuery 7 │      789.38 / 840.70 ±45.45 / 913.81 ms │       768.79 / 776.39 ±7.02 / 786.50 ms │ +1.08x faster │
└──────────┴─────────────────────────────────────────┴─────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                             ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                             │ 14490.52ms │
│ Total Time (optimize-bytes-view-map-intern)   │ 14321.73ms │
│ Average Time (HEAD)                           │  1811.32ms │
│ Average Time (optimize-bytes-view-map-intern) │  1790.22ms │
│ Queries Faster                                │          1 │
│ Queries Slower                                │          0 │
│ Queries with No Change                        │          7 │
│ Queries with Failure                          │          0 │
└───────────────────────────────────────────────┴────────────┘

Resource Usage

clickbench_extended — base (merge-base)

Metric Value
Wall time 73.0s
Peak memory 30.5 GiB
Avg memory 26.7 GiB
CPU user 723.8s
CPU sys 25.6s
Disk read 0 B
Disk write 21.8 MiB

clickbench_extended — branch

Metric Value
Wall time 72.3s
Peak memory 31.9 GiB
Avg memory 27.1 GiB
CPU user 716.8s
CPU sys 23.6s
Disk read 0 B
Disk write 80.0 KiB

File an issue against this benchmark runner

@Dandandan
Copy link
Copy Markdown
Contributor Author

run benchmark clickbench_partitioned

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4184997346-765-j8rk9 6.12.55+ #1 SMP Sun Feb 1 08:59:41 UTC 2026 aarch64 GNU/Linux

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

Comparing optimize-bytes-view-map-intern (414fc69) to 1e93a67 (merge-base) diff using: clickbench_partitioned
Results will be posted here when complete


File an issue against this benchmark runner

@Dandandan Dandandan marked this pull request as draft April 3, 2026 20:09
@adriangbot
Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

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

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

Comparing HEAD and optimize-bytes-view-map-intern
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃        optimize-bytes-view-map-intern ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.27 / 4.53 ±6.42 / 17.37 ms │          1.29 / 4.48 ±6.32 / 17.11 ms │     no change │
│ QQuery 1  │        14.56 / 15.10 ±0.39 / 15.72 ms │        14.21 / 14.48 ±0.16 / 14.68 ms │     no change │
│ QQuery 2  │        43.52 / 43.87 ±0.35 / 44.50 ms │        44.24 / 44.42 ±0.19 / 44.77 ms │     no change │
│ QQuery 3  │        41.75 / 44.45 ±1.46 / 46.12 ms │        44.29 / 45.30 ±0.83 / 46.82 ms │     no change │
│ QQuery 4  │     290.52 / 298.71 ±6.99 / 309.03 ms │     288.84 / 293.23 ±2.80 / 296.37 ms │     no change │
│ QQuery 5  │     358.41 / 363.83 ±4.86 / 371.60 ms │     340.89 / 345.75 ±3.84 / 351.15 ms │     no change │
│ QQuery 6  │           5.60 / 6.00 ±0.36 / 6.62 ms │           5.15 / 6.30 ±1.24 / 8.59 ms │  1.05x slower │
│ QQuery 7  │        17.60 / 17.79 ±0.15 / 18.02 ms │        16.46 / 17.73 ±1.37 / 20.09 ms │     no change │
│ QQuery 8  │     430.82 / 440.68 ±8.22 / 452.16 ms │     414.03 / 423.79 ±7.52 / 433.34 ms │     no change │
│ QQuery 9  │     661.79 / 674.90 ±7.77 / 683.53 ms │     637.84 / 644.78 ±6.80 / 655.02 ms │     no change │
│ QQuery 10 │       92.77 / 95.32 ±3.44 / 102.03 ms │        90.19 / 93.60 ±3.26 / 97.53 ms │     no change │
│ QQuery 11 │     105.96 / 107.94 ±1.26 / 109.49 ms │     104.69 / 105.96 ±1.09 / 107.78 ms │     no change │
│ QQuery 12 │     354.95 / 359.63 ±3.04 / 363.08 ms │     338.66 / 343.17 ±3.73 / 348.00 ms │     no change │
│ QQuery 13 │     463.49 / 473.75 ±7.45 / 485.31 ms │    435.09 / 461.41 ±16.42 / 486.43 ms │     no change │
│ QQuery 14 │     360.29 / 365.94 ±3.85 / 371.23 ms │     345.58 / 353.70 ±5.21 / 360.25 ms │     no change │
│ QQuery 15 │    362.09 / 384.86 ±17.67 / 411.28 ms │    355.72 / 375.57 ±25.07 / 422.45 ms │     no change │
│ QQuery 16 │    724.46 / 754.31 ±41.60 / 836.37 ms │    711.12 / 731.54 ±18.81 / 762.03 ms │     no change │
│ QQuery 17 │    767.54 / 794.21 ±24.57 / 825.96 ms │     700.55 / 711.18 ±5.38 / 715.40 ms │ +1.12x faster │
│ QQuery 18 │ 1544.35 / 1575.78 ±30.61 / 1616.84 ms │ 1392.37 / 1428.97 ±31.41 / 1486.76 ms │ +1.10x faster │
│ QQuery 19 │        36.46 / 37.66 ±0.80 / 38.79 ms │       36.07 / 61.07 ±25.64 / 98.74 ms │  1.62x slower │
│ QQuery 20 │    719.76 / 738.11 ±18.13 / 765.58 ms │    720.16 / 739.53 ±23.38 / 775.49 ms │     no change │
│ QQuery 21 │     766.38 / 774.76 ±7.77 / 789.38 ms │     764.23 / 767.79 ±3.12 / 771.80 ms │     no change │
│ QQuery 22 │ 1137.00 / 1156.98 ±23.29 / 1190.68 ms │  1133.12 / 1136.49 ±2.04 / 1139.38 ms │     no change │
│ QQuery 23 │ 3102.43 / 3131.88 ±36.78 / 3203.22 ms │ 3063.21 / 3074.37 ±10.25 / 3092.47 ms │     no change │
│ QQuery 24 │     101.50 / 103.61 ±1.61 / 106.07 ms │      98.83 / 100.98 ±2.21 / 104.56 ms │     no change │
│ QQuery 25 │     140.53 / 143.42 ±1.92 / 146.21 ms │     139.81 / 141.50 ±1.57 / 144.21 ms │     no change │
│ QQuery 26 │     101.13 / 103.68 ±2.32 / 107.47 ms │      99.42 / 101.84 ±2.11 / 105.02 ms │     no change │
│ QQuery 27 │    853.66 / 863.82 ±10.67 / 884.04 ms │     850.13 / 857.65 ±9.61 / 876.27 ms │     no change │
│ QQuery 28 │ 7768.67 / 7789.54 ±16.90 / 7816.59 ms │ 7659.64 / 7725.44 ±38.41 / 7771.10 ms │     no change │
│ QQuery 29 │        49.52 / 56.91 ±9.02 / 74.29 ms │        50.39 / 53.55 ±3.66 / 60.42 ms │ +1.06x faster │
│ QQuery 30 │     365.54 / 372.70 ±4.38 / 376.80 ms │     363.96 / 371.02 ±4.35 / 376.56 ms │     no change │
│ QQuery 31 │     371.16 / 383.13 ±8.73 / 394.00 ms │    364.85 / 381.82 ±13.31 / 399.79 ms │     no change │
│ QQuery 32 │ 1031.01 / 1061.35 ±24.22 / 1099.39 ms │  990.59 / 1005.63 ±12.52 / 1022.27 ms │ +1.06x faster │
│ QQuery 33 │ 1444.56 / 1465.41 ±11.91 / 1479.15 ms │  1462.78 / 1470.53 ±7.17 / 1483.85 ms │     no change │
│ QQuery 34 │  1457.03 / 1462.63 ±6.37 / 1474.02 ms │ 1438.39 / 1454.61 ±15.66 / 1482.10 ms │     no change │
│ QQuery 35 │     388.81 / 394.12 ±4.74 / 401.59 ms │     382.87 / 390.04 ±6.41 / 402.03 ms │     no change │
│ QQuery 36 │     118.93 / 121.52 ±2.20 / 125.38 ms │     118.45 / 121.29 ±2.23 / 124.70 ms │     no change │
│ QQuery 37 │        47.27 / 50.09 ±2.27 / 53.50 ms │        48.72 / 50.60 ±1.84 / 53.29 ms │     no change │
│ QQuery 38 │        74.24 / 75.69 ±0.98 / 76.76 ms │        77.44 / 80.10 ±1.90 / 82.90 ms │  1.06x slower │
│ QQuery 39 │     210.48 / 222.92 ±7.65 / 233.46 ms │    217.34 / 231.46 ±14.15 / 253.30 ms │     no change │
│ QQuery 40 │        23.90 / 26.52 ±2.38 / 29.81 ms │        25.25 / 27.56 ±1.49 / 29.52 ms │     no change │
│ QQuery 41 │        20.00 / 21.36 ±1.00 / 22.51 ms │        19.79 / 20.58 ±0.65 / 21.72 ms │     no change │
│ QQuery 42 │        19.13 / 20.91 ±1.53 / 22.85 ms │        19.98 / 20.59 ±0.46 / 21.21 ms │     no change │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                             ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                             │ 27400.30ms │
│ Total Time (optimize-bytes-view-map-intern)   │ 26831.40ms │
│ Average Time (HEAD)                           │   637.22ms │
│ Average Time (optimize-bytes-view-map-intern) │   623.99ms │
│ Queries Faster                                │          4 │
│ Queries Slower                                │          3 │
│ Queries with No Change                        │         36 │
│ Queries with Failure                          │          0 │
└───────────────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 138.2s
Peak memory 41.4 GiB
Avg memory 32.6 GiB
CPU user 1301.8s
CPU sys 89.3s
Disk read 0 B
Disk write 3.5 GiB

clickbench_partitioned — branch

Metric Value
Wall time 135.3s
Peak memory 41.9 GiB
Avg memory 32.5 GiB
CPU user 1274.3s
CPU sys 86.0s
Disk read 0 B
Disk write 296.0 KiB

File an issue against this benchmark runner

@Dandandan Dandandan closed this Apr 4, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

common Related to common crate physical-expr Changes to the physical-expr crates physical-plan Changes to the physical-plan crate

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants