Skip to content

Shrink ArrowBytesViewMap Entry from 32+ to 16 bytes#21393

Closed
Dandandan wants to merge 6 commits intoapache:mainfrom
Dandandan:shrink-arrow-bytes-view-map-entry
Closed

Shrink ArrowBytesViewMap Entry from 32+ to 16 bytes#21393
Dandandan wants to merge 6 commits intoapache:mainfrom
Dandandan:shrink-arrow-bytes-view-map-entry

Conversation

@Dandandan
Copy link
Copy Markdown
Contributor

Which issue does this PR close?

Related to memory optimization.

Rationale for this change

ArrowBytesViewMap is used for GROUP BY and COUNT DISTINCT on string/binary view types. Each hash table Entry previously stored { view: u128, hash: u64, payload: V } (32+ bytes).

The view: u128 was redundant with the views Vec, and the payload: V was always either () (for sets) or equivalent to the insertion index (for group-by). Since entries are inserted sequentially, the view index is the group index.

What changes are included in this PR?

  • Remove the V generic parameter from ArrowBytesViewMap and Entry
  • Replace view: u128 in Entry with view_idx: usize (index into the views Vec)
  • Entry shrinks from 32+ bytes to 16 bytes (50%+ reduction in per-entry hash table memory)
  • Simplify insert_if_new API from two callbacks (make_payload_fn, observe_payload_fn) to one (observe_fn(usize))
  • Simplify GroupValuesBytesView by removing redundant num_groups field

Are these changes tested?

Yes, existing tests pass. Added test_entry_size to verify Entry is 16 bytes.

Are there any user-facing changes?

No.

🤖 Generated with Claude Code

Dandandan and others added 2 commits April 6, 2026 10:39
Remove the payload generic `V` from ArrowBytesViewMap and the redundant
`view: u128` from Entry. Since entries are inserted sequentially, the
view_idx serves as both the index into the views Vec and the group index
for GROUP BY, making a separate payload unnecessary. Entry is now just
`{ view_idx: usize, hash: u64 }` (16 bytes on 64-bit).

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

run benchmarks

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4191197640-878-6sfhb 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 shrink-arrow-bytes-view-map-entry (92dfc2d) to c17c87c (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-c4191197640-876-299pm 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 shrink-arrow-bytes-view-map-entry (92dfc2d) to c17c87c (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-c4191197640-877-fdrw8 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 shrink-arrow-bytes-view-map-entry (92dfc2d) to c17c87c (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 shrink-arrow-bytes-view-map-entry
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                     HEAD ┃        shrink-arrow-bytes-view-map-entry ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │              6.67 / 7.15 ±0.87 / 8.89 ms │              6.58 / 7.01 ±0.77 / 8.55 ms │     no change │
│ QQuery 2  │        145.73 / 146.15 ±0.24 / 146.41 ms │        144.00 / 144.55 ±0.48 / 145.34 ms │     no change │
│ QQuery 3  │        112.33 / 113.70 ±0.82 / 114.70 ms │        113.05 / 114.03 ±0.90 / 115.53 ms │     no change │
│ QQuery 4  │    1243.26 / 1267.85 ±13.51 / 1283.58 ms │    1226.60 / 1260.70 ±19.84 / 1280.88 ms │     no change │
│ QQuery 5  │        172.71 / 174.67 ±1.76 / 177.08 ms │        171.23 / 173.48 ±1.96 / 177.10 ms │     no change │
│ QQuery 6  │       820.99 / 851.18 ±17.75 / 871.90 ms │       801.79 / 824.97 ±20.07 / 857.77 ms │     no change │
│ QQuery 7  │        348.74 / 352.14 ±4.39 / 360.52 ms │        349.31 / 351.00 ±1.29 / 352.86 ms │     no change │
│ QQuery 8  │        114.89 / 115.70 ±0.47 / 116.21 ms │        114.23 / 115.93 ±1.23 / 117.90 ms │     no change │
│ QQuery 9  │       101.77 / 112.04 ±10.94 / 127.37 ms │         99.80 / 104.79 ±2.64 / 107.10 ms │ +1.07x faster │
│ QQuery 10 │        106.49 / 107.02 ±0.42 / 107.69 ms │        105.46 / 106.31 ±0.76 / 107.58 ms │     no change │
│ QQuery 11 │        840.47 / 850.03 ±8.38 / 862.73 ms │        832.86 / 842.86 ±9.61 / 858.12 ms │     no change │
│ QQuery 12 │           44.16 / 45.03 ±0.61 / 46.04 ms │           43.82 / 45.48 ±1.75 / 48.45 ms │     no change │
│ QQuery 13 │        396.10 / 397.92 ±1.48 / 399.33 ms │        398.16 / 399.98 ±2.31 / 404.26 ms │     no change │
│ QQuery 14 │     1015.03 / 1020.58 ±4.49 / 1027.33 ms │     1012.69 / 1018.11 ±5.51 / 1028.73 ms │     no change │
│ QQuery 15 │           14.92 / 15.97 ±1.17 / 18.19 ms │           15.81 / 16.36 ±0.52 / 17.31 ms │     no change │
│ QQuery 16 │              7.12 / 7.78 ±0.81 / 9.36 ms │              7.11 / 7.47 ±0.33 / 7.99 ms │     no change │
│ QQuery 17 │        235.67 / 238.96 ±3.12 / 242.98 ms │        236.63 / 240.20 ±2.03 / 242.32 ms │     no change │
│ QQuery 18 │        126.85 / 128.77 ±1.67 / 130.72 ms │        127.01 / 128.91 ±1.14 / 130.25 ms │     no change │
│ QQuery 19 │        152.93 / 154.97 ±1.72 / 157.66 ms │        153.06 / 154.97 ±1.26 / 156.36 ms │     no change │
│ QQuery 20 │           13.12 / 14.07 ±0.60 / 14.76 ms │           13.28 / 13.76 ±0.32 / 14.05 ms │     no change │
│ QQuery 21 │           19.09 / 19.38 ±0.42 / 20.20 ms │           19.20 / 19.90 ±0.55 / 20.77 ms │     no change │
│ QQuery 22 │        485.18 / 488.52 ±3.62 / 495.09 ms │        490.22 / 499.96 ±8.91 / 514.81 ms │     no change │
│ QQuery 23 │        880.27 / 890.39 ±5.96 / 897.69 ms │        869.66 / 878.77 ±6.78 / 888.39 ms │     no change │
│ QQuery 24 │        388.60 / 391.68 ±2.78 / 396.23 ms │        388.39 / 392.39 ±3.11 / 396.27 ms │     no change │
│ QQuery 25 │        347.94 / 350.21 ±2.06 / 354.03 ms │        348.12 / 350.79 ±1.89 / 353.79 ms │     no change │
│ QQuery 26 │           79.91 / 82.44 ±1.74 / 84.06 ms │           80.45 / 82.40 ±2.05 / 86.20 ms │     no change │
│ QQuery 27 │              6.80 / 7.06 ±0.18 / 7.27 ms │              6.82 / 7.32 ±0.76 / 8.83 ms │     no change │
│ QQuery 28 │        147.90 / 149.70 ±1.86 / 152.59 ms │        147.60 / 149.80 ±1.25 / 151.07 ms │     no change │
│ QQuery 29 │        292.15 / 295.05 ±1.79 / 297.78 ms │        290.94 / 293.85 ±2.24 / 296.25 ms │     no change │
│ QQuery 30 │           43.18 / 43.93 ±0.55 / 44.73 ms │           42.45 / 43.97 ±0.99 / 45.28 ms │     no change │
│ QQuery 31 │        167.38 / 171.52 ±2.78 / 174.60 ms │        168.84 / 170.45 ±1.15 / 172.02 ms │     no change │
│ QQuery 32 │           57.07 / 57.48 ±0.36 / 58.11 ms │           55.99 / 56.72 ±0.55 / 57.35 ms │     no change │
│ QQuery 33 │        138.34 / 141.17 ±1.71 / 143.63 ms │        138.53 / 140.06 ±1.50 / 142.55 ms │     no change │
│ QQuery 34 │              6.90 / 7.10 ±0.18 / 7.44 ms │              7.13 / 7.59 ±0.75 / 9.09 ms │  1.07x slower │
│ QQuery 35 │        106.44 / 108.27 ±1.36 / 110.50 ms │        106.81 / 107.92 ±0.87 / 109.07 ms │     no change │
│ QQuery 36 │              6.63 / 7.06 ±0.37 / 7.71 ms │              6.67 / 7.11 ±0.56 / 8.10 ms │     no change │
│ QQuery 37 │             8.33 / 9.09 ±1.15 / 11.36 ms │              8.74 / 9.02 ±0.29 / 9.53 ms │     no change │
│ QQuery 38 │           85.76 / 88.93 ±1.81 / 91.36 ms │           83.73 / 87.25 ±3.63 / 93.78 ms │     no change │
│ QQuery 39 │        123.08 / 126.46 ±1.85 / 128.54 ms │        122.43 / 124.79 ±1.32 / 125.97 ms │     no change │
│ QQuery 40 │        112.79 / 118.19 ±6.94 / 131.39 ms │        109.94 / 116.09 ±5.50 / 126.37 ms │     no change │
│ QQuery 41 │           14.19 / 14.97 ±0.77 / 16.39 ms │           14.05 / 14.84 ±0.93 / 16.62 ms │     no change │
│ QQuery 42 │        106.43 / 108.64 ±1.60 / 111.24 ms │        109.10 / 110.02 ±1.14 / 112.17 ms │     no change │
│ QQuery 43 │              5.87 / 6.20 ±0.42 / 7.01 ms │              5.98 / 6.08 ±0.10 / 6.27 ms │     no change │
│ QQuery 44 │           11.46 / 12.56 ±1.62 / 15.79 ms │           11.47 / 11.72 ±0.17 / 11.99 ms │ +1.07x faster │
│ QQuery 45 │           50.76 / 52.99 ±1.28 / 54.15 ms │           51.98 / 52.92 ±0.95 / 54.52 ms │     no change │
│ QQuery 46 │             8.29 / 9.14 ±0.60 / 10.14 ms │              8.25 / 8.60 ±0.36 / 9.22 ms │ +1.06x faster │
│ QQuery 47 │        685.04 / 687.91 ±2.15 / 690.02 ms │       682.69 / 724.96 ±48.91 / 813.58 ms │  1.05x slower │
│ QQuery 48 │        287.58 / 293.21 ±4.19 / 299.94 ms │        284.02 / 290.17 ±5.02 / 296.79 ms │     no change │
│ QQuery 49 │        252.78 / 255.43 ±2.04 / 258.70 ms │        253.32 / 256.40 ±2.13 / 259.57 ms │     no change │
│ QQuery 50 │        228.15 / 230.37 ±1.81 / 232.03 ms │        228.00 / 230.90 ±2.97 / 236.18 ms │     no change │
│ QQuery 51 │        183.00 / 185.97 ±2.16 / 188.56 ms │        185.32 / 188.25 ±1.77 / 190.05 ms │     no change │
│ QQuery 52 │        106.06 / 108.47 ±1.41 / 110.01 ms │        107.65 / 109.04 ±1.36 / 111.17 ms │     no change │
│ QQuery 53 │        101.26 / 102.45 ±1.02 / 104.10 ms │        101.08 / 102.23 ±0.61 / 102.87 ms │     no change │
│ QQuery 54 │        145.97 / 146.88 ±0.74 / 147.73 ms │        144.38 / 146.03 ±1.02 / 147.26 ms │     no change │
│ QQuery 55 │        107.41 / 108.63 ±0.73 / 109.69 ms │        106.62 / 107.66 ±0.98 / 109.39 ms │     no change │
│ QQuery 56 │        139.83 / 141.70 ±1.85 / 144.12 ms │        140.04 / 141.73 ±1.19 / 142.91 ms │     no change │
│ QQuery 57 │        172.22 / 174.98 ±2.47 / 177.99 ms │        172.50 / 174.86 ±1.70 / 177.79 ms │     no change │
│ QQuery 58 │        287.93 / 296.44 ±6.96 / 304.87 ms │        290.57 / 297.46 ±6.04 / 308.49 ms │     no change │
│ QQuery 59 │        199.98 / 201.17 ±0.94 / 202.82 ms │        197.74 / 200.62 ±2.05 / 203.77 ms │     no change │
│ QQuery 60 │        142.12 / 143.49 ±1.01 / 144.76 ms │        142.54 / 144.18 ±0.93 / 145.12 ms │     no change │
│ QQuery 61 │           13.18 / 13.43 ±0.22 / 13.82 ms │           12.94 / 13.33 ±0.52 / 14.32 ms │     no change │
│ QQuery 62 │       893.78 / 937.84 ±36.21 / 997.85 ms │       876.25 / 913.00 ±24.63 / 943.53 ms │     no change │
│ QQuery 63 │        103.62 / 105.03 ±1.49 / 107.80 ms │        102.13 / 105.23 ±2.22 / 107.90 ms │     no change │
│ QQuery 64 │        691.04 / 695.44 ±3.84 / 700.40 ms │        692.26 / 697.68 ±4.39 / 705.18 ms │     no change │
│ QQuery 65 │        248.92 / 251.67 ±1.58 / 253.52 ms │        247.59 / 249.51 ±1.63 / 252.22 ms │     no change │
│ QQuery 66 │        241.77 / 251.83 ±8.73 / 265.61 ms │        250.94 / 262.23 ±6.43 / 269.34 ms │     no change │
│ QQuery 67 │        304.17 / 311.08 ±6.63 / 320.92 ms │        306.74 / 313.03 ±5.21 / 322.57 ms │     no change │
│ QQuery 68 │            9.39 / 10.70 ±0.79 / 11.41 ms │             9.08 / 9.83 ±0.62 / 10.63 ms │ +1.09x faster │
│ QQuery 69 │        102.08 / 104.46 ±1.34 / 105.92 ms │        101.77 / 102.98 ±1.12 / 105.09 ms │     no change │
│ QQuery 70 │       333.26 / 347.91 ±12.97 / 364.54 ms │       325.01 / 343.00 ±13.10 / 365.15 ms │     no change │
│ QQuery 71 │        134.07 / 135.08 ±0.81 / 136.33 ms │        133.62 / 135.50 ±1.38 / 137.62 ms │     no change │
│ QQuery 72 │       698.53 / 712.89 ±11.64 / 728.57 ms │        699.58 / 714.08 ±8.09 / 724.01 ms │     no change │
│ QQuery 73 │              6.88 / 7.63 ±0.57 / 8.44 ms │              6.50 / 7.60 ±1.08 / 9.55 ms │     no change │
│ QQuery 74 │        527.11 / 538.08 ±8.24 / 547.09 ms │        541.23 / 547.43 ±5.22 / 556.32 ms │     no change │
│ QQuery 75 │        273.18 / 277.02 ±2.57 / 279.64 ms │        273.32 / 275.36 ±1.53 / 277.09 ms │     no change │
│ QQuery 76 │        130.44 / 132.00 ±1.16 / 133.51 ms │        131.36 / 133.46 ±1.92 / 137.03 ms │     no change │
│ QQuery 77 │        186.21 / 189.35 ±1.85 / 191.66 ms │        185.88 / 189.50 ±2.31 / 192.64 ms │     no change │
│ QQuery 78 │        352.88 / 355.40 ±2.12 / 358.25 ms │        347.47 / 352.92 ±2.94 / 355.61 ms │     no change │
│ QQuery 79 │        232.76 / 235.68 ±2.41 / 238.90 ms │        228.33 / 230.13 ±1.53 / 232.70 ms │     no change │
│ QQuery 80 │        328.80 / 330.60 ±1.33 / 332.53 ms │        329.80 / 331.16 ±0.95 / 332.37 ms │     no change │
│ QQuery 81 │           25.54 / 26.36 ±0.77 / 27.74 ms │           25.54 / 26.55 ±1.25 / 28.94 ms │     no change │
│ QQuery 82 │        194.67 / 197.11 ±1.42 / 198.79 ms │        197.42 / 200.41 ±2.47 / 203.72 ms │     no change │
│ QQuery 83 │           39.09 / 40.31 ±1.05 / 41.67 ms │           38.65 / 40.06 ±1.55 / 42.90 ms │     no change │
│ QQuery 84 │           47.20 / 49.28 ±1.86 / 52.69 ms │           47.17 / 47.91 ±0.64 / 48.75 ms │     no change │
│ QQuery 85 │        144.28 / 147.59 ±2.50 / 151.29 ms │        147.34 / 148.76 ±1.35 / 150.67 ms │     no change │
│ QQuery 86 │           37.96 / 39.17 ±1.01 / 40.77 ms │           38.44 / 39.84 ±1.41 / 42.21 ms │     no change │
│ QQuery 87 │           86.26 / 88.57 ±2.87 / 94.12 ms │           84.77 / 88.15 ±3.34 / 94.15 ms │     no change │
│ QQuery 88 │         99.60 / 100.54 ±0.57 / 101.27 ms │          98.73 / 99.78 ±0.81 / 101.21 ms │     no change │
│ QQuery 89 │        116.53 / 118.60 ±1.30 / 120.06 ms │        116.69 / 118.42 ±1.04 / 119.62 ms │     no change │
│ QQuery 90 │           23.39 / 23.81 ±0.38 / 24.52 ms │           22.59 / 23.66 ±0.70 / 24.57 ms │     no change │
│ QQuery 91 │           62.24 / 62.76 ±0.38 / 63.26 ms │           61.87 / 63.27 ±1.36 / 65.50 ms │     no change │
│ QQuery 92 │           56.56 / 57.38 ±1.36 / 60.06 ms │           56.81 / 57.21 ±0.40 / 57.88 ms │     no change │
│ QQuery 93 │        190.12 / 191.22 ±1.01 / 192.70 ms │        190.03 / 191.27 ±1.46 / 193.72 ms │     no change │
│ QQuery 94 │           60.48 / 61.69 ±0.97 / 63.10 ms │           60.90 / 61.42 ±0.53 / 62.31 ms │     no change │
│ QQuery 95 │        134.13 / 135.37 ±0.88 / 136.42 ms │        134.19 / 135.18 ±1.03 / 137.03 ms │     no change │
│ QQuery 96 │           73.37 / 74.03 ±0.47 / 74.54 ms │           74.90 / 75.34 ±0.42 / 76.05 ms │     no change │
│ QQuery 97 │        130.15 / 131.06 ±0.82 / 132.51 ms │        130.31 / 131.26 ±0.63 / 131.93 ms │     no change │
│ QQuery 98 │        154.28 / 155.69 ±1.65 / 158.73 ms │        153.53 / 155.42 ±1.53 / 156.97 ms │     no change │
│ QQuery 99 │ 10720.02 / 10757.07 ±29.32 / 10792.02 ms │ 10729.69 / 10819.15 ±54.91 / 10896.13 ms │     no change │
└───────────┴──────────────────────────────────────────┴──────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                                ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                                │ 31357.61ms │
│ Total Time (shrink-arrow-bytes-view-map-entry)   │ 31385.71ms │
│ Average Time (HEAD)                              │   316.74ms │
│ Average Time (shrink-arrow-bytes-view-map-entry) │   317.03ms │
│ Queries Faster                                   │          4 │
│ Queries Slower                                   │          2 │
│ Queries with No Change                           │         93 │
│ Queries with Failure                             │          0 │
└──────────────────────────────────────────────────┴────────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 157.1s
Peak memory 5.5 GiB
Avg memory 4.5 GiB
CPU user 256.6s
CPU sys 16.9s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 157.2s
Peak memory 5.6 GiB
Avg memory 4.6 GiB
CPU user 256.6s
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 shrink-arrow-bytes-view-map-entry
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃     shrink-arrow-bytes-view-map-entry ┃       Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.20 / 4.49 ±6.43 / 17.35 ms │          1.19 / 4.48 ±6.46 / 17.40 ms │    no change │
│ QQuery 1  │        14.31 / 14.57 ±0.14 / 14.71 ms │        13.93 / 14.42 ±0.28 / 14.79 ms │    no change │
│ QQuery 2  │        43.58 / 44.04 ±0.45 / 44.86 ms │        43.61 / 43.90 ±0.22 / 44.22 ms │    no change │
│ QQuery 3  │        42.31 / 44.88 ±1.82 / 46.46 ms │        40.70 / 44.00 ±2.87 / 47.83 ms │    no change │
│ QQuery 4  │     289.07 / 296.45 ±6.77 / 308.80 ms │     303.90 / 309.89 ±4.15 / 316.10 ms │    no change │
│ QQuery 5  │     344.93 / 348.74 ±3.60 / 353.60 ms │     370.83 / 382.94 ±8.06 / 393.41 ms │ 1.10x slower │
│ QQuery 6  │           5.18 / 5.83 ±0.80 / 7.40 ms │           5.07 / 6.65 ±0.91 / 7.72 ms │ 1.14x slower │
│ QQuery 7  │        16.73 / 16.99 ±0.35 / 17.69 ms │        16.62 / 16.75 ±0.10 / 16.92 ms │    no change │
│ QQuery 8  │     420.03 / 423.63 ±3.39 / 428.18 ms │    415.72 / 438.11 ±16.60 / 460.85 ms │    no change │
│ QQuery 9  │     645.88 / 653.33 ±8.15 / 668.12 ms │    631.61 / 645.80 ±10.31 / 662.84 ms │    no change │
│ QQuery 10 │       90.55 / 95.07 ±3.98 / 100.93 ms │        90.40 / 93.27 ±2.93 / 98.94 ms │    no change │
│ QQuery 11 │     103.05 / 105.06 ±1.38 / 106.87 ms │     103.37 / 104.30 ±0.90 / 105.50 ms │    no change │
│ QQuery 12 │     344.70 / 350.70 ±4.55 / 358.43 ms │     376.22 / 377.87 ±1.84 / 381.00 ms │ 1.08x slower │
│ QQuery 13 │    457.07 / 478.88 ±16.33 / 506.39 ms │    470.63 / 492.98 ±16.48 / 517.93 ms │    no change │
│ QQuery 14 │     348.95 / 355.23 ±5.04 / 363.74 ms │     349.73 / 355.55 ±4.34 / 362.98 ms │    no change │
│ QQuery 15 │    360.82 / 378.44 ±13.10 / 397.43 ms │    363.66 / 386.17 ±22.11 / 427.75 ms │    no change │
│ QQuery 16 │    722.42 / 747.20 ±20.51 / 775.93 ms │     730.36 / 739.41 ±9.90 / 757.47 ms │    no change │
│ QQuery 17 │     719.14 / 725.47 ±4.39 / 731.06 ms │     715.00 / 725.93 ±7.19 / 735.00 ms │    no change │
│ QQuery 18 │ 1443.04 / 1480.10 ±34.65 / 1536.49 ms │ 1429.28 / 1489.55 ±36.37 / 1540.66 ms │    no change │
│ QQuery 19 │       35.93 / 42.73 ±10.50 / 63.64 ms │       35.99 / 49.18 ±21.68 / 92.36 ms │ 1.15x slower │
│ QQuery 20 │    714.70 / 735.67 ±22.19 / 766.63 ms │     724.41 / 733.41 ±7.91 / 743.13 ms │    no change │
│ QQuery 21 │     761.21 / 766.39 ±3.16 / 770.94 ms │     764.26 / 768.91 ±4.21 / 774.74 ms │    no change │
│ QQuery 22 │ 1137.51 / 1144.41 ±11.08 / 1166.43 ms │  1131.57 / 1144.30 ±7.43 / 1153.97 ms │    no change │
│ QQuery 23 │ 3078.61 / 3119.22 ±28.35 / 3161.45 ms │ 3080.92 / 3098.46 ±15.63 / 3125.51 ms │    no change │
│ QQuery 24 │     100.85 / 104.68 ±2.93 / 108.56 ms │     100.21 / 102.55 ±2.69 / 107.74 ms │    no change │
│ QQuery 25 │     139.02 / 140.56 ±1.21 / 142.36 ms │     139.19 / 141.16 ±1.58 / 143.51 ms │    no change │
│ QQuery 26 │      98.81 / 101.47 ±1.79 / 103.33 ms │     102.89 / 103.74 ±0.63 / 104.79 ms │    no change │
│ QQuery 27 │     850.68 / 857.71 ±6.50 / 869.85 ms │     845.34 / 849.59 ±4.42 / 857.89 ms │    no change │
│ QQuery 28 │ 7749.91 / 7783.68 ±22.01 / 7817.58 ms │ 7745.89 / 7801.86 ±30.84 / 7838.62 ms │    no change │
│ QQuery 29 │        50.45 / 53.66 ±2.24 / 56.15 ms │        51.92 / 59.72 ±6.99 / 71.36 ms │ 1.11x slower │
│ QQuery 30 │     365.23 / 374.10 ±6.50 / 384.74 ms │     365.07 / 372.42 ±7.35 / 383.26 ms │    no change │
│ QQuery 31 │     369.47 / 379.68 ±7.22 / 391.69 ms │    361.38 / 384.89 ±14.57 / 406.38 ms │    no change │
│ QQuery 32 │ 1163.24 / 1202.44 ±51.13 / 1303.48 ms │ 1198.12 / 1255.81 ±56.42 / 1356.06 ms │    no change │
│ QQuery 33 │ 1541.01 / 1574.18 ±35.18 / 1619.07 ms │ 1575.15 / 1622.81 ±28.95 / 1657.89 ms │    no change │
│ QQuery 34 │ 1514.72 / 1562.35 ±36.07 / 1625.63 ms │ 1581.75 / 1623.76 ±32.10 / 1658.30 ms │    no change │
│ QQuery 35 │     388.82 / 393.18 ±2.92 / 397.12 ms │     391.79 / 399.14 ±7.14 / 411.47 ms │    no change │
│ QQuery 36 │     116.48 / 121.05 ±2.97 / 124.08 ms │     116.50 / 124.85 ±4.62 / 129.46 ms │    no change │
│ QQuery 37 │        48.05 / 49.28 ±1.05 / 50.92 ms │        48.80 / 50.44 ±1.28 / 52.51 ms │    no change │
│ QQuery 38 │        75.16 / 77.04 ±1.54 / 79.03 ms │        74.67 / 77.08 ±1.81 / 80.20 ms │    no change │
│ QQuery 39 │     211.03 / 220.15 ±5.71 / 226.14 ms │     219.55 / 222.45 ±3.84 / 229.93 ms │    no change │
│ QQuery 40 │        23.35 / 25.33 ±1.85 / 28.74 ms │        21.91 / 25.28 ±2.65 / 29.52 ms │    no change │
│ QQuery 41 │        20.21 / 22.52 ±1.28 / 23.66 ms │        19.50 / 21.60 ±1.13 / 22.62 ms │    no change │
│ QQuery 42 │        19.36 / 20.48 ±0.73 / 21.61 ms │        19.44 / 19.78 ±0.20 / 19.99 ms │    no change │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴──────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                                ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                                │ 27441.06ms │
│ Total Time (shrink-arrow-bytes-view-map-entry)   │ 27725.13ms │
│ Average Time (HEAD)                              │   638.16ms │
│ Average Time (shrink-arrow-bytes-view-map-entry) │   644.77ms │
│ Queries Faster                                   │          0 │
│ Queries Slower                                   │          5 │
│ Queries with No Change                           │         38 │
│ Queries with Failure                             │          0 │
└──────────────────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 138.3s
Peak memory 37.0 GiB
Avg memory 28.5 GiB
CPU user 1291.4s
CPU sys 99.8s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 139.7s
Peak memory 37.3 GiB
Avg memory 28.5 GiB
CPU user 1303.9s
CPU sys 100.1s
Peak spill 0 B

File an issue against this benchmark runner

@Dandandan
Copy link
Copy Markdown
Contributor Author

run benchmark clickbench_partitioned

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4191313421-879-8fcms 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 shrink-arrow-bytes-view-map-entry (92dfc2d) to c17c87c (merge-base) diff using: clickbench_partitioned
Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

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

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

Comparing HEAD and shrink-arrow-bytes-view-map-entry
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃     shrink-arrow-bytes-view-map-entry ┃       Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.20 / 4.50 ±6.43 / 17.35 ms │          1.21 / 4.53 ±6.47 / 17.46 ms │    no change │
│ QQuery 1  │        14.24 / 14.60 ±0.28 / 15.05 ms │        14.18 / 14.47 ±0.19 / 14.69 ms │    no change │
│ QQuery 2  │        43.55 / 43.94 ±0.33 / 44.51 ms │        42.99 / 43.44 ±0.24 / 43.65 ms │    no change │
│ QQuery 3  │        40.40 / 44.09 ±2.73 / 47.39 ms │        41.11 / 44.03 ±2.65 / 48.02 ms │    no change │
│ QQuery 4  │     295.94 / 301.71 ±4.00 / 306.68 ms │     298.86 / 310.61 ±8.64 / 320.97 ms │    no change │
│ QQuery 5  │     343.65 / 349.49 ±4.09 / 353.42 ms │     375.59 / 382.62 ±3.99 / 387.82 ms │ 1.09x slower │
│ QQuery 6  │           5.60 / 6.15 ±0.43 / 6.91 ms │           6.09 / 7.55 ±1.24 / 9.53 ms │ 1.23x slower │
│ QQuery 7  │        16.70 / 17.20 ±0.68 / 18.53 ms │        16.80 / 16.98 ±0.22 / 17.40 ms │    no change │
│ QQuery 8  │     422.37 / 430.10 ±4.57 / 436.04 ms │     428.17 / 436.16 ±9.05 / 452.85 ms │    no change │
│ QQuery 9  │    638.65 / 656.36 ±10.35 / 665.01 ms │     650.54 / 663.59 ±9.97 / 674.78 ms │    no change │
│ QQuery 10 │        90.35 / 92.14 ±1.44 / 94.24 ms │        90.45 / 92.66 ±1.75 / 94.93 ms │    no change │
│ QQuery 11 │     102.22 / 104.71 ±1.61 / 106.57 ms │     103.10 / 103.73 ±0.42 / 104.29 ms │    no change │
│ QQuery 12 │     346.55 / 348.96 ±3.15 / 355.05 ms │     374.57 / 377.09 ±2.57 / 381.92 ms │ 1.08x slower │
│ QQuery 13 │    462.01 / 473.07 ±13.20 / 494.40 ms │     471.33 / 485.82 ±8.22 / 495.95 ms │    no change │
│ QQuery 14 │     349.79 / 354.72 ±3.18 / 358.11 ms │     356.30 / 365.15 ±6.08 / 372.78 ms │    no change │
│ QQuery 15 │    371.90 / 380.23 ±10.21 / 399.16 ms │     362.28 / 370.79 ±6.66 / 380.59 ms │    no change │
│ QQuery 16 │     723.38 / 729.53 ±6.62 / 742.12 ms │    720.04 / 742.14 ±20.56 / 776.10 ms │    no change │
│ QQuery 17 │     716.89 / 722.27 ±4.09 / 726.56 ms │    729.73 / 755.83 ±28.22 / 796.02 ms │    no change │
│ QQuery 18 │ 1445.46 / 1481.01 ±37.67 / 1531.08 ms │ 1473.92 / 1494.70 ±16.18 / 1514.98 ms │    no change │
│ QQuery 19 │        35.25 / 36.49 ±0.99 / 37.90 ms │        34.67 / 36.11 ±0.94 / 37.56 ms │    no change │
│ QQuery 20 │    719.02 / 735.95 ±18.73 / 765.73 ms │    713.45 / 722.74 ±11.28 / 744.72 ms │    no change │
│ QQuery 21 │     759.58 / 767.63 ±5.56 / 774.21 ms │     764.14 / 766.61 ±3.42 / 773.11 ms │    no change │
│ QQuery 22 │  1133.54 / 1141.38 ±8.20 / 1154.79 ms │  1127.13 / 1130.93 ±2.70 / 1133.84 ms │    no change │
│ QQuery 23 │ 3091.83 / 3103.23 ±14.45 / 3131.49 ms │ 3078.04 / 3098.55 ±13.65 / 3118.42 ms │    no change │
│ QQuery 24 │      99.35 / 101.89 ±1.47 / 103.93 ms │      97.06 / 102.36 ±3.08 / 106.48 ms │    no change │
│ QQuery 25 │     136.93 / 139.90 ±2.69 / 144.41 ms │     137.60 / 140.00 ±1.65 / 141.82 ms │    no change │
│ QQuery 26 │      99.41 / 102.62 ±2.29 / 106.13 ms │     102.19 / 103.17 ±0.73 / 104.33 ms │    no change │
│ QQuery 27 │     851.34 / 857.89 ±3.69 / 862.16 ms │     847.31 / 852.03 ±4.30 / 859.92 ms │    no change │
│ QQuery 28 │ 7727.99 / 7772.53 ±22.73 / 7789.15 ms │ 7777.26 / 7818.94 ±31.06 / 7857.52 ms │    no change │
│ QQuery 29 │        50.09 / 54.51 ±5.37 / 64.80 ms │        52.52 / 55.69 ±4.19 / 63.60 ms │    no change │
│ QQuery 30 │     360.93 / 368.07 ±5.91 / 377.81 ms │     364.01 / 371.73 ±6.84 / 381.65 ms │    no change │
│ QQuery 31 │    368.21 / 381.22 ±11.59 / 400.62 ms │     369.90 / 382.15 ±9.18 / 397.41 ms │    no change │
│ QQuery 32 │ 1286.17 / 1313.18 ±25.03 / 1355.05 ms │ 1233.66 / 1257.03 ±32.02 / 1319.82 ms │    no change │
│ QQuery 33 │ 1475.27 / 1528.12 ±51.48 / 1621.78 ms │ 1540.24 / 1572.39 ±50.01 / 1671.72 ms │    no change │
│ QQuery 34 │ 1495.67 / 1510.54 ±12.02 / 1524.53 ms │  1560.35 / 1575.68 ±9.92 / 1587.60 ms │    no change │
│ QQuery 35 │     388.60 / 399.61 ±6.38 / 408.22 ms │     389.89 / 395.18 ±3.67 / 399.12 ms │    no change │
│ QQuery 36 │     113.37 / 120.33 ±5.47 / 125.46 ms │     112.97 / 121.95 ±5.36 / 128.48 ms │    no change │
│ QQuery 37 │        48.65 / 51.12 ±1.71 / 53.77 ms │        49.07 / 51.38 ±2.17 / 54.31 ms │    no change │
│ QQuery 38 │        74.24 / 76.82 ±1.86 / 79.40 ms │        74.72 / 76.14 ±2.14 / 80.37 ms │    no change │
│ QQuery 39 │     208.58 / 223.60 ±8.32 / 233.43 ms │     209.58 / 216.50 ±5.88 / 225.99 ms │    no change │
│ QQuery 40 │        22.48 / 27.13 ±3.12 / 30.90 ms │        22.96 / 26.40 ±2.10 / 29.36 ms │    no change │
│ QQuery 41 │        19.73 / 21.89 ±1.73 / 24.00 ms │        20.95 / 22.11 ±1.06 / 23.91 ms │    no change │
│ QQuery 42 │        19.74 / 20.21 ±0.47 / 20.97 ms │        19.47 / 19.89 ±0.30 / 20.25 ms │    no change │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴──────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                                ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                                │ 27410.64ms │
│ Total Time (shrink-arrow-bytes-view-map-entry)   │ 27627.55ms │
│ Average Time (HEAD)                              │   637.46ms │
│ Average Time (shrink-arrow-bytes-view-map-entry) │   642.50ms │
│ Queries Faster                                   │          0 │
│ Queries Slower                                   │          3 │
│ Queries with No Change                           │         40 │
│ Queries with Failure                             │          0 │
└──────────────────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 138.2s
Peak memory 37.9 GiB
Avg memory 28.2 GiB
CPU user 1295.0s
CPU sys 97.6s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 139.1s
Peak memory 36.6 GiB
Avg memory 27.5 GiB
CPU user 1307.3s
CPU sys 98.2s
Peak spill 0 B

File an issue against this benchmark runner

@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-c4192072170-885-5ch28 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 shrink-arrow-bytes-view-map-entry (92dfc2d) to c17c87c (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 shrink-arrow-bytes-view-map-entry
--------------------
Benchmark clickbench_extended.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┓
┃ Query     ┃                                    HEAD ┃      shrink-arrow-bytes-view-map-entry ┃       Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━┩
│ QQuery 0  │      801.26 / 832.77 ±17.25 / 852.37 ms │     867.24 / 887.37 ±12.85 / 903.46 ms │ 1.07x slower │
│ QQuery 1  │       205.91 / 206.99 ±0.78 / 208.05 ms │      210.84 / 211.67 ±0.72 / 212.95 ms │    no change │
│ QQuery 2  │       491.33 / 494.07 ±2.20 / 497.91 ms │      497.51 / 502.11 ±3.21 / 506.78 ms │    no change │
│ QQuery 3  │       311.10 / 312.41 ±1.05 / 313.77 ms │      312.53 / 313.15 ±0.61 / 314.04 ms │    no change │
│ QQuery 4  │       678.60 / 685.81 ±7.02 / 695.50 ms │     668.41 / 678.08 ±10.46 / 694.41 ms │    no change │
│ QQuery 5  │ 9761.58 / 9922.63 ±128.62 / 10117.21 ms │ 9569.25 / 9791.32 ±126.99 / 9946.96 ms │    no change │
│ QQuery 6  │    988.72 / 1004.43 ±18.13 / 1039.45 ms │    981.67 / 994.28 ±10.49 / 1010.15 ms │    no change │
│ QQuery 7  │       776.15 / 785.57 ±6.90 / 797.13 ms │     764.27 / 780.03 ±12.00 / 800.15 ms │    no change │
│ QQuery 8  │       397.28 / 398.89 ±1.57 / 401.79 ms │      392.48 / 397.63 ±3.48 / 402.30 ms │    no change │
│ QQuery 9  │    2868.93 / 2882.94 ±9.42 / 2893.30 ms │  2834.82 / 2885.98 ±26.82 / 2913.13 ms │    no change │
│ QQuery 10 │      632.68 / 642.51 ±14.47 / 671.21 ms │      628.67 / 638.39 ±8.11 / 649.32 ms │    no change │
│ QQuery 11 │   2262.01 / 2277.29 ±12.33 / 2293.38 ms │  2248.68 / 2263.51 ±10.44 / 2281.44 ms │    no change │
│ QQuery 12 │       196.42 / 200.47 ±3.58 / 205.97 ms │      192.78 / 197.56 ±4.37 / 205.06 ms │    no change │
└───────────┴─────────────────────────────────────────┴────────────────────────────────────────┴──────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                                ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                                │ 20646.79ms │
│ Total Time (shrink-arrow-bytes-view-map-entry)   │ 20541.08ms │
│ Average Time (HEAD)                              │  1588.21ms │
│ Average Time (shrink-arrow-bytes-view-map-entry) │  1580.08ms │
│ Queries Faster                                   │          0 │
│ Queries Slower                                   │          1 │
│ Queries with No Change                           │         12 │
│ Queries with Failure                             │          0 │
└──────────────────────────────────────────────────┴────────────┘

Resource Usage

clickbench_extended — base (merge-base)

Metric Value
Wall time 104.1s
Peak memory 33.7 GiB
Avg memory 29.4 GiB
CPU user 990.5s
CPU sys 47.2s
Peak spill 0 B

clickbench_extended — branch

Metric Value
Wall time 103.5s
Peak memory 33.9 GiB
Avg memory 29.7 GiB
CPU user 982.5s
CPU sys 47.2s
Peak spill 0 B

File an issue against this benchmark runner

- Copy inline views (<=12 bytes) directly as u128 instead of re-reading bytes
- Reuse length+prefix from input view for non-inline values via ByteView::from
- Specialize vectorized_append for all-inline case using extend
- Pre-reserve views capacity in vectorized_append
- Hoist as_byte_view cast out of per-row loop in Nulls::Some path

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
@Dandandan
Copy link
Copy Markdown
Contributor Author

run benchmarks

@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-c4192263015-888-r87zv 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 shrink-arrow-bytes-view-map-entry (c0b212a) to c17c87c (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-c4192263015-887-ljkvm 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 shrink-arrow-bytes-view-map-entry (c0b212a) to c17c87c (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-c4192263015-889-hdntt 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 shrink-arrow-bytes-view-map-entry (c0b212a) to c17c87c (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-c4192263489-890-kxcth 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 shrink-arrow-bytes-view-map-entry (c0b212a) to c17c87c (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 shrink-arrow-bytes-view-map-entry
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃     shrink-arrow-bytes-view-map-entry ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.19 / 4.52 ±6.48 / 17.49 ms │          1.22 / 4.55 ±6.50 / 17.55 ms │     no change │
│ QQuery 1  │        14.07 / 14.65 ±0.29 / 14.84 ms │        14.23 / 14.71 ±0.26 / 14.93 ms │     no change │
│ QQuery 2  │        44.84 / 45.04 ±0.27 / 45.58 ms │        44.39 / 44.71 ±0.18 / 44.90 ms │     no change │
│ QQuery 3  │        39.67 / 41.11 ±1.04 / 42.87 ms │        43.16 / 45.60 ±1.87 / 47.48 ms │  1.11x slower │
│ QQuery 4  │     291.47 / 298.68 ±4.42 / 304.14 ms │     295.62 / 301.30 ±9.51 / 320.22 ms │     no change │
│ QQuery 5  │     344.49 / 349.69 ±3.19 / 354.49 ms │     375.67 / 378.23 ±1.74 / 380.12 ms │  1.08x slower │
│ QQuery 6  │           5.56 / 6.13 ±0.53 / 6.78 ms │           5.77 / 6.65 ±0.80 / 8.06 ms │  1.09x slower │
│ QQuery 7  │        17.13 / 17.53 ±0.28 / 17.92 ms │        16.90 / 17.99 ±0.99 / 19.52 ms │     no change │
│ QQuery 8  │     434.02 / 441.94 ±6.72 / 452.43 ms │     427.50 / 434.96 ±5.97 / 445.31 ms │     no change │
│ QQuery 9  │     645.76 / 657.05 ±9.76 / 669.51 ms │     648.01 / 656.33 ±5.05 / 662.63 ms │     no change │
│ QQuery 10 │        91.70 / 95.16 ±2.42 / 98.82 ms │       93.33 / 97.15 ±5.07 / 107.09 ms │     no change │
│ QQuery 11 │     105.77 / 106.67 ±0.48 / 107.17 ms │     106.63 / 108.67 ±1.57 / 111.00 ms │     no change │
│ QQuery 12 │     346.24 / 349.07 ±2.80 / 353.92 ms │     374.03 / 376.54 ±1.56 / 378.54 ms │  1.08x slower │
│ QQuery 13 │     466.46 / 478.08 ±8.01 / 491.55 ms │     493.41 / 506.23 ±8.38 / 517.54 ms │  1.06x slower │
│ QQuery 14 │     357.83 / 363.07 ±2.94 / 366.17 ms │     358.72 / 366.10 ±8.46 / 382.43 ms │     no change │
│ QQuery 15 │     367.84 / 374.53 ±5.18 / 380.74 ms │    369.41 / 387.15 ±13.87 / 410.30 ms │     no change │
│ QQuery 16 │     729.08 / 742.72 ±8.13 / 753.86 ms │    731.25 / 749.29 ±13.78 / 770.78 ms │     no change │
│ QQuery 17 │     726.71 / 732.40 ±4.75 / 739.23 ms │     726.08 / 733.54 ±8.15 / 748.58 ms │     no change │
│ QQuery 18 │ 1451.57 / 1501.09 ±33.63 / 1544.37 ms │ 1446.26 / 1476.89 ±19.55 / 1505.60 ms │     no change │
│ QQuery 19 │        34.96 / 36.84 ±1.89 / 40.30 ms │      35.40 / 59.65 ±47.18 / 154.01 ms │  1.62x slower │
│ QQuery 20 │    714.84 / 732.40 ±15.98 / 756.45 ms │    723.41 / 737.44 ±17.02 / 770.56 ms │     no change │
│ QQuery 21 │     760.36 / 762.33 ±1.74 / 764.77 ms │     765.29 / 772.34 ±3.84 / 775.96 ms │     no change │
│ QQuery 22 │  1136.27 / 1141.81 ±5.54 / 1150.57 ms │  1135.36 / 1136.63 ±0.88 / 1137.97 ms │     no change │
│ QQuery 23 │ 3107.74 / 3121.92 ±10.15 / 3137.51 ms │ 3103.09 / 3126.94 ±17.23 / 3154.10 ms │     no change │
│ QQuery 24 │     102.23 / 104.39 ±1.28 / 106.18 ms │      97.84 / 101.96 ±2.23 / 104.54 ms │     no change │
│ QQuery 25 │     140.06 / 143.72 ±2.97 / 148.58 ms │     139.03 / 140.70 ±1.94 / 143.24 ms │     no change │
│ QQuery 26 │     104.19 / 104.96 ±0.78 / 106.40 ms │     101.61 / 104.75 ±1.80 / 106.53 ms │     no change │
│ QQuery 27 │     852.75 / 853.95 ±0.91 / 855.25 ms │     846.87 / 855.90 ±8.25 / 867.85 ms │     no change │
│ QQuery 28 │ 7761.84 / 7790.89 ±21.35 / 7821.89 ms │ 7715.22 / 7800.02 ±45.36 / 7849.12 ms │     no change │
│ QQuery 29 │        50.92 / 53.83 ±2.90 / 57.32 ms │        50.15 / 54.04 ±3.88 / 59.85 ms │     no change │
│ QQuery 30 │     367.37 / 373.95 ±5.54 / 381.97 ms │     365.12 / 373.24 ±8.58 / 389.03 ms │     no change │
│ QQuery 31 │    374.14 / 388.99 ±11.27 / 405.92 ms │     382.89 / 392.10 ±7.23 / 403.80 ms │     no change │
│ QQuery 32 │ 1213.78 / 1254.05 ±47.24 / 1342.98 ms │ 1063.84 / 1077.65 ±22.97 / 1123.51 ms │ +1.16x faster │
│ QQuery 33 │ 1466.03 / 1503.86 ±50.14 / 1601.24 ms │ 1547.15 / 1569.15 ±14.11 / 1583.91 ms │     no change │
│ QQuery 34 │ 1488.54 / 1507.65 ±14.79 / 1524.42 ms │  1556.61 / 1563.05 ±6.96 / 1576.08 ms │     no change │
│ QQuery 35 │     392.11 / 398.42 ±5.24 / 407.85 ms │     393.86 / 402.22 ±7.64 / 416.55 ms │     no change │
│ QQuery 36 │     116.76 / 124.86 ±4.75 / 130.91 ms │     123.10 / 125.34 ±1.77 / 128.00 ms │     no change │
│ QQuery 37 │        49.44 / 50.60 ±1.63 / 53.84 ms │        49.02 / 50.56 ±1.10 / 52.25 ms │     no change │
│ QQuery 38 │        75.80 / 77.79 ±1.21 / 79.35 ms │        76.58 / 78.68 ±1.54 / 80.65 ms │     no change │
│ QQuery 39 │     207.34 / 224.10 ±9.10 / 232.53 ms │     209.54 / 217.44 ±6.06 / 228.31 ms │     no change │
│ QQuery 40 │        22.39 / 25.76 ±1.87 / 27.83 ms │        22.02 / 24.41 ±1.90 / 27.19 ms │ +1.06x faster │
│ QQuery 41 │        19.95 / 22.33 ±2.00 / 25.30 ms │        19.84 / 21.67 ±2.04 / 25.54 ms │     no change │
│ QQuery 42 │        19.01 / 19.91 ±0.60 / 20.88 ms │        19.79 / 20.29 ±0.49 / 21.20 ms │     no change │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                                ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                                │ 27438.44ms │
│ Total Time (shrink-arrow-bytes-view-map-entry)   │ 27512.77ms │
│ Average Time (HEAD)                              │   638.10ms │
│ Average Time (shrink-arrow-bytes-view-map-entry) │   639.83ms │
│ Queries Faster                                   │          2 │
│ Queries Slower                                   │          6 │
│ Queries with No Change                           │         35 │
│ Queries with Failure                             │          0 │
└──────────────────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 138.1s
Peak memory 34.1 GiB
Avg memory 26.6 GiB
CPU user 1297.2s
CPU sys 96.1s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 138.7s
Peak memory 39.6 GiB
Avg memory 30.2 GiB
CPU user 1312.5s
CPU sys 86.5s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

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

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 shrink-arrow-bytes-view-map-entry
--------------------
Benchmark clickbench_extended.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┓
┃ Query     ┃                                    HEAD ┃      shrink-arrow-bytes-view-map-entry ┃       Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━┩
│ QQuery 0  │       759.10 / 770.25 ±8.29 / 782.41 ms │      852.58 / 856.87 ±5.64 / 867.88 ms │ 1.11x slower │
│ QQuery 1  │       205.93 / 206.92 ±1.02 / 208.71 ms │      215.56 / 217.25 ±1.21 / 219.00 ms │    no change │
│ QQuery 2  │       489.86 / 492.82 ±2.29 / 495.78 ms │      508.08 / 511.28 ±1.73 / 512.93 ms │    no change │
│ QQuery 3  │       310.78 / 311.12 ±0.45 / 311.97 ms │      313.02 / 314.37 ±1.27 / 316.68 ms │    no change │
│ QQuery 4  │      654.93 / 668.41 ±19.26 / 704.64 ms │     659.69 / 674.66 ±26.06 / 726.66 ms │    no change │
│ QQuery 5  │ 9724.92 / 9883.88 ±192.53 / 10256.51 ms │ 9722.39 / 9878.52 ±108.01 / 9990.13 ms │    no change │
│ QQuery 6  │    994.03 / 1004.11 ±14.25 / 1031.97 ms │   1000.16 / 1003.26 ±1.93 / 1005.61 ms │    no change │
│ QQuery 7  │      770.92 / 779.80 ±11.10 / 800.39 ms │      761.43 / 769.54 ±7.96 / 783.14 ms │    no change │
│ QQuery 8  │       390.49 / 391.85 ±1.33 / 394.09 ms │      384.68 / 392.14 ±5.10 / 398.62 ms │    no change │
│ QQuery 9  │   2770.18 / 2850.71 ±42.67 / 2886.79 ms │  2822.46 / 2845.32 ±18.30 / 2867.06 ms │    no change │
│ QQuery 10 │       637.19 / 647.71 ±9.51 / 662.57 ms │      627.74 / 634.36 ±5.91 / 644.57 ms │    no change │
│ QQuery 11 │   2251.10 / 2263.03 ±10.42 / 2276.67 ms │  2234.85 / 2259.31 ±15.88 / 2273.45 ms │    no change │
│ QQuery 12 │       194.86 / 200.50 ±6.34 / 212.53 ms │      191.96 / 194.95 ±3.23 / 199.34 ms │    no change │
└───────────┴─────────────────────────────────────────┴────────────────────────────────────────┴──────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                                ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                                │ 20471.12ms │
│ Total Time (shrink-arrow-bytes-view-map-entry)   │ 20551.81ms │
│ Average Time (HEAD)                              │  1574.70ms │
│ Average Time (shrink-arrow-bytes-view-map-entry) │  1580.91ms │
│ Queries Faster                                   │          0 │
│ Queries Slower                                   │          1 │
│ Queries with No Change                           │         12 │
│ Queries with Failure                             │          0 │
└──────────────────────────────────────────────────┴────────────┘

Resource Usage

clickbench_extended — base (merge-base)

Metric Value
Wall time 103.1s
Peak memory 34.1 GiB
Avg memory 28.7 GiB
CPU user 980.3s
CPU sys 46.0s
Peak spill 0 B

clickbench_extended — branch

Metric Value
Wall time 103.6s
Peak memory 33.7 GiB
Avg memory 28.9 GiB
CPU user 982.0s
CPU sys 46.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 shrink-arrow-bytes-view-map-entry
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                     HEAD ┃        shrink-arrow-bytes-view-map-entry ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │             7.76 / 8.30 ±0.88 / 10.05 ms │              8.00 / 8.41 ±0.75 / 9.92 ms │     no change │
│ QQuery 2  │        153.54 / 154.83 ±1.11 / 156.66 ms │        153.41 / 155.48 ±1.35 / 157.46 ms │     no change │
│ QQuery 3  │        122.71 / 123.91 ±0.77 / 125.05 ms │        123.95 / 124.44 ±0.56 / 125.53 ms │     no change │
│ QQuery 4  │    1814.94 / 1873.72 ±36.59 / 1929.46 ms │    1804.12 / 1842.51 ±28.61 / 1875.87 ms │     no change │
│ QQuery 5  │        189.69 / 191.57 ±2.82 / 197.14 ms │        186.25 / 187.96 ±1.46 / 189.71 ms │     no change │
│ QQuery 6  │    1025.57 / 1053.64 ±21.21 / 1084.34 ms │     996.27 / 1025.77 ±28.03 / 1064.81 ms │     no change │
│ QQuery 7  │        410.17 / 413.63 ±2.86 / 418.50 ms │        403.22 / 409.37 ±3.36 / 412.42 ms │     no change │
│ QQuery 8  │        125.84 / 126.59 ±0.60 / 127.32 ms │        125.29 / 128.50 ±2.00 / 131.37 ms │     no change │
│ QQuery 9  │        108.41 / 112.12 ±3.01 / 116.68 ms │        109.11 / 111.83 ±3.11 / 117.26 ms │     no change │
│ QQuery 10 │        123.27 / 124.48 ±1.08 / 126.46 ms │        122.75 / 125.28 ±1.68 / 127.28 ms │     no change │
│ QQuery 11 │    1410.24 / 1429.59 ±17.17 / 1459.37 ms │    1358.46 / 1382.92 ±16.97 / 1404.01 ms │     no change │
│ QQuery 12 │           58.18 / 61.16 ±1.90 / 64.10 ms │           53.38 / 57.41 ±3.36 / 62.42 ms │ +1.07x faster │
│ QQuery 13 │        475.81 / 477.74 ±3.22 / 484.16 ms │        470.75 / 472.90 ±3.45 / 479.76 ms │     no change │
│ QQuery 14 │    1183.00 / 1199.40 ±13.30 / 1212.77 ms │    1169.79 / 1186.04 ±12.19 / 1199.53 ms │     no change │
│ QQuery 15 │           19.47 / 22.09 ±2.29 / 25.98 ms │           20.10 / 21.07 ±0.74 / 21.94 ms │     no change │
│ QQuery 16 │              8.69 / 9.15 ±0.28 / 9.49 ms │             9.03 / 9.71 ±0.77 / 11.20 ms │  1.06x slower │
│ QQuery 17 │        280.79 / 284.90 ±3.13 / 288.44 ms │        278.16 / 283.94 ±3.15 / 286.67 ms │     no change │
│ QQuery 18 │        148.26 / 150.85 ±1.84 / 153.63 ms │        144.16 / 148.61 ±2.68 / 151.94 ms │     no change │
│ QQuery 19 │        179.48 / 183.98 ±3.01 / 188.09 ms │        185.59 / 186.51 ±0.73 / 187.63 ms │     no change │
│ QQuery 20 │           16.95 / 17.64 ±0.58 / 18.58 ms │           17.77 / 18.36 ±0.48 / 19.08 ms │     no change │
│ QQuery 21 │           23.32 / 23.95 ±0.59 / 24.99 ms │           22.91 / 23.52 ±0.43 / 23.97 ms │     no change │
│ QQuery 22 │        713.08 / 722.60 ±7.27 / 730.94 ms │       677.39 / 707.49 ±17.15 / 730.39 ms │     no change │
│ QQuery 23 │    1175.92 / 1194.13 ±13.58 / 1214.78 ms │    1182.49 / 1215.01 ±18.82 / 1239.77 ms │     no change │
│ QQuery 24 │        458.90 / 465.89 ±4.53 / 472.95 ms │        467.09 / 468.87 ±1.88 / 472.31 ms │     no change │
│ QQuery 25 │        417.35 / 418.80 ±1.52 / 421.75 ms │        412.65 / 416.06 ±1.78 / 417.67 ms │     no change │
│ QQuery 26 │           91.54 / 93.91 ±2.17 / 96.72 ms │          96.32 / 98.83 ±1.71 / 100.84 ms │  1.05x slower │
│ QQuery 27 │              8.28 / 8.93 ±0.73 / 9.90 ms │              8.47 / 8.82 ±0.27 / 9.26 ms │     no change │
│ QQuery 28 │        167.95 / 169.67 ±2.34 / 174.12 ms │        168.14 / 169.38 ±1.22 / 171.71 ms │     no change │
│ QQuery 29 │        344.73 / 350.01 ±2.80 / 352.74 ms │        346.37 / 350.43 ±2.76 / 354.11 ms │     no change │
│ QQuery 30 │           51.40 / 53.74 ±1.61 / 56.04 ms │           49.00 / 52.01 ±1.65 / 53.44 ms │     no change │
│ QQuery 31 │        201.87 / 205.67 ±3.27 / 210.99 ms │        201.52 / 202.99 ±1.53 / 205.25 ms │     no change │
│ QQuery 32 │           63.12 / 64.24 ±1.29 / 66.75 ms │           63.47 / 64.17 ±0.78 / 65.49 ms │     no change │
│ QQuery 33 │        164.47 / 166.30 ±1.60 / 168.17 ms │        162.11 / 166.86 ±3.42 / 172.49 ms │     no change │
│ QQuery 34 │             9.18 / 9.92 ±0.94 / 11.74 ms │             8.72 / 9.30 ±0.41 / 10.00 ms │ +1.07x faster │
│ QQuery 35 │        129.77 / 132.96 ±1.75 / 134.66 ms │        127.19 / 130.51 ±2.42 / 134.65 ms │     no change │
│ QQuery 36 │              7.78 / 8.22 ±0.32 / 8.75 ms │             8.31 / 8.86 ±0.74 / 10.29 ms │  1.08x slower │
│ QQuery 37 │           10.65 / 11.32 ±0.61 / 12.31 ms │           10.10 / 10.70 ±0.43 / 11.40 ms │ +1.06x faster │
│ QQuery 38 │        109.49 / 116.54 ±6.40 / 128.35 ms │        109.49 / 116.27 ±4.59 / 121.41 ms │     no change │
│ QQuery 39 │        195.35 / 199.27 ±3.43 / 205.43 ms │        182.28 / 195.06 ±7.12 / 202.56 ms │     no change │
│ QQuery 40 │        136.04 / 142.85 ±6.52 / 153.12 ms │        135.54 / 144.21 ±8.71 / 160.73 ms │     no change │
│ QQuery 41 │           16.73 / 18.01 ±1.04 / 19.72 ms │           17.06 / 17.95 ±0.88 / 19.09 ms │     no change │
│ QQuery 42 │        115.43 / 119.18 ±2.29 / 121.76 ms │        116.20 / 118.70 ±2.04 / 121.09 ms │     no change │
│ QQuery 43 │              7.04 / 7.40 ±0.29 / 7.85 ms │              7.23 / 7.43 ±0.13 / 7.55 ms │     no change │
│ QQuery 44 │           14.40 / 15.29 ±0.51 / 15.80 ms │           14.99 / 15.53 ±0.55 / 16.27 ms │     no change │
│ QQuery 45 │           62.86 / 65.22 ±1.72 / 68.09 ms │           63.21 / 65.13 ±1.84 / 67.90 ms │     no change │
│ QQuery 46 │           10.25 / 10.74 ±0.48 / 11.56 ms │           10.77 / 11.09 ±0.30 / 11.58 ms │     no change │
│ QQuery 47 │     1073.98 / 1087.62 ±8.85 / 1096.62 ms │     1078.55 / 1087.25 ±7.08 / 1096.41 ms │     no change │
│ QQuery 48 │        339.44 / 347.54 ±4.48 / 352.57 ms │        337.64 / 350.21 ±7.57 / 359.15 ms │     no change │
│ QQuery 49 │        281.52 / 283.10 ±1.43 / 285.54 ms │        284.35 / 288.63 ±4.99 / 298.26 ms │     no change │
│ QQuery 50 │        296.05 / 306.46 ±8.32 / 316.79 ms │        293.58 / 305.70 ±9.81 / 321.63 ms │     no change │
│ QQuery 51 │        207.59 / 212.84 ±4.06 / 218.01 ms │        206.24 / 212.58 ±4.06 / 217.92 ms │     no change │
│ QQuery 52 │        117.02 / 117.81 ±0.63 / 118.57 ms │        118.20 / 119.95 ±1.31 / 122.14 ms │     no change │
│ QQuery 53 │        112.52 / 114.80 ±1.26 / 116.07 ms │        114.03 / 115.40 ±1.09 / 117.29 ms │     no change │
│ QQuery 54 │        170.99 / 172.83 ±2.33 / 177.35 ms │        168.60 / 173.51 ±2.69 / 176.48 ms │     no change │
│ QQuery 55 │        115.13 / 119.11 ±2.49 / 122.26 ms │        116.17 / 117.99 ±1.87 / 121.61 ms │     no change │
│ QQuery 56 │        166.24 / 167.30 ±0.77 / 168.41 ms │        164.40 / 166.18 ±1.57 / 168.43 ms │     no change │
│ QQuery 57 │        212.60 / 220.12 ±4.17 / 223.95 ms │        212.31 / 223.67 ±6.99 / 233.86 ms │     no change │
│ QQuery 58 │        345.71 / 349.70 ±3.68 / 356.21 ms │        337.21 / 345.97 ±6.15 / 353.64 ms │     no change │
│ QQuery 59 │        250.35 / 252.41 ±1.78 / 255.31 ms │        244.90 / 253.95 ±5.02 / 258.63 ms │     no change │
│ QQuery 60 │        167.00 / 169.99 ±2.55 / 173.46 ms │        167.55 / 171.33 ±3.42 / 176.79 ms │     no change │
│ QQuery 61 │           16.05 / 16.31 ±0.23 / 16.68 ms │           16.51 / 16.88 ±0.29 / 17.34 ms │     no change │
│ QQuery 62 │    1151.46 / 1192.07 ±37.59 / 1255.90 ms │   1151.16 / 1313.46 ±124.92 / 1475.55 ms │  1.10x slower │
│ QQuery 63 │        115.66 / 120.70 ±4.86 / 128.95 ms │        115.14 / 117.37 ±2.10 / 120.50 ms │     no change │
│ QQuery 64 │        861.17 / 867.68 ±4.18 / 872.02 ms │        865.38 / 871.69 ±5.32 / 880.30 ms │     no change │
│ QQuery 65 │        334.14 / 340.97 ±3.67 / 343.91 ms │        337.52 / 343.90 ±3.92 / 348.88 ms │     no change │
│ QQuery 66 │        301.53 / 308.74 ±5.26 / 316.95 ms │        293.95 / 307.83 ±8.98 / 316.70 ms │     no change │
│ QQuery 67 │        384.65 / 395.09 ±7.04 / 405.19 ms │        375.99 / 390.44 ±8.20 / 399.99 ms │     no change │
│ QQuery 68 │           11.77 / 13.31 ±1.12 / 15.20 ms │           10.38 / 12.70 ±1.70 / 15.21 ms │     no change │
│ QQuery 69 │        120.80 / 122.46 ±1.22 / 124.28 ms │        120.54 / 123.04 ±2.44 / 127.24 ms │     no change │
│ QQuery 70 │       388.10 / 401.33 ±11.15 / 421.30 ms │       387.23 / 413.05 ±18.75 / 438.36 ms │     no change │
│ QQuery 71 │        157.81 / 162.01 ±2.65 / 166.15 ms │        155.39 / 157.07 ±0.97 / 158.42 ms │     no change │
│ QQuery 72 │       892.65 / 913.55 ±17.42 / 943.31 ms │       881.39 / 895.86 ±14.21 / 918.72 ms │     no change │
│ QQuery 73 │            9.02 / 11.32 ±1.68 / 13.67 ms │            9.30 / 10.18 ±0.70 / 11.37 ms │ +1.11x faster │
│ QQuery 74 │        890.71 / 899.25 ±5.82 / 908.47 ms │        872.95 / 886.77 ±9.16 / 901.39 ms │     no change │
│ QQuery 75 │        314.22 / 317.18 ±2.71 / 321.70 ms │        311.52 / 317.95 ±5.10 / 324.85 ms │     no change │
│ QQuery 76 │        156.96 / 158.81 ±1.32 / 161.09 ms │        155.39 / 158.73 ±3.30 / 163.73 ms │     no change │
│ QQuery 77 │        205.71 / 207.81 ±1.48 / 209.76 ms │        202.85 / 207.14 ±2.23 / 209.06 ms │     no change │
│ QQuery 78 │        418.40 / 433.91 ±9.64 / 447.30 ms │        433.72 / 437.04 ±3.70 / 444.02 ms │     no change │
│ QQuery 79 │        305.33 / 311.54 ±3.35 / 315.26 ms │        303.00 / 314.34 ±6.56 / 321.98 ms │     no change │
│ QQuery 80 │        368.48 / 374.36 ±6.11 / 384.74 ms │        373.33 / 377.40 ±3.94 / 382.57 ms │     no change │
│ QQuery 81 │           33.00 / 34.22 ±0.95 / 35.55 ms │           33.79 / 35.99 ±1.85 / 39.13 ms │  1.05x slower │
│ QQuery 82 │        224.21 / 225.45 ±1.17 / 227.16 ms │        218.02 / 220.64 ±1.43 / 222.05 ms │     no change │
│ QQuery 83 │           47.07 / 48.52 ±1.87 / 51.98 ms │           46.33 / 47.99 ±1.73 / 51.27 ms │     no change │
│ QQuery 84 │           54.06 / 54.67 ±0.50 / 55.57 ms │           55.49 / 56.72 ±1.13 / 58.66 ms │     no change │
│ QQuery 85 │        167.66 / 169.64 ±1.67 / 172.54 ms │        168.22 / 170.07 ±1.52 / 172.09 ms │     no change │
│ QQuery 86 │           45.80 / 46.33 ±0.48 / 47.16 ms │           44.38 / 46.41 ±1.23 / 48.21 ms │     no change │
│ QQuery 87 │        114.46 / 119.41 ±5.08 / 128.78 ms │        112.75 / 116.80 ±5.01 / 126.24 ms │     no change │
│ QQuery 88 │        120.25 / 121.93 ±1.31 / 123.81 ms │        122.52 / 124.46 ±1.57 / 127.02 ms │     no change │
│ QQuery 89 │        131.32 / 134.90 ±2.16 / 137.23 ms │        134.60 / 135.41 ±0.71 / 136.68 ms │     no change │
│ QQuery 90 │           28.18 / 29.56 ±0.90 / 30.80 ms │           29.83 / 30.31 ±0.31 / 30.74 ms │     no change │
│ QQuery 91 │           72.76 / 74.87 ±1.48 / 76.91 ms │           71.75 / 75.26 ±2.66 / 79.65 ms │     no change │
│ QQuery 92 │           64.43 / 65.19 ±0.95 / 67.06 ms │           65.41 / 66.19 ±0.58 / 66.75 ms │     no change │
│ QQuery 93 │        232.56 / 236.15 ±2.30 / 238.66 ms │        239.14 / 240.73 ±1.87 / 244.00 ms │     no change │
│ QQuery 94 │           70.31 / 71.70 ±1.46 / 74.18 ms │           74.13 / 74.74 ±0.53 / 75.63 ms │     no change │
│ QQuery 95 │        148.40 / 152.23 ±2.56 / 155.38 ms │        152.60 / 157.02 ±2.78 / 159.50 ms │     no change │
│ QQuery 96 │           82.91 / 88.95 ±3.07 / 91.47 ms │           89.37 / 92.73 ±2.59 / 95.86 ms │     no change │
│ QQuery 97 │        164.04 / 165.42 ±1.24 / 167.32 ms │        165.43 / 168.53 ±3.03 / 174.27 ms │     no change │
│ QQuery 98 │        197.71 / 201.82 ±3.04 / 205.81 ms │        202.69 / 206.94 ±2.59 / 209.19 ms │     no change │
│ QQuery 99 │ 12357.00 / 12412.00 ±46.58 / 12492.11 ms │ 12502.75 / 12622.27 ±70.38 / 12703.00 ms │     no change │
└───────────┴──────────────────────────────────────────┴──────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                                ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                                │ 38757.01ms │
│ Total Time (shrink-arrow-bytes-view-map-entry)   │ 38976.58ms │
│ Average Time (HEAD)                              │   391.48ms │
│ Average Time (shrink-arrow-bytes-view-map-entry) │   393.70ms │
│ Queries Faster                                   │          4 │
│ Queries Slower                                   │          5 │
│ Queries with No Change                           │         90 │
│ Queries with Failure                             │          0 │
└──────────────────────────────────────────────────┴────────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 194.2s
Peak memory 5.5 GiB
Avg memory 4.6 GiB
CPU user 319.7s
CPU sys 23.6s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 195.3s
Peak memory 5.2 GiB
Avg memory 4.4 GiB
CPU user 319.5s
CPU sys 24.3s
Peak spill 0 B

File an issue against this benchmark runner

@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-c4192450590-891-6rj96 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 shrink-arrow-bytes-view-map-entry (c0b212a) to c17c87c (merge-base) diff using: clickbench_extended
Results will be posted here when complete


File an issue against this benchmark runner

Dandandan and others added 2 commits April 6, 2026 15:21
Use Dandandan/arrow-rs-object-store#io-uring-get-ranges via
[patch.crates-io] to test io_uring-based batch reads for
LocalFileSystem (apache/arrow-rs-object-store#684).

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
@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 shrink-arrow-bytes-view-map-entry
--------------------
Benchmark clickbench_extended.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┓
┃ Query     ┃                                     HEAD ┃        shrink-arrow-bytes-view-map-entry ┃    Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━┩
│ QQuery 0  │       890.03 / 913.97 ±13.46 / 929.43 ms │       931.14 / 941.93 ±12.93 / 966.95 ms │ no change │
│ QQuery 1  │        207.10 / 208.48 ±1.05 / 209.84 ms │        215.42 / 217.21 ±1.09 / 218.85 ms │ no change │
│ QQuery 2  │        496.41 / 500.25 ±1.96 / 501.83 ms │        512.44 / 514.24 ±1.19 / 515.61 ms │ no change │
│ QQuery 3  │        315.63 / 316.19 ±0.40 / 316.70 ms │        313.98 / 315.74 ±1.68 / 318.96 ms │ no change │
│ QQuery 4  │       662.75 / 690.52 ±21.38 / 723.38 ms │       678.85 / 697.52 ±17.23 / 722.69 ms │ no change │
│ QQuery 5  │ 9941.33 / 10117.80 ±126.69 / 10332.50 ms │ 9816.75 / 10011.49 ±145.77 / 10250.40 ms │ no change │
│ QQuery 6  │     998.06 / 1010.74 ±20.16 / 1050.83 ms │     1005.28 / 1010.27 ±2.85 / 1013.49 ms │ no change │
│ QQuery 7  │        783.91 / 799.02 ±9.44 / 809.61 ms │        784.80 / 795.33 ±9.35 / 811.05 ms │ no change │
│ QQuery 8  │        404.04 / 408.30 ±6.90 / 422.06 ms │        405.76 / 411.08 ±3.31 / 415.63 ms │ no change │
│ QQuery 9  │    2859.94 / 2915.03 ±38.20 / 2979.14 ms │    2806.35 / 2864.48 ±33.52 / 2908.44 ms │ no change │
│ QQuery 10 │        638.17 / 645.92 ±9.38 / 663.74 ms │       637.25 / 649.57 ±11.19 / 667.51 ms │ no change │
│ QQuery 11 │    2258.11 / 2275.62 ±11.70 / 2286.29 ms │    2282.09 / 2297.47 ±12.68 / 2317.24 ms │ no change │
│ QQuery 12 │        195.04 / 203.71 ±6.65 / 214.93 ms │        193.37 / 199.11 ±4.36 / 205.10 ms │ no change │
└───────────┴──────────────────────────────────────────┴──────────────────────────────────────────┴───────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                                ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                                │ 21005.55ms │
│ Total Time (shrink-arrow-bytes-view-map-entry)   │ 20925.45ms │
│ Average Time (HEAD)                              │  1615.81ms │
│ Average Time (shrink-arrow-bytes-view-map-entry) │  1609.65ms │
│ Queries Faster                                   │          0 │
│ Queries Slower                                   │          0 │
│ Queries with No Change                           │         13 │
│ Queries with Failure                             │          0 │
└──────────────────────────────────────────────────┴────────────┘

Resource Usage

clickbench_extended — base (merge-base)

Metric Value
Wall time 105.9s
Peak memory 33.7 GiB
Avg memory 29.7 GiB
CPU user 1007.8s
CPU sys 47.4s
Peak spill 0 B

clickbench_extended — branch

Metric Value
Wall time 105.5s
Peak memory 33.3 GiB
Avg memory 28.9 GiB
CPU user 1000.6s
CPU sys 47.5s
Peak spill 0 B

File an issue against this benchmark runner

- Combine len + prefix into single u64 comparison in do_equal_to_inner
- For inline values, compare upper 64 bits directly after len+prefix match
- Hoist arr.views() out of per-row loops in all vectorized_append paths
- Add do_append_val_with_view to avoid redundant view lookups per row

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
@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-c4192571202-895-7hrmg 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 shrink-arrow-bytes-view-map-entry (7542f9e) to c17c87c (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-c4192571202-897-tfmzl 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 shrink-arrow-bytes-view-map-entry (7542f9e) to c17c87c (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-c4192571202-896-bvpsk 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 shrink-arrow-bytes-view-map-entry (7542f9e) to c17c87c (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 shrink-arrow-bytes-view-map-entry
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                     HEAD ┃        shrink-arrow-bytes-view-map-entry ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │              6.59 / 7.03 ±0.82 / 8.68 ms │              6.53 / 6.99 ±0.80 / 8.58 ms │     no change │
│ QQuery 2  │        145.65 / 146.41 ±0.67 / 147.27 ms │        143.61 / 144.90 ±0.77 / 145.88 ms │     no change │
│ QQuery 3  │        114.83 / 115.77 ±0.88 / 117.26 ms │        113.94 / 114.31 ±0.24 / 114.68 ms │     no change │
│ QQuery 4  │    1339.68 / 1381.77 ±22.68 / 1399.81 ms │    1353.26 / 1380.20 ±24.01 / 1411.66 ms │     no change │
│ QQuery 5  │        173.03 / 175.27 ±2.21 / 178.97 ms │        173.97 / 174.73 ±0.77 / 175.92 ms │     no change │
│ QQuery 6  │       846.88 / 864.42 ±11.16 / 881.51 ms │       842.59 / 869.30 ±23.05 / 908.44 ms │     no change │
│ QQuery 7  │        351.20 / 353.70 ±2.70 / 358.70 ms │        349.49 / 353.55 ±2.90 / 357.12 ms │     no change │
│ QQuery 8  │        116.89 / 117.69 ±0.65 / 118.79 ms │        116.02 / 116.74 ±0.66 / 117.78 ms │     no change │
│ QQuery 9  │        102.21 / 109.75 ±9.97 / 129.12 ms │        101.41 / 104.78 ±2.71 / 107.44 ms │     no change │
│ QQuery 10 │        106.14 / 107.43 ±0.68 / 108.10 ms │        105.79 / 107.95 ±1.50 / 110.50 ms │     no change │
│ QQuery 11 │        971.97 / 984.06 ±7.78 / 995.57 ms │       942.38 / 957.13 ±15.02 / 982.07 ms │     no change │
│ QQuery 12 │           46.04 / 47.19 ±1.03 / 48.76 ms │           45.14 / 46.67 ±1.26 / 48.74 ms │     no change │
│ QQuery 13 │        398.86 / 401.92 ±2.65 / 404.96 ms │        400.67 / 401.94 ±1.10 / 403.96 ms │     no change │
│ QQuery 14 │     1015.32 / 1021.83 ±4.31 / 1028.92 ms │     1014.11 / 1023.77 ±5.85 / 1030.25 ms │     no change │
│ QQuery 15 │           16.39 / 17.57 ±0.91 / 19.08 ms │           15.57 / 16.63 ±0.76 / 17.63 ms │ +1.06x faster │
│ QQuery 16 │              7.04 / 8.27 ±1.10 / 9.91 ms │              7.04 / 7.95 ±1.02 / 9.47 ms │     no change │
│ QQuery 17 │        235.91 / 241.27 ±2.88 / 244.52 ms │        237.30 / 239.44 ±1.38 / 240.66 ms │     no change │
│ QQuery 18 │        130.30 / 130.83 ±0.54 / 131.77 ms │        128.90 / 130.07 ±1.20 / 132.26 ms │     no change │
│ QQuery 19 │        155.96 / 157.68 ±1.05 / 158.58 ms │        154.30 / 155.56 ±0.80 / 156.66 ms │     no change │
│ QQuery 20 │           13.45 / 14.28 ±0.54 / 15.09 ms │           13.25 / 14.09 ±0.48 / 14.58 ms │     no change │
│ QQuery 21 │           19.53 / 19.83 ±0.25 / 20.20 ms │           19.23 / 20.00 ±0.53 / 20.66 ms │     no change │
│ QQuery 22 │        485.64 / 490.09 ±4.50 / 495.97 ms │        471.50 / 476.00 ±2.77 / 479.65 ms │     no change │
│ QQuery 23 │        886.37 / 895.65 ±7.37 / 905.87 ms │        884.11 / 896.24 ±8.08 / 906.94 ms │     no change │
│ QQuery 24 │        390.11 / 393.24 ±2.20 / 396.17 ms │        393.48 / 396.28 ±2.59 / 401.19 ms │     no change │
│ QQuery 25 │        345.65 / 348.98 ±2.34 / 352.05 ms │        349.17 / 352.06 ±2.06 / 355.63 ms │     no change │
│ QQuery 26 │           81.26 / 82.34 ±0.59 / 82.94 ms │           81.56 / 84.05 ±1.93 / 86.30 ms │     no change │
│ QQuery 27 │              6.78 / 7.51 ±0.75 / 8.49 ms │              6.92 / 7.54 ±0.61 / 8.61 ms │     no change │
│ QQuery 28 │        149.02 / 150.52 ±0.81 / 151.39 ms │        148.79 / 150.11 ±1.22 / 152.07 ms │     no change │
│ QQuery 29 │        290.33 / 295.63 ±3.13 / 299.90 ms │        290.47 / 292.59 ±2.12 / 296.21 ms │     no change │
│ QQuery 30 │           43.65 / 44.27 ±1.02 / 46.29 ms │           45.46 / 46.80 ±1.26 / 49.19 ms │  1.06x slower │
│ QQuery 31 │        172.47 / 173.36 ±0.95 / 174.59 ms │        171.90 / 173.23 ±1.36 / 175.64 ms │     no change │
│ QQuery 32 │           57.69 / 59.07 ±1.35 / 61.48 ms │           57.57 / 58.54 ±0.85 / 59.65 ms │     no change │
│ QQuery 33 │        141.88 / 143.70 ±1.02 / 144.52 ms │        140.67 / 143.85 ±2.62 / 146.78 ms │     no change │
│ QQuery 34 │              7.08 / 7.68 ±0.73 / 9.07 ms │              7.05 / 7.45 ±0.41 / 8.16 ms │     no change │
│ QQuery 35 │        106.95 / 107.78 ±0.62 / 108.68 ms │        108.05 / 109.43 ±0.97 / 110.86 ms │     no change │
│ QQuery 36 │              6.39 / 6.64 ±0.21 / 6.98 ms │              6.65 / 6.78 ±0.17 / 7.11 ms │     no change │
│ QQuery 37 │              8.51 / 8.88 ±0.21 / 9.14 ms │             8.24 / 9.48 ±0.85 / 10.45 ms │  1.07x slower │
│ QQuery 38 │           83.48 / 88.49 ±4.27 / 96.32 ms │           84.29 / 87.54 ±3.13 / 93.40 ms │     no change │
│ QQuery 39 │        126.48 / 128.72 ±1.81 / 131.99 ms │        124.45 / 126.53 ±1.42 / 128.23 ms │     no change │
│ QQuery 40 │        109.62 / 117.91 ±7.31 / 128.88 ms │        116.15 / 120.67 ±5.57 / 131.47 ms │     no change │
│ QQuery 41 │           15.33 / 16.25 ±1.04 / 18.28 ms │           14.49 / 15.66 ±0.80 / 16.91 ms │     no change │
│ QQuery 42 │        108.06 / 110.24 ±1.17 / 111.44 ms │        107.88 / 110.20 ±1.26 / 111.36 ms │     no change │
│ QQuery 43 │              5.86 / 6.11 ±0.24 / 6.57 ms │              6.09 / 6.23 ±0.18 / 6.57 ms │     no change │
│ QQuery 44 │           11.71 / 11.97 ±0.14 / 12.13 ms │           11.74 / 12.06 ±0.35 / 12.70 ms │     no change │
│ QQuery 45 │           53.37 / 54.08 ±0.41 / 54.50 ms │           53.22 / 53.86 ±0.68 / 54.70 ms │     no change │
│ QQuery 46 │              8.46 / 8.77 ±0.21 / 8.98 ms │              8.23 / 8.64 ±0.23 / 8.86 ms │     no change │
│ QQuery 47 │        721.26 / 733.04 ±5.95 / 737.07 ms │       695.61 / 707.91 ±11.43 / 726.75 ms │     no change │
│ QQuery 48 │        289.49 / 295.08 ±3.79 / 300.41 ms │        280.84 / 291.57 ±8.33 / 304.45 ms │     no change │
│ QQuery 49 │        256.13 / 257.58 ±0.99 / 258.50 ms │        253.83 / 256.19 ±2.59 / 261.02 ms │     no change │
│ QQuery 50 │        225.07 / 234.93 ±6.15 / 244.23 ms │        235.34 / 236.97 ±1.13 / 238.44 ms │     no change │
│ QQuery 51 │        186.25 / 187.36 ±1.28 / 189.86 ms │        184.53 / 186.99 ±2.00 / 190.09 ms │     no change │
│ QQuery 52 │        107.98 / 110.09 ±1.17 / 111.58 ms │        108.19 / 109.12 ±0.69 / 109.82 ms │     no change │
│ QQuery 53 │        103.20 / 104.11 ±0.49 / 104.55 ms │        102.72 / 104.24 ±0.87 / 105.36 ms │     no change │
│ QQuery 54 │        146.80 / 148.37 ±1.50 / 151.16 ms │        146.94 / 149.04 ±1.46 / 151.40 ms │     no change │
│ QQuery 55 │        107.72 / 110.17 ±1.42 / 111.75 ms │        107.80 / 108.78 ±1.18 / 111.08 ms │     no change │
│ QQuery 56 │        140.97 / 143.07 ±2.28 / 146.33 ms │        140.63 / 142.91 ±1.58 / 145.17 ms │     no change │
│ QQuery 57 │        172.48 / 174.00 ±1.01 / 175.64 ms │        166.80 / 171.31 ±2.69 / 175.16 ms │     no change │
│ QQuery 58 │        288.02 / 297.89 ±7.39 / 307.04 ms │        290.83 / 302.91 ±9.16 / 315.63 ms │     no change │
│ QQuery 59 │        196.93 / 199.63 ±1.50 / 201.06 ms │        195.24 / 198.07 ±2.02 / 201.48 ms │     no change │
│ QQuery 60 │        144.28 / 145.58 ±1.19 / 147.57 ms │        143.33 / 144.66 ±0.90 / 146.12 ms │     no change │
│ QQuery 61 │           13.01 / 13.41 ±0.32 / 13.99 ms │           13.13 / 13.67 ±0.59 / 14.81 ms │     no change │
│ QQuery 62 │       913.43 / 927.29 ±15.81 / 956.94 ms │      927.45 / 971.97 ±58.28 / 1084.99 ms │     no change │
│ QQuery 63 │        104.08 / 106.14 ±1.15 / 107.32 ms │        104.41 / 107.48 ±4.39 / 116.20 ms │     no change │
│ QQuery 64 │        700.47 / 703.49 ±2.82 / 707.98 ms │        697.97 / 704.00 ±4.31 / 710.57 ms │     no change │
│ QQuery 65 │        251.74 / 257.74 ±4.69 / 266.18 ms │        251.33 / 253.95 ±2.28 / 257.15 ms │     no change │
│ QQuery 66 │        245.03 / 252.07 ±6.19 / 262.99 ms │       244.91 / 257.32 ±11.21 / 276.84 ms │     no change │
│ QQuery 67 │        313.43 / 323.20 ±8.03 / 337.74 ms │       308.36 / 317.89 ±10.81 / 338.38 ms │     no change │
│ QQuery 68 │            9.33 / 10.44 ±0.58 / 10.95 ms │            8.92 / 10.42 ±1.41 / 12.79 ms │     no change │
│ QQuery 69 │        102.88 / 104.08 ±1.10 / 106.13 ms │        101.14 / 102.87 ±1.02 / 104.09 ms │     no change │
│ QQuery 70 │       341.04 / 351.73 ±11.64 / 373.82 ms │        335.51 / 351.40 ±9.56 / 364.73 ms │     no change │
│ QQuery 71 │        136.13 / 139.56 ±2.59 / 143.31 ms │        136.93 / 139.60 ±4.49 / 148.56 ms │     no change │
│ QQuery 72 │       707.37 / 724.54 ±11.90 / 742.24 ms │        716.67 / 723.34 ±5.44 / 730.65 ms │     no change │
│ QQuery 73 │              6.67 / 7.04 ±0.28 / 7.31 ms │              6.74 / 7.79 ±0.83 / 9.16 ms │  1.11x slower │
│ QQuery 74 │        598.65 / 613.61 ±8.20 / 623.39 ms │        600.93 / 608.26 ±6.23 / 618.70 ms │     no change │
│ QQuery 75 │        273.66 / 278.33 ±3.03 / 281.80 ms │        279.22 / 281.09 ±1.40 / 283.47 ms │     no change │
│ QQuery 76 │        132.64 / 134.93 ±1.27 / 136.49 ms │        135.26 / 135.84 ±0.64 / 137.05 ms │     no change │
│ QQuery 77 │        190.22 / 191.33 ±0.83 / 192.49 ms │        193.09 / 194.98 ±1.16 / 196.13 ms │     no change │
│ QQuery 78 │        351.30 / 353.89 ±2.15 / 357.07 ms │        348.11 / 351.25 ±2.43 / 355.21 ms │     no change │
│ QQuery 79 │        235.38 / 239.01 ±2.28 / 242.45 ms │        232.77 / 236.18 ±1.99 / 238.45 ms │     no change │
│ QQuery 80 │        327.17 / 330.97 ±2.12 / 333.02 ms │        326.42 / 330.08 ±2.66 / 334.19 ms │     no change │
│ QQuery 81 │           26.15 / 27.55 ±1.15 / 29.38 ms │           26.67 / 28.19 ±1.04 / 29.78 ms │     no change │
│ QQuery 82 │        199.13 / 201.42 ±2.13 / 204.95 ms │        197.17 / 199.54 ±1.67 / 202.09 ms │     no change │
│ QQuery 83 │           40.77 / 41.66 ±0.76 / 42.61 ms │           38.98 / 40.69 ±1.97 / 44.55 ms │     no change │
│ QQuery 84 │           48.93 / 49.38 ±0.51 / 50.36 ms │           48.12 / 49.75 ±1.01 / 50.83 ms │     no change │
│ QQuery 85 │        148.09 / 150.96 ±2.19 / 154.60 ms │        148.89 / 149.41 ±0.44 / 149.96 ms │     no change │
│ QQuery 86 │           39.09 / 40.32 ±0.62 / 40.72 ms │           39.24 / 40.43 ±1.04 / 42.04 ms │     no change │
│ QQuery 87 │           84.28 / 88.77 ±3.52 / 93.91 ms │           83.47 / 86.60 ±3.54 / 93.19 ms │     no change │
│ QQuery 88 │         99.70 / 100.72 ±0.69 / 101.49 ms │         99.56 / 100.57 ±0.74 / 101.72 ms │     no change │
│ QQuery 89 │        119.00 / 119.99 ±0.70 / 120.94 ms │        115.58 / 118.66 ±2.10 / 121.64 ms │     no change │
│ QQuery 90 │           22.84 / 23.83 ±0.71 / 24.82 ms │           23.73 / 24.13 ±0.57 / 25.26 ms │     no change │
│ QQuery 91 │           63.51 / 64.90 ±1.90 / 68.55 ms │           61.65 / 64.08 ±1.78 / 67.13 ms │     no change │
│ QQuery 92 │           57.63 / 59.50 ±1.11 / 60.59 ms │           57.93 / 58.67 ±0.61 / 59.76 ms │     no change │
│ QQuery 93 │        193.21 / 195.26 ±1.53 / 197.13 ms │        190.81 / 192.78 ±1.51 / 195.37 ms │     no change │
│ QQuery 94 │           61.18 / 61.80 ±0.60 / 62.82 ms │           60.80 / 61.86 ±0.91 / 63.55 ms │     no change │
│ QQuery 95 │        134.14 / 136.65 ±1.57 / 138.65 ms │        132.40 / 135.60 ±1.69 / 137.16 ms │     no change │
│ QQuery 96 │           71.34 / 74.35 ±1.76 / 76.51 ms │           69.83 / 73.99 ±2.26 / 76.53 ms │     no change │
│ QQuery 97 │        131.34 / 132.73 ±1.21 / 134.82 ms │        130.12 / 131.97 ±0.99 / 132.81 ms │     no change │
│ QQuery 98 │        150.73 / 154.78 ±3.30 / 160.37 ms │        154.83 / 156.26 ±1.27 / 157.99 ms │     no change │
│ QQuery 99 │ 10772.28 / 10829.68 ±51.83 / 10906.59 ms │ 10748.14 / 10807.02 ±44.58 / 10854.67 ms │     no change │
└───────────┴──────────────────────────────────────────┴──────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                                ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                                │ 31939.80ms │
│ Total Time (shrink-arrow-bytes-view-map-entry)   │ 31868.77ms │
│ Average Time (HEAD)                              │   322.62ms │
│ Average Time (shrink-arrow-bytes-view-map-entry) │   321.91ms │
│ 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 160.0s
Peak memory 5.8 GiB
Avg memory 4.5 GiB
CPU user 260.9s
CPU sys 17.1s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 159.6s
Peak memory 5.8 GiB
Avg memory 4.5 GiB
CPU user 260.0s
CPU sys 17.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 shrink-arrow-bytes-view-map-entry
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃     shrink-arrow-bytes-view-map-entry ┃       Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.22 / 4.58 ±6.55 / 17.68 ms │          1.19 / 4.48 ±6.44 / 17.36 ms │    no change │
│ QQuery 1  │        14.17 / 14.71 ±0.28 / 14.90 ms │        14.37 / 14.81 ±0.26 / 15.11 ms │    no change │
│ QQuery 2  │        44.39 / 44.82 ±0.28 / 45.17 ms │        43.61 / 44.15 ±0.45 / 44.92 ms │    no change │
│ QQuery 3  │        41.61 / 44.10 ±2.75 / 47.78 ms │        43.58 / 45.09 ±1.49 / 47.54 ms │    no change │
│ QQuery 4  │     301.79 / 310.59 ±8.95 / 326.70 ms │    295.45 / 311.85 ±10.52 / 326.68 ms │    no change │
│ QQuery 5  │     353.13 / 359.73 ±4.91 / 367.05 ms │     380.40 / 385.10 ±5.06 / 394.64 ms │ 1.07x slower │
│ QQuery 6  │           5.01 / 5.70 ±0.80 / 7.16 ms │           6.13 / 6.80 ±0.66 / 7.92 ms │ 1.19x slower │
│ QQuery 7  │        17.03 / 17.58 ±0.44 / 18.18 ms │        17.42 / 18.84 ±1.08 / 20.62 ms │ 1.07x slower │
│ QQuery 8  │    440.78 / 453.20 ±10.15 / 470.66 ms │     449.44 / 455.90 ±7.44 / 469.93 ms │    no change │
│ QQuery 9  │     657.68 / 662.72 ±5.55 / 673.03 ms │    673.05 / 681.86 ±11.17 / 702.79 ms │    no change │
│ QQuery 10 │        92.99 / 95.86 ±1.83 / 98.02 ms │        93.66 / 95.37 ±1.56 / 97.94 ms │    no change │
│ QQuery 11 │     103.80 / 106.70 ±1.58 / 108.13 ms │     105.27 / 107.21 ±1.93 / 110.74 ms │    no change │
│ QQuery 12 │     351.45 / 357.56 ±4.49 / 362.58 ms │     383.73 / 388.17 ±3.69 / 394.27 ms │ 1.09x slower │
│ QQuery 13 │     479.03 / 489.97 ±7.19 / 500.60 ms │     480.12 / 488.43 ±5.88 / 494.53 ms │    no change │
│ QQuery 14 │     355.07 / 360.49 ±3.79 / 364.86 ms │     358.51 / 360.78 ±2.36 / 364.89 ms │    no change │
│ QQuery 15 │    372.16 / 385.58 ±11.72 / 400.67 ms │    359.96 / 383.71 ±24.38 / 425.64 ms │    no change │
│ QQuery 16 │    735.24 / 745.78 ±10.66 / 765.77 ms │     714.56 / 725.19 ±6.01 / 732.03 ms │    no change │
│ QQuery 17 │    736.07 / 747.84 ±10.59 / 763.87 ms │     719.32 / 722.80 ±2.85 / 726.54 ms │    no change │
│ QQuery 18 │ 1401.25 / 1454.55 ±34.31 / 1499.25 ms │ 1402.55 / 1418.95 ±12.99 / 1439.65 ms │    no change │
│ QQuery 19 │        34.91 / 36.97 ±2.58 / 41.99 ms │        35.69 / 37.63 ±1.30 / 39.46 ms │    no change │
│ QQuery 20 │    716.00 / 726.31 ±10.91 / 741.03 ms │    708.56 / 719.28 ±11.69 / 742.01 ms │    no change │
│ QQuery 21 │     758.06 / 763.83 ±3.62 / 767.67 ms │     761.65 / 767.28 ±6.42 / 779.43 ms │    no change │
│ QQuery 22 │  1143.17 / 1154.52 ±9.71 / 1167.70 ms │  1139.01 / 1142.28 ±2.23 / 1145.57 ms │    no change │
│ QQuery 23 │ 3106.02 / 3150.82 ±32.64 / 3190.34 ms │  3105.76 / 3113.92 ±6.46 / 3125.56 ms │    no change │
│ QQuery 24 │      98.53 / 104.12 ±4.14 / 110.90 ms │     102.84 / 106.10 ±2.38 / 109.46 ms │    no change │
│ QQuery 25 │     138.96 / 141.31 ±1.48 / 143.07 ms │     140.19 / 141.97 ±1.38 / 143.78 ms │    no change │
│ QQuery 26 │     100.80 / 103.99 ±2.46 / 108.01 ms │      98.00 / 104.57 ±3.88 / 109.20 ms │    no change │
│ QQuery 27 │     852.36 / 856.37 ±6.65 / 869.62 ms │     856.05 / 862.89 ±7.09 / 876.61 ms │    no change │
│ QQuery 28 │ 7782.95 / 7835.64 ±41.19 / 7902.03 ms │ 7822.50 / 7857.56 ±20.52 / 7876.29 ms │    no change │
│ QQuery 29 │        51.74 / 57.07 ±8.68 / 74.36 ms │        50.59 / 54.24 ±3.36 / 58.39 ms │    no change │
│ QQuery 30 │     377.12 / 386.79 ±6.47 / 397.29 ms │     367.81 / 374.91 ±5.96 / 382.86 ms │    no change │
│ QQuery 31 │     381.52 / 392.16 ±5.99 / 398.79 ms │    381.57 / 400.65 ±13.17 / 415.61 ms │    no change │
│ QQuery 32 │  1062.84 / 1071.71 ±9.33 / 1087.47 ms │ 1041.09 / 1073.50 ±21.07 / 1107.64 ms │    no change │
│ QQuery 33 │  1474.78 / 1487.88 ±7.99 / 1497.02 ms │ 1562.09 / 1582.35 ±19.21 / 1615.17 ms │ 1.06x slower │
│ QQuery 34 │ 1487.24 / 1505.51 ±12.30 / 1519.63 ms │ 1572.30 / 1612.01 ±27.44 / 1653.71 ms │ 1.07x slower │
│ QQuery 35 │     399.19 / 413.40 ±8.62 / 423.79 ms │    390.71 / 403.67 ±10.82 / 420.47 ms │    no change │
│ QQuery 36 │     120.83 / 124.12 ±1.73 / 125.57 ms │     122.33 / 126.19 ±3.48 / 131.69 ms │    no change │
│ QQuery 37 │        49.56 / 50.99 ±1.00 / 52.19 ms │        49.33 / 50.88 ±1.32 / 52.36 ms │    no change │
│ QQuery 38 │        76.41 / 79.38 ±2.11 / 81.90 ms │        75.43 / 77.06 ±1.47 / 79.58 ms │    no change │
│ QQuery 39 │     217.48 / 224.70 ±7.69 / 239.44 ms │     208.49 / 219.37 ±6.46 / 225.58 ms │    no change │
│ QQuery 40 │        23.73 / 27.05 ±3.11 / 32.70 ms │        24.00 / 25.83 ±1.18 / 27.43 ms │    no change │
│ QQuery 41 │        19.95 / 21.27 ±1.03 / 22.69 ms │        19.74 / 21.07 ±0.85 / 22.36 ms │    no change │
│ QQuery 42 │        20.34 / 20.47 ±0.11 / 20.66 ms │        19.25 / 21.23 ±1.65 / 24.00 ms │    no change │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴──────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                                ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                                │ 27398.42ms │
│ Total Time (shrink-arrow-bytes-view-map-entry)   │ 27555.93ms │
│ Average Time (HEAD)                              │   637.17ms │
│ Average Time (shrink-arrow-bytes-view-map-entry) │   640.84ms │
│ Queries Faster                                   │          0 │
│ Queries Slower                                   │          6 │
│ Queries with No Change                           │         37 │
│ Queries with Failure                             │          0 │
└──────────────────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 138.0s
Peak memory 37.8 GiB
Avg memory 31.9 GiB
CPU user 1306.0s
CPU sys 85.3s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 138.9s
Peak memory 38.6 GiB
Avg memory 32.6 GiB
CPU user 1319.4s
CPU sys 83.5s
Peak spill 0 B

File an issue against this benchmark runner

@Dandandan Dandandan closed this Apr 6, 2026
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