Skip to content

Optimize ArrowBytesViewMap: fuse hash+insert, shrink entries, remove generic#21628

Draft
Dandandan wants to merge 1 commit intoapache:mainfrom
Dandandan:optimize-arrow-bytes-view-map
Draft

Optimize ArrowBytesViewMap: fuse hash+insert, shrink entries, remove generic#21628
Dandandan wants to merge 1 commit intoapache:mainfrom
Dandandan:optimize-arrow-bytes-view-map

Conversation

@Dandandan
Copy link
Copy Markdown
Contributor

Which issue does this PR close?

Performance optimization, no issue.

Rationale for this change

ArrowBytesViewMap is on the hot path for GROUP BY and COUNT DISTINCT on StringView/BinaryView columns. This PR applies three optimizations to improve cache efficiency and reduce memory overhead.

What changes are included in this PR?

  1. Fuse hash computation with hash table probe: Instead of a two-pass approach (batch create_hashes then per-element probe), compute the hash and fetch non-inline bytes once per element. For non-inlined views (>12 bytes), the string data is kept cache-hot for the immediately-following equality comparison, avoiding a redundant pointer chase into the input array's data buffers.

  2. Shrink hash table entries from 32 to 16 bytes: Entry<V> (u128 view + u64 hash + V payload) → (usize, u64) (index + hash). Views are looked up via the index into the existing views vec on demand. This means more entries fit per cache line during hash table probing.

  3. Remove the V generic parameter: The only two usages were ArrowBytesViewMap<()> (set) and ArrowBytesViewMap<usize> (group-by), where the usize payload was always the insertion-order index — which is already implicit in the views vec position. The two-callback API (make_payload_fn + observe_payload_fn) is simplified to a single observe_fn(usize).

Are these changes tested?

Covered by existing tests (8 unit tests in binary_view_map + 26 group_values tests all pass).

Are there any user-facing changes?

No user-facing changes. ArrowBytesViewMap API is simplified but it is not part of the public API.

🤖 Generated with Claude Code

@github-actions github-actions bot added physical-expr Changes to the physical-expr crates physical-plan Changes to the physical-plan crate labels Apr 14, 2026
@Dandandan
Copy link
Copy Markdown
Contributor Author

run benchmarks

@Dandandan Dandandan force-pushed the optimize-arrow-bytes-view-map branch from 54e93bd to 6bf1405 Compare April 14, 2026 18:33
@adriangbot
Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4246250873-1244-lltrj 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-arrow-bytes-view-map (6bf1405) to 29c5dd5 (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-c4246250873-1242-2cqms 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-arrow-bytes-view-map (6bf1405) to 29c5dd5 (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-c4246250873-1243-2hdms 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-arrow-bytes-view-map (6bf1405) to 29c5dd5 (merge-base) diff using: tpcds
Results will be posted here when complete


File an issue against this benchmark runner

@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-c4246275104-1245-9c2cg 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-arrow-bytes-view-map (6bf1405) to 29c5dd5 (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-c4246275104-1246-5w9jp 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-arrow-bytes-view-map (6bf1405) to 29c5dd5 (merge-base) diff using: tpcds
Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4246275104-1247-28rdw 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-arrow-bytes-view-map (6bf1405) to 29c5dd5 (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 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-arrow-bytes-view-map
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃         optimize-arrow-bytes-view-map ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.22 / 4.53 ±6.44 / 17.40 ms │          1.21 / 4.51 ±6.44 / 17.39 ms │     no change │
│ QQuery 1  │        14.25 / 14.86 ±0.36 / 15.32 ms │        14.59 / 14.84 ±0.26 / 15.31 ms │     no change │
│ QQuery 2  │        44.27 / 44.45 ±0.17 / 44.74 ms │        44.01 / 44.40 ±0.26 / 44.83 ms │     no change │
│ QQuery 3  │        41.97 / 44.39 ±2.53 / 48.71 ms │        44.26 / 47.05 ±1.82 / 48.79 ms │  1.06x slower │
│ QQuery 4  │     291.45 / 297.19 ±3.43 / 301.32 ms │    286.37 / 300.90 ±11.53 / 321.62 ms │     no change │
│ QQuery 5  │     346.22 / 352.60 ±5.00 / 358.81 ms │     352.69 / 363.34 ±6.37 / 371.36 ms │     no change │
│ QQuery 6  │           5.36 / 6.29 ±0.90 / 7.76 ms │           5.69 / 5.96 ±0.27 / 6.35 ms │ +1.05x faster │
│ QQuery 7  │        16.70 / 16.91 ±0.16 / 17.11 ms │        16.77 / 18.07 ±1.01 / 19.28 ms │  1.07x slower │
│ QQuery 8  │     413.92 / 428.69 ±8.79 / 441.36 ms │     418.12 / 430.72 ±7.59 / 439.29 ms │     no change │
│ QQuery 9  │     670.81 / 675.32 ±5.31 / 685.33 ms │    647.77 / 667.40 ±11.33 / 680.55 ms │     no change │
│ QQuery 10 │        92.45 / 95.07 ±1.89 / 96.87 ms │       94.12 / 96.69 ±2.36 / 100.56 ms │     no change │
│ QQuery 11 │     104.76 / 106.92 ±1.76 / 109.34 ms │     106.43 / 107.33 ±0.94 / 108.96 ms │     no change │
│ QQuery 12 │     343.03 / 346.22 ±3.03 / 351.12 ms │     374.58 / 377.15 ±2.15 / 380.15 ms │  1.09x slower │
│ QQuery 13 │    462.45 / 479.74 ±11.89 / 499.64 ms │     483.22 / 489.41 ±6.50 / 501.92 ms │     no change │
│ QQuery 14 │     346.99 / 351.52 ±2.78 / 355.23 ms │     345.11 / 350.94 ±4.06 / 356.14 ms │     no change │
│ QQuery 15 │     356.72 / 369.27 ±9.39 / 384.01 ms │    357.68 / 371.66 ±10.77 / 387.34 ms │     no change │
│ QQuery 16 │    728.60 / 760.95 ±28.72 / 814.75 ms │    718.57 / 731.91 ±15.84 / 757.58 ms │     no change │
│ QQuery 17 │     717.43 / 723.24 ±4.54 / 729.63 ms │     712.15 / 720.91 ±5.69 / 727.54 ms │     no change │
│ QQuery 18 │ 1437.47 / 1485.77 ±24.70 / 1506.31 ms │ 1427.30 / 1473.63 ±32.64 / 1522.08 ms │     no change │
│ QQuery 19 │       36.08 / 44.73 ±15.31 / 75.21 ms │      35.54 / 51.58 ±25.35 / 102.03 ms │  1.15x slower │
│ QQuery 20 │    723.38 / 741.82 ±19.00 / 765.04 ms │    716.75 / 733.92 ±22.12 / 777.37 ms │     no change │
│ QQuery 21 │    768.41 / 786.63 ±20.43 / 824.02 ms │     763.83 / 766.08 ±2.02 / 769.45 ms │     no change │
│ QQuery 22 │ 1137.36 / 1151.98 ±12.91 / 1172.68 ms │  1126.59 / 1131.11 ±2.47 / 1134.00 ms │     no change │
│ QQuery 23 │ 3090.49 / 3116.89 ±26.70 / 3159.44 ms │  3155.32 / 3172.45 ±9.80 / 3185.63 ms │     no change │
│ QQuery 24 │     100.83 / 104.76 ±3.23 / 109.03 ms │     101.21 / 106.18 ±4.54 / 114.00 ms │     no change │
│ QQuery 25 │     140.88 / 141.55 ±0.75 / 142.54 ms │     140.80 / 142.35 ±1.64 / 144.79 ms │     no change │
│ QQuery 26 │      99.63 / 101.79 ±1.56 / 103.80 ms │     102.22 / 103.98 ±1.48 / 106.40 ms │     no change │
│ QQuery 27 │     856.90 / 864.44 ±6.40 / 874.99 ms │     859.77 / 865.04 ±5.63 / 873.85 ms │     no change │
│ QQuery 28 │ 3273.75 / 3317.59 ±24.41 / 3342.14 ms │ 3264.47 / 3289.20 ±14.39 / 3308.42 ms │     no change │
│ QQuery 29 │        50.55 / 54.61 ±6.72 / 67.98 ms │        50.74 / 55.59 ±5.26 / 65.16 ms │     no change │
│ QQuery 30 │     362.72 / 370.86 ±4.60 / 375.38 ms │     358.69 / 364.44 ±4.02 / 369.08 ms │     no change │
│ QQuery 31 │     359.71 / 371.83 ±8.48 / 382.26 ms │    355.84 / 377.47 ±15.01 / 400.44 ms │     no change │
│ QQuery 32 │ 1207.87 / 1283.37 ±53.93 / 1360.30 ms │ 1233.33 / 1263.70 ±23.87 / 1297.36 ms │     no change │
│ QQuery 33 │ 1506.32 / 1577.00 ±48.10 / 1640.68 ms │ 1582.44 / 1605.82 ±40.35 / 1686.44 ms │     no change │
│ QQuery 34 │ 1468.26 / 1494.13 ±25.02 / 1535.01 ms │  1584.34 / 1591.36 ±6.78 / 1601.73 ms │  1.07x slower │
│ QQuery 35 │     396.53 / 406.84 ±7.69 / 418.27 ms │     391.73 / 397.35 ±8.93 / 415.09 ms │     no change │
│ QQuery 36 │     121.10 / 123.57 ±3.01 / 129.18 ms │     116.86 / 122.40 ±2.87 / 125.22 ms │     no change │
│ QQuery 37 │        47.19 / 49.66 ±1.64 / 51.51 ms │        47.12 / 48.34 ±0.74 / 49.43 ms │     no change │
│ QQuery 38 │        75.21 / 77.87 ±1.79 / 79.95 ms │        75.52 / 76.51 ±0.62 / 77.25 ms │     no change │
│ QQuery 39 │     210.06 / 222.05 ±6.76 / 230.55 ms │     214.92 / 219.34 ±3.84 / 226.52 ms │     no change │
│ QQuery 40 │        22.36 / 24.92 ±1.45 / 26.34 ms │        22.05 / 25.92 ±2.19 / 28.14 ms │     no change │
│ QQuery 41 │        20.28 / 21.91 ±1.56 / 24.53 ms │        19.84 / 20.77 ±0.57 / 21.40 ms │ +1.05x faster │
│ QQuery 42 │        19.38 / 20.88 ±1.79 / 24.38 ms │        19.50 / 20.12 ±0.51 / 20.79 ms │     no change │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                            ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                            │ 23075.61ms │
│ Total Time (optimize-arrow-bytes-view-map)   │ 23167.85ms │
│ Average Time (HEAD)                          │   536.64ms │
│ Average Time (optimize-arrow-bytes-view-map) │   538.79ms │
│ Queries Faster                               │          2 │
│ Queries Slower                               │          5 │
│ Queries with No Change                       │         36 │
│ Queries with Failure                         │          0 │
└──────────────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 116.4s
Peak memory 38.7 GiB
Avg memory 27.2 GiB
CPU user 1083.5s
CPU sys 96.5s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 116.9s
Peak memory 39.2 GiB
Avg memory 28.5 GiB
CPU user 1096.9s
CPU sys 94.8s
Peak spill 0 B

File an issue against this benchmark runner

@Dandandan Dandandan force-pushed the optimize-arrow-bytes-view-map branch from 6bf1405 to 0cfd0e3 Compare April 14, 2026 18:53
@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-arrow-bytes-view-map
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                     HEAD ┃            optimize-arrow-bytes-view-map ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │              6.57 / 7.17 ±0.98 / 9.12 ms │              6.69 / 7.18 ±0.81 / 8.79 ms │     no change │
│ QQuery 2  │        144.22 / 146.00 ±0.96 / 146.85 ms │        145.22 / 146.35 ±1.28 / 148.28 ms │     no change │
│ QQuery 3  │        113.84 / 114.69 ±0.56 / 115.34 ms │        113.90 / 115.30 ±1.35 / 117.87 ms │     no change │
│ QQuery 4  │    1376.17 / 1391.12 ±14.89 / 1415.46 ms │    1355.93 / 1395.32 ±25.90 / 1424.32 ms │     no change │
│ QQuery 5  │        173.88 / 175.50 ±1.52 / 178.11 ms │        173.84 / 174.48 ±0.52 / 175.17 ms │     no change │
│ QQuery 6  │       853.43 / 888.16 ±19.54 / 910.32 ms │       839.14 / 863.15 ±16.62 / 883.26 ms │     no change │
│ QQuery 7  │        343.27 / 344.25 ±0.92 / 345.75 ms │        342.39 / 346.04 ±2.39 / 349.33 ms │     no change │
│ QQuery 8  │        116.69 / 117.96 ±0.99 / 119.15 ms │        117.18 / 119.75 ±1.94 / 122.28 ms │     no change │
│ QQuery 9  │        101.99 / 110.14 ±9.99 / 129.52 ms │        101.53 / 104.15 ±2.32 / 107.13 ms │ +1.06x faster │
│ QQuery 10 │        106.10 / 107.13 ±0.85 / 108.39 ms │        107.64 / 109.64 ±1.21 / 111.30 ms │     no change │
│ QQuery 11 │       961.05 / 972.92 ±11.76 / 991.89 ms │        960.27 / 968.39 ±4.34 / 973.05 ms │     no change │
│ QQuery 12 │           44.83 / 46.76 ±1.43 / 48.97 ms │           45.32 / 47.26 ±1.03 / 48.14 ms │     no change │
│ QQuery 13 │        402.53 / 404.87 ±1.74 / 407.24 ms │        404.48 / 407.53 ±1.59 / 408.81 ms │     no change │
│ QQuery 14 │     1005.21 / 1011.26 ±3.61 / 1016.26 ms │      994.73 / 1004.84 ±7.75 / 1015.39 ms │     no change │
│ QQuery 15 │           15.23 / 16.72 ±1.11 / 18.23 ms │           15.72 / 16.59 ±0.49 / 17.20 ms │     no change │
│ QQuery 16 │              7.40 / 7.97 ±0.60 / 9.08 ms │              7.03 / 7.79 ±0.67 / 8.93 ms │     no change │
│ QQuery 17 │        228.29 / 229.69 ±0.74 / 230.34 ms │        227.91 / 229.76 ±1.62 / 232.26 ms │     no change │
│ QQuery 18 │        125.67 / 127.54 ±1.47 / 129.72 ms │        127.03 / 128.82 ±1.33 / 130.93 ms │     no change │
│ QQuery 19 │        154.00 / 156.04 ±1.76 / 159.31 ms │        155.50 / 158.16 ±1.55 / 160.14 ms │     no change │
│ QQuery 20 │           13.60 / 13.95 ±0.34 / 14.52 ms │           13.96 / 14.40 ±0.32 / 14.92 ms │     no change │
│ QQuery 21 │           19.65 / 20.15 ±0.39 / 20.61 ms │           19.36 / 19.91 ±0.36 / 20.39 ms │     no change │
│ QQuery 22 │        490.83 / 493.00 ±2.04 / 496.71 ms │        487.37 / 493.11 ±3.18 / 496.15 ms │     no change │
│ QQuery 23 │        879.26 / 888.11 ±7.84 / 901.87 ms │        878.10 / 884.02 ±7.35 / 897.20 ms │     no change │
│ QQuery 24 │        383.24 / 387.33 ±3.10 / 391.38 ms │        381.77 / 383.82 ±1.21 / 385.26 ms │     no change │
│ QQuery 25 │        341.98 / 343.43 ±1.46 / 345.84 ms │        339.10 / 342.46 ±2.06 / 344.89 ms │     no change │
│ QQuery 26 │           80.85 / 82.70 ±1.24 / 84.64 ms │           81.65 / 82.98 ±1.21 / 85.19 ms │     no change │
│ QQuery 27 │              6.85 / 7.20 ±0.30 / 7.68 ms │              6.83 / 7.35 ±0.70 / 8.70 ms │     no change │
│ QQuery 28 │        149.34 / 150.55 ±1.02 / 152.34 ms │        149.63 / 151.83 ±1.98 / 154.65 ms │     no change │
│ QQuery 29 │        281.86 / 283.32 ±1.54 / 285.97 ms │        280.02 / 283.66 ±2.93 / 288.23 ms │     no change │
│ QQuery 30 │           43.42 / 45.29 ±1.48 / 47.35 ms │           44.69 / 45.93 ±1.37 / 48.57 ms │     no change │
│ QQuery 31 │        170.29 / 172.07 ±1.41 / 174.47 ms │        170.64 / 172.66 ±1.90 / 176.01 ms │     no change │
│ QQuery 32 │           56.88 / 58.49 ±1.02 / 59.95 ms │           56.92 / 57.72 ±0.70 / 58.59 ms │     no change │
│ QQuery 33 │        139.49 / 143.36 ±2.90 / 147.86 ms │        140.91 / 142.51 ±1.42 / 144.69 ms │     no change │
│ QQuery 34 │              7.01 / 7.58 ±0.43 / 8.14 ms │              7.04 / 7.42 ±0.38 / 7.96 ms │     no change │
│ QQuery 35 │        108.35 / 109.46 ±0.81 / 110.38 ms │        106.01 / 108.09 ±1.53 / 110.53 ms │     no change │
│ QQuery 36 │              6.47 / 6.70 ±0.19 / 6.96 ms │              6.39 / 6.72 ±0.22 / 7.05 ms │     no change │
│ QQuery 37 │              8.29 / 8.90 ±0.49 / 9.61 ms │              8.66 / 9.09 ±0.28 / 9.48 ms │     no change │
│ QQuery 38 │           85.50 / 87.69 ±2.40 / 92.09 ms │           85.43 / 89.03 ±2.04 / 91.68 ms │     no change │
│ QQuery 39 │        122.33 / 124.91 ±2.32 / 128.85 ms │        127.13 / 128.20 ±0.72 / 129.35 ms │     no change │
│ QQuery 40 │        106.77 / 113.66 ±4.80 / 121.45 ms │        110.48 / 116.84 ±7.03 / 130.45 ms │     no change │
│ QQuery 41 │           14.03 / 15.27 ±1.12 / 16.80 ms │           13.95 / 14.90 ±0.86 / 16.51 ms │     no change │
│ QQuery 42 │        109.05 / 110.38 ±0.90 / 111.56 ms │        108.91 / 110.50 ±1.59 / 112.45 ms │     no change │
│ QQuery 43 │              5.92 / 6.77 ±0.68 / 7.92 ms │              5.90 / 6.11 ±0.24 / 6.59 ms │ +1.11x faster │
│ QQuery 44 │           11.99 / 13.05 ±1.00 / 14.40 ms │           11.72 / 12.29 ±0.42 / 12.90 ms │ +1.06x faster │
│ QQuery 45 │           50.31 / 51.24 ±0.64 / 51.97 ms │           51.32 / 52.12 ±0.93 / 53.93 ms │     no change │
│ QQuery 46 │              8.45 / 8.67 ±0.18 / 8.97 ms │              8.60 / 8.93 ±0.21 / 9.14 ms │     no change │
│ QQuery 47 │       706.41 / 729.15 ±11.43 / 736.76 ms │        721.25 / 730.14 ±6.54 / 738.49 ms │     no change │
│ QQuery 48 │        291.05 / 295.63 ±2.86 / 299.15 ms │        292.45 / 297.15 ±3.79 / 303.18 ms │     no change │
│ QQuery 49 │        251.82 / 253.63 ±1.18 / 255.11 ms │        251.23 / 253.24 ±1.68 / 256.24 ms │     no change │
│ QQuery 50 │        225.99 / 232.09 ±3.80 / 236.32 ms │        218.62 / 225.15 ±4.41 / 231.84 ms │     no change │
│ QQuery 51 │        181.89 / 185.45 ±2.68 / 188.47 ms │        180.25 / 183.91 ±2.60 / 188.23 ms │     no change │
│ QQuery 52 │        108.07 / 110.61 ±1.43 / 112.41 ms │        108.43 / 109.32 ±1.12 / 111.53 ms │     no change │
│ QQuery 53 │        102.74 / 104.13 ±0.80 / 105.21 ms │        103.75 / 105.08 ±0.68 / 105.65 ms │     no change │
│ QQuery 54 │        145.88 / 148.03 ±2.03 / 150.95 ms │        146.33 / 147.10 ±0.65 / 148.05 ms │     no change │
│ QQuery 55 │        108.04 / 108.89 ±0.96 / 110.68 ms │        107.10 / 108.68 ±1.47 / 111.42 ms │     no change │
│ QQuery 56 │        140.57 / 143.00 ±1.57 / 145.36 ms │        140.65 / 141.86 ±1.07 / 143.82 ms │     no change │
│ QQuery 57 │        174.60 / 175.42 ±0.48 / 175.98 ms │        172.53 / 174.70 ±1.40 / 175.92 ms │     no change │
│ QQuery 58 │        288.86 / 295.00 ±4.86 / 302.15 ms │        287.30 / 295.06 ±5.19 / 302.21 ms │     no change │
│ QQuery 59 │        199.74 / 200.49 ±0.85 / 202.08 ms │        198.91 / 201.10 ±1.25 / 202.66 ms │     no change │
│ QQuery 60 │        143.32 / 144.33 ±1.01 / 146.09 ms │        144.37 / 145.82 ±1.39 / 147.62 ms │     no change │
│ QQuery 61 │           12.95 / 13.34 ±0.34 / 13.82 ms │           13.33 / 13.76 ±0.48 / 14.65 ms │     no change │
│ QQuery 62 │      892.44 / 970.82 ±76.24 / 1113.64 ms │       884.54 / 911.28 ±20.32 / 946.40 ms │ +1.07x faster │
│ QQuery 63 │        105.01 / 105.90 ±1.07 / 107.89 ms │        105.41 / 107.63 ±1.30 / 109.47 ms │     no change │
│ QQuery 64 │        685.67 / 690.03 ±3.54 / 693.58 ms │        689.27 / 695.34 ±4.02 / 700.63 ms │     no change │
│ QQuery 65 │        253.34 / 261.70 ±5.49 / 270.57 ms │        258.86 / 262.30 ±2.66 / 265.72 ms │     no change │
│ QQuery 66 │        246.27 / 256.18 ±7.89 / 268.10 ms │       242.38 / 257.89 ±12.38 / 274.36 ms │     no change │
│ QQuery 67 │        311.95 / 320.44 ±6.00 / 330.43 ms │        312.23 / 321.04 ±6.63 / 329.74 ms │     no change │
│ QQuery 68 │             8.47 / 9.58 ±0.75 / 10.57 ms │           10.07 / 11.62 ±1.46 / 14.21 ms │  1.21x slower │
│ QQuery 69 │        102.78 / 104.12 ±1.12 / 105.95 ms │        103.65 / 104.62 ±0.64 / 105.59 ms │     no change │
│ QQuery 70 │       341.24 / 349.55 ±11.99 / 373.32 ms │       336.14 / 348.49 ±12.83 / 372.80 ms │     no change │
│ QQuery 71 │        134.50 / 136.25 ±1.70 / 139.20 ms │        136.75 / 138.91 ±1.39 / 140.82 ms │     no change │
│ QQuery 72 │        619.04 / 626.70 ±6.18 / 637.67 ms │        622.76 / 630.62 ±6.08 / 637.69 ms │     no change │
│ QQuery 73 │              7.35 / 8.32 ±0.90 / 9.65 ms │              7.06 / 7.79 ±0.51 / 8.51 ms │ +1.07x faster │
│ QQuery 74 │        611.19 / 614.74 ±3.76 / 621.71 ms │        604.95 / 610.67 ±6.81 / 623.56 ms │     no change │
│ QQuery 75 │        276.97 / 279.59 ±2.55 / 283.69 ms │        276.15 / 278.23 ±1.80 / 280.80 ms │     no change │
│ QQuery 76 │        132.23 / 134.03 ±1.66 / 136.75 ms │        131.99 / 133.47 ±1.45 / 136.04 ms │     no change │
│ QQuery 77 │        186.73 / 189.01 ±1.43 / 190.52 ms │        190.80 / 192.32 ±1.41 / 194.66 ms │     no change │
│ QQuery 78 │        340.69 / 345.14 ±3.72 / 350.59 ms │        337.39 / 341.92 ±4.45 / 349.40 ms │     no change │
│ QQuery 79 │        237.51 / 239.48 ±1.41 / 241.28 ms │        235.60 / 238.66 ±2.66 / 242.45 ms │     no change │
│ QQuery 80 │        322.74 / 327.49 ±2.88 / 331.61 ms │        318.04 / 322.59 ±3.47 / 327.58 ms │     no change │
│ QQuery 81 │           26.48 / 27.42 ±0.55 / 27.97 ms │           26.95 / 27.64 ±0.51 / 28.51 ms │     no change │
│ QQuery 82 │        199.69 / 201.88 ±1.49 / 203.70 ms │        201.12 / 203.36 ±1.76 / 205.28 ms │     no change │
│ QQuery 83 │           38.82 / 39.68 ±0.53 / 40.29 ms │           39.36 / 40.29 ±0.74 / 41.18 ms │     no change │
│ QQuery 84 │           48.20 / 49.17 ±0.72 / 50.24 ms │           48.46 / 49.33 ±0.66 / 50.37 ms │     no change │
│ QQuery 85 │        148.39 / 149.19 ±0.81 / 150.59 ms │        147.99 / 150.38 ±1.66 / 152.20 ms │     no change │
│ QQuery 86 │           40.68 / 41.26 ±0.60 / 42.23 ms │           39.56 / 40.41 ±0.62 / 41.44 ms │     no change │
│ QQuery 87 │           86.56 / 90.03 ±3.12 / 95.33 ms │           86.68 / 89.13 ±2.08 / 92.69 ms │     no change │
│ QQuery 88 │        100.69 / 101.55 ±0.75 / 102.57 ms │        100.49 / 101.90 ±1.02 / 103.48 ms │     no change │
│ QQuery 89 │        118.02 / 119.40 ±1.02 / 120.85 ms │        119.23 / 121.03 ±1.38 / 122.70 ms │     no change │
│ QQuery 90 │           23.33 / 23.70 ±0.37 / 24.33 ms │           23.80 / 24.67 ±0.66 / 25.83 ms │     no change │
│ QQuery 91 │           63.91 / 65.32 ±0.84 / 66.45 ms │           61.59 / 64.91 ±2.16 / 68.09 ms │     no change │
│ QQuery 92 │           56.90 / 57.97 ±1.00 / 59.81 ms │           57.06 / 58.96 ±0.99 / 59.88 ms │     no change │
│ QQuery 93 │        187.89 / 188.49 ±0.50 / 189.20 ms │        184.81 / 188.07 ±1.85 / 189.87 ms │     no change │
│ QQuery 94 │           61.55 / 63.48 ±1.92 / 66.90 ms │           61.49 / 62.54 ±0.61 / 63.23 ms │     no change │
│ QQuery 95 │        128.60 / 129.20 ±0.56 / 129.86 ms │        127.39 / 129.16 ±1.14 / 130.51 ms │     no change │
│ QQuery 96 │           72.15 / 74.46 ±1.21 / 75.50 ms │           73.97 / 74.63 ±0.81 / 76.17 ms │     no change │
│ QQuery 97 │        126.76 / 128.78 ±1.77 / 131.94 ms │        128.02 / 129.68 ±1.66 / 132.70 ms │     no change │
│ QQuery 98 │        156.30 / 158.04 ±1.81 / 161.21 ms │        151.75 / 156.02 ±2.22 / 157.96 ms │     no change │
│ QQuery 99 │ 10816.70 / 10884.06 ±51.65 / 10958.78 ms │ 10814.83 / 10840.75 ±24.53 / 10880.42 ms │     no change │
└───────────┴──────────────────────────────────────────┴──────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                            ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                            │ 31830.45ms │
│ Total Time (optimize-arrow-bytes-view-map)   │ 31703.47ms │
│ Average Time (HEAD)                          │   321.52ms │
│ Average Time (optimize-arrow-bytes-view-map) │   320.24ms │
│ Queries Faster                               │          5 │
│ Queries Slower                               │          1 │
│ Queries with No Change                       │         93 │
│ Queries with Failure                         │          0 │
└──────────────────────────────────────────────┴────────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 159.5s
Peak memory 5.4 GiB
Avg memory 4.4 GiB
CPU user 262.1s
CPU sys 17.6s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 158.8s
Peak memory 5.7 GiB
Avg memory 4.8 GiB
CPU user 261.9s
CPU sys 17.1s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

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

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

Comparing HEAD and optimize-arrow-bytes-view-map
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                     HEAD ┃            optimize-arrow-bytes-view-map ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │              7.01 / 7.43 ±0.73 / 8.89 ms │              6.74 / 7.21 ±0.79 / 8.79 ms │     no change │
│ QQuery 2  │        146.49 / 148.12 ±1.02 / 149.28 ms │        145.79 / 147.09 ±0.99 / 148.79 ms │     no change │
│ QQuery 3  │        113.81 / 116.45 ±1.43 / 117.56 ms │        114.41 / 114.99 ±0.58 / 115.78 ms │     no change │
│ QQuery 4  │     1415.39 / 1426.21 ±7.12 / 1437.74 ms │    1409.73 / 1435.40 ±14.69 / 1450.36 ms │     no change │
│ QQuery 5  │        173.15 / 175.89 ±2.04 / 179.38 ms │        172.53 / 175.16 ±2.15 / 178.78 ms │     no change │
│ QQuery 6  │       870.92 / 890.45 ±19.65 / 927.86 ms │       890.71 / 916.28 ±14.66 / 936.03 ms │     no change │
│ QQuery 7  │        344.87 / 346.73 ±1.74 / 349.73 ms │        347.55 / 349.20 ±2.37 / 353.86 ms │     no change │
│ QQuery 8  │        116.34 / 118.22 ±1.72 / 121.21 ms │        116.49 / 117.83 ±1.14 / 119.22 ms │     no change │
│ QQuery 9  │        101.28 / 107.53 ±4.58 / 114.73 ms │        102.46 / 107.43 ±4.91 / 115.94 ms │     no change │
│ QQuery 10 │        108.51 / 109.69 ±0.87 / 111.21 ms │        109.63 / 110.60 ±1.09 / 112.51 ms │     no change │
│ QQuery 11 │    1001.55 / 1021.87 ±11.43 / 1035.80 ms │    1016.11 / 1029.65 ±11.42 / 1049.87 ms │     no change │
│ QQuery 12 │           46.06 / 47.93 ±1.27 / 49.69 ms │           45.55 / 47.80 ±1.43 / 49.67 ms │     no change │
│ QQuery 13 │        404.03 / 408.20 ±2.21 / 410.43 ms │        406.06 / 412.41 ±4.53 / 418.99 ms │     no change │
│ QQuery 14 │    1018.35 / 1029.80 ±10.03 / 1043.20 ms │     1016.95 / 1022.29 ±4.93 / 1031.26 ms │     no change │
│ QQuery 15 │           16.16 / 16.90 ±0.82 / 18.48 ms │           15.93 / 18.13 ±1.60 / 20.86 ms │  1.07x slower │
│ QQuery 16 │              7.17 / 7.75 ±0.60 / 8.70 ms │              7.60 / 7.93 ±0.56 / 9.06 ms │     no change │
│ QQuery 17 │        229.72 / 234.08 ±2.99 / 238.50 ms │        230.01 / 233.08 ±2.12 / 236.48 ms │     no change │
│ QQuery 18 │        129.51 / 130.97 ±1.55 / 133.02 ms │        131.67 / 132.63 ±0.85 / 134.05 ms │     no change │
│ QQuery 19 │        157.74 / 159.85 ±1.63 / 162.34 ms │        156.08 / 160.38 ±2.60 / 163.98 ms │     no change │
│ QQuery 20 │           14.78 / 15.06 ±0.19 / 15.35 ms │           15.40 / 15.79 ±0.44 / 16.64 ms │     no change │
│ QQuery 21 │           19.88 / 21.02 ±0.76 / 22.14 ms │           20.38 / 20.62 ±0.20 / 20.92 ms │     no change │
│ QQuery 22 │        496.20 / 500.68 ±3.35 / 506.20 ms │        495.51 / 502.49 ±6.70 / 514.53 ms │     no change │
│ QQuery 23 │       908.58 / 924.94 ±18.38 / 960.45 ms │        911.90 / 924.14 ±7.83 / 935.83 ms │     no change │
│ QQuery 24 │        390.34 / 395.78 ±5.92 / 406.75 ms │        389.56 / 392.18 ±2.19 / 396.13 ms │     no change │
│ QQuery 25 │        348.75 / 350.50 ±1.52 / 353.25 ms │        346.83 / 349.04 ±1.82 / 352.03 ms │     no change │
│ QQuery 26 │           82.08 / 84.15 ±1.99 / 87.82 ms │           83.28 / 84.14 ±0.81 / 85.37 ms │     no change │
│ QQuery 27 │              6.91 / 7.56 ±0.88 / 9.29 ms │              7.04 / 7.59 ±0.46 / 8.21 ms │     no change │
│ QQuery 28 │        150.44 / 152.89 ±1.84 / 155.20 ms │        150.86 / 152.03 ±1.34 / 154.09 ms │     no change │
│ QQuery 29 │        286.80 / 288.80 ±1.44 / 290.97 ms │        286.36 / 289.48 ±1.62 / 290.85 ms │     no change │
│ QQuery 30 │           43.31 / 44.94 ±0.93 / 45.87 ms │           44.31 / 45.77 ±1.47 / 48.21 ms │     no change │
│ QQuery 31 │        171.88 / 175.87 ±2.21 / 177.73 ms │        171.54 / 174.58 ±1.95 / 177.10 ms │     no change │
│ QQuery 32 │           57.88 / 58.69 ±0.83 / 60.28 ms │           57.68 / 58.33 ±0.48 / 58.82 ms │     no change │
│ QQuery 33 │        140.85 / 143.40 ±1.62 / 145.31 ms │        142.40 / 145.26 ±2.69 / 149.96 ms │     no change │
│ QQuery 34 │              6.97 / 7.33 ±0.25 / 7.63 ms │              7.15 / 7.42 ±0.25 / 7.86 ms │     no change │
│ QQuery 35 │        108.04 / 110.41 ±1.28 / 111.89 ms │        108.39 / 111.06 ±1.54 / 112.77 ms │     no change │
│ QQuery 36 │              6.89 / 7.10 ±0.18 / 7.40 ms │              6.85 / 7.08 ±0.17 / 7.38 ms │     no change │
│ QQuery 37 │             8.65 / 9.23 ±0.54 / 10.07 ms │              8.76 / 8.96 ±0.19 / 9.23 ms │     no change │
│ QQuery 38 │           86.42 / 89.50 ±3.36 / 95.75 ms │           87.43 / 91.85 ±2.47 / 94.47 ms │     no change │
│ QQuery 39 │        128.46 / 131.29 ±2.87 / 136.49 ms │        129.37 / 131.34 ±1.44 / 133.65 ms │     no change │
│ QQuery 40 │        108.96 / 116.96 ±7.39 / 129.68 ms │        111.72 / 118.60 ±6.58 / 129.19 ms │     no change │
│ QQuery 41 │           14.83 / 16.52 ±1.09 / 18.20 ms │           14.60 / 15.48 ±0.74 / 16.75 ms │ +1.07x faster │
│ QQuery 42 │        106.98 / 109.27 ±1.35 / 110.61 ms │        107.47 / 109.38 ±1.32 / 110.93 ms │     no change │
│ QQuery 43 │              6.22 / 6.37 ±0.14 / 6.63 ms │              6.08 / 6.66 ±0.72 / 8.07 ms │     no change │
│ QQuery 44 │           11.85 / 12.26 ±0.24 / 12.58 ms │           12.44 / 13.10 ±0.81 / 14.59 ms │  1.07x slower │
│ QQuery 45 │           50.28 / 52.71 ±1.79 / 54.90 ms │           50.90 / 52.31 ±0.94 / 53.60 ms │     no change │
│ QQuery 46 │              9.02 / 9.31 ±0.20 / 9.56 ms │              8.62 / 8.91 ±0.18 / 9.12 ms │     no change │
│ QQuery 47 │        780.30 / 784.91 ±5.77 / 795.96 ms │        772.45 / 775.45 ±2.76 / 779.52 ms │     no change │
│ QQuery 48 │        290.42 / 296.86 ±5.39 / 304.14 ms │        292.81 / 298.21 ±4.81 / 305.77 ms │     no change │
│ QQuery 49 │        251.36 / 254.92 ±2.00 / 257.21 ms │        252.30 / 255.15 ±2.15 / 257.45 ms │     no change │
│ QQuery 50 │        225.45 / 229.94 ±4.20 / 237.45 ms │        223.83 / 233.72 ±5.34 / 238.12 ms │     no change │
│ QQuery 51 │        185.32 / 187.55 ±2.64 / 192.64 ms │        182.24 / 185.68 ±2.74 / 188.84 ms │     no change │
│ QQuery 52 │        107.67 / 109.19 ±1.12 / 110.64 ms │        108.28 / 110.80 ±2.06 / 113.34 ms │     no change │
│ QQuery 53 │        103.16 / 104.61 ±1.17 / 106.08 ms │        103.42 / 105.46 ±1.76 / 108.13 ms │     no change │
│ QQuery 54 │        147.99 / 149.67 ±1.38 / 152.07 ms │        148.59 / 149.93 ±1.07 / 151.72 ms │     no change │
│ QQuery 55 │        107.30 / 107.92 ±0.31 / 108.16 ms │        107.79 / 108.93 ±0.77 / 109.79 ms │     no change │
│ QQuery 56 │        142.08 / 144.56 ±1.45 / 146.50 ms │        142.23 / 143.44 ±1.20 / 144.89 ms │     no change │
│ QQuery 57 │        177.17 / 178.76 ±1.24 / 180.67 ms │        176.55 / 177.99 ±0.97 / 179.59 ms │     no change │
│ QQuery 58 │        292.28 / 306.37 ±8.02 / 314.53 ms │       302.05 / 320.10 ±13.16 / 338.14 ms │     no change │
│ QQuery 59 │        203.23 / 204.12 ±1.02 / 205.99 ms │        201.92 / 203.69 ±1.82 / 206.43 ms │     no change │
│ QQuery 60 │        144.76 / 146.36 ±1.34 / 148.60 ms │        145.07 / 145.73 ±0.70 / 146.70 ms │     no change │
│ QQuery 61 │           13.57 / 13.77 ±0.14 / 13.93 ms │           13.53 / 14.18 ±0.96 / 16.06 ms │     no change │
│ QQuery 62 │      947.14 / 999.82 ±27.41 / 1022.32 ms │      907.60 / 973.81 ±37.52 / 1014.21 ms │     no change │
│ QQuery 63 │        105.99 / 107.60 ±1.23 / 109.44 ms │        104.69 / 106.92 ±2.46 / 111.55 ms │     no change │
│ QQuery 64 │        702.94 / 706.09 ±2.80 / 710.02 ms │        698.30 / 702.48 ±4.71 / 711.16 ms │     no change │
│ QQuery 65 │        261.66 / 267.12 ±4.01 / 273.21 ms │        261.17 / 266.52 ±4.66 / 274.39 ms │     no change │
│ QQuery 66 │        245.78 / 255.54 ±7.42 / 265.48 ms │       252.59 / 269.39 ±10.43 / 281.83 ms │  1.05x slower │
│ QQuery 67 │        318.60 / 326.33 ±4.03 / 329.78 ms │        323.69 / 331.26 ±7.61 / 345.57 ms │     no change │
│ QQuery 68 │            9.75 / 10.27 ±0.42 / 10.90 ms │            9.26 / 10.62 ±1.07 / 11.80 ms │     no change │
│ QQuery 69 │        102.62 / 105.06 ±2.21 / 108.04 ms │        104.65 / 106.54 ±1.72 / 109.55 ms │     no change │
│ QQuery 70 │        348.98 / 360.40 ±9.87 / 374.94 ms │        354.56 / 360.87 ±5.27 / 366.95 ms │     no change │
│ QQuery 71 │        135.42 / 139.24 ±3.42 / 145.51 ms │        135.21 / 137.39 ±2.32 / 140.21 ms │     no change │
│ QQuery 72 │       625.39 / 638.38 ±11.92 / 658.32 ms │        633.42 / 636.57 ±2.92 / 641.37 ms │     no change │
│ QQuery 73 │              7.76 / 9.02 ±0.83 / 9.99 ms │             7.06 / 9.28 ±2.14 / 12.36 ms │     no change │
│ QQuery 74 │       628.74 / 643.61 ±10.37 / 657.42 ms │        639.58 / 645.49 ±5.20 / 654.60 ms │     no change │
│ QQuery 75 │        280.08 / 282.75 ±1.88 / 285.84 ms │        275.92 / 280.08 ±2.40 / 283.00 ms │     no change │
│ QQuery 76 │        132.86 / 135.76 ±1.77 / 137.67 ms │        134.00 / 136.41 ±1.50 / 137.87 ms │     no change │
│ QQuery 77 │        188.27 / 190.96 ±2.00 / 194.50 ms │        188.44 / 192.28 ±2.34 / 195.80 ms │     no change │
│ QQuery 78 │        349.14 / 353.21 ±3.22 / 356.64 ms │        346.20 / 351.12 ±3.01 / 354.85 ms │     no change │
│ QQuery 79 │        241.08 / 245.70 ±3.51 / 248.92 ms │        241.33 / 244.32 ±3.44 / 251.06 ms │     no change │
│ QQuery 80 │        323.79 / 325.73 ±1.50 / 327.97 ms │        321.02 / 322.44 ±1.03 / 323.91 ms │     no change │
│ QQuery 81 │           26.65 / 28.19 ±1.52 / 31.09 ms │           26.96 / 28.03 ±1.40 / 30.80 ms │     no change │
│ QQuery 82 │        201.98 / 204.18 ±1.30 / 205.96 ms │        198.50 / 200.75 ±1.89 / 204.01 ms │     no change │
│ QQuery 83 │           39.64 / 40.53 ±0.54 / 41.27 ms │           38.46 / 39.96 ±0.82 / 40.96 ms │     no change │
│ QQuery 84 │           49.21 / 50.43 ±1.00 / 52.06 ms │           49.51 / 50.31 ±0.55 / 50.99 ms │     no change │
│ QQuery 85 │        148.91 / 150.46 ±0.97 / 151.85 ms │        152.32 / 153.80 ±1.05 / 155.26 ms │     no change │
│ QQuery 86 │           39.25 / 40.89 ±1.25 / 42.23 ms │           40.01 / 41.37 ±0.86 / 42.35 ms │     no change │
│ QQuery 87 │           87.19 / 91.36 ±3.20 / 97.07 ms │           86.71 / 90.16 ±3.42 / 96.68 ms │     no change │
│ QQuery 88 │        102.74 / 107.01 ±6.68 / 120.27 ms │        103.80 / 104.87 ±0.72 / 105.74 ms │     no change │
│ QQuery 89 │        118.83 / 120.71 ±1.54 / 122.83 ms │        120.49 / 123.08 ±1.86 / 125.79 ms │     no change │
│ QQuery 90 │           24.16 / 24.51 ±0.29 / 25.01 ms │           24.38 / 25.17 ±0.54 / 25.99 ms │     no change │
│ QQuery 91 │           63.70 / 65.56 ±1.17 / 66.75 ms │           66.83 / 68.60 ±1.97 / 72.23 ms │     no change │
│ QQuery 92 │           58.10 / 58.92 ±1.09 / 60.97 ms │           58.33 / 59.58 ±0.92 / 60.95 ms │     no change │
│ QQuery 93 │        187.06 / 192.32 ±2.68 / 194.63 ms │        191.51 / 194.23 ±1.72 / 196.44 ms │     no change │
│ QQuery 94 │           61.80 / 62.81 ±0.58 / 63.36 ms │           63.88 / 64.81 ±1.05 / 66.80 ms │     no change │
│ QQuery 95 │        130.91 / 131.64 ±0.99 / 133.56 ms │        129.46 / 131.86 ±2.27 / 135.79 ms │     no change │
│ QQuery 96 │           71.04 / 74.06 ±1.94 / 77.13 ms │           72.53 / 75.58 ±1.56 / 76.74 ms │     no change │
│ QQuery 97 │        124.69 / 129.17 ±2.28 / 130.67 ms │        130.12 / 131.36 ±1.00 / 133.06 ms │     no change │
│ QQuery 98 │        153.88 / 160.67 ±3.57 / 163.77 ms │        157.89 / 161.19 ±2.48 / 165.15 ms │     no change │
│ QQuery 99 │ 10908.23 / 10943.36 ±40.24 / 11015.29 ms │ 10889.39 / 10919.81 ±22.39 / 10953.05 ms │     no change │
└───────────┴──────────────────────────────────────────┴──────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                            ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                            │ 32345.48ms │
│ Total Time (optimize-arrow-bytes-view-map)   │ 32365.83ms │
│ Average Time (HEAD)                          │   326.72ms │
│ Average Time (optimize-arrow-bytes-view-map) │   326.93ms │
│ Queries Faster                               │          1 │
│ Queries Slower                               │          3 │
│ Queries with No Change                       │         95 │
│ Queries with Failure                         │          0 │
└──────────────────────────────────────────────┴────────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 162.1s
Peak memory 5.4 GiB
Avg memory 4.5 GiB
CPU user 267.9s
CPU sys 17.8s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 162.1s
Peak memory 5.1 GiB
Avg memory 4.4 GiB
CPU user 267.5s
CPU sys 18.4s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

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

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

Comparing HEAD and optimize-arrow-bytes-view-map
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃         optimize-arrow-bytes-view-map ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.25 / 4.60 ±6.53 / 17.65 ms │          1.19 / 4.49 ±6.42 / 17.33 ms │     no change │
│ QQuery 1  │        14.43 / 14.86 ±0.25 / 15.07 ms │        14.23 / 14.55 ±0.19 / 14.80 ms │     no change │
│ QQuery 2  │        44.09 / 44.98 ±0.74 / 46.29 ms │        43.56 / 44.05 ±0.28 / 44.41 ms │     no change │
│ QQuery 3  │        41.30 / 43.66 ±2.52 / 47.67 ms │        40.56 / 41.40 ±0.48 / 42.04 ms │ +1.05x faster │
│ QQuery 4  │     302.29 / 308.77 ±5.34 / 314.90 ms │     292.65 / 297.72 ±2.78 / 300.60 ms │     no change │
│ QQuery 5  │     355.70 / 363.26 ±5.83 / 370.35 ms │     358.20 / 362.78 ±4.80 / 370.57 ms │     no change │
│ QQuery 6  │           5.27 / 6.41 ±0.84 / 7.38 ms │           5.50 / 6.61 ±0.69 / 7.52 ms │     no change │
│ QQuery 7  │        16.97 / 17.24 ±0.24 / 17.64 ms │        17.14 / 18.15 ±0.88 / 19.18 ms │  1.05x slower │
│ QQuery 8  │    420.92 / 440.63 ±12.92 / 458.35 ms │     417.81 / 427.01 ±8.45 / 439.72 ms │     no change │
│ QQuery 9  │     699.01 / 710.15 ±6.70 / 717.77 ms │    650.45 / 670.12 ±12.38 / 688.42 ms │ +1.06x faster │
│ QQuery 10 │        93.65 / 95.97 ±1.70 / 98.78 ms │       92.87 / 95.65 ±3.10 / 101.43 ms │     no change │
│ QQuery 11 │     107.35 / 108.92 ±1.26 / 111.18 ms │     106.50 / 107.14 ±0.60 / 108.06 ms │     no change │
│ QQuery 12 │     356.77 / 363.53 ±6.69 / 375.73 ms │     366.91 / 374.38 ±5.06 / 380.14 ms │     no change │
│ QQuery 13 │    474.50 / 494.52 ±16.16 / 523.64 ms │    463.29 / 485.75 ±18.00 / 510.84 ms │     no change │
│ QQuery 14 │     354.13 / 359.35 ±4.54 / 367.27 ms │     346.23 / 356.72 ±5.62 / 363.23 ms │     no change │
│ QQuery 15 │    362.39 / 378.99 ±12.14 / 399.71 ms │    355.05 / 368.51 ±13.23 / 392.54 ms │     no change │
│ QQuery 16 │    714.61 / 744.46 ±18.89 / 765.27 ms │     718.77 / 726.91 ±5.46 / 734.95 ms │     no change │
│ QQuery 17 │    720.38 / 732.89 ±15.30 / 762.48 ms │     712.22 / 722.14 ±8.11 / 736.04 ms │     no change │
│ QQuery 18 │ 1442.67 / 1498.82 ±30.29 / 1531.35 ms │ 1432.92 / 1486.10 ±36.15 / 1540.64 ms │     no change │
│ QQuery 19 │       35.82 / 46.15 ±18.52 / 83.11 ms │        36.78 / 40.44 ±3.82 / 47.81 ms │ +1.14x faster │
│ QQuery 20 │    721.02 / 741.02 ±22.77 / 775.27 ms │    715.02 / 727.77 ±12.62 / 749.13 ms │     no change │
│ QQuery 21 │     759.24 / 767.22 ±4.30 / 771.99 ms │     759.88 / 763.13 ±2.67 / 767.83 ms │     no change │
│ QQuery 22 │  1139.24 / 1148.85 ±8.61 / 1163.43 ms │  1142.82 / 1147.94 ±4.42 / 1154.93 ms │     no change │
│ QQuery 23 │ 3100.50 / 3125.74 ±19.27 / 3154.84 ms │ 3134.31 / 3155.15 ±17.82 / 3187.91 ms │     no change │
│ QQuery 24 │     104.37 / 107.20 ±2.58 / 110.51 ms │     101.56 / 105.22 ±3.31 / 111.43 ms │     no change │
│ QQuery 25 │     139.29 / 142.80 ±2.75 / 147.11 ms │     140.08 / 147.96 ±6.10 / 158.87 ms │     no change │
│ QQuery 26 │      99.28 / 101.89 ±1.70 / 103.76 ms │     103.09 / 104.86 ±2.16 / 109.04 ms │     no change │
│ QQuery 27 │     851.67 / 856.60 ±2.84 / 859.51 ms │    846.69 / 876.89 ±30.16 / 934.41 ms │     no change │
│ QQuery 28 │ 3306.73 / 3347.51 ±22.72 / 3372.51 ms │ 3280.51 / 3295.50 ±13.46 / 3317.24 ms │     no change │
│ QQuery 29 │        51.27 / 57.50 ±6.47 / 67.30 ms │      52.76 / 86.27 ±20.63 / 113.89 ms │  1.50x slower │
│ QQuery 30 │     379.47 / 381.53 ±1.74 / 383.56 ms │     366.71 / 375.80 ±7.67 / 386.29 ms │     no change │
│ QQuery 31 │     384.34 / 393.41 ±9.73 / 407.86 ms │    362.28 / 388.15 ±18.21 / 410.17 ms │     no change │
│ QQuery 32 │ 1153.33 / 1253.09 ±69.72 / 1366.95 ms │ 1187.44 / 1202.80 ±14.22 / 1222.49 ms │     no change │
│ QQuery 33 │ 1491.39 / 1519.96 ±22.72 / 1555.07 ms │ 1670.57 / 1713.24 ±37.59 / 1770.31 ms │  1.13x slower │
│ QQuery 34 │  1507.84 / 1521.72 ±9.22 / 1536.13 ms │ 1664.04 / 1732.44 ±54.32 / 1816.96 ms │  1.14x slower │
│ QQuery 35 │     400.11 / 409.17 ±6.63 / 418.46 ms │     388.32 / 400.33 ±6.49 / 406.96 ms │     no change │
│ QQuery 36 │     124.37 / 125.40 ±0.71 / 126.39 ms │     110.76 / 120.65 ±5.88 / 129.07 ms │     no change │
│ QQuery 37 │        48.13 / 50.65 ±1.86 / 53.08 ms │        45.13 / 47.67 ±1.46 / 49.34 ms │ +1.06x faster │
│ QQuery 38 │        77.20 / 78.50 ±0.89 / 79.84 ms │        75.27 / 77.14 ±1.82 / 80.44 ms │     no change │
│ QQuery 39 │     218.56 / 223.95 ±5.77 / 234.50 ms │     207.74 / 217.29 ±7.37 / 227.50 ms │     no change │
│ QQuery 40 │        22.44 / 24.91 ±1.81 / 27.50 ms │        24.18 / 25.62 ±1.34 / 28.14 ms │     no change │
│ QQuery 41 │        21.42 / 22.37 ±0.67 / 23.26 ms │        19.30 / 21.01 ±1.39 / 23.29 ms │ +1.06x faster │
│ QQuery 42 │        19.87 / 21.33 ±1.28 / 23.74 ms │        19.85 / 20.80 ±0.52 / 21.28 ms │     no change │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                            ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                            │ 23200.47ms │
│ Total Time (optimize-arrow-bytes-view-map)   │ 23404.28ms │
│ Average Time (HEAD)                          │   539.55ms │
│ Average Time (optimize-arrow-bytes-view-map) │   544.29ms │
│ Queries Faster                               │          5 │
│ Queries Slower                               │          4 │
│ Queries with No Change                       │         34 │
│ Queries with Failure                         │          0 │
└──────────────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 117.1s
Peak memory 37.5 GiB
Avg memory 27.5 GiB
CPU user 1095.7s
CPU sys 95.1s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 118.0s
Peak memory 32.9 GiB
Avg memory 25.5 GiB
CPU user 1099.5s
CPU sys 104.1s
Peak spill 0 B

File an issue against this benchmark runner

@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-c4246422783-1249-c7td2 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-arrow-bytes-view-map (0cfd0e3) to 29c5dd5 (merge-base) diff using: tpcds
Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4246422783-1248-tjx62 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-arrow-bytes-view-map (0cfd0e3) to 29c5dd5 (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-c4246422783-1250-82rsc 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-arrow-bytes-view-map (0cfd0e3) to 29c5dd5 (merge-base) diff using: tpch
Results will be posted here when complete


File an issue against this benchmark runner

@Dandandan Dandandan force-pushed the optimize-arrow-bytes-view-map branch from 0cfd0e3 to 6aebd5c Compare April 14, 2026 19:19
…generic

Three optimizations to ArrowBytesViewMap used by GROUP BY and COUNT DISTINCT
on StringView/BinaryView columns:

1. Fuse hash computation with hash table probe: instead of a two-pass approach
   (batch create_hashes then per-element probe), compute the hash and fetch
   non-inline bytes once per element. This keeps the input string data
   cache-hot for the immediately-following equality comparison, avoiding a
   redundant pointer chase into the input array's data buffers.

2. Shrink hash table entries from 32 bytes (Entry<V> with u128 view + u64 hash
   + V payload) to 16 bytes (usize index + u64 hash). Views are looked up via
   the index into the existing views vec on demand.

3. Remove the V generic parameter entirely. The only two usages were
   ArrowBytesViewMap<()> (set) and ArrowBytesViewMap<usize> (group-by), where
   the usize payload was always the insertion-order index -- which is already
   implicit in the views vec position. Simplify the two-callback API
   (make_payload_fn + observe_payload_fn) to a single observe_fn(usize).

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
@Dandandan Dandandan force-pushed the optimize-arrow-bytes-view-map branch from 6aebd5c to ab814f6 Compare April 14, 2026 19:20
@Dandandan
Copy link
Copy Markdown
Contributor Author

run benchmarks

@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-arrow-bytes-view-map
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┓
┃ Query     ┃                                     HEAD ┃            optimize-arrow-bytes-view-map ┃    Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━┩
│ QQuery 1  │              6.68 / 7.16 ±0.84 / 8.82 ms │              6.63 / 7.09 ±0.80 / 8.69 ms │ no change │
│ QQuery 2  │        144.81 / 145.58 ±0.74 / 146.90 ms │        146.48 / 147.07 ±0.56 / 148.08 ms │ no change │
│ QQuery 3  │        114.09 / 115.01 ±0.82 / 116.31 ms │        113.44 / 114.71 ±1.04 / 115.99 ms │ no change │
│ QQuery 4  │    1301.93 / 1323.13 ±19.60 / 1359.38 ms │    1296.26 / 1332.15 ±21.20 / 1359.90 ms │ no change │
│ QQuery 5  │        172.19 / 173.29 ±0.73 / 174.11 ms │        172.64 / 174.26 ±1.62 / 177.37 ms │ no change │
│ QQuery 6  │       844.03 / 865.87 ±16.00 / 890.72 ms │       820.35 / 849.30 ±25.98 / 895.63 ms │ no change │
│ QQuery 7  │        341.09 / 344.78 ±3.35 / 350.96 ms │        338.27 / 342.47 ±2.47 / 345.22 ms │ no change │
│ QQuery 8  │        116.08 / 117.22 ±0.77 / 118.34 ms │        114.95 / 117.11 ±1.10 / 118.00 ms │ no change │
│ QQuery 9  │        101.08 / 103.48 ±2.63 / 107.14 ms │        101.31 / 104.96 ±2.56 / 107.18 ms │ no change │
│ QQuery 10 │        106.60 / 108.14 ±1.31 / 110.42 ms │        106.61 / 107.79 ±0.84 / 109.23 ms │ no change │
│ QQuery 11 │       895.85 / 926.51 ±24.36 / 957.92 ms │       922.85 / 935.73 ±14.55 / 962.45 ms │ no change │
│ QQuery 12 │           45.12 / 46.13 ±0.79 / 47.01 ms │           44.56 / 46.06 ±1.15 / 48.07 ms │ no change │
│ QQuery 13 │        396.94 / 402.48 ±4.01 / 407.80 ms │        398.44 / 402.70 ±2.94 / 406.28 ms │ no change │
│ QQuery 14 │     1003.32 / 1016.03 ±6.55 / 1021.75 ms │     1003.23 / 1010.52 ±5.32 / 1017.34 ms │ no change │
│ QQuery 15 │           15.28 / 16.04 ±0.79 / 17.55 ms │           15.54 / 16.40 ±0.61 / 17.12 ms │ no change │
│ QQuery 16 │              7.10 / 7.76 ±0.81 / 9.34 ms │              7.67 / 8.07 ±0.67 / 9.40 ms │ no change │
│ QQuery 17 │        225.33 / 228.68 ±2.36 / 232.69 ms │        228.82 / 232.12 ±2.00 / 234.42 ms │ no change │
│ QQuery 18 │        125.65 / 126.52 ±0.53 / 127.19 ms │        129.77 / 130.67 ±0.92 / 132.42 ms │ no change │
│ QQuery 19 │        153.82 / 156.07 ±1.85 / 159.32 ms │        153.88 / 154.84 ±1.06 / 156.77 ms │ no change │
│ QQuery 20 │           13.86 / 14.11 ±0.26 / 14.61 ms │           13.40 / 14.17 ±0.64 / 15.26 ms │ no change │
│ QQuery 21 │           18.99 / 20.15 ±0.88 / 21.60 ms │           19.20 / 20.25 ±0.72 / 21.24 ms │ no change │
│ QQuery 22 │        482.08 / 487.85 ±3.72 / 492.46 ms │        487.39 / 493.67 ±3.46 / 498.06 ms │ no change │
│ QQuery 23 │       862.24 / 874.72 ±11.74 / 894.82 ms │        867.02 / 876.13 ±9.45 / 890.95 ms │ no change │
│ QQuery 24 │        381.87 / 385.05 ±3.33 / 391.04 ms │        384.50 / 386.19 ±1.73 / 388.61 ms │ no change │
│ QQuery 25 │        336.45 / 341.01 ±3.36 / 346.70 ms │        336.12 / 343.55 ±3.87 / 347.33 ms │ no change │
│ QQuery 26 │           81.46 / 82.16 ±0.60 / 83.18 ms │           82.14 / 83.74 ±1.01 / 85.31 ms │ no change │
│ QQuery 27 │              6.88 / 7.33 ±0.46 / 8.17 ms │              6.86 / 7.09 ±0.20 / 7.40 ms │ no change │
│ QQuery 28 │        148.47 / 150.09 ±1.45 / 152.64 ms │        148.31 / 149.31 ±0.93 / 150.50 ms │ no change │
│ QQuery 29 │        281.87 / 283.31 ±1.65 / 286.25 ms │        281.96 / 284.55 ±2.07 / 288.17 ms │ no change │
│ QQuery 30 │           42.84 / 46.03 ±2.45 / 49.37 ms │           42.07 / 44.56 ±1.40 / 46.27 ms │ no change │
│ QQuery 31 │        170.89 / 171.89 ±1.13 / 173.97 ms │        167.30 / 171.89 ±2.82 / 175.27 ms │ no change │
│ QQuery 32 │           57.85 / 59.09 ±1.31 / 61.15 ms │           56.56 / 57.67 ±0.97 / 59.38 ms │ no change │
│ QQuery 33 │        142.15 / 142.81 ±0.60 / 143.71 ms │        139.37 / 140.89 ±1.29 / 142.45 ms │ no change │
│ QQuery 34 │              7.02 / 7.56 ±0.66 / 8.84 ms │              7.07 / 7.47 ±0.41 / 8.16 ms │ no change │
│ QQuery 35 │        106.42 / 108.61 ±1.42 / 110.80 ms │        108.83 / 109.50 ±0.71 / 110.63 ms │ no change │
│ QQuery 36 │              6.64 / 6.98 ±0.18 / 7.12 ms │              6.41 / 6.70 ±0.22 / 6.99 ms │ no change │
│ QQuery 37 │              8.24 / 8.99 ±0.67 / 9.89 ms │              8.36 / 8.73 ±0.39 / 9.23 ms │ no change │
│ QQuery 38 │           83.34 / 88.12 ±4.77 / 97.27 ms │           83.29 / 86.74 ±3.53 / 93.26 ms │ no change │
│ QQuery 39 │        123.37 / 126.84 ±2.42 / 130.82 ms │        122.16 / 128.84 ±3.89 / 132.45 ms │ no change │
│ QQuery 40 │        110.44 / 115.57 ±4.32 / 123.29 ms │        108.88 / 115.90 ±5.83 / 126.37 ms │ no change │
│ QQuery 41 │           14.43 / 15.54 ±1.07 / 17.07 ms │           14.32 / 15.25 ±0.75 / 16.21 ms │ no change │
│ QQuery 42 │        109.71 / 110.47 ±0.71 / 111.80 ms │        108.17 / 109.50 ±1.57 / 112.51 ms │ no change │
│ QQuery 43 │              6.08 / 6.22 ±0.18 / 6.56 ms │              6.05 / 6.30 ±0.26 / 6.67 ms │ no change │
│ QQuery 44 │           11.60 / 11.91 ±0.26 / 12.37 ms │           11.68 / 12.00 ±0.19 / 12.19 ms │ no change │
│ QQuery 45 │           50.35 / 51.27 ±0.63 / 51.99 ms │           50.93 / 51.93 ±1.28 / 54.37 ms │ no change │
│ QQuery 46 │              8.70 / 8.89 ±0.18 / 9.22 ms │              8.56 / 9.09 ±0.34 / 9.48 ms │ no change │
│ QQuery 47 │        694.47 / 703.64 ±6.57 / 714.90 ms │        695.82 / 702.42 ±6.86 / 712.99 ms │ no change │
│ QQuery 48 │        283.71 / 288.46 ±3.31 / 292.63 ms │        285.91 / 290.72 ±3.15 / 295.48 ms │ no change │
│ QQuery 49 │        252.05 / 253.22 ±0.75 / 253.95 ms │        250.35 / 254.69 ±2.74 / 258.85 ms │ no change │
│ QQuery 50 │        221.07 / 228.20 ±4.42 / 233.74 ms │        216.87 / 224.99 ±4.94 / 231.96 ms │ no change │
│ QQuery 51 │        183.83 / 185.70 ±1.51 / 188.38 ms │        180.08 / 181.91 ±1.11 / 183.41 ms │ no change │
│ QQuery 52 │        107.18 / 108.47 ±0.85 / 109.54 ms │        107.25 / 108.52 ±0.70 / 109.29 ms │ no change │
│ QQuery 53 │        102.96 / 103.62 ±0.57 / 104.36 ms │        102.42 / 103.49 ±0.81 / 104.90 ms │ no change │
│ QQuery 54 │        145.61 / 148.01 ±1.87 / 150.42 ms │        146.38 / 147.81 ±0.81 / 148.78 ms │ no change │
│ QQuery 55 │        108.13 / 108.99 ±0.99 / 110.79 ms │        105.89 / 107.16 ±0.69 / 107.82 ms │ no change │
│ QQuery 56 │        140.35 / 141.62 ±0.92 / 142.75 ms │        139.58 / 142.40 ±1.74 / 145.01 ms │ no change │
│ QQuery 57 │        174.04 / 176.02 ±1.65 / 178.23 ms │        172.74 / 175.21 ±1.37 / 176.79 ms │ no change │
│ QQuery 58 │        289.58 / 297.63 ±5.90 / 306.04 ms │        290.48 / 298.05 ±7.11 / 307.39 ms │ no change │
│ QQuery 59 │        199.31 / 200.82 ±1.06 / 202.51 ms │        198.32 / 202.30 ±2.43 / 205.48 ms │ no change │
│ QQuery 60 │        145.71 / 146.96 ±0.98 / 148.52 ms │        142.52 / 143.97 ±1.42 / 146.44 ms │ no change │
│ QQuery 61 │           13.28 / 13.60 ±0.33 / 14.16 ms │           13.05 / 13.28 ±0.30 / 13.87 ms │ no change │
│ QQuery 62 │       878.31 / 903.08 ±16.21 / 921.01 ms │       915.15 / 937.04 ±14.85 / 957.64 ms │ no change │
│ QQuery 63 │        103.93 / 105.82 ±1.77 / 108.39 ms │        105.03 / 107.11 ±2.76 / 112.37 ms │ no change │
│ QQuery 64 │        686.82 / 688.29 ±1.11 / 690.23 ms │        684.81 / 689.24 ±2.87 / 693.64 ms │ no change │
│ QQuery 65 │        249.03 / 254.09 ±3.19 / 257.24 ms │        249.70 / 253.34 ±2.66 / 257.00 ms │ no change │
│ QQuery 66 │       235.83 / 253.05 ±10.66 / 267.48 ms │        241.40 / 251.72 ±6.12 / 258.06 ms │ no change │
│ QQuery 67 │        311.73 / 320.53 ±5.87 / 327.67 ms │        305.94 / 311.49 ±7.22 / 325.44 ms │ no change │
│ QQuery 68 │            8.68 / 10.50 ±1.08 / 11.61 ms │            8.66 / 10.54 ±1.85 / 13.05 ms │ no change │
│ QQuery 69 │        102.12 / 104.00 ±1.41 / 105.77 ms │        101.43 / 104.25 ±1.68 / 105.78 ms │ no change │
│ QQuery 70 │       329.29 / 345.77 ±13.36 / 367.55 ms │        334.34 / 345.21 ±6.52 / 354.75 ms │ no change │
│ QQuery 71 │        134.77 / 136.37 ±1.23 / 138.29 ms │        134.74 / 137.67 ±1.92 / 140.24 ms │ no change │
│ QQuery 72 │        619.62 / 623.71 ±3.32 / 627.73 ms │        620.13 / 628.94 ±5.36 / 635.61 ms │ no change │
│ QQuery 73 │             7.45 / 8.36 ±1.07 / 10.44 ms │              7.30 / 8.07 ±0.85 / 9.70 ms │ no change │
│ QQuery 74 │        576.09 / 581.26 ±3.22 / 584.62 ms │        550.38 / 563.84 ±8.61 / 576.00 ms │ no change │
│ QQuery 75 │        275.88 / 278.16 ±1.42 / 280.21 ms │        277.77 / 281.07 ±2.69 / 284.09 ms │ no change │
│ QQuery 76 │        131.53 / 133.48 ±1.46 / 135.23 ms │        132.12 / 134.07 ±1.28 / 135.90 ms │ no change │
│ QQuery 77 │        187.02 / 190.04 ±2.31 / 194.11 ms │        188.34 / 190.27 ±1.96 / 193.99 ms │ no change │
│ QQuery 78 │        334.63 / 341.11 ±3.48 / 344.01 ms │       336.60 / 350.97 ±18.93 / 388.31 ms │ no change │
│ QQuery 79 │        233.72 / 236.01 ±1.53 / 238.04 ms │        227.80 / 230.36 ±1.49 / 232.23 ms │ no change │
│ QQuery 80 │        320.36 / 323.87 ±3.34 / 330.15 ms │        322.08 / 323.70 ±0.83 / 324.38 ms │ no change │
│ QQuery 81 │           26.44 / 27.45 ±0.91 / 28.50 ms │           26.58 / 26.97 ±0.50 / 27.95 ms │ no change │
│ QQuery 82 │        197.54 / 199.71 ±1.34 / 201.47 ms │        198.40 / 201.36 ±1.79 / 203.51 ms │ no change │
│ QQuery 83 │           38.17 / 39.33 ±0.77 / 40.14 ms │           38.30 / 39.92 ±0.95 / 41.00 ms │ no change │
│ QQuery 84 │           48.82 / 49.42 ±0.75 / 50.87 ms │           48.62 / 48.84 ±0.22 / 49.25 ms │ no change │
│ QQuery 85 │        145.53 / 148.77 ±3.33 / 155.03 ms │        146.15 / 150.92 ±2.88 / 154.39 ms │ no change │
│ QQuery 86 │           39.02 / 39.64 ±0.52 / 40.43 ms │           37.94 / 40.39 ±1.42 / 41.97 ms │ no change │
│ QQuery 87 │           83.93 / 88.97 ±3.39 / 94.57 ms │           85.58 / 88.73 ±2.76 / 93.63 ms │ no change │
│ QQuery 88 │        100.67 / 101.54 ±0.71 / 102.55 ms │        100.13 / 101.60 ±1.73 / 104.87 ms │ no change │
│ QQuery 89 │        116.77 / 119.32 ±1.53 / 120.90 ms │        118.83 / 119.78 ±1.13 / 121.58 ms │ no change │
│ QQuery 90 │           22.95 / 24.06 ±0.66 / 25.02 ms │           23.47 / 24.23 ±0.42 / 24.71 ms │ no change │
│ QQuery 91 │           63.18 / 63.89 ±0.44 / 64.52 ms │           61.99 / 64.55 ±1.64 / 66.79 ms │ no change │
│ QQuery 92 │           57.77 / 58.72 ±0.68 / 59.83 ms │           57.51 / 58.71 ±1.06 / 60.65 ms │ no change │
│ QQuery 93 │        186.24 / 187.00 ±0.82 / 188.60 ms │        187.23 / 189.96 ±1.87 / 192.27 ms │ no change │
│ QQuery 94 │           61.52 / 62.40 ±0.70 / 63.20 ms │           61.55 / 62.11 ±0.41 / 62.80 ms │ no change │
│ QQuery 95 │        126.58 / 128.66 ±1.43 / 130.60 ms │        126.47 / 129.91 ±1.98 / 132.23 ms │ no change │
│ QQuery 96 │           72.99 / 74.85 ±1.45 / 76.69 ms │           71.93 / 74.72 ±2.09 / 78.18 ms │ no change │
│ QQuery 97 │        124.87 / 127.18 ±1.39 / 128.42 ms │        123.45 / 125.49 ±1.06 / 126.36 ms │ no change │
│ QQuery 98 │        155.81 / 156.36 ±0.43 / 157.02 ms │        153.69 / 155.39 ±1.59 / 158.32 ms │ no change │
│ QQuery 99 │ 10746.65 / 10773.42 ±21.51 / 10803.52 ms │ 10740.52 / 10760.77 ±21.93 / 10800.63 ms │ no change │
└───────────┴──────────────────────────────────────────┴──────────────────────────────────────────┴───────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                            ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                            │ 31375.61ms │
│ Total Time (optimize-arrow-bytes-view-map)   │ 31395.80ms │
│ Average Time (HEAD)                          │   316.93ms │
│ Average Time (optimize-arrow-bytes-view-map) │   317.13ms │
│ Queries Faster                               │          0 │
│ Queries Slower                               │          0 │
│ Queries with No Change                       │         99 │
│ Queries with Failure                         │          0 │
└──────────────────────────────────────────────┴────────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 157.2s
Peak memory 5.5 GiB
Avg memory 4.7 GiB
CPU user 260.1s
CPU sys 16.6s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 157.3s
Peak memory 5.3 GiB
Avg memory 4.5 GiB
CPU user 260.2s
CPU sys 17.1s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4246545125-1251-pn8q2 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-arrow-bytes-view-map (ab814f6) to 29c5dd5 (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-c4246545125-1253-7nqzr 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-arrow-bytes-view-map (ab814f6) to 29c5dd5 (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-c4246545125-1252-mtqvd 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-arrow-bytes-view-map (ab814f6) to 29c5dd5 (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-arrow-bytes-view-map
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃         optimize-arrow-bytes-view-map ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.27 / 4.63 ±6.51 / 17.64 ms │          1.20 / 4.48 ±6.39 / 17.26 ms │     no change │
│ QQuery 1  │        14.52 / 15.15 ±0.37 / 15.68 ms │        14.11 / 14.54 ±0.24 / 14.82 ms │     no change │
│ QQuery 2  │        43.96 / 44.94 ±0.57 / 45.55 ms │        43.86 / 44.15 ±0.26 / 44.51 ms │     no change │
│ QQuery 3  │        44.41 / 45.98 ±0.96 / 47.31 ms │        45.39 / 49.07 ±2.96 / 52.69 ms │  1.07x slower │
│ QQuery 4  │    284.40 / 298.24 ±10.72 / 312.43 ms │    296.22 / 311.59 ±14.80 / 335.74 ms │     no change │
│ QQuery 5  │     340.07 / 354.36 ±9.90 / 365.20 ms │    342.96 / 367.67 ±13.70 / 381.96 ms │     no change │
│ QQuery 6  │           5.69 / 6.06 ±0.35 / 6.56 ms │           6.67 / 7.54 ±1.01 / 9.43 ms │  1.24x slower │
│ QQuery 7  │        17.34 / 17.97 ±0.52 / 18.57 ms │        16.69 / 17.58 ±0.88 / 19.13 ms │     no change │
│ QQuery 8  │     427.00 / 441.59 ±9.47 / 456.80 ms │     440.35 / 454.30 ±7.62 / 463.60 ms │     no change │
│ QQuery 9  │    650.88 / 690.86 ±23.82 / 722.53 ms │    654.78 / 685.82 ±21.83 / 715.98 ms │     no change │
│ QQuery 10 │       94.24 / 97.77 ±3.61 / 103.84 ms │       96.89 / 99.54 ±2.29 / 102.06 ms │     no change │
│ QQuery 11 │     103.81 / 108.21 ±2.95 / 110.86 ms │     104.46 / 109.74 ±2.69 / 111.80 ms │     no change │
│ QQuery 12 │    335.08 / 352.01 ±11.92 / 366.85 ms │    359.49 / 380.94 ±18.38 / 409.62 ms │  1.08x slower │
│ QQuery 13 │     472.13 / 478.98 ±7.96 / 494.25 ms │    477.76 / 496.21 ±10.71 / 506.18 ms │     no change │
│ QQuery 14 │    340.60 / 358.70 ±12.22 / 373.51 ms │    350.35 / 360.89 ±12.05 / 382.88 ms │     no change │
│ QQuery 15 │    351.78 / 380.72 ±17.43 / 398.91 ms │    367.85 / 391.45 ±28.43 / 442.82 ms │     no change │
│ QQuery 16 │    720.54 / 750.14 ±21.16 / 786.80 ms │    715.60 / 743.78 ±15.41 / 760.06 ms │     no change │
│ QQuery 17 │    729.15 / 764.48 ±25.39 / 805.24 ms │    730.93 / 744.32 ±14.98 / 772.08 ms │     no change │
│ QQuery 18 │ 1476.60 / 1503.33 ±17.17 / 1519.97 ms │ 1458.43 / 1522.50 ±60.48 / 1615.61 ms │     no change │
│ QQuery 19 │        36.27 / 37.99 ±0.89 / 38.78 ms │        36.74 / 38.31 ±1.74 / 40.74 ms │     no change │
│ QQuery 20 │    730.49 / 747.78 ±17.37 / 777.33 ms │    726.88 / 740.61 ±12.95 / 756.79 ms │     no change │
│ QQuery 21 │    777.43 / 795.28 ±13.62 / 810.40 ms │     761.17 / 773.15 ±7.09 / 782.37 ms │     no change │
│ QQuery 22 │ 1137.14 / 1160.87 ±18.72 / 1194.42 ms │  1137.58 / 1148.46 ±7.56 / 1155.10 ms │     no change │
│ QQuery 23 │ 3183.39 / 3230.24 ±37.81 / 3283.75 ms │ 3186.61 / 3238.74 ±36.72 / 3273.11 ms │     no change │
│ QQuery 24 │     101.50 / 105.59 ±2.35 / 108.80 ms │     100.22 / 103.79 ±2.12 / 105.90 ms │     no change │
│ QQuery 25 │     141.46 / 143.31 ±1.28 / 144.45 ms │     142.36 / 143.96 ±1.06 / 145.36 ms │     no change │
│ QQuery 26 │     103.22 / 107.24 ±2.34 / 109.98 ms │     104.18 / 105.21 ±0.99 / 106.50 ms │     no change │
│ QQuery 27 │    852.40 / 863.24 ±10.20 / 879.48 ms │     861.42 / 864.70 ±2.84 / 868.89 ms │     no change │
│ QQuery 28 │  3320.48 / 3338.11 ±9.12 / 3346.85 ms │ 3310.22 / 3330.10 ±12.68 / 3350.23 ms │     no change │
│ QQuery 29 │        52.36 / 54.13 ±2.69 / 59.49 ms │        51.02 / 56.92 ±4.99 / 62.69 ms │  1.05x slower │
│ QQuery 30 │    362.86 / 380.47 ±15.58 / 404.23 ms │    353.52 / 373.02 ±14.26 / 397.02 ms │     no change │
│ QQuery 31 │    380.69 / 396.25 ±19.77 / 434.54 ms │    357.64 / 379.81 ±15.12 / 397.76 ms │     no change │
│ QQuery 32 │ 1299.17 / 1330.40 ±28.89 / 1374.48 ms │ 1059.89 / 1082.00 ±18.21 / 1107.28 ms │ +1.23x faster │
│ QQuery 33 │ 1488.39 / 1550.34 ±60.22 / 1649.31 ms │ 1551.87 / 1619.76 ±56.36 / 1690.50 ms │     no change │
│ QQuery 34 │ 1511.53 / 1573.72 ±36.08 / 1613.51 ms │ 1644.19 / 1758.62 ±88.43 / 1868.05 ms │  1.12x slower │
│ QQuery 35 │     457.05 / 461.76 ±3.56 / 466.70 ms │    441.99 / 454.31 ±10.27 / 468.86 ms │     no change │
│ QQuery 36 │     130.53 / 133.68 ±3.13 / 139.49 ms │     118.53 / 128.56 ±5.51 / 134.94 ms │     no change │
│ QQuery 37 │        52.80 / 54.76 ±2.23 / 58.25 ms │        48.43 / 51.42 ±1.86 / 53.59 ms │ +1.07x faster │
│ QQuery 38 │        77.59 / 79.70 ±1.78 / 82.04 ms │        77.19 / 80.45 ±2.15 / 83.92 ms │     no change │
│ QQuery 39 │    210.26 / 227.11 ±10.18 / 239.62 ms │     232.68 / 241.99 ±7.20 / 253.29 ms │  1.07x slower │
│ QQuery 40 │        24.83 / 26.25 ±0.92 / 27.29 ms │        26.19 / 27.69 ±1.44 / 30.06 ms │  1.05x slower │
│ QQuery 41 │        22.48 / 23.47 ±0.98 / 25.11 ms │        22.34 / 22.91 ±0.62 / 23.89 ms │     no change │
│ QQuery 42 │        20.91 / 21.60 ±0.55 / 22.29 ms │        20.61 / 21.43 ±0.46 / 21.99 ms │     no change │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                            ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                            │ 23557.40ms │
│ Total Time (optimize-arrow-bytes-view-map)   │ 23592.00ms │
│ Average Time (HEAD)                          │   547.85ms │
│ Average Time (optimize-arrow-bytes-view-map) │   548.65ms │
│ Queries Faster                               │          2 │
│ Queries Slower                               │          7 │
│ Queries with No Change                       │         34 │
│ Queries with Failure                         │          0 │
└──────────────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 119.0s
Peak memory 41.1 GiB
Avg memory 29.2 GiB
CPU user 1107.0s
CPU sys 100.8s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 119.0s
Peak memory 38.2 GiB
Avg memory 31.1 GiB
CPU user 1119.4s
CPU sys 92.6s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

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

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-arrow-bytes-view-map
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                     HEAD ┃            optimize-arrow-bytes-view-map ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │              6.59 / 7.08 ±0.81 / 8.70 ms │              6.49 / 7.06 ±0.77 / 8.55 ms │     no change │
│ QQuery 2  │        144.49 / 144.84 ±0.57 / 145.98 ms │        144.18 / 145.61 ±0.86 / 146.48 ms │     no change │
│ QQuery 3  │        114.40 / 115.30 ±0.54 / 115.86 ms │        113.55 / 114.13 ±0.51 / 114.81 ms │     no change │
│ QQuery 4  │     1372.18 / 1384.93 ±7.36 / 1393.67 ms │    1357.63 / 1400.05 ±26.05 / 1431.25 ms │     no change │
│ QQuery 5  │        171.85 / 173.44 ±1.34 / 175.47 ms │        171.44 / 174.37 ±2.12 / 177.98 ms │     no change │
│ QQuery 6  │       835.61 / 858.03 ±20.69 / 896.13 ms │        857.89 / 875.13 ±9.86 / 887.76 ms │     no change │
│ QQuery 7  │        340.36 / 342.69 ±2.72 / 347.56 ms │        338.03 / 340.90 ±2.14 / 344.46 ms │     no change │
│ QQuery 8  │        116.06 / 116.89 ±0.55 / 117.69 ms │        116.39 / 117.58 ±1.06 / 119.19 ms │     no change │
│ QQuery 9  │        100.80 / 105.87 ±2.56 / 107.63 ms │        100.46 / 103.29 ±2.99 / 107.71 ms │     no change │
│ QQuery 10 │        105.94 / 106.53 ±0.34 / 106.90 ms │        105.74 / 106.97 ±0.85 / 108.33 ms │     no change │
│ QQuery 11 │       912.73 / 936.30 ±18.85 / 970.66 ms │        958.03 / 969.13 ±8.64 / 977.77 ms │     no change │
│ QQuery 12 │           45.68 / 47.39 ±1.19 / 49.06 ms │           44.63 / 45.75 ±1.02 / 47.22 ms │     no change │
│ QQuery 13 │        399.99 / 401.54 ±1.12 / 403.43 ms │        401.38 / 405.01 ±2.12 / 407.83 ms │     no change │
│ QQuery 14 │      990.58 / 1003.29 ±9.37 / 1012.67 ms │       981.60 / 992.11 ±7.36 / 1003.50 ms │     no change │
│ QQuery 15 │           16.27 / 17.47 ±0.90 / 18.57 ms │           16.42 / 16.90 ±0.51 / 17.87 ms │     no change │
│ QQuery 16 │              7.14 / 7.45 ±0.33 / 8.02 ms │              7.16 / 7.77 ±0.74 / 9.19 ms │     no change │
│ QQuery 17 │        225.88 / 228.43 ±2.07 / 232.21 ms │        225.93 / 227.74 ±1.29 / 229.27 ms │     no change │
│ QQuery 18 │        126.46 / 128.24 ±1.09 / 129.81 ms │        126.09 / 127.73 ±1.00 / 128.75 ms │     no change │
│ QQuery 19 │        154.74 / 156.16 ±0.98 / 157.49 ms │        154.49 / 155.53 ±0.88 / 156.95 ms │     no change │
│ QQuery 20 │           13.55 / 13.92 ±0.31 / 14.40 ms │           13.22 / 14.08 ±0.61 / 15.10 ms │     no change │
│ QQuery 21 │           18.93 / 19.34 ±0.28 / 19.62 ms │           18.60 / 19.43 ±0.50 / 20.14 ms │     no change │
│ QQuery 22 │        481.45 / 484.52 ±1.83 / 486.66 ms │        494.15 / 496.29 ±1.29 / 497.79 ms │     no change │
│ QQuery 23 │        861.05 / 867.56 ±5.67 / 874.62 ms │        859.72 / 865.84 ±5.70 / 874.08 ms │     no change │
│ QQuery 24 │        380.75 / 383.09 ±2.03 / 386.21 ms │        377.96 / 380.37 ±2.35 / 384.57 ms │     no change │
│ QQuery 25 │        336.62 / 340.32 ±1.99 / 342.12 ms │        337.89 / 340.10 ±1.84 / 343.25 ms │     no change │
│ QQuery 26 │           82.20 / 83.63 ±0.99 / 84.79 ms │           79.58 / 81.46 ±1.26 / 82.86 ms │     no change │
│ QQuery 27 │              6.97 / 7.39 ±0.52 / 8.43 ms │              6.70 / 7.01 ±0.20 / 7.23 ms │ +1.06x faster │
│ QQuery 28 │        147.78 / 149.34 ±1.80 / 152.68 ms │        148.14 / 150.32 ±1.29 / 152.12 ms │     no change │
│ QQuery 29 │        280.60 / 283.44 ±2.26 / 287.49 ms │        278.37 / 279.88 ±0.83 / 280.85 ms │     no change │
│ QQuery 30 │           42.80 / 44.89 ±1.65 / 47.18 ms │           43.08 / 44.63 ±1.00 / 46.16 ms │     no change │
│ QQuery 31 │        169.57 / 170.92 ±1.11 / 172.88 ms │        168.31 / 170.48 ±1.91 / 173.20 ms │     no change │
│ QQuery 32 │           58.27 / 59.36 ±0.83 / 60.74 ms │           56.76 / 58.37 ±1.46 / 61.14 ms │     no change │
│ QQuery 33 │        140.27 / 141.61 ±0.89 / 142.74 ms │        138.80 / 142.19 ±2.08 / 144.89 ms │     no change │
│ QQuery 34 │              6.80 / 7.47 ±0.70 / 8.63 ms │              6.86 / 7.07 ±0.29 / 7.64 ms │ +1.06x faster │
│ QQuery 35 │        104.22 / 107.33 ±1.57 / 108.52 ms │        106.76 / 107.35 ±0.48 / 107.89 ms │     no change │
│ QQuery 36 │              6.51 / 6.92 ±0.25 / 7.28 ms │              6.29 / 6.51 ±0.20 / 6.86 ms │ +1.06x faster │
│ QQuery 37 │              8.67 / 8.92 ±0.23 / 9.28 ms │              8.50 / 8.87 ±0.19 / 9.03 ms │     no change │
│ QQuery 38 │           85.20 / 89.03 ±3.65 / 95.98 ms │           83.40 / 87.02 ±4.21 / 95.17 ms │     no change │
│ QQuery 39 │        123.90 / 125.63 ±1.28 / 126.99 ms │        121.66 / 124.47 ±1.89 / 127.37 ms │     no change │
│ QQuery 40 │        108.66 / 112.71 ±7.15 / 126.97 ms │        109.47 / 114.86 ±6.39 / 127.04 ms │     no change │
│ QQuery 41 │           14.08 / 15.03 ±1.20 / 17.24 ms │           14.11 / 15.14 ±0.71 / 16.23 ms │     no change │
│ QQuery 42 │        107.79 / 110.58 ±1.97 / 112.41 ms │        106.66 / 107.81 ±0.76 / 108.78 ms │     no change │
│ QQuery 43 │              5.81 / 6.03 ±0.19 / 6.36 ms │              5.96 / 6.02 ±0.08 / 6.17 ms │     no change │
│ QQuery 44 │           11.58 / 11.74 ±0.20 / 12.10 ms │           11.52 / 12.05 ±0.42 / 12.59 ms │     no change │
│ QQuery 45 │           50.57 / 50.98 ±0.43 / 51.76 ms │           49.46 / 50.36 ±0.71 / 51.35 ms │     no change │
│ QQuery 46 │              8.13 / 8.61 ±0.34 / 9.14 ms │              8.28 / 8.52 ±0.19 / 8.76 ms │     no change │
│ QQuery 47 │        689.13 / 697.97 ±8.02 / 711.00 ms │       703.24 / 714.72 ±10.19 / 732.54 ms │     no change │
│ QQuery 48 │        279.06 / 288.55 ±4.96 / 292.67 ms │        290.09 / 294.36 ±3.36 / 299.86 ms │     no change │
│ QQuery 49 │        250.67 / 252.99 ±1.75 / 254.60 ms │        249.64 / 251.19 ±1.41 / 253.34 ms │     no change │
│ QQuery 50 │        225.12 / 227.71 ±2.72 / 232.80 ms │        213.59 / 221.80 ±6.14 / 232.11 ms │     no change │
│ QQuery 51 │        177.86 / 181.93 ±2.53 / 185.44 ms │        180.35 / 181.25 ±0.67 / 182.37 ms │     no change │
│ QQuery 52 │        107.39 / 108.26 ±1.14 / 110.45 ms │        107.92 / 108.95 ±0.53 / 109.34 ms │     no change │
│ QQuery 53 │        102.34 / 102.94 ±0.43 / 103.57 ms │        102.61 / 103.54 ±1.17 / 105.76 ms │     no change │
│ QQuery 54 │        146.67 / 148.42 ±1.28 / 150.21 ms │        146.60 / 148.96 ±1.72 / 151.94 ms │     no change │
│ QQuery 55 │        106.40 / 107.68 ±0.94 / 109.28 ms │        106.77 / 108.68 ±1.32 / 110.33 ms │     no change │
│ QQuery 56 │        139.69 / 141.38 ±1.40 / 143.38 ms │        142.12 / 142.82 ±0.59 / 143.88 ms │     no change │
│ QQuery 57 │        170.09 / 174.24 ±2.98 / 179.35 ms │        174.78 / 175.68 ±0.55 / 176.50 ms │     no change │
│ QQuery 58 │        282.38 / 291.79 ±7.88 / 305.91 ms │        287.39 / 294.73 ±4.95 / 299.62 ms │     no change │
│ QQuery 59 │        197.59 / 199.08 ±1.05 / 200.34 ms │        197.97 / 198.97 ±0.72 / 199.81 ms │     no change │
│ QQuery 60 │        142.49 / 143.52 ±0.89 / 145.04 ms │        143.74 / 145.41 ±1.15 / 146.69 ms │     no change │
│ QQuery 61 │           12.79 / 13.40 ±0.68 / 14.61 ms │           13.40 / 13.71 ±0.27 / 14.16 ms │     no change │
│ QQuery 62 │      892.34 / 961.16 ±66.99 / 1078.70 ms │       886.09 / 936.61 ±36.18 / 986.99 ms │     no change │
│ QQuery 63 │        104.00 / 105.37 ±0.88 / 106.40 ms │        103.52 / 105.26 ±1.14 / 106.65 ms │     no change │
│ QQuery 64 │        678.70 / 682.86 ±3.07 / 686.55 ms │        679.91 / 688.64 ±5.80 / 696.97 ms │     no change │
│ QQuery 65 │        253.75 / 256.60 ±2.04 / 259.06 ms │        249.55 / 255.10 ±3.34 / 259.50 ms │     no change │
│ QQuery 66 │        239.60 / 247.66 ±6.19 / 256.26 ms │        256.03 / 261.84 ±3.51 / 266.35 ms │  1.06x slower │
│ QQuery 67 │        303.22 / 313.43 ±6.99 / 322.72 ms │        309.74 / 321.88 ±8.37 / 331.81 ms │     no change │
│ QQuery 68 │            9.14 / 10.82 ±2.30 / 15.31 ms │            9.44 / 10.97 ±1.16 / 12.47 ms │     no change │
│ QQuery 69 │        101.21 / 103.02 ±1.51 / 105.24 ms │        102.66 / 104.80 ±2.20 / 107.54 ms │     no change │
│ QQuery 70 │        344.79 / 351.17 ±4.83 / 359.62 ms │       327.62 / 339.02 ±11.75 / 360.11 ms │     no change │
│ QQuery 71 │        133.40 / 134.60 ±0.96 / 135.86 ms │        134.12 / 135.53 ±1.09 / 137.46 ms │     no change │
│ QQuery 72 │        604.64 / 619.88 ±7.78 / 625.93 ms │        601.10 / 612.07 ±9.38 / 628.01 ms │     no change │
│ QQuery 73 │             6.57 / 7.87 ±1.33 / 10.23 ms │              6.54 / 7.12 ±0.54 / 8.01 ms │ +1.11x faster │
│ QQuery 74 │        581.93 / 590.17 ±5.76 / 596.80 ms │        590.55 / 602.83 ±7.69 / 611.15 ms │     no change │
│ QQuery 75 │        275.82 / 277.69 ±1.49 / 279.60 ms │        276.53 / 278.12 ±1.45 / 280.36 ms │     no change │
│ QQuery 76 │        130.98 / 132.88 ±1.51 / 134.50 ms │        131.43 / 133.49 ±1.63 / 136.34 ms │     no change │
│ QQuery 77 │        187.21 / 189.35 ±1.85 / 191.79 ms │        188.20 / 189.78 ±1.29 / 192.01 ms │     no change │
│ QQuery 78 │        339.99 / 344.18 ±2.58 / 348.04 ms │        336.30 / 342.36 ±5.39 / 348.92 ms │     no change │
│ QQuery 79 │        231.87 / 233.49 ±1.88 / 236.97 ms │        226.63 / 232.39 ±3.20 / 236.13 ms │     no change │
│ QQuery 80 │        321.10 / 324.56 ±2.78 / 327.66 ms │        319.33 / 322.23 ±2.65 / 326.82 ms │     no change │
│ QQuery 81 │           26.20 / 27.81 ±1.09 / 29.63 ms │           26.56 / 27.10 ±0.58 / 28.12 ms │     no change │
│ QQuery 82 │        196.97 / 199.94 ±2.88 / 205.16 ms │        196.31 / 198.79 ±2.25 / 202.07 ms │     no change │
│ QQuery 83 │           38.56 / 39.11 ±0.68 / 40.42 ms │           38.27 / 40.16 ±1.22 / 41.66 ms │     no change │
│ QQuery 84 │           48.49 / 49.35 ±0.66 / 50.44 ms │           49.31 / 50.16 ±0.61 / 51.19 ms │     no change │
│ QQuery 85 │        145.10 / 147.23 ±1.69 / 149.40 ms │        145.57 / 149.06 ±2.56 / 152.82 ms │     no change │
│ QQuery 86 │           40.04 / 40.88 ±0.54 / 41.57 ms │           38.88 / 39.96 ±0.59 / 40.60 ms │     no change │
│ QQuery 87 │           84.79 / 88.72 ±3.41 / 93.34 ms │           85.35 / 86.98 ±2.58 / 92.11 ms │     no change │
│ QQuery 88 │        100.07 / 101.09 ±0.88 / 102.37 ms │         99.85 / 100.57 ±0.70 / 101.47 ms │     no change │
│ QQuery 89 │        117.37 / 119.50 ±1.78 / 121.96 ms │        119.30 / 120.28 ±0.85 / 121.78 ms │     no change │
│ QQuery 90 │           23.56 / 24.15 ±0.48 / 24.87 ms │           23.15 / 24.15 ±0.62 / 24.75 ms │     no change │
│ QQuery 91 │           61.10 / 64.10 ±2.47 / 68.56 ms │           62.93 / 64.65 ±1.67 / 67.72 ms │     no change │
│ QQuery 92 │           58.66 / 59.51 ±0.53 / 60.20 ms │           58.06 / 58.29 ±0.15 / 58.50 ms │     no change │
│ QQuery 93 │        184.74 / 186.69 ±1.56 / 188.40 ms │        187.33 / 188.14 ±0.91 / 189.92 ms │     no change │
│ QQuery 94 │           61.20 / 61.97 ±0.71 / 63.01 ms │           61.02 / 61.54 ±0.30 / 61.88 ms │     no change │
│ QQuery 95 │        126.75 / 127.91 ±0.90 / 129.10 ms │        126.80 / 129.05 ±1.49 / 131.07 ms │     no change │
│ QQuery 96 │           71.28 / 74.41 ±2.53 / 77.60 ms │           71.98 / 73.44 ±1.01 / 75.09 ms │     no change │
│ QQuery 97 │        124.57 / 126.72 ±2.46 / 131.45 ms │        122.57 / 124.51 ±1.06 / 125.59 ms │     no change │
│ QQuery 98 │        153.95 / 156.07 ±1.90 / 158.65 ms │        152.57 / 153.97 ±1.40 / 155.93 ms │     no change │
│ QQuery 99 │ 10755.72 / 10805.78 ±44.71 / 10876.50 ms │ 10815.67 / 10836.88 ±23.05 / 10880.20 ms │     no change │
└───────────┴──────────────────────────────────────────┴──────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                            ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                            │ 31459.70ms │
│ Total Time (optimize-arrow-bytes-view-map)   │ 31551.73ms │
│ Average Time (HEAD)                          │   317.77ms │
│ Average Time (optimize-arrow-bytes-view-map) │   318.70ms │
│ Queries Faster                               │          4 │
│ Queries Slower                               │          1 │
│ Queries with No Change                       │         94 │
│ Queries with Failure                         │          0 │
└──────────────────────────────────────────────┴────────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 157.6s
Peak memory 5.3 GiB
Avg memory 4.4 GiB
CPU user 259.2s
CPU sys 16.9s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 158.1s
Peak memory 5.6 GiB
Avg memory 4.7 GiB
CPU user 259.9s
CPU sys 16.7s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

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

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

Comparing HEAD and optimize-arrow-bytes-view-map
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃          optimize-arrow-bytes-view-map ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.20 / 4.48 ±6.40 / 17.29 ms │           1.22 / 4.50 ±6.41 / 17.31 ms │     no change │
│ QQuery 1  │        14.23 / 14.69 ±0.27 / 14.96 ms │         14.19 / 14.60 ±0.23 / 14.90 ms │     no change │
│ QQuery 2  │        44.44 / 44.76 ±0.31 / 45.21 ms │         44.36 / 44.64 ±0.24 / 45.09 ms │     no change │
│ QQuery 3  │        42.86 / 45.30 ±1.52 / 46.96 ms │         42.26 / 45.60 ±2.11 / 48.16 ms │     no change │
│ QQuery 4  │     287.17 / 297.83 ±5.99 / 303.49 ms │      290.72 / 300.78 ±9.91 / 316.74 ms │     no change │
│ QQuery 5  │     346.33 / 348.85 ±2.50 / 352.63 ms │      340.58 / 348.17 ±5.07 / 356.53 ms │     no change │
│ QQuery 6  │           5.66 / 6.48 ±0.90 / 8.11 ms │            5.10 / 6.07 ±0.95 / 7.89 ms │ +1.07x faster │
│ QQuery 7  │        16.74 / 17.91 ±1.74 / 21.34 ms │         16.86 / 17.42 ±0.46 / 18.22 ms │     no change │
│ QQuery 8  │    406.59 / 419.57 ±10.66 / 437.41 ms │      429.65 / 437.50 ±8.62 / 454.31 ms │     no change │
│ QQuery 9  │     654.36 / 661.10 ±5.96 / 669.28 ms │     640.29 / 659.55 ±12.42 / 678.97 ms │     no change │
│ QQuery 10 │        90.47 / 92.99 ±3.02 / 98.90 ms │         92.57 / 94.45 ±2.23 / 98.74 ms │     no change │
│ QQuery 11 │     103.20 / 104.88 ±1.18 / 106.68 ms │      103.91 / 105.16 ±1.26 / 107.52 ms │     no change │
│ QQuery 12 │     337.98 / 348.46 ±7.79 / 362.09 ms │      362.23 / 366.18 ±2.56 / 369.62 ms │  1.05x slower │
│ QQuery 13 │    450.18 / 466.14 ±13.12 / 489.01 ms │      482.20 / 490.76 ±8.02 / 505.31 ms │  1.05x slower │
│ QQuery 14 │     340.22 / 346.79 ±4.95 / 351.66 ms │      342.75 / 345.39 ±1.76 / 348.07 ms │     no change │
│ QQuery 15 │    350.06 / 371.45 ±12.24 / 382.90 ms │     353.22 / 374.85 ±27.59 / 425.65 ms │     no change │
│ QQuery 16 │    707.54 / 731.93 ±31.23 / 793.61 ms │     725.20 / 742.05 ±18.93 / 778.39 ms │     no change │
│ QQuery 17 │    705.10 / 734.81 ±29.53 / 788.80 ms │      710.39 / 717.17 ±3.83 / 721.31 ms │     no change │
│ QQuery 18 │ 1438.95 / 1477.28 ±21.33 / 1499.27 ms │  1428.35 / 1471.42 ±29.05 / 1511.42 ms │     no change │
│ QQuery 19 │        35.34 / 36.75 ±1.33 / 38.48 ms │         35.67 / 39.67 ±6.96 / 53.56 ms │  1.08x slower │
│ QQuery 20 │    709.09 / 732.00 ±19.92 / 761.26 ms │     718.69 / 732.28 ±15.73 / 759.84 ms │     no change │
│ QQuery 21 │     764.29 / 769.55 ±5.25 / 777.78 ms │      763.12 / 768.54 ±4.02 / 775.03 ms │     no change │
│ QQuery 22 │  1142.78 / 1150.37 ±5.97 / 1160.67 ms │   1133.79 / 1138.96 ±3.99 / 1145.49 ms │     no change │
│ QQuery 23 │ 3055.24 / 3094.48 ±24.47 / 3125.30 ms │  3074.90 / 3092.45 ±13.78 / 3114.57 ms │     no change │
│ QQuery 24 │     100.46 / 101.88 ±0.92 / 102.93 ms │       99.54 / 102.02 ±1.27 / 103.06 ms │     no change │
│ QQuery 25 │     137.16 / 139.53 ±1.72 / 142.28 ms │      139.38 / 141.33 ±1.91 / 144.37 ms │     no change │
│ QQuery 26 │      99.99 / 102.28 ±1.87 / 105.41 ms │      100.34 / 102.92 ±1.34 / 104.10 ms │     no change │
│ QQuery 27 │     846.30 / 851.91 ±5.58 / 862.26 ms │      848.64 / 854.89 ±8.20 / 870.87 ms │     no change │
│ QQuery 28 │ 3291.45 / 3322.14 ±16.72 / 3340.45 ms │  3257.91 / 3285.03 ±18.73 / 3314.66 ms │     no change │
│ QQuery 29 │        51.43 / 54.03 ±1.64 / 56.09 ms │       50.06 / 99.74 ±63.19 / 218.77 ms │  1.85x slower │
│ QQuery 30 │     357.16 / 363.63 ±5.27 / 369.78 ms │      361.14 / 366.73 ±3.69 / 372.65 ms │     no change │
│ QQuery 31 │    368.50 / 383.13 ±13.18 / 407.95 ms │     365.98 / 388.95 ±16.34 / 412.45 ms │     no change │
│ QQuery 32 │ 1223.98 / 1284.55 ±32.22 / 1313.42 ms │ 1023.08 / 1163.44 ±115.28 / 1309.39 ms │ +1.10x faster │
│ QQuery 33 │ 1468.16 / 1524.18 ±44.04 / 1595.28 ms │   1549.82 / 1560.05 ±6.10 / 1567.54 ms │     no change │
│ QQuery 34 │ 1449.32 / 1471.31 ±12.72 / 1485.74 ms │  1558.98 / 1575.31 ±10.76 / 1588.34 ms │  1.07x slower │
│ QQuery 35 │     385.81 / 391.67 ±3.97 / 397.41 ms │      391.43 / 403.12 ±8.80 / 414.98 ms │     no change │
│ QQuery 36 │     112.75 / 119.55 ±3.92 / 124.33 ms │      116.23 / 120.23 ±2.33 / 122.78 ms │     no change │
│ QQuery 37 │        48.53 / 50.78 ±1.56 / 52.87 ms │         44.52 / 46.94 ±1.98 / 49.61 ms │ +1.08x faster │
│ QQuery 38 │        74.55 / 75.16 ±0.66 / 76.42 ms │         74.71 / 77.13 ±1.33 / 78.65 ms │     no change │
│ QQuery 39 │     206.37 / 217.50 ±6.78 / 224.80 ms │      202.69 / 217.30 ±8.50 / 226.18 ms │     no change │
│ QQuery 40 │        22.95 / 25.32 ±2.02 / 27.49 ms │         24.27 / 26.16 ±1.86 / 29.20 ms │     no change │
│ QQuery 41 │        19.30 / 20.93 ±0.97 / 21.95 ms │         20.52 / 21.45 ±0.76 / 22.82 ms │     no change │
│ QQuery 42 │        19.59 / 20.15 ±0.62 / 21.23 ms │         20.02 / 20.48 ±0.27 / 20.81 ms │     no change │
└───────────┴───────────────────────────────────────┴────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                            ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                            │ 22838.50ms │
│ Total Time (optimize-arrow-bytes-view-map)   │ 22931.36ms │
│ Average Time (HEAD)                          │   531.13ms │
│ Average Time (optimize-arrow-bytes-view-map) │   533.29ms │
│ Queries Faster                               │          3 │
│ Queries Slower                               │          5 │
│ Queries with No Change                       │         35 │
│ Queries with Failure                         │          0 │
└──────────────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 115.4s
Peak memory 42.3 GiB
Avg memory 29.7 GiB
CPU user 1075.0s
CPU sys 96.1s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 115.7s
Peak memory 41.2 GiB
Avg memory 29.1 GiB
CPU user 1086.2s
CPU sys 90.4s
Peak spill 0 B

File an issue against this benchmark runner

@Dandandan
Copy link
Copy Markdown
Contributor Author

run benchmark clickbench_partitioned

@Dandandan
Copy link
Copy Markdown
Contributor Author

run benchmark clickbench_extended

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4246880351-1258-dg6s9 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-arrow-bytes-view-map (ab814f6) to 29c5dd5 (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-c4246881842-1259-9vmgq 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-arrow-bytes-view-map (ab814f6) to 29c5dd5 (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-arrow-bytes-view-map
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃         optimize-arrow-bytes-view-map ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.22 / 4.50 ±6.39 / 17.28 ms │          1.22 / 4.50 ±6.42 / 17.33 ms │     no change │
│ QQuery 1  │        14.41 / 14.72 ±0.18 / 14.90 ms │        14.66 / 14.87 ±0.15 / 15.10 ms │     no change │
│ QQuery 2  │        43.91 / 44.75 ±0.57 / 45.49 ms │        43.95 / 44.33 ±0.36 / 44.98 ms │     no change │
│ QQuery 3  │        42.53 / 44.83 ±1.52 / 46.85 ms │        42.80 / 45.65 ±1.87 / 48.37 ms │     no change │
│ QQuery 4  │     288.80 / 297.55 ±7.61 / 307.44 ms │    286.84 / 295.52 ±10.33 / 314.52 ms │     no change │
│ QQuery 5  │     342.03 / 344.04 ±2.09 / 347.24 ms │     342.04 / 347.37 ±3.35 / 350.43 ms │     no change │
│ QQuery 6  │          5.97 / 8.26 ±4.42 / 17.11 ms │          5.64 / 7.60 ±1.67 / 10.55 ms │ +1.09x faster │
│ QQuery 7  │        16.75 / 17.08 ±0.25 / 17.52 ms │        17.11 / 17.78 ±0.82 / 19.36 ms │     no change │
│ QQuery 8  │     422.49 / 428.09 ±3.31 / 432.25 ms │     425.13 / 433.30 ±6.49 / 443.83 ms │     no change │
│ QQuery 9  │    651.81 / 673.34 ±13.63 / 692.32 ms │     640.69 / 653.79 ±8.71 / 667.89 ms │     no change │
│ QQuery 10 │       93.60 / 97.79 ±3.33 / 103.50 ms │        91.66 / 94.00 ±2.50 / 98.63 ms │     no change │
│ QQuery 11 │     104.37 / 106.57 ±1.95 / 109.94 ms │     104.06 / 105.63 ±1.06 / 106.66 ms │     no change │
│ QQuery 12 │     349.12 / 354.80 ±5.32 / 364.59 ms │     363.89 / 366.11 ±1.74 / 368.84 ms │     no change │
│ QQuery 13 │    467.61 / 486.47 ±13.11 / 500.81 ms │    463.03 / 481.52 ±11.93 / 493.63 ms │     no change │
│ QQuery 14 │     346.23 / 352.58 ±4.87 / 360.43 ms │     345.67 / 347.06 ±1.23 / 349.26 ms │     no change │
│ QQuery 15 │    369.04 / 384.47 ±17.36 / 413.30 ms │    351.56 / 376.79 ±23.11 / 413.54 ms │     no change │
│ QQuery 16 │    720.24 / 752.14 ±23.41 / 787.11 ms │    706.68 / 730.02 ±20.62 / 762.44 ms │     no change │
│ QQuery 17 │    735.69 / 742.40 ±10.81 / 763.95 ms │     702.46 / 713.92 ±5.87 / 719.20 ms │     no change │
│ QQuery 18 │ 1491.20 / 1515.53 ±12.23 / 1523.14 ms │ 1458.58 / 1483.41 ±36.11 / 1553.99 ms │     no change │
│ QQuery 19 │        38.42 / 39.77 ±0.78 / 40.85 ms │       39.95 / 54.00 ±11.06 / 73.97 ms │  1.36x slower │
│ QQuery 20 │    728.24 / 749.00 ±19.24 / 776.54 ms │    724.25 / 741.90 ±22.35 / 783.77 ms │     no change │
│ QQuery 21 │     765.62 / 773.91 ±4.45 / 778.82 ms │     767.23 / 773.68 ±5.70 / 782.55 ms │     no change │
│ QQuery 22 │  1142.57 / 1150.51 ±9.97 / 1169.14 ms │  1143.14 / 1144.82 ±1.39 / 1147.11 ms │     no change │
│ QQuery 23 │ 3101.61 / 3126.35 ±21.00 / 3159.82 ms │  3096.22 / 3108.62 ±7.69 / 3119.02 ms │     no change │
│ QQuery 24 │     101.08 / 102.87 ±1.30 / 104.38 ms │      98.86 / 102.71 ±3.22 / 107.63 ms │     no change │
│ QQuery 25 │     137.44 / 140.47 ±1.87 / 142.79 ms │     139.78 / 141.63 ±1.76 / 144.78 ms │     no change │
│ QQuery 26 │     100.40 / 103.40 ±2.14 / 105.88 ms │     104.20 / 105.72 ±1.70 / 108.49 ms │     no change │
│ QQuery 27 │     853.79 / 863.39 ±7.15 / 873.21 ms │     855.19 / 862.33 ±8.17 / 877.55 ms │     no change │
│ QQuery 28 │ 3259.58 / 3295.94 ±20.07 / 3321.15 ms │ 3242.39 / 3278.98 ±19.88 / 3301.59 ms │     no change │
│ QQuery 29 │        53.80 / 57.05 ±3.41 / 62.68 ms │        50.23 / 56.02 ±6.46 / 68.31 ms │     no change │
│ QQuery 30 │     368.64 / 376.58 ±6.18 / 384.62 ms │     364.75 / 371.42 ±5.75 / 378.22 ms │     no change │
│ QQuery 31 │    373.12 / 388.36 ±14.48 / 415.30 ms │    350.66 / 374.55 ±13.68 / 390.04 ms │     no change │
│ QQuery 32 │ 1059.62 / 1084.95 ±21.85 / 1111.79 ms │ 1270.77 / 1284.21 ±12.33 / 1307.10 ms │  1.18x slower │
│ QQuery 33 │ 1484.15 / 1499.36 ±12.91 / 1516.50 ms │ 1593.24 / 1649.28 ±29.19 / 1676.13 ms │  1.10x slower │
│ QQuery 34 │ 1480.67 / 1491.22 ±15.53 / 1521.41 ms │ 1645.12 / 1665.75 ±16.27 / 1687.18 ms │  1.12x slower │
│ QQuery 35 │     393.34 / 397.04 ±3.22 / 402.92 ms │    384.16 / 396.43 ±11.60 / 417.07 ms │     no change │
│ QQuery 36 │     114.26 / 122.23 ±4.56 / 128.43 ms │     112.36 / 120.83 ±5.28 / 127.55 ms │     no change │
│ QQuery 37 │        47.06 / 49.97 ±1.78 / 51.84 ms │        44.47 / 47.00 ±1.76 / 49.36 ms │ +1.06x faster │
│ QQuery 38 │        76.56 / 77.81 ±0.85 / 79.04 ms │        75.10 / 78.36 ±2.10 / 80.74 ms │     no change │
│ QQuery 39 │     218.29 / 226.40 ±4.58 / 230.86 ms │     205.62 / 217.91 ±8.48 / 228.87 ms │     no change │
│ QQuery 40 │        23.37 / 26.45 ±1.99 / 28.53 ms │        24.01 / 25.42 ±0.88 / 26.71 ms │     no change │
│ QQuery 41 │        20.05 / 21.63 ±0.96 / 22.71 ms │        19.60 / 21.90 ±1.86 / 24.09 ms │     no change │
│ QQuery 42 │        19.57 / 19.94 ±0.22 / 20.14 ms │        18.45 / 19.88 ±0.83 / 20.99 ms │     no change │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                            ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                            │ 22854.51ms │
│ Total Time (optimize-arrow-bytes-view-map)   │ 23206.54ms │
│ Average Time (HEAD)                          │   531.50ms │
│ Average Time (optimize-arrow-bytes-view-map) │   539.69ms │
│ Queries Faster                               │          2 │
│ Queries Slower                               │          4 │
│ Queries with No Change                       │         37 │
│ Queries with Failure                         │          0 │
└──────────────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 115.5s
Peak memory 39.5 GiB
Avg memory 31.8 GiB
CPU user 1083.9s
CPU sys 89.1s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 117.1s
Peak memory 38.1 GiB
Avg memory 29.0 GiB
CPU user 1083.4s
CPU sys 105.6s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

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

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-arrow-bytes-view-map
--------------------
Benchmark clickbench_extended.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                   HEAD ┃           optimize-arrow-bytes-view-map ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │      764.66 / 774.51 ±7.46 / 785.99 ms │      858.24 / 879.45 ±11.64 / 889.47 ms │  1.14x slower │
│ QQuery 1  │      206.48 / 207.84 ±0.85 / 208.91 ms │       186.81 / 188.45 ±1.00 / 189.71 ms │ +1.10x faster │
│ QQuery 2  │      491.17 / 493.72 ±3.79 / 501.00 ms │       440.48 / 443.91 ±2.28 / 447.44 ms │ +1.11x faster │
│ QQuery 3  │      312.90 / 314.40 ±1.04 / 315.28 ms │       311.96 / 313.99 ±1.23 / 315.37 ms │     no change │
│ QQuery 4  │      655.73 / 661.32 ±9.35 / 679.90 ms │      656.87 / 668.37 ±18.93 / 706.11 ms │     no change │
│ QQuery 5  │ 9487.89 / 9736.38 ±192.83 / 9971.92 ms │ 9559.98 / 9810.99 ±178.52 / 10066.31 ms │     no change │
│ QQuery 6  │   986.79 / 1004.13 ±20.52 / 1043.85 ms │      989.67 / 995.77 ±4.84 / 1004.42 ms │     no change │
│ QQuery 7  │      763.78 / 776.57 ±8.64 / 790.29 ms │       757.77 / 769.74 ±7.06 / 779.57 ms │     no change │
│ QQuery 8  │      392.04 / 394.36 ±2.44 / 398.78 ms │       390.34 / 395.49 ±4.46 / 403.64 ms │     no change │
│ QQuery 9  │  2798.86 / 2824.26 ±19.70 / 2848.19 ms │   2778.18 / 2797.33 ±15.72 / 2824.68 ms │     no change │
│ QQuery 10 │     626.10 / 637.31 ±12.32 / 660.81 ms │       629.03 / 635.67 ±6.91 / 646.98 ms │     no change │
│ QQuery 11 │  2031.62 / 2048.93 ±15.87 / 2074.23 ms │    2200.48 / 2209.84 ±7.25 / 2218.62 ms │  1.08x slower │
│ QQuery 12 │      192.90 / 197.34 ±3.31 / 201.31 ms │       191.21 / 196.27 ±8.21 / 212.53 ms │     no change │
└───────────┴────────────────────────────────────────┴─────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                            ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                            │ 20071.07ms │
│ Total Time (optimize-arrow-bytes-view-map)   │ 20305.26ms │
│ Average Time (HEAD)                          │  1543.93ms │
│ Average Time (optimize-arrow-bytes-view-map) │  1561.94ms │
│ Queries Faster                               │          2 │
│ Queries Slower                               │          2 │
│ Queries with No Change                       │          9 │
│ Queries with Failure                         │          0 │
└──────────────────────────────────────────────┴────────────┘

Resource Usage

clickbench_extended — base (merge-base)

Metric Value
Wall time 101.2s
Peak memory 33.7 GiB
Avg memory 29.3 GiB
CPU user 971.8s
CPU sys 45.9s
Peak spill 0 B

clickbench_extended — branch

Metric Value
Wall time 102.3s
Peak memory 33.3 GiB
Avg memory 29.1 GiB
CPU user 983.3s
CPU sys 46.1s
Peak spill 0 B

File an issue against this benchmark runner

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

Labels

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