Skip to content

Add io-uring based ObjectStore for local file I/O#21673

Closed
Dandandan wants to merge 9 commits intoapache:mainfrom
Dandandan:worktree-io-uring-object-store
Closed

Add io-uring based ObjectStore for local file I/O#21673
Dandandan wants to merge 9 commits intoapache:mainfrom
Dandandan:worktree-io-uring-object-store

Conversation

@Dandandan
Copy link
Copy Markdown
Contributor

@Dandandan Dandandan commented Apr 16, 2026

Which issue does this PR close?

  • N/A (new feature)

Rationale for this change

Local file reads in DataFusion use object_store::local::LocalFileSystem, which issues one pread() per byte range. For Parquet column chunk reads this means many individual syscalls. Linux's io_uring allows batching these into a single io_uring_enter().

What changes are included in this PR?

New crate datafusion-object-store-iouring providing IoUringObjectStore:

  • Dedicated io_uring worker thread with a 256-entry submission queue
  • Channel-based dispatch: unbounded mpsc for requests, oneshot for responses
  • Batched reads: get_ranges() submits all byte ranges as SQEs in one io_uring_enter()
  • Graceful fallback: probes io_uring at startup; falls back to LocalFileSystem when unavailable (EPERM in Docker/seccomp, non-Linux platforms)
  • Feature flag: io-uring on datafusion-execution and datafusion, enabled by default

Architecture:

Tokio tasks                          io_uring thread
───────────                          ───────────────
                                     IoUring (256 entries)
  send(ReadRanges) ──► mpsc ──►     submit SQEs (batch)
                                     submit_and_wait()
  await oneshot    ◄── oneshot ◄──   collect CQEs → Bytes

To actually enable io_uring in benchmark environments, a companion PR adds a custom seccomp profile: adriangb/datafusion-benchmarking#4.

Are these changes tested?

6 unit tests covering put/get round-trip, single and multi-range reads, head, list, and empty-range edge cases. The io_uring code path requires a Linux host with io_uring support; on macOS CI the fallback path is exercised.

Are there any user-facing changes?

New optional crate and default feature flag. No behavioral changes when io_uring is unavailable — transparent fallback to LocalFileSystem.

Introduces `datafusion-object-store-iouring`, a new crate that provides
an `IoUringObjectStore` using Linux's io_uring interface for
high-performance local file reads. A dedicated thread runs an io_uring
event loop, and read requests (`get_opts`, `get_ranges`) are dispatched
via channels — enabling batched syscalls where multiple byte-range reads
(e.g., Parquet column chunks) are submitted in a single `io_uring_enter()`
call instead of individual `pread()` calls.

Key design:
- Dedicated io_uring worker thread with a 256-entry submission queue
- Unbounded mpsc channel for requests, oneshot channels for responses
- Range reads batched per-request; chunked if exceeding ring capacity
- Write/list/copy/delete operations delegated to LocalFileSystem
- On non-Linux platforms, all operations fall back to LocalFileSystem
- Feature flag `io-uring` on `datafusion-execution` to opt in

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
@github-actions github-actions bot added the execution Related to the execution crate label Apr 16, 2026
- Resolve merge conflicts with upstream (version 53.0.0, object_store 0.13.2)
- Update ObjectStore trait impl for 0.13.2 API changes:
  - copy/copy_if_not_exists → copy_opts(CopyOptions)
  - delete → delete_stream (required method)
  - PutMultipartOpts → PutMultipartOptions
  - Import ObjectStoreExt for head() convenience method
- Enable io-uring feature by default in datafusion-execution

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-c4259337795-1353-g2nzm 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 worktree-io-uring-object-store (0bf32dd) to 7bfa3fb (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-c4259337795-1354-6rzbf 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 worktree-io-uring-object-store (0bf32dd) to 7bfa3fb (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-c4259337795-1352-277vz 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 worktree-io-uring-object-store (0bf32dd) to 7bfa3fb (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 worktree-io-uring-object-store
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┓
┃ Query     ┃                                     HEAD ┃           worktree-io-uring-object-store ┃       Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━┩
│ QQuery 1  │              6.91 / 7.31 ±0.66 / 8.61 ms │              7.09 / 7.55 ±0.67 / 8.88 ms │    no change │
│ QQuery 2  │        148.64 / 149.45 ±0.94 / 150.60 ms │        147.71 / 148.21 ±0.52 / 149.20 ms │    no change │
│ QQuery 3  │        114.73 / 115.31 ±0.45 / 116.05 ms │        115.24 / 115.66 ±0.32 / 116.14 ms │    no change │
│ QQuery 4  │    1455.75 / 1489.62 ±25.84 / 1515.29 ms │    1432.48 / 1460.41 ±22.91 / 1486.05 ms │    no change │
│ QQuery 5  │        176.56 / 178.51 ±1.67 / 181.33 ms │        176.48 / 177.67 ±1.72 / 181.02 ms │    no change │
│ QQuery 6  │       881.65 / 911.35 ±24.26 / 950.71 ms │       852.20 / 894.81 ±31.25 / 947.28 ms │    no change │
│ QQuery 7  │        352.58 / 357.54 ±2.74 / 360.44 ms │        348.43 / 351.94 ±1.79 / 353.34 ms │    no change │
│ QQuery 8  │        116.96 / 119.44 ±1.37 / 121.12 ms │        118.97 / 120.06 ±0.90 / 121.53 ms │    no change │
│ QQuery 9  │        103.35 / 106.09 ±2.87 / 110.01 ms │        108.11 / 110.62 ±3.51 / 117.56 ms │    no change │
│ QQuery 10 │        109.22 / 111.63 ±1.90 / 114.41 ms │        108.74 / 109.26 ±0.72 / 110.66 ms │    no change │
│ QQuery 11 │    1065.95 / 1082.20 ±10.29 / 1094.07 ms │     1032.53 / 1043.31 ±7.81 / 1054.16 ms │    no change │
│ QQuery 12 │           47.36 / 48.92 ±2.00 / 52.89 ms │           45.75 / 46.66 ±0.86 / 48.08 ms │    no change │
│ QQuery 13 │        419.30 / 423.51 ±3.77 / 430.56 ms │        412.48 / 417.19 ±3.18 / 421.99 ms │    no change │
│ QQuery 14 │     1020.42 / 1028.25 ±6.51 / 1040.01 ms │     1014.22 / 1027.39 ±9.17 / 1038.89 ms │    no change │
│ QQuery 15 │           16.32 / 17.87 ±1.24 / 19.69 ms │           16.87 / 18.26 ±1.05 / 19.72 ms │    no change │
│ QQuery 16 │              7.92 / 8.36 ±0.37 / 9.03 ms │             7.54 / 8.42 ±1.26 / 10.92 ms │    no change │
│ QQuery 17 │        237.83 / 239.76 ±1.83 / 243.14 ms │        234.69 / 238.48 ±2.30 / 241.36 ms │    no change │
│ QQuery 18 │        132.53 / 133.01 ±0.54 / 133.73 ms │        131.57 / 132.39 ±0.98 / 134.29 ms │    no change │
│ QQuery 19 │        161.25 / 163.01 ±1.39 / 165.14 ms │        160.78 / 162.43 ±1.22 / 164.14 ms │    no change │
│ QQuery 20 │           14.27 / 14.98 ±0.61 / 15.89 ms │           14.73 / 15.21 ±0.32 / 15.67 ms │    no change │
│ QQuery 21 │           19.87 / 20.71 ±0.57 / 21.63 ms │           20.31 / 21.00 ±0.65 / 22.15 ms │    no change │
│ QQuery 22 │        491.31 / 498.61 ±4.92 / 505.56 ms │        497.29 / 501.97 ±4.28 / 509.11 ms │    no change │
│ QQuery 23 │        943.07 / 950.03 ±5.47 / 957.08 ms │        916.45 / 930.73 ±8.40 / 942.85 ms │    no change │
│ QQuery 24 │        395.57 / 399.26 ±2.21 / 402.11 ms │        393.77 / 399.62 ±3.85 / 405.18 ms │    no change │
│ QQuery 25 │        348.91 / 350.92 ±1.86 / 354.13 ms │        349.77 / 353.28 ±2.60 / 356.72 ms │    no change │
│ QQuery 26 │           83.63 / 85.32 ±1.86 / 88.91 ms │           81.74 / 83.54 ±1.08 / 84.61 ms │    no change │
│ QQuery 27 │              7.55 / 7.84 ±0.35 / 8.52 ms │              7.16 / 7.78 ±0.65 / 8.64 ms │    no change │
│ QQuery 28 │        152.21 / 153.12 ±0.85 / 154.20 ms │        151.77 / 153.05 ±0.78 / 153.96 ms │    no change │
│ QQuery 29 │        288.51 / 293.53 ±3.00 / 296.67 ms │        290.21 / 292.91 ±1.92 / 295.84 ms │    no change │
│ QQuery 30 │           43.67 / 44.81 ±0.80 / 45.74 ms │           43.49 / 46.10 ±1.52 / 47.84 ms │    no change │
│ QQuery 31 │        177.23 / 177.86 ±0.43 / 178.52 ms │        175.32 / 177.34 ±1.08 / 178.33 ms │    no change │
│ QQuery 32 │           58.83 / 59.89 ±0.85 / 61.43 ms │           58.31 / 58.97 ±0.71 / 59.94 ms │    no change │
│ QQuery 33 │        142.89 / 144.30 ±1.52 / 147.05 ms │        143.66 / 145.19 ±1.00 / 146.67 ms │    no change │
│ QQuery 34 │              7.18 / 7.83 ±0.65 / 9.06 ms │              7.48 / 7.65 ±0.20 / 8.01 ms │    no change │
│ QQuery 35 │        111.24 / 112.21 ±0.90 / 113.62 ms │        108.87 / 112.54 ±1.88 / 114.19 ms │    no change │
│ QQuery 36 │              6.72 / 6.92 ±0.15 / 7.10 ms │              6.86 / 7.22 ±0.49 / 8.17 ms │    no change │
│ QQuery 37 │              8.43 / 9.00 ±0.36 / 9.38 ms │             8.64 / 9.25 ±0.65 / 10.47 ms │    no change │
│ QQuery 38 │          86.40 / 91.75 ±4.79 / 100.65 ms │          88.30 / 92.73 ±6.60 / 105.74 ms │    no change │
│ QQuery 39 │        131.00 / 132.81 ±1.36 / 134.69 ms │        127.52 / 133.74 ±3.77 / 137.09 ms │    no change │
│ QQuery 40 │        113.58 / 119.82 ±6.26 / 131.79 ms │        111.66 / 120.01 ±8.53 / 135.54 ms │    no change │
│ QQuery 41 │           15.08 / 16.49 ±1.51 / 18.71 ms │           15.04 / 16.13 ±1.11 / 18.22 ms │    no change │
│ QQuery 42 │        108.30 / 110.44 ±1.71 / 112.59 ms │        109.08 / 112.20 ±1.63 / 113.77 ms │    no change │
│ QQuery 43 │              6.40 / 6.50 ±0.06 / 6.58 ms │              6.44 / 7.03 ±0.68 / 7.89 ms │ 1.08x slower │
│ QQuery 44 │           12.48 / 12.79 ±0.22 / 13.08 ms │           12.32 / 12.60 ±0.23 / 12.91 ms │    no change │
│ QQuery 45 │           52.61 / 53.26 ±0.75 / 54.74 ms │           52.56 / 53.52 ±0.88 / 55.19 ms │    no change │
│ QQuery 46 │             8.92 / 9.42 ±0.56 / 10.37 ms │              8.89 / 9.27 ±0.33 / 9.90 ms │    no change │
│ QQuery 47 │       806.71 / 818.86 ±10.77 / 833.20 ms │        783.78 / 796.33 ±7.95 / 807.42 ms │    no change │
│ QQuery 48 │        303.78 / 308.89 ±4.61 / 314.70 ms │        295.72 / 300.97 ±3.89 / 306.71 ms │    no change │
│ QQuery 49 │        259.54 / 261.08 ±1.30 / 263.35 ms │        258.31 / 260.19 ±2.24 / 264.04 ms │    no change │
│ QQuery 50 │        236.37 / 240.62 ±3.23 / 245.27 ms │        233.37 / 238.52 ±3.52 / 242.77 ms │    no change │
│ QQuery 51 │        185.86 / 188.10 ±2.47 / 192.42 ms │        183.45 / 187.58 ±3.15 / 191.76 ms │    no change │
│ QQuery 52 │        109.19 / 110.74 ±1.14 / 112.15 ms │        111.59 / 113.35 ±2.11 / 116.69 ms │    no change │
│ QQuery 53 │        104.79 / 106.95 ±1.51 / 109.05 ms │        106.14 / 107.96 ±1.10 / 108.99 ms │    no change │
│ QQuery 54 │        150.00 / 153.78 ±2.25 / 157.02 ms │        152.33 / 153.01 ±0.72 / 154.38 ms │    no change │
│ QQuery 55 │        109.19 / 110.95 ±1.44 / 113.33 ms │        110.65 / 112.35 ±1.60 / 115.10 ms │    no change │
│ QQuery 56 │        146.09 / 147.25 ±1.43 / 149.85 ms │        144.06 / 147.32 ±2.17 / 150.26 ms │    no change │
│ QQuery 57 │        180.04 / 183.19 ±1.85 / 185.76 ms │        180.58 / 183.18 ±1.51 / 185.13 ms │    no change │
│ QQuery 58 │        297.77 / 307.10 ±9.29 / 319.70 ms │        305.26 / 311.55 ±4.65 / 317.72 ms │    no change │
│ QQuery 59 │        207.33 / 210.41 ±1.70 / 212.55 ms │        208.87 / 211.45 ±2.54 / 215.87 ms │    no change │
│ QQuery 60 │        148.71 / 150.03 ±0.85 / 151.27 ms │        146.50 / 150.56 ±2.20 / 153.12 ms │    no change │
│ QQuery 61 │           13.71 / 14.01 ±0.21 / 14.25 ms │           14.01 / 14.11 ±0.10 / 14.28 ms │    no change │
│ QQuery 62 │      961.76 / 986.80 ±22.11 / 1015.32 ms │      930.98 / 977.49 ±27.28 / 1013.58 ms │    no change │
│ QQuery 63 │        108.72 / 110.05 ±2.14 / 114.32 ms │        105.41 / 108.31 ±1.50 / 109.77 ms │    no change │
│ QQuery 64 │        718.69 / 724.64 ±3.86 / 730.53 ms │        711.68 / 719.34 ±4.18 / 722.75 ms │    no change │
│ QQuery 65 │        276.22 / 281.05 ±4.95 / 290.36 ms │        271.05 / 274.05 ±1.90 / 275.60 ms │    no change │
│ QQuery 66 │        249.08 / 265.68 ±9.90 / 278.40 ms │       248.31 / 267.12 ±11.21 / 282.89 ms │    no change │
│ QQuery 67 │        331.30 / 339.10 ±6.65 / 350.13 ms │        329.70 / 339.71 ±5.35 / 345.46 ms │    no change │
│ QQuery 68 │            9.46 / 11.00 ±0.96 / 12.45 ms │            9.78 / 11.38 ±1.14 / 13.06 ms │    no change │
│ QQuery 69 │        107.14 / 109.50 ±2.01 / 112.88 ms │        105.64 / 107.92 ±2.11 / 111.24 ms │    no change │
│ QQuery 70 │       344.40 / 357.65 ±12.75 / 381.87 ms │       340.32 / 356.73 ±13.83 / 380.95 ms │    no change │
│ QQuery 71 │        139.99 / 144.38 ±2.68 / 147.02 ms │        138.10 / 139.03 ±0.83 / 140.14 ms │    no change │
│ QQuery 72 │       651.30 / 665.73 ±10.44 / 681.70 ms │        630.47 / 650.08 ±9.99 / 658.55 ms │    no change │
│ QQuery 73 │              7.47 / 8.16 ±0.45 / 8.71 ms │              8.03 / 8.74 ±0.40 / 9.24 ms │ 1.07x slower │
│ QQuery 74 │        678.87 / 688.56 ±6.58 / 698.64 ms │        656.49 / 663.54 ±5.15 / 669.85 ms │    no change │
│ QQuery 75 │        283.66 / 286.91 ±2.69 / 291.70 ms │        279.43 / 282.09 ±1.97 / 285.38 ms │    no change │
│ QQuery 76 │        136.99 / 137.96 ±0.90 / 139.22 ms │        137.07 / 138.45 ±1.68 / 141.69 ms │    no change │
│ QQuery 77 │        192.21 / 194.15 ±1.49 / 196.45 ms │        191.71 / 193.08 ±1.44 / 195.26 ms │    no change │
│ QQuery 78 │        359.27 / 363.38 ±2.87 / 366.92 ms │        348.91 / 354.94 ±4.05 / 361.48 ms │    no change │
│ QQuery 79 │        252.86 / 256.07 ±3.30 / 261.06 ms │        249.39 / 252.40 ±2.83 / 257.24 ms │    no change │
│ QQuery 80 │        327.24 / 330.12 ±3.02 / 335.60 ms │        325.45 / 327.14 ±1.48 / 329.67 ms │    no change │
│ QQuery 81 │           26.95 / 28.38 ±1.53 / 31.25 ms │           27.04 / 28.11 ±1.19 / 29.70 ms │    no change │
│ QQuery 82 │        204.26 / 206.43 ±2.13 / 209.97 ms │        203.54 / 206.51 ±2.75 / 211.73 ms │    no change │
│ QQuery 83 │           41.25 / 42.02 ±0.70 / 43.11 ms │           39.50 / 39.92 ±0.45 / 40.72 ms │    no change │
│ QQuery 84 │           49.64 / 50.82 ±0.87 / 51.67 ms │           49.76 / 50.29 ±0.50 / 51.17 ms │    no change │
│ QQuery 85 │        154.16 / 155.54 ±1.09 / 156.68 ms │        153.45 / 154.74 ±1.13 / 156.36 ms │    no change │
│ QQuery 86 │           40.18 / 40.95 ±0.66 / 41.87 ms │           41.17 / 42.08 ±0.74 / 43.29 ms │    no change │
│ QQuery 87 │           90.09 / 93.31 ±2.80 / 98.08 ms │           88.43 / 92.25 ±3.36 / 97.73 ms │    no change │
│ QQuery 88 │        104.06 / 104.87 ±0.73 / 105.79 ms │        102.81 / 103.59 ±0.69 / 104.62 ms │    no change │
│ QQuery 89 │        121.55 / 122.34 ±0.69 / 123.53 ms │        121.28 / 122.85 ±1.33 / 124.84 ms │    no change │
│ QQuery 90 │           24.20 / 25.45 ±0.95 / 27.01 ms │           24.37 / 24.97 ±0.80 / 26.55 ms │    no change │
│ QQuery 91 │           66.01 / 66.99 ±0.96 / 68.67 ms │           64.11 / 66.73 ±1.34 / 67.78 ms │    no change │
│ QQuery 92 │           58.73 / 61.23 ±1.43 / 62.45 ms │           59.66 / 60.24 ±0.66 / 61.33 ms │    no change │
│ QQuery 93 │        195.13 / 198.75 ±2.28 / 201.56 ms │        195.30 / 195.84 ±0.40 / 196.52 ms │    no change │
│ QQuery 94 │           63.37 / 63.90 ±0.42 / 64.48 ms │           63.08 / 63.79 ±0.71 / 65.10 ms │    no change │
│ QQuery 95 │        131.65 / 133.86 ±1.27 / 135.08 ms │        131.40 / 133.03 ±0.90 / 133.87 ms │    no change │
│ QQuery 96 │           75.48 / 76.63 ±0.84 / 77.76 ms │           71.35 / 75.22 ±2.06 / 76.76 ms │    no change │
│ QQuery 97 │        130.55 / 132.51 ±1.73 / 135.18 ms │        129.67 / 131.51 ±1.54 / 134.09 ms │    no change │
│ QQuery 98 │        155.25 / 159.18 ±2.43 / 161.85 ms │        157.74 / 161.11 ±2.33 / 164.42 ms │    no change │
│ QQuery 99 │ 10888.28 / 10938.14 ±32.39 / 10981.56 ms │ 10881.34 / 10920.80 ±25.00 / 10944.22 ms │    no change │
└───────────┴──────────────────────────────────────────┴──────────────────────────────────────────┴──────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                             ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                             │ 32855.78ms │
│ Total Time (worktree-io-uring-object-store)   │ 32604.87ms │
│ Average Time (HEAD)                           │   331.88ms │
│ Average Time (worktree-io-uring-object-store) │   329.34ms │
│ Queries Faster                                │          0 │
│ Queries Slower                                │          2 │
│ Queries with No Change                        │         97 │
│ Queries with Failure                          │          0 │
└───────────────────────────────────────────────┴────────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 164.6s
Peak memory 5.7 GiB
Avg memory 4.7 GiB
CPU user 273.4s
CPU sys 18.0s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 163.3s
Peak memory 5.5 GiB
Avg memory 4.6 GiB
CPU user 270.4s
CPU sys 17.9s
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 worktree-io-uring-object-store
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃        worktree-io-uring-object-store ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.24 / 4.54 ±6.46 / 17.45 ms │          1.19 / 4.49 ±6.44 / 17.36 ms │     no change │
│ QQuery 1  │        15.33 / 15.62 ±0.15 / 15.75 ms │        15.09 / 15.55 ±0.32 / 16.10 ms │     no change │
│ QQuery 2  │        44.99 / 45.31 ±0.23 / 45.70 ms │        44.71 / 44.93 ±0.25 / 45.40 ms │     no change │
│ QQuery 3  │        39.83 / 40.90 ±1.36 / 43.54 ms │        39.82 / 40.93 ±0.62 / 41.62 ms │     no change │
│ QQuery 4  │     290.75 / 294.95 ±3.71 / 301.88 ms │     292.10 / 297.03 ±4.15 / 304.01 ms │     no change │
│ QQuery 5  │     346.28 / 349.29 ±2.95 / 354.20 ms │     341.95 / 351.12 ±7.02 / 360.18 ms │     no change │
│ QQuery 6  │           5.06 / 7.07 ±1.38 / 9.36 ms │           5.17 / 6.53 ±1.42 / 9.26 ms │ +1.08x faster │
│ QQuery 7  │        17.89 / 18.14 ±0.23 / 18.48 ms │        17.59 / 17.79 ±0.12 / 17.93 ms │     no change │
│ QQuery 8  │     413.63 / 422.79 ±5.71 / 430.70 ms │     413.00 / 430.06 ±8.64 / 436.07 ms │     no change │
│ QQuery 9  │    679.17 / 692.82 ±11.89 / 711.63 ms │     650.32 / 662.51 ±7.28 / 672.45 ms │     no change │
│ QQuery 10 │       95.46 / 99.41 ±4.86 / 108.58 ms │       94.84 / 99.32 ±3.10 / 104.53 ms │     no change │
│ QQuery 11 │     110.59 / 112.32 ±1.00 / 113.51 ms │     108.42 / 110.11 ±1.15 / 111.64 ms │     no change │
│ QQuery 12 │     349.35 / 355.92 ±3.54 / 359.44 ms │     341.30 / 348.22 ±3.67 / 351.97 ms │     no change │
│ QQuery 13 │    467.63 / 477.01 ±10.17 / 494.39 ms │     461.98 / 473.19 ±9.32 / 483.94 ms │     no change │
│ QQuery 14 │     361.04 / 366.48 ±3.23 / 370.40 ms │     347.62 / 351.68 ±3.95 / 358.16 ms │     no change │
│ QQuery 15 │    367.65 / 385.56 ±15.31 / 406.78 ms │    352.20 / 373.19 ±13.88 / 390.42 ms │     no change │
│ QQuery 16 │     734.54 / 741.42 ±7.63 / 754.09 ms │     723.68 / 731.32 ±4.66 / 737.12 ms │     no change │
│ QQuery 17 │     728.52 / 740.80 ±7.47 / 749.94 ms │     714.10 / 720.69 ±5.95 / 731.06 ms │     no change │
│ QQuery 18 │ 1469.22 / 1493.30 ±17.11 / 1516.36 ms │ 1476.34 / 1491.61 ±19.05 / 1529.14 ms │     no change │
│ QQuery 19 │       37.74 / 45.17 ±12.59 / 70.21 ms │       39.26 / 48.49 ±17.09 / 82.66 ms │  1.07x slower │
│ QQuery 20 │    724.68 / 745.27 ±16.99 / 771.78 ms │    716.46 / 734.35 ±18.40 / 757.27 ms │     no change │
│ QQuery 21 │     767.80 / 775.97 ±8.22 / 789.71 ms │    763.85 / 784.28 ±22.63 / 827.45 ms │     no change │
│ QQuery 22 │ 1140.49 / 1152.81 ±10.86 / 1166.59 ms │  1131.07 / 1135.08 ±2.81 / 1139.18 ms │     no change │
│ QQuery 23 │ 3121.24 / 3153.06 ±30.63 / 3207.13 ms │ 3113.15 / 3132.45 ±16.38 / 3161.26 ms │     no change │
│ QQuery 24 │     102.21 / 104.68 ±3.01 / 110.48 ms │      99.43 / 107.39 ±5.99 / 114.67 ms │     no change │
│ QQuery 25 │     140.02 / 142.33 ±2.11 / 145.59 ms │     141.58 / 143.50 ±1.31 / 145.31 ms │     no change │
│ QQuery 26 │     101.92 / 104.10 ±1.85 / 107.40 ms │      98.56 / 101.80 ±2.45 / 104.53 ms │     no change │
│ QQuery 27 │     852.81 / 859.98 ±7.55 / 874.23 ms │    850.12 / 862.61 ±11.36 / 877.32 ms │     no change │
│ QQuery 28 │ 3244.04 / 3271.69 ±17.80 / 3291.78 ms │ 3231.96 / 3268.81 ±21.66 / 3291.95 ms │     no change │
│ QQuery 29 │        50.92 / 57.19 ±6.23 / 68.95 ms │        50.56 / 55.04 ±5.02 / 63.91 ms │     no change │
│ QQuery 30 │     370.72 / 378.83 ±7.16 / 390.72 ms │     367.90 / 374.82 ±5.94 / 384.85 ms │     no change │
│ QQuery 31 │    362.65 / 380.25 ±11.15 / 397.76 ms │     377.60 / 395.70 ±9.42 / 403.10 ms │     no change │
│ QQuery 32 │ 1041.10 / 1065.12 ±19.15 / 1096.14 ms │ 1213.93 / 1250.69 ±35.84 / 1309.99 ms │  1.17x slower │
│ QQuery 33 │ 1459.29 / 1480.44 ±11.42 / 1492.81 ms │ 1485.09 / 1552.30 ±44.90 / 1603.99 ms │     no change │
│ QQuery 34 │ 1526.29 / 1539.82 ±13.72 / 1559.55 ms │ 1526.12 / 1617.63 ±88.30 / 1777.08 ms │  1.05x slower │
│ QQuery 35 │    393.98 / 406.61 ±10.74 / 425.43 ms │     384.56 / 399.57 ±9.81 / 413.58 ms │     no change │
│ QQuery 36 │     113.94 / 122.30 ±4.32 / 126.39 ms │     117.56 / 122.10 ±3.43 / 126.85 ms │     no change │
│ QQuery 37 │        48.79 / 49.74 ±0.88 / 51.24 ms │        49.44 / 52.41 ±1.55 / 53.58 ms │  1.05x slower │
│ QQuery 38 │        76.04 / 77.75 ±1.16 / 78.98 ms │        76.59 / 79.62 ±1.90 / 82.57 ms │     no change │
│ QQuery 39 │     209.77 / 221.85 ±6.25 / 227.60 ms │     214.23 / 221.81 ±8.58 / 237.65 ms │     no change │
│ QQuery 40 │        24.63 / 26.77 ±1.47 / 28.55 ms │        24.70 / 26.68 ±1.31 / 28.49 ms │     no change │
│ QQuery 41 │        19.97 / 21.24 ±0.71 / 22.05 ms │        20.58 / 22.07 ±1.47 / 24.85 ms │     no change │
│ QQuery 42 │        19.94 / 21.31 ±1.20 / 23.49 ms │        19.52 / 20.57 ±0.62 / 21.42 ms │     no change │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                             ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                             │ 22867.95ms │
│ Total Time (worktree-io-uring-object-store)   │ 23080.06ms │
│ Average Time (HEAD)                           │   531.81ms │
│ Average Time (worktree-io-uring-object-store) │   536.75ms │
│ Queries Faster                                │          1 │
│ Queries Slower                                │          4 │
│ Queries with No Change                        │         38 │
│ Queries with Failure                          │          0 │
└───────────────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 115.3s
Peak memory 37.5 GiB
Avg memory 26.6 GiB
CPU user 1090.8s
CPU sys 87.4s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 116.3s
Peak memory 34.1 GiB
Avg memory 26.0 GiB
CPU user 1082.9s
CPU sys 100.6s
Peak spill 0 B

File an issue against this benchmark runner

- Fix missing `StreamExt` import for `.boxed()` on Linux code path
- Fix `GetResult.range` type: `Range<u64>` in object_store 0.13.2
- Add `io-uring` feature to datafusion core, forwarding to execution
- Add to core's default features so benchmarks get it automatically

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
@github-actions github-actions bot added the core Core DataFusion crate label Apr 16, 2026
CI runners and Docker containers often block io_uring_setup via
seccomp filters (EPERM). Instead of failing hard, probe availability
at construction time and gracefully fall back to LocalFileSystem
for all read operations when io_uring cannot be initialized.

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-c4260127134-1366-226ds 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 worktree-io-uring-object-store (87539f6) to 7bfa3fb (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-c4260127134-1365-xbxvj 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 worktree-io-uring-object-store (87539f6) to 7bfa3fb (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-c4260127134-1364-5gzvs 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 worktree-io-uring-object-store (87539f6) to 7bfa3fb (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 worktree-io-uring-object-store
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                     HEAD ┃           worktree-io-uring-object-store ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │              6.76 / 7.18 ±0.72 / 8.61 ms │              6.67 / 7.12 ±0.70 / 8.51 ms │     no change │
│ QQuery 2  │        144.65 / 146.10 ±1.01 / 147.70 ms │        146.89 / 148.13 ±0.63 / 148.66 ms │     no change │
│ QQuery 3  │        113.26 / 114.31 ±0.80 / 115.41 ms │        113.97 / 114.76 ±0.77 / 116.17 ms │     no change │
│ QQuery 4  │    1316.03 / 1344.16 ±18.57 / 1359.75 ms │    1296.60 / 1329.65 ±18.68 / 1349.14 ms │     no change │
│ QQuery 5  │        173.71 / 175.79 ±2.34 / 179.74 ms │        173.77 / 174.54 ±0.73 / 175.53 ms │     no change │
│ QQuery 6  │       825.35 / 867.65 ±21.82 / 888.25 ms │       802.40 / 833.75 ±23.05 / 871.14 ms │     no change │
│ QQuery 7  │        345.00 / 346.28 ±2.08 / 350.38 ms │        341.20 / 346.29 ±4.04 / 352.67 ms │     no change │
│ QQuery 8  │        114.09 / 117.70 ±1.84 / 118.97 ms │        116.17 / 117.57 ±1.12 / 119.57 ms │     no change │
│ QQuery 9  │        101.28 / 110.39 ±9.49 / 128.77 ms │        101.39 / 105.38 ±2.91 / 108.78 ms │     no change │
│ QQuery 10 │        106.89 / 107.98 ±0.65 / 108.78 ms │        107.12 / 108.70 ±0.99 / 109.86 ms │     no change │
│ QQuery 11 │       903.33 / 918.24 ±10.12 / 932.52 ms │        896.44 / 905.51 ±6.45 / 916.15 ms │     no change │
│ QQuery 12 │           45.86 / 47.26 ±0.79 / 48.22 ms │           44.65 / 46.72 ±1.33 / 48.08 ms │     no change │
│ QQuery 13 │        399.06 / 401.01 ±1.44 / 402.90 ms │        398.25 / 403.08 ±3.23 / 407.83 ms │     no change │
│ QQuery 14 │     1007.67 / 1013.22 ±4.66 / 1020.97 ms │     1001.39 / 1011.09 ±9.61 / 1025.15 ms │     no change │
│ QQuery 15 │           15.45 / 16.30 ±0.87 / 17.97 ms │           15.46 / 16.49 ±1.54 / 19.53 ms │     no change │
│ QQuery 16 │              7.17 / 7.54 ±0.48 / 8.42 ms │              7.28 / 8.30 ±0.98 / 9.79 ms │  1.10x slower │
│ QQuery 17 │        230.66 / 232.40 ±1.05 / 233.52 ms │        227.80 / 230.27 ±2.08 / 234.06 ms │     no change │
│ QQuery 18 │        128.37 / 129.60 ±1.06 / 131.22 ms │        128.32 / 129.54 ±1.40 / 132.23 ms │     no change │
│ QQuery 19 │        153.56 / 155.13 ±1.30 / 156.64 ms │        156.04 / 156.83 ±0.77 / 158.26 ms │     no change │
│ QQuery 20 │           13.45 / 13.90 ±0.37 / 14.45 ms │           13.72 / 14.14 ±0.36 / 14.63 ms │     no change │
│ QQuery 21 │           19.38 / 20.08 ±0.56 / 20.73 ms │           19.47 / 20.07 ±0.66 / 21.33 ms │     no change │
│ QQuery 22 │        482.14 / 487.32 ±2.94 / 491.09 ms │        489.13 / 493.34 ±4.00 / 498.41 ms │     no change │
│ QQuery 23 │        866.45 / 875.57 ±6.38 / 883.98 ms │       865.53 / 882.66 ±14.83 / 909.03 ms │     no change │
│ QQuery 24 │        381.29 / 384.17 ±2.74 / 388.91 ms │        387.34 / 390.45 ±1.61 / 391.86 ms │     no change │
│ QQuery 25 │        342.80 / 344.58 ±1.40 / 346.56 ms │        346.11 / 346.65 ±0.69 / 348.00 ms │     no change │
│ QQuery 26 │           80.68 / 82.92 ±1.47 / 85.26 ms │           81.88 / 83.90 ±1.20 / 85.10 ms │     no change │
│ QQuery 27 │              6.92 / 7.27 ±0.21 / 7.46 ms │              7.21 / 7.55 ±0.47 / 8.44 ms │     no change │
│ QQuery 28 │        148.39 / 149.12 ±0.39 / 149.46 ms │        150.02 / 151.88 ±1.38 / 153.78 ms │     no change │
│ QQuery 29 │        282.79 / 284.22 ±1.39 / 286.74 ms │        281.21 / 284.78 ±2.34 / 288.35 ms │     no change │
│ QQuery 30 │           42.60 / 45.24 ±1.80 / 47.26 ms │           44.24 / 45.47 ±0.97 / 46.86 ms │     no change │
│ QQuery 31 │        168.13 / 172.29 ±3.39 / 178.36 ms │        172.95 / 174.80 ±1.62 / 177.36 ms │     no change │
│ QQuery 32 │           56.77 / 58.31 ±1.13 / 60.11 ms │           57.56 / 58.91 ±1.51 / 61.82 ms │     no change │
│ QQuery 33 │        140.50 / 142.37 ±1.23 / 143.64 ms │        142.47 / 143.49 ±0.92 / 144.93 ms │     no change │
│ QQuery 34 │              6.97 / 7.25 ±0.38 / 8.01 ms │              7.10 / 7.38 ±0.28 / 7.82 ms │     no change │
│ QQuery 35 │        105.62 / 108.81 ±1.61 / 109.89 ms │        107.27 / 109.38 ±1.18 / 110.59 ms │     no change │
│ QQuery 36 │              6.52 / 6.89 ±0.22 / 7.20 ms │              6.81 / 7.01 ±0.16 / 7.30 ms │     no change │
│ QQuery 37 │             8.17 / 9.29 ±0.86 / 10.67 ms │              8.47 / 8.85 ±0.24 / 9.14 ms │     no change │
│ QQuery 38 │           82.98 / 86.54 ±3.83 / 93.47 ms │           85.82 / 89.74 ±3.88 / 97.06 ms │     no change │
│ QQuery 39 │        124.73 / 128.21 ±2.37 / 131.53 ms │        123.40 / 129.18 ±3.61 / 134.77 ms │     no change │
│ QQuery 40 │        111.70 / 116.59 ±6.47 / 129.17 ms │        108.93 / 115.47 ±7.92 / 131.06 ms │     no change │
│ QQuery 41 │           14.44 / 16.20 ±1.33 / 17.77 ms │           15.09 / 15.86 ±0.80 / 17.29 ms │     no change │
│ QQuery 42 │        107.16 / 108.96 ±1.61 / 111.27 ms │        109.04 / 110.27 ±1.12 / 112.14 ms │     no change │
│ QQuery 43 │              6.01 / 6.11 ±0.12 / 6.35 ms │              6.15 / 6.26 ±0.13 / 6.51 ms │     no change │
│ QQuery 44 │           11.64 / 12.11 ±0.45 / 12.88 ms │           11.56 / 12.00 ±0.33 / 12.49 ms │     no change │
│ QQuery 45 │           51.17 / 51.99 ±1.05 / 53.99 ms │           50.65 / 52.53 ±1.38 / 54.02 ms │     no change │
│ QQuery 46 │              8.48 / 8.70 ±0.18 / 8.99 ms │              8.69 / 9.08 ±0.30 / 9.54 ms │     no change │
│ QQuery 47 │       705.72 / 720.13 ±13.53 / 743.63 ms │        734.46 / 741.62 ±8.98 / 758.37 ms │     no change │
│ QQuery 48 │        291.61 / 294.39 ±1.79 / 296.88 ms │        293.57 / 295.17 ±1.38 / 297.67 ms │     no change │
│ QQuery 49 │        253.53 / 255.96 ±2.18 / 259.35 ms │        253.80 / 255.12 ±0.74 / 255.69 ms │     no change │
│ QQuery 50 │        222.46 / 226.63 ±3.10 / 230.42 ms │        216.31 / 223.70 ±5.45 / 230.56 ms │     no change │
│ QQuery 51 │        178.61 / 182.65 ±2.22 / 185.24 ms │        182.10 / 184.08 ±1.58 / 185.96 ms │     no change │
│ QQuery 52 │        107.57 / 108.62 ±1.19 / 110.79 ms │        107.98 / 109.58 ±1.52 / 111.58 ms │     no change │
│ QQuery 53 │        102.80 / 103.72 ±0.82 / 105.24 ms │        102.78 / 103.57 ±0.80 / 105.01 ms │     no change │
│ QQuery 54 │        146.95 / 148.07 ±0.61 / 148.68 ms │        146.50 / 147.56 ±0.99 / 149.21 ms │     no change │
│ QQuery 55 │        107.02 / 108.34 ±0.83 / 109.65 ms │        107.12 / 108.72 ±1.09 / 110.12 ms │     no change │
│ QQuery 56 │        140.98 / 141.44 ±0.31 / 141.77 ms │        140.71 / 143.27 ±2.89 / 148.58 ms │     no change │
│ QQuery 57 │        175.07 / 176.52 ±1.06 / 177.73 ms │        175.40 / 176.55 ±0.78 / 177.49 ms │     no change │
│ QQuery 58 │        297.46 / 302.16 ±3.81 / 307.38 ms │        292.43 / 298.90 ±5.78 / 307.48 ms │     no change │
│ QQuery 59 │        197.24 / 199.86 ±2.08 / 203.24 ms │        201.36 / 202.98 ±1.44 / 204.96 ms │     no change │
│ QQuery 60 │        146.23 / 146.65 ±0.51 / 147.57 ms │        143.49 / 145.80 ±1.26 / 147.17 ms │     no change │
│ QQuery 61 │           13.06 / 13.31 ±0.24 / 13.77 ms │           13.20 / 13.46 ±0.20 / 13.75 ms │     no change │
│ QQuery 62 │       907.56 / 934.75 ±24.63 / 973.32 ms │       895.13 / 930.66 ±34.51 / 987.66 ms │     no change │
│ QQuery 63 │        104.97 / 106.79 ±1.04 / 107.67 ms │        105.20 / 107.11 ±1.62 / 109.27 ms │     no change │
│ QQuery 64 │        683.42 / 691.19 ±5.03 / 697.56 ms │        676.58 / 688.40 ±8.45 / 701.68 ms │     no change │
│ QQuery 65 │        247.96 / 252.25 ±4.22 / 260.15 ms │        249.69 / 253.35 ±2.37 / 256.52 ms │     no change │
│ QQuery 66 │        241.39 / 251.48 ±6.17 / 258.81 ms │        242.05 / 254.97 ±8.10 / 267.01 ms │     no change │
│ QQuery 67 │        311.10 / 322.67 ±6.78 / 330.90 ms │        301.36 / 313.25 ±7.76 / 323.68 ms │     no change │
│ QQuery 68 │            9.48 / 10.41 ±0.58 / 11.12 ms │             8.50 / 9.79 ±1.13 / 11.77 ms │ +1.06x faster │
│ QQuery 69 │        102.27 / 104.00 ±1.18 / 105.65 ms │        102.93 / 104.57 ±1.34 / 106.25 ms │     no change │
│ QQuery 70 │       334.56 / 351.18 ±21.35 / 392.64 ms │       338.38 / 352.79 ±14.70 / 380.76 ms │     no change │
│ QQuery 71 │        134.87 / 137.32 ±2.43 / 141.62 ms │        134.50 / 136.77 ±1.25 / 138.36 ms │     no change │
│ QQuery 72 │       608.99 / 626.20 ±11.05 / 643.67 ms │        616.38 / 622.92 ±7.67 / 636.53 ms │     no change │
│ QQuery 73 │             7.16 / 8.33 ±1.30 / 10.78 ms │             7.08 / 8.39 ±1.41 / 10.53 ms │     no change │
│ QQuery 74 │       565.24 / 583.91 ±12.89 / 598.28 ms │        561.51 / 567.27 ±3.82 / 572.91 ms │     no change │
│ QQuery 75 │        277.52 / 279.70 ±1.61 / 282.26 ms │        275.28 / 279.00 ±2.29 / 281.59 ms │     no change │
│ QQuery 76 │        132.35 / 135.22 ±1.62 / 137.06 ms │        133.55 / 133.96 ±0.28 / 134.32 ms │     no change │
│ QQuery 77 │        189.03 / 190.72 ±1.19 / 192.49 ms │        188.13 / 189.94 ±1.78 / 192.51 ms │     no change │
│ QQuery 78 │        338.57 / 342.70 ±4.11 / 350.05 ms │        336.03 / 343.14 ±4.64 / 350.40 ms │     no change │
│ QQuery 79 │        233.46 / 237.02 ±3.49 / 243.41 ms │        229.89 / 233.94 ±3.21 / 237.76 ms │     no change │
│ QQuery 80 │        323.12 / 327.05 ±2.38 / 330.09 ms │        322.35 / 324.47 ±2.28 / 328.71 ms │     no change │
│ QQuery 81 │           26.85 / 27.72 ±0.57 / 28.58 ms │           26.63 / 27.61 ±0.97 / 29.21 ms │     no change │
│ QQuery 82 │        198.53 / 199.90 ±1.40 / 202.04 ms │        195.80 / 199.73 ±3.04 / 204.15 ms │     no change │
│ QQuery 83 │           38.30 / 39.65 ±1.25 / 41.87 ms │           38.80 / 39.65 ±0.85 / 41.27 ms │     no change │
│ QQuery 84 │           48.75 / 49.93 ±1.42 / 52.71 ms │           48.19 / 49.13 ±0.91 / 50.60 ms │     no change │
│ QQuery 85 │        148.86 / 151.67 ±2.55 / 156.13 ms │        148.45 / 151.59 ±1.82 / 153.77 ms │     no change │
│ QQuery 86 │           38.15 / 40.31 ±1.41 / 41.81 ms │           39.36 / 40.11 ±0.44 / 40.65 ms │     no change │
│ QQuery 87 │           85.70 / 88.67 ±2.58 / 93.28 ms │           83.38 / 87.31 ±4.30 / 95.58 ms │     no change │
│ QQuery 88 │        100.38 / 101.15 ±0.75 / 102.33 ms │        100.32 / 100.74 ±0.53 / 101.76 ms │     no change │
│ QQuery 89 │        117.05 / 120.71 ±1.92 / 122.38 ms │        119.68 / 120.85 ±0.78 / 122.12 ms │     no change │
│ QQuery 90 │           23.30 / 23.97 ±0.39 / 24.41 ms │           23.32 / 23.88 ±0.45 / 24.42 ms │     no change │
│ QQuery 91 │           63.61 / 64.51 ±0.75 / 65.52 ms │           63.34 / 64.62 ±0.73 / 65.60 ms │     no change │
│ QQuery 92 │           57.00 / 58.02 ±0.64 / 58.81 ms │           56.81 / 57.81 ±0.56 / 58.47 ms │     no change │
│ QQuery 93 │        184.01 / 188.22 ±2.40 / 190.60 ms │        185.01 / 187.90 ±1.55 / 189.17 ms │     no change │
│ QQuery 94 │           60.73 / 61.26 ±0.38 / 61.86 ms │           60.10 / 62.16 ±2.12 / 66.18 ms │     no change │
│ QQuery 95 │        127.57 / 129.02 ±0.96 / 130.29 ms │        127.76 / 128.43 ±0.61 / 129.49 ms │     no change │
│ QQuery 96 │           72.97 / 74.11 ±0.78 / 75.43 ms │           70.31 / 72.70 ±1.89 / 74.98 ms │     no change │
│ QQuery 97 │        125.37 / 128.43 ±2.58 / 132.44 ms │        122.76 / 126.40 ±2.10 / 128.61 ms │     no change │
│ QQuery 98 │        152.63 / 156.23 ±2.63 / 159.89 ms │        152.74 / 155.51 ±2.13 / 157.81 ms │     no change │
│ QQuery 99 │ 10790.78 / 10815.29 ±27.17 / 10867.50 ms │ 10717.67 / 10755.77 ±22.69 / 10786.04 ms │     no change │
└───────────┴──────────────────────────────────────────┴──────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                             ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                             │ 31533.39ms │
│ Total Time (worktree-io-uring-object-store)   │ 31421.43ms │
│ Average Time (HEAD)                           │   318.52ms │
│ Average Time (worktree-io-uring-object-store) │   317.39ms │
│ Queries Faster                                │          1 │
│ Queries Slower                                │          1 │
│ Queries with No Change                        │         97 │
│ Queries with Failure                          │          0 │
└───────────────────────────────────────────────┴────────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 158.0s
Peak memory 5.2 GiB
Avg memory 4.5 GiB
CPU user 260.5s
CPU sys 17.4s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 157.4s
Peak memory 5.5 GiB
Avg memory 4.6 GiB
CPU user 260.5s
CPU sys 16.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 worktree-io-uring-object-store
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃        worktree-io-uring-object-store ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.24 / 4.60 ±6.55 / 17.69 ms │          1.22 / 4.53 ±6.46 / 17.45 ms │     no change │
│ QQuery 1  │        15.02 / 15.41 ±0.20 / 15.58 ms │        14.56 / 14.96 ±0.33 / 15.56 ms │     no change │
│ QQuery 2  │        45.66 / 46.12 ±0.55 / 47.18 ms │        44.85 / 45.11 ±0.20 / 45.37 ms │     no change │
│ QQuery 3  │        40.62 / 41.44 ±0.99 / 43.38 ms │        40.86 / 41.18 ±0.34 / 41.80 ms │     no change │
│ QQuery 4  │     288.31 / 293.25 ±3.49 / 299.09 ms │     293.13 / 296.88 ±2.67 / 300.90 ms │     no change │
│ QQuery 5  │     343.01 / 353.71 ±5.92 / 359.18 ms │     345.68 / 355.65 ±5.98 / 364.00 ms │     no change │
│ QQuery 6  │           6.11 / 6.30 ±0.18 / 6.63 ms │           5.18 / 6.79 ±1.33 / 9.07 ms │  1.08x slower │
│ QQuery 7  │        17.80 / 18.10 ±0.24 / 18.31 ms │        17.12 / 18.20 ±0.95 / 19.61 ms │     no change │
│ QQuery 8  │    421.00 / 434.71 ±17.40 / 468.82 ms │     417.91 / 428.99 ±9.16 / 444.16 ms │     no change │
│ QQuery 9  │    675.29 / 689.04 ±12.36 / 711.49 ms │     675.61 / 690.22 ±8.13 / 699.56 ms │     no change │
│ QQuery 10 │       95.96 / 98.26 ±2.49 / 103.01 ms │       94.16 / 97.54 ±3.04 / 102.70 ms │     no change │
│ QQuery 11 │     110.40 / 111.88 ±0.85 / 112.88 ms │     107.59 / 108.67 ±0.76 / 109.71 ms │     no change │
│ QQuery 12 │     346.67 / 351.74 ±3.44 / 356.38 ms │     352.68 / 362.60 ±6.27 / 371.02 ms │     no change │
│ QQuery 13 │     472.31 / 484.26 ±9.48 / 501.30 ms │     471.94 / 486.20 ±8.61 / 493.40 ms │     no change │
│ QQuery 14 │     348.67 / 356.89 ±4.40 / 361.62 ms │     350.16 / 355.16 ±3.84 / 358.91 ms │     no change │
│ QQuery 15 │     360.53 / 367.60 ±5.69 / 374.94 ms │    351.54 / 371.86 ±12.29 / 388.00 ms │     no change │
│ QQuery 16 │     731.87 / 737.94 ±4.31 / 742.84 ms │     727.75 / 735.55 ±6.34 / 743.49 ms │     no change │
│ QQuery 17 │     714.80 / 730.24 ±8.65 / 737.85 ms │     729.40 / 735.99 ±3.76 / 740.82 ms │     no change │
│ QQuery 18 │ 1453.58 / 1498.85 ±37.37 / 1547.52 ms │ 1466.46 / 1522.15 ±43.87 / 1596.54 ms │     no change │
│ QQuery 19 │       36.61 / 44.86 ±13.46 / 71.69 ms │       37.21 / 52.05 ±19.78 / 89.33 ms │  1.16x slower │
│ QQuery 20 │    723.34 / 746.77 ±25.20 / 786.09 ms │    728.61 / 747.53 ±20.82 / 788.04 ms │     no change │
│ QQuery 21 │     765.57 / 772.61 ±7.02 / 785.05 ms │     771.42 / 778.43 ±5.40 / 784.66 ms │     no change │
│ QQuery 22 │  1141.56 / 1147.92 ±5.66 / 1156.94 ms │  1147.58 / 1152.69 ±2.69 / 1154.94 ms │     no change │
│ QQuery 23 │ 3138.55 / 3163.20 ±23.22 / 3205.42 ms │ 3170.24 / 3185.71 ±10.56 / 3201.24 ms │     no change │
│ QQuery 24 │     101.23 / 105.59 ±2.34 / 108.34 ms │     104.34 / 108.45 ±3.74 / 114.71 ms │     no change │
│ QQuery 25 │     141.74 / 143.18 ±0.81 / 144.01 ms │     141.12 / 144.48 ±3.60 / 150.98 ms │     no change │
│ QQuery 26 │     106.40 / 107.47 ±0.58 / 108.00 ms │     103.79 / 105.59 ±1.92 / 109.24 ms │     no change │
│ QQuery 27 │     856.65 / 861.23 ±3.28 / 866.40 ms │     859.37 / 862.40 ±2.02 / 864.62 ms │     no change │
│ QQuery 28 │ 3269.62 / 3302.54 ±27.66 / 3340.17 ms │ 3284.73 / 3303.13 ±12.33 / 3319.04 ms │     no change │
│ QQuery 29 │        50.59 / 54.67 ±5.03 / 63.99 ms │        50.96 / 56.96 ±7.06 / 68.56 ms │     no change │
│ QQuery 30 │     379.65 / 386.59 ±5.94 / 394.66 ms │     364.73 / 377.79 ±7.86 / 389.34 ms │     no change │
│ QQuery 31 │    387.37 / 403.94 ±13.49 / 424.81 ms │    381.82 / 397.66 ±12.33 / 418.20 ms │     no change │
│ QQuery 32 │ 1230.97 / 1266.40 ±41.09 / 1345.56 ms │ 1075.43 / 1095.06 ±29.76 / 1154.20 ms │ +1.16x faster │
│ QQuery 33 │ 1547.42 / 1638.72 ±49.25 / 1681.33 ms │  1512.54 / 1523.88 ±9.07 / 1537.78 ms │ +1.08x faster │
│ QQuery 34 │ 1585.50 / 1679.02 ±64.18 / 1779.76 ms │ 1532.35 / 1563.64 ±24.44 / 1594.58 ms │ +1.07x faster │
│ QQuery 35 │    402.13 / 434.34 ±30.36 / 488.62 ms │     406.18 / 413.51 ±6.88 / 424.75 ms │     no change │
│ QQuery 36 │     121.89 / 124.72 ±2.46 / 128.16 ms │     113.16 / 121.89 ±4.72 / 127.32 ms │     no change │
│ QQuery 37 │        50.04 / 51.23 ±1.07 / 52.66 ms │        47.92 / 49.53 ±1.09 / 51.25 ms │     no change │
│ QQuery 38 │        77.66 / 78.76 ±1.03 / 80.32 ms │        75.31 / 77.30 ±1.42 / 79.28 ms │     no change │
│ QQuery 39 │     217.26 / 226.06 ±5.38 / 234.05 ms │     204.26 / 216.86 ±8.35 / 228.27 ms │     no change │
│ QQuery 40 │        25.39 / 27.67 ±2.61 / 32.60 ms │        23.16 / 27.63 ±2.64 / 30.78 ms │     no change │
│ QQuery 41 │        21.20 / 22.45 ±1.11 / 24.49 ms │        20.67 / 21.92 ±1.41 / 24.41 ms │     no change │
│ QQuery 42 │        19.92 / 20.32 ±0.39 / 20.98 ms │        19.84 / 20.42 ±0.39 / 20.80 ms │     no change │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                             ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                             │ 23450.60ms │
│ Total Time (worktree-io-uring-object-store)   │ 23082.76ms │
│ Average Time (HEAD)                           │   545.36ms │
│ Average Time (worktree-io-uring-object-store) │   536.81ms │
│ Queries Faster                                │          3 │
│ Queries Slower                                │          2 │
│ Queries with No Change                        │         38 │
│ Queries with Failure                          │          0 │
└───────────────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 117.8s
Peak memory 32.2 GiB
Avg memory 24.9 GiB
CPU user 1096.5s
CPU sys 106.4s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 116.4s
Peak memory 37.3 GiB
Avg memory 27.2 GiB
CPU user 1100.1s
CPU sys 87.3s
Peak spill 0 B

File an issue against this benchmark runner

- Remove unnecessary `as u64` cast (meta.size is already u64 in 0.13.2)
- Allow clippy::result_large_err on execute_read_ranges (object_store::Error
  is large by design)
- Fix broken rustdoc links to LocalFileSystem (cfg-gated away when
  io-uring feature is enabled)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Dandandan added a commit to Dandandan/datafusion-benchmarking that referenced this pull request Apr 16, 2026
DataFusion now includes io_uring-based local file I/O
(apache/datafusion#21673), but the default container seccomp profile
blocks io_uring_setup.

Adds an init container that writes a seccomp profile (default allowlist
+ io_uring_setup/enter/register) to the node's kubelet seccomp dir.
The runner container then references it via Localhost seccomp type.

No DaemonSet or cluster-wide changes needed — it's self-contained
in each benchmark Job.
Dandandan added a commit to Dandandan/datafusion-benchmarking that referenced this pull request Apr 16, 2026
DataFusion now includes io_uring-based local file I/O
(apache/datafusion#21673), but the default container seccomp profile
blocks io_uring_setup.

Adds a checked-in seccomp profile (services/seccomp/io-uring-allowed.json)
that's the standard containerd default allowlist plus three syscalls:
io_uring_setup, io_uring_enter, io_uring_register.

Deployment:
- A Pulumi DaemonSet (services/seccomp.ts) copies the profile from a
  ConfigMap to /var/lib/kubelet/seccomp/profiles/ on every node
- The controller and benchmark-main workflow reference it via
  seccompProfile.type: Localhost

No init containers needed — the DaemonSet keeps the profile present
on all nodes continuously.
Dandandan added a commit to Dandandan/datafusion-benchmarking that referenced this pull request Apr 16, 2026
DataFusion now includes io_uring-based local file I/O
(apache/datafusion#21673), but the default container seccomp profile
blocks io_uring_setup.

Adds a checked-in seccomp profile (services/seccomp/io-uring-allowed.json)
that's the standard containerd default allowlist plus three syscalls:
io_uring_setup, io_uring_enter, io_uring_register.

Deployment:
- A Pulumi DaemonSet (services/seccomp.ts) copies the profile from a
  ConfigMap to /var/lib/kubelet/seccomp/profiles/ on every node
- The controller and benchmark-main workflow reference it via
  seccompProfile.type: Localhost

No init containers needed — the DaemonSet keeps the profile present
on all nodes continuously.
adriangb added a commit to adriangb/datafusion-benchmarking that referenced this pull request Apr 17, 2026
DataFusion now includes io_uring-based local file I/O
(apache/datafusion#21673), but the default container seccomp profile
blocks io_uring_setup.

Adds a checked-in seccomp profile (services/seccomp/io-uring-allowed.json)
that's the standard containerd default allowlist plus three syscalls:
io_uring_setup, io_uring_enter, io_uring_register.

Deployment:
- A Pulumi DaemonSet (services/seccomp.ts) copies the profile from a
  ConfigMap to /var/lib/kubelet/seccomp/profiles/ on every node
- The controller and benchmark-main workflow reference it via
  seccompProfile.type: Localhost

No init containers needed — the DaemonSet keeps the profile present
on all nodes continuously.

Co-authored-by: Adrian Garcia Badaracco <1755071+adriangb@users.noreply.github.com>
@Dandandan
Copy link
Copy Markdown
Contributor Author

run benchmarks

1 similar comment
@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-c4269913696-1434-wl5m5 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 worktree-io-uring-object-store (5df85eb) to 7bfa3fb (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-c4269913696-1435-sm2vq 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 worktree-io-uring-object-store (5df85eb) to 7bfa3fb (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-c4269913696-1433-sw7jg 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 worktree-io-uring-object-store (5df85eb) to 7bfa3fb (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 worktree-io-uring-object-store
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                     HEAD ┃           worktree-io-uring-object-store ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │              6.69 / 7.10 ±0.73 / 8.56 ms │              6.57 / 7.01 ±0.75 / 8.51 ms │     no change │
│ QQuery 2  │        147.32 / 148.65 ±1.07 / 150.45 ms │        146.76 / 148.31 ±0.94 / 149.37 ms │     no change │
│ QQuery 3  │        113.99 / 114.56 ±0.74 / 116.01 ms │        113.64 / 114.24 ±0.43 / 114.81 ms │     no change │
│ QQuery 4  │    1333.01 / 1359.83 ±18.99 / 1382.48 ms │    1327.18 / 1354.69 ±15.54 / 1373.24 ms │     no change │
│ QQuery 5  │        172.06 / 174.54 ±2.21 / 177.82 ms │        171.80 / 174.73 ±2.41 / 178.81 ms │     no change │
│ QQuery 6  │       860.58 / 892.31 ±17.11 / 907.03 ms │       851.49 / 869.65 ±10.76 / 881.67 ms │     no change │
│ QQuery 7  │        343.98 / 349.58 ±4.28 / 356.92 ms │        342.01 / 346.58 ±2.72 / 349.56 ms │     no change │
│ QQuery 8  │        118.01 / 118.59 ±0.53 / 119.50 ms │        116.20 / 117.06 ±0.63 / 117.85 ms │     no change │
│ QQuery 9  │        102.11 / 104.08 ±2.15 / 108.09 ms │        107.16 / 112.45 ±5.09 / 120.86 ms │  1.08x slower │
│ QQuery 10 │        108.11 / 110.14 ±2.02 / 113.54 ms │        107.23 / 108.31 ±1.00 / 109.78 ms │     no change │
│ QQuery 11 │       963.06 / 978.32 ±13.33 / 994.19 ms │        963.67 / 965.99 ±2.86 / 971.63 ms │     no change │
│ QQuery 12 │           45.43 / 48.09 ±3.01 / 53.70 ms │           46.33 / 46.82 ±0.47 / 47.42 ms │     no change │
│ QQuery 13 │        408.52 / 410.54 ±1.65 / 413.07 ms │        399.00 / 406.17 ±4.77 / 414.00 ms │     no change │
│ QQuery 14 │    1001.40 / 1020.31 ±10.46 / 1031.34 ms │     1017.37 / 1031.42 ±8.18 / 1038.65 ms │     no change │
│ QQuery 15 │           16.11 / 17.89 ±1.34 / 19.88 ms │           15.21 / 16.27 ±1.15 / 18.36 ms │ +1.10x faster │
│ QQuery 16 │              7.16 / 8.29 ±0.93 / 9.50 ms │              7.23 / 8.07 ±0.76 / 9.20 ms │     no change │
│ QQuery 17 │        230.20 / 232.98 ±2.00 / 235.68 ms │        227.93 / 230.83 ±2.57 / 235.39 ms │     no change │
│ QQuery 18 │        128.05 / 128.68 ±0.66 / 129.87 ms │        127.23 / 128.33 ±1.15 / 130.14 ms │     no change │
│ QQuery 19 │        154.65 / 156.75 ±1.82 / 159.91 ms │        154.71 / 156.64 ±1.26 / 158.05 ms │     no change │
│ QQuery 20 │           14.16 / 14.45 ±0.23 / 14.80 ms │           13.92 / 14.64 ±0.86 / 16.29 ms │     no change │
│ QQuery 21 │           19.64 / 20.09 ±0.31 / 20.60 ms │           19.51 / 20.02 ±0.28 / 20.31 ms │     no change │
│ QQuery 22 │        479.38 / 481.70 ±2.08 / 485.62 ms │        486.20 / 493.92 ±7.68 / 508.06 ms │     no change │
│ QQuery 23 │        877.82 / 887.72 ±8.47 / 903.13 ms │        880.33 / 884.42 ±4.73 / 893.36 ms │     no change │
│ QQuery 24 │        384.46 / 386.13 ±2.02 / 389.98 ms │        382.87 / 387.81 ±3.49 / 393.11 ms │     no change │
│ QQuery 25 │        340.57 / 342.61 ±2.03 / 346.35 ms │        341.05 / 342.82 ±1.59 / 345.42 ms │     no change │
│ QQuery 26 │           81.20 / 83.49 ±1.50 / 85.80 ms │           81.53 / 82.97 ±1.59 / 85.50 ms │     no change │
│ QQuery 27 │              6.90 / 7.74 ±0.65 / 8.68 ms │              7.05 / 7.75 ±0.66 / 8.88 ms │     no change │
│ QQuery 28 │        149.56 / 151.22 ±1.77 / 154.57 ms │       158.72 / 165.20 ±10.72 / 186.43 ms │  1.09x slower │
│ QQuery 29 │        282.80 / 285.59 ±2.33 / 289.07 ms │        285.15 / 287.18 ±1.92 / 290.01 ms │     no change │
│ QQuery 30 │           43.99 / 44.79 ±0.76 / 46.17 ms │           42.60 / 45.41 ±1.90 / 48.23 ms │     no change │
│ QQuery 31 │        169.55 / 171.61 ±1.18 / 173.14 ms │        170.66 / 174.96 ±2.20 / 176.96 ms │     no change │
│ QQuery 32 │           57.08 / 58.72 ±1.00 / 59.64 ms │           56.38 / 57.94 ±1.14 / 59.54 ms │     no change │
│ QQuery 33 │        140.92 / 142.31 ±0.90 / 143.67 ms │        139.87 / 141.24 ±0.93 / 142.35 ms │     no change │
│ QQuery 34 │              6.95 / 7.34 ±0.31 / 7.82 ms │              7.15 / 7.30 ±0.21 / 7.71 ms │     no change │
│ QQuery 35 │        109.50 / 109.98 ±0.51 / 110.97 ms │        106.28 / 109.30 ±2.39 / 112.29 ms │     no change │
│ QQuery 36 │              6.67 / 6.84 ±0.13 / 7.04 ms │              6.49 / 6.67 ±0.15 / 6.82 ms │     no change │
│ QQuery 37 │              8.37 / 8.86 ±0.35 / 9.39 ms │             8.08 / 9.10 ±0.79 / 10.32 ms │     no change │
│ QQuery 38 │           83.77 / 88.37 ±4.33 / 96.54 ms │           86.10 / 88.65 ±3.33 / 94.82 ms │     no change │
│ QQuery 39 │        127.26 / 130.77 ±1.95 / 132.63 ms │        125.53 / 127.29 ±1.21 / 128.84 ms │     no change │
│ QQuery 40 │        109.90 / 116.10 ±5.35 / 125.94 ms │        110.88 / 117.41 ±6.74 / 130.35 ms │     no change │
│ QQuery 41 │           14.23 / 15.46 ±1.08 / 17.13 ms │           14.04 / 15.11 ±0.69 / 15.74 ms │     no change │
│ QQuery 42 │        107.33 / 109.28 ±1.52 / 111.93 ms │        107.11 / 108.46 ±1.21 / 110.27 ms │     no change │
│ QQuery 43 │              6.11 / 6.40 ±0.34 / 7.04 ms │              6.08 / 6.19 ±0.15 / 6.49 ms │     no change │
│ QQuery 44 │           11.98 / 12.41 ±0.47 / 13.30 ms │           12.04 / 12.31 ±0.19 / 12.59 ms │     no change │
│ QQuery 45 │           50.80 / 51.96 ±0.68 / 52.84 ms │           50.05 / 51.59 ±1.46 / 54.38 ms │     no change │
│ QQuery 46 │              8.28 / 8.63 ±0.28 / 9.01 ms │              8.53 / 8.71 ±0.21 / 9.06 ms │     no change │
│ QQuery 47 │        723.20 / 728.29 ±4.47 / 735.10 ms │        711.00 / 723.62 ±6.95 / 730.32 ms │     no change │
│ QQuery 48 │        288.70 / 293.00 ±3.84 / 300.19 ms │        284.76 / 294.27 ±5.91 / 300.88 ms │     no change │
│ QQuery 49 │        251.10 / 254.84 ±2.51 / 257.66 ms │        250.99 / 253.69 ±2.37 / 258.10 ms │     no change │
│ QQuery 50 │        224.15 / 230.67 ±3.30 / 233.02 ms │        223.17 / 227.78 ±4.75 / 234.70 ms │     no change │
│ QQuery 51 │        184.00 / 186.57 ±2.26 / 190.15 ms │        180.41 / 182.95 ±2.80 / 188.11 ms │     no change │
│ QQuery 52 │        107.20 / 108.32 ±0.90 / 109.82 ms │        107.06 / 107.88 ±0.69 / 109.06 ms │     no change │
│ QQuery 53 │        103.00 / 103.54 ±0.44 / 104.23 ms │        102.37 / 102.76 ±0.38 / 103.47 ms │     no change │
│ QQuery 54 │        145.54 / 146.76 ±0.96 / 147.98 ms │        145.79 / 147.15 ±1.16 / 148.98 ms │     no change │
│ QQuery 55 │        106.76 / 107.24 ±0.35 / 107.75 ms │        106.50 / 107.54 ±0.66 / 108.39 ms │     no change │
│ QQuery 56 │        140.38 / 142.92 ±2.65 / 146.71 ms │        140.81 / 141.72 ±0.61 / 142.39 ms │     no change │
│ QQuery 57 │        177.61 / 178.47 ±0.85 / 180.02 ms │        173.03 / 174.74 ±1.65 / 177.12 ms │     no change │
│ QQuery 58 │        321.87 / 325.44 ±3.60 / 331.16 ms │        297.17 / 302.60 ±5.66 / 312.97 ms │ +1.08x faster │
│ QQuery 59 │        199.46 / 202.42 ±2.22 / 205.94 ms │        198.74 / 200.57 ±1.39 / 202.79 ms │     no change │
│ QQuery 60 │        142.69 / 145.46 ±1.44 / 146.63 ms │        143.15 / 143.90 ±0.56 / 144.64 ms │     no change │
│ QQuery 61 │           13.30 / 13.47 ±0.16 / 13.73 ms │           13.26 / 13.68 ±0.40 / 14.32 ms │     no change │
│ QQuery 62 │        954.69 / 966.41 ±9.57 / 979.77 ms │      890.95 / 944.09 ±58.57 / 1058.05 ms │     no change │
│ QQuery 63 │        105.35 / 108.03 ±3.19 / 114.11 ms │        102.64 / 106.67 ±4.93 / 116.29 ms │     no change │
│ QQuery 64 │        686.84 / 694.73 ±6.05 / 703.01 ms │        696.74 / 705.93 ±9.09 / 718.93 ms │     no change │
│ QQuery 65 │        254.65 / 257.97 ±2.20 / 261.23 ms │        250.94 / 256.09 ±3.96 / 262.79 ms │     no change │
│ QQuery 66 │       258.74 / 279.45 ±15.76 / 306.98 ms │        239.85 / 253.82 ±8.50 / 263.39 ms │ +1.10x faster │
│ QQuery 67 │        312.82 / 325.67 ±9.64 / 338.29 ms │        311.95 / 316.83 ±5.83 / 327.99 ms │     no change │
│ QQuery 68 │            9.61 / 11.11 ±1.17 / 12.95 ms │            8.75 / 10.58 ±1.85 / 13.20 ms │     no change │
│ QQuery 69 │        102.88 / 105.91 ±2.14 / 108.32 ms │        102.84 / 103.76 ±1.05 / 105.45 ms │     no change │
│ QQuery 70 │       323.71 / 354.20 ±20.62 / 380.07 ms │       326.49 / 350.46 ±15.41 / 374.17 ms │     no change │
│ QQuery 71 │        133.20 / 135.45 ±2.34 / 139.61 ms │        134.74 / 136.16 ±1.95 / 140.03 ms │     no change │
│ QQuery 72 │        618.54 / 629.87 ±7.10 / 636.89 ms │       608.32 / 623.43 ±15.64 / 648.90 ms │     no change │
│ QQuery 73 │              7.04 / 8.44 ±1.08 / 9.90 ms │             6.79 / 8.18 ±1.62 / 11.26 ms │     no change │
│ QQuery 74 │        601.08 / 605.88 ±5.33 / 616.20 ms │        599.58 / 606.21 ±4.38 / 611.57 ms │     no change │
│ QQuery 75 │        279.66 / 281.23 ±1.69 / 283.67 ms │        274.28 / 279.87 ±4.06 / 285.65 ms │     no change │
│ QQuery 76 │        131.76 / 133.41 ±0.85 / 134.04 ms │        132.66 / 134.41 ±1.81 / 137.57 ms │     no change │
│ QQuery 77 │        189.23 / 192.02 ±1.62 / 193.62 ms │        187.79 / 189.83 ±1.77 / 192.81 ms │     no change │
│ QQuery 78 │        345.42 / 348.58 ±1.66 / 349.93 ms │        340.16 / 344.59 ±3.51 / 348.14 ms │     no change │
│ QQuery 79 │        230.13 / 232.79 ±2.19 / 235.96 ms │        235.78 / 238.70 ±3.09 / 244.29 ms │     no change │
│ QQuery 80 │        323.99 / 324.75 ±0.73 / 325.90 ms │        320.65 / 325.02 ±4.18 / 332.74 ms │     no change │
│ QQuery 81 │           26.13 / 27.19 ±0.80 / 28.47 ms │           25.91 / 27.06 ±0.93 / 28.40 ms │     no change │
│ QQuery 82 │        199.23 / 201.46 ±2.24 / 204.82 ms │        198.28 / 201.08 ±3.31 / 207.56 ms │     no change │
│ QQuery 83 │           38.82 / 40.35 ±2.09 / 44.48 ms │           38.18 / 39.41 ±1.10 / 41.36 ms │     no change │
│ QQuery 84 │           48.62 / 49.32 ±0.45 / 50.02 ms │           48.81 / 48.93 ±0.09 / 49.03 ms │     no change │
│ QQuery 85 │        151.75 / 153.17 ±1.73 / 156.46 ms │        147.38 / 149.33 ±1.59 / 152.20 ms │     no change │
│ QQuery 86 │           39.32 / 40.40 ±0.56 / 40.91 ms │           39.17 / 39.99 ±0.52 / 40.78 ms │     no change │
│ QQuery 87 │           83.51 / 89.12 ±4.63 / 97.66 ms │           87.81 / 89.67 ±2.45 / 94.41 ms │     no change │
│ QQuery 88 │        100.04 / 101.12 ±1.23 / 103.39 ms │        101.29 / 103.04 ±1.86 / 106.41 ms │     no change │
│ QQuery 89 │        119.14 / 122.26 ±1.82 / 124.11 ms │        117.31 / 118.88 ±1.14 / 120.56 ms │     no change │
│ QQuery 90 │           23.86 / 24.38 ±0.61 / 25.20 ms │           23.91 / 24.76 ±0.51 / 25.39 ms │     no change │
│ QQuery 91 │           64.57 / 65.59 ±0.68 / 66.56 ms │           64.08 / 64.92 ±1.06 / 66.97 ms │     no change │
│ QQuery 92 │           58.19 / 58.58 ±0.35 / 59.15 ms │           57.48 / 58.15 ±0.39 / 58.50 ms │     no change │
│ QQuery 93 │        186.01 / 188.48 ±1.51 / 190.54 ms │        185.11 / 188.15 ±2.50 / 190.85 ms │     no change │
│ QQuery 94 │           61.71 / 62.29 ±0.30 / 62.54 ms │           61.52 / 62.00 ±0.46 / 62.69 ms │     no change │
│ QQuery 95 │        130.72 / 131.29 ±0.85 / 132.98 ms │        129.27 / 131.32 ±1.72 / 133.95 ms │     no change │
│ QQuery 96 │           72.09 / 74.88 ±1.53 / 76.10 ms │           71.12 / 74.04 ±1.46 / 74.87 ms │     no change │
│ QQuery 97 │        127.76 / 129.84 ±1.84 / 132.79 ms │        127.21 / 128.59 ±1.31 / 130.72 ms │     no change │
│ QQuery 98 │        153.50 / 155.46 ±1.05 / 156.40 ms │        152.34 / 155.24 ±2.14 / 157.79 ms │     no change │
│ QQuery 99 │ 10802.61 / 10820.50 ±17.35 / 10843.47 ms │ 10747.43 / 10789.45 ±35.19 / 10841.13 ms │     no change │
└───────────┴──────────────────────────────────────────┴──────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                             ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                             │ 31830.80ms │
│ Total Time (worktree-io-uring-object-store)   │ 31671.40ms │
│ Average Time (HEAD)                           │   321.52ms │
│ Average Time (worktree-io-uring-object-store) │   319.91ms │
│ Queries Faster                                │          3 │
│ Queries Slower                                │          2 │
│ Queries with No Change                        │         94 │
│ Queries with Failure                          │          0 │
└───────────────────────────────────────────────┴────────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 159.5s
Peak memory 5.4 GiB
Avg memory 4.5 GiB
CPU user 263.1s
CPU sys 18.1s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 158.7s
Peak memory 5.5 GiB
Avg memory 4.3 GiB
CPU user 261.9s
CPU sys 17.2s
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 worktree-io-uring-object-store
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃        worktree-io-uring-object-store ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.22 / 4.41 ±6.30 / 17.01 ms │          1.21 / 4.37 ±6.24 / 16.85 ms │     no change │
│ QQuery 1  │        14.63 / 14.85 ±0.19 / 15.12 ms │        14.41 / 14.66 ±0.15 / 14.86 ms │     no change │
│ QQuery 2  │        43.83 / 44.16 ±0.20 / 44.46 ms │        43.84 / 44.67 ±0.66 / 45.85 ms │     no change │
│ QQuery 3  │        40.31 / 41.15 ±0.79 / 42.53 ms │        44.00 / 44.67 ±0.65 / 45.84 ms │  1.09x slower │
│ QQuery 4  │     281.63 / 287.39 ±5.68 / 297.74 ms │     279.95 / 286.51 ±4.53 / 293.58 ms │     no change │
│ QQuery 5  │     329.72 / 334.03 ±3.08 / 337.78 ms │     332.48 / 337.12 ±4.12 / 343.66 ms │     no change │
│ QQuery 6  │           5.89 / 6.32 ±0.40 / 7.03 ms │           5.62 / 6.60 ±1.02 / 8.24 ms │     no change │
│ QQuery 7  │        17.02 / 17.40 ±0.23 / 17.71 ms │        16.67 / 17.13 ±0.45 / 17.98 ms │     no change │
│ QQuery 8  │     396.05 / 405.80 ±9.92 / 421.55 ms │     406.47 / 415.64 ±5.81 / 424.76 ms │     no change │
│ QQuery 9  │     629.19 / 638.85 ±7.23 / 646.04 ms │     637.95 / 645.31 ±3.95 / 648.66 ms │     no change │
│ QQuery 10 │       92.20 / 95.59 ±3.38 / 102.09 ms │       92.20 / 95.01 ±3.31 / 101.08 ms │     no change │
│ QQuery 11 │     105.25 / 106.01 ±0.75 / 107.45 ms │     104.20 / 105.05 ±1.00 / 106.99 ms │     no change │
│ QQuery 12 │     326.87 / 331.27 ±3.16 / 336.17 ms │     339.07 / 340.60 ±1.39 / 342.32 ms │     no change │
│ QQuery 13 │    442.08 / 456.87 ±10.44 / 471.71 ms │    453.61 / 469.57 ±12.83 / 486.05 ms │     no change │
│ QQuery 14 │     340.05 / 344.70 ±2.75 / 347.75 ms │     347.41 / 350.76 ±2.24 / 353.38 ms │     no change │
│ QQuery 15 │    346.34 / 365.20 ±18.83 / 395.71 ms │    355.31 / 371.88 ±17.18 / 403.03 ms │     no change │
│ QQuery 16 │     704.86 / 712.53 ±4.92 / 719.14 ms │    731.00 / 747.36 ±12.80 / 761.43 ms │     no change │
│ QQuery 17 │     699.07 / 707.19 ±9.32 / 724.39 ms │     708.91 / 714.65 ±5.55 / 722.56 ms │     no change │
│ QQuery 18 │ 1399.10 / 1443.72 ±39.90 / 1515.37 ms │ 1407.97 / 1463.30 ±30.52 / 1491.40 ms │     no change │
│ QQuery 19 │        35.67 / 41.23 ±9.77 / 60.74 ms │       38.59 / 45.60 ±10.82 / 67.04 ms │  1.11x slower │
│ QQuery 20 │    718.52 / 734.61 ±17.66 / 757.08 ms │    740.25 / 760.32 ±19.97 / 797.97 ms │     no change │
│ QQuery 21 │     757.46 / 761.79 ±3.09 / 765.58 ms │     792.58 / 798.17 ±3.67 / 802.43 ms │     no change │
│ QQuery 22 │  1134.49 / 1142.17 ±8.65 / 1157.52 ms │ 1236.42 / 1261.50 ±12.79 / 1270.50 ms │  1.10x slower │
│ QQuery 23 │ 3121.68 / 3134.51 ±16.57 / 3166.54 ms │ 3449.53 / 3540.17 ±46.98 / 3581.39 ms │  1.13x slower │
│ QQuery 24 │     101.56 / 103.67 ±1.96 / 107.40 ms │     108.81 / 114.12 ±4.22 / 118.71 ms │  1.10x slower │
│ QQuery 25 │     137.42 / 141.03 ±3.36 / 147.06 ms │     141.58 / 145.83 ±4.14 / 151.32 ms │     no change │
│ QQuery 26 │     101.76 / 103.89 ±1.60 / 106.14 ms │     104.86 / 107.52 ±2.42 / 111.90 ms │     no change │
│ QQuery 27 │    855.58 / 875.35 ±19.74 / 906.89 ms │    871.93 / 882.05 ±13.79 / 908.88 ms │     no change │
│ QQuery 28 │ 3256.40 / 3274.10 ±11.86 / 3288.31 ms │ 3240.62 / 3276.24 ±24.83 / 3304.97 ms │     no change │
│ QQuery 29 │        51.20 / 57.37 ±5.14 / 64.22 ms │        50.03 / 57.19 ±6.49 / 66.52 ms │     no change │
│ QQuery 30 │    356.08 / 366.47 ±11.79 / 386.59 ms │     360.49 / 368.36 ±7.42 / 381.12 ms │     no change │
│ QQuery 31 │    376.47 / 389.65 ±10.51 / 408.38 ms │     380.21 / 391.65 ±9.34 / 402.62 ms │     no change │
│ QQuery 32 │ 1149.88 / 1200.49 ±33.74 / 1254.50 ms │ 1117.93 / 1133.86 ±21.92 / 1176.01 ms │ +1.06x faster │
│ QQuery 33 │ 1486.86 / 1509.27 ±18.75 / 1535.28 ms │ 1504.24 / 1571.33 ±85.11 / 1732.30 ms │     no change │
│ QQuery 34 │ 1485.27 / 1558.61 ±83.56 / 1714.19 ms │ 1528.73 / 1565.01 ±30.49 / 1620.54 ms │     no change │
│ QQuery 35 │     378.69 / 384.74 ±3.93 / 388.54 ms │    384.89 / 395.91 ±10.20 / 413.48 ms │     no change │
│ QQuery 36 │     118.94 / 121.63 ±1.38 / 122.65 ms │     117.71 / 122.06 ±2.42 / 125.16 ms │     no change │
│ QQuery 37 │        48.13 / 49.38 ±1.20 / 51.45 ms │        48.23 / 49.67 ±1.59 / 52.43 ms │     no change │
│ QQuery 38 │        75.43 / 76.72 ±1.09 / 78.27 ms │        74.60 / 76.91 ±1.31 / 78.20 ms │     no change │
│ QQuery 39 │     203.29 / 211.82 ±4.86 / 216.70 ms │     214.82 / 220.59 ±3.52 / 223.89 ms │     no change │
│ QQuery 40 │        22.37 / 25.07 ±1.75 / 27.57 ms │        26.36 / 28.11 ±1.13 / 29.71 ms │  1.12x slower │
│ QQuery 41 │        18.93 / 20.86 ±1.26 / 22.88 ms │        19.71 / 21.18 ±1.30 / 23.41 ms │     no change │
│ QQuery 42 │        19.91 / 20.16 ±0.21 / 20.52 ms │        19.28 / 20.30 ±0.91 / 21.67 ms │     no change │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                             ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                             │ 22662.04ms │
│ Total Time (worktree-io-uring-object-store)   │ 23428.52ms │
│ Average Time (HEAD)                           │   527.02ms │
│ Average Time (worktree-io-uring-object-store) │   544.85ms │
│ Queries Faster                                │          1 │
│ Queries Slower                                │          6 │
│ Queries with No Change                        │         36 │
│ Queries with Failure                          │          0 │
└───────────────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 114.3s
Peak memory 33.9 GiB
Avg memory 25.9 GiB
CPU user 1065.1s
CPU sys 97.0s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 117.8s
Peak memory 28.9 GiB
Avg memory 22.2 GiB
CPU user 1058.7s
CPU sys 105.5s
Peak spill 0 B

File an issue against this benchmark runner

Dandandan pushed a commit to Dandandan/arrow-datafusion that referenced this pull request Apr 17, 2026
Mirror the `datafusion-object-store-iouring` crate and registry wiring
from apache#21673 into this branch so we can iterate on the
io_uring path here.
@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-c4271070919-1438-wn84z 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 worktree-io-uring-object-store (5df85eb) to 7bfa3fb (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-c4271070919-1436-2r75w 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 worktree-io-uring-object-store (5df85eb) to 7bfa3fb (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-c4271070919-1437-dhdqs 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 worktree-io-uring-object-store (5df85eb) to 7bfa3fb (merge-base) diff using: tpcds
Results will be posted here when complete


File an issue against this benchmark runner

claude added 3 commits April 17, 2026 20:39
Roll back the `uring::is_available()` probe and the
`Option<UnboundedSender>` machinery added in 87539f6 so that the
store is back to unconditionally using io_uring on Linux.

Silently falling back to `LocalFileSystem` when io_uring_setup is
blocked (EPERM, seccomp, etc.) hides real configuration problems.
Follow-up commits address the correctness and performance gaps in
the io_uring path itself.
- Path resolution: `self.root.join(location.as_ref())` joined the raw
  percent-encoded `object_store::Path` string, which diverges from the
  `LocalFileSystem` prefix/decoding logic on roots that aren't `/` and on
  any segment containing characters `object_store` encodes. Route
  resolution through `LocalFileSystem::path_to_filesystem` so puts and
  io_uring reads agree.
- Partial reads: the drain loop previously `truncate(bytes_read)`'d on
  the first completion, silently returning short data. Track per-range
  fill progress and resubmit reads until the full range is covered or
  the kernel reports an error / unexpected EOF.
- CQE bounds: `user_data` is cast to `usize` and used to index the
  buffer vector. Reject user_data values outside the buffer range instead
  of panicking or reading past the allocation.
- CQE drain wait: if fewer than the expected number of CQEs are
  available after the initial `submit_and_wait`, wait for the remainder
  instead of busy-spinning on `completion()`.
- `GetOptions` conditionals: `if_match`, `if_none_match`,
  `if_modified_since`, `if_unmodified_since`, and `version` were
  silently dropped. Send them to `LocalFileSystem::get_opts` with
  `head = true` so preconditions are enforced before we issue io_uring
  reads.
- Panics: constructors now return `object_store::Result<Self>` instead
  of `expect`ing on invalid prefixes or thread-spawn failures; the SQ
  push retry returns an error on repeated failure rather than
  `expect`ing.
- Misc: reject ranges with `start > end`, reject range lengths that
  exceed `usize`, and skip io_uring-backed unit tests cleanly when
  `io_uring_setup` is blocked by the sandbox.
The previous worker popped one `IoCommand` at a time, did
`submit_and_wait(n)` for its ranges, drained, and only then looked at
the next command. Concurrent async callers were effectively serialized
through that single `submit_and_wait`, negating io_uring's main win —
overlapping in-flight reads.

Rework the worker around a slab of `PendingRequest`s keyed by a
`u32` slot id. SQE `user_data` is `(slot << 32) | range_idx`, so every
completion finds its owning request and buffer directly. The loop:

  1. Pull new commands until `MAX_IN_FLIGHT_REQUESTS` is reached (or
     block on the channel when nothing is in flight).
  2. Push queued SQEs into the ring until it is full.
  3. `submit_and_wait(1)` when work is outstanding, then drain all
     available CQEs. Partial reads re-queue a follow-up SQE.

Slots are only freed once `sqes_outstanding == 0`, so a late CQE can
never scribble into a reallocated slot's buffers.

Also:
* Switch the command channel to a bounded `mpsc::channel(1024)` so
  bursts of requests apply backpressure rather than ballooning memory.
* Drop the redundant in-function chunking loop — the slab + backlog
  already handles overflow.
* Add a multi-threaded integration test that fires 16 concurrent
  `get_ranges` calls to assert the pipelining does not deadlock and
  returns correct data.
@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-c4271124097-1441-zppmt 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 worktree-io-uring-object-store (7fdb92b) to 7bfa3fb (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-c4271124097-1439-km7h2 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 worktree-io-uring-object-store (7fdb92b) to 7bfa3fb (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-c4271124097-1440-4t46w 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 worktree-io-uring-object-store (7fdb92b) to 7bfa3fb (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 worktree-io-uring-object-store
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┓
┃ Query     ┃                                     HEAD ┃            worktree-io-uring-object-store ┃       Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━┩
│ QQuery 1  │              6.52 / 6.95 ±0.74 / 8.42 ms │               6.55 / 6.98 ±0.73 / 8.44 ms │    no change │
│ QQuery 2  │        146.53 / 147.10 ±0.70 / 148.46 ms │         147.71 / 149.61 ±1.14 / 150.88 ms │    no change │
│ QQuery 3  │        112.55 / 113.51 ±0.70 / 114.37 ms │         113.42 / 114.68 ±1.00 / 116.04 ms │    no change │
│ QQuery 4  │    1287.68 / 1302.63 ±13.63 / 1326.34 ms │     1300.86 / 1345.87 ±28.50 / 1382.06 ms │    no change │
│ QQuery 5  │        172.81 / 173.67 ±1.17 / 175.96 ms │         172.02 / 175.34 ±2.54 / 179.73 ms │    no change │
│ QQuery 6  │      836.31 / 902.43 ±56.47 / 1000.52 ms │        824.78 / 859.19 ±27.13 / 887.72 ms │    no change │
│ QQuery 7  │        342.37 / 344.52 ±1.70 / 346.78 ms │         340.99 / 348.06 ±4.83 / 354.17 ms │    no change │
│ QQuery 8  │        114.81 / 116.01 ±1.05 / 117.64 ms │         115.35 / 117.26 ±1.07 / 118.48 ms │    no change │
│ QQuery 9  │        100.47 / 105.22 ±2.62 / 108.44 ms │         112.33 / 115.82 ±3.88 / 122.80 ms │ 1.10x slower │
│ QQuery 10 │        106.53 / 107.78 ±0.81 / 109.00 ms │         105.97 / 107.86 ±1.21 / 109.12 ms │    no change │
│ QQuery 11 │       920.50 / 928.68 ±10.05 / 948.37 ms │         962.82 / 970.96 ±8.78 / 987.56 ms │    no change │
│ QQuery 12 │           45.01 / 46.78 ±1.86 / 50.02 ms │            44.29 / 46.43 ±1.19 / 47.43 ms │    no change │
│ QQuery 13 │        395.79 / 399.73 ±4.11 / 407.51 ms │         403.99 / 407.90 ±3.94 / 413.96 ms │    no change │
│ QQuery 14 │     1000.45 / 1008.93 ±6.68 / 1018.80 ms │     1003.09 / 1029.71 ±15.43 / 1049.86 ms │    no change │
│ QQuery 15 │           16.41 / 17.22 ±0.88 / 18.81 ms │            15.72 / 17.23 ±1.40 / 19.76 ms │    no change │
│ QQuery 16 │              7.18 / 7.95 ±0.66 / 8.99 ms │               7.18 / 7.75 ±0.63 / 8.92 ms │    no change │
│ QQuery 17 │        225.56 / 228.94 ±2.32 / 231.78 ms │         228.23 / 229.39 ±0.72 / 230.22 ms │    no change │
│ QQuery 18 │        126.77 / 128.40 ±1.05 / 130.07 ms │         126.68 / 127.32 ±0.51 / 128.24 ms │    no change │
│ QQuery 19 │        152.47 / 153.82 ±0.97 / 155.47 ms │         155.90 / 156.77 ±0.95 / 158.60 ms │    no change │
│ QQuery 20 │           13.51 / 14.26 ±0.52 / 15.11 ms │            13.95 / 14.64 ±0.80 / 16.12 ms │    no change │
│ QQuery 21 │           18.94 / 19.10 ±0.13 / 19.31 ms │            19.49 / 19.96 ±0.36 / 20.57 ms │    no change │
│ QQuery 22 │        473.02 / 476.61 ±3.30 / 482.60 ms │         484.81 / 488.10 ±2.56 / 492.38 ms │    no change │
│ QQuery 23 │       859.05 / 874.83 ±10.02 / 886.30 ms │         885.32 / 891.03 ±7.50 / 905.88 ms │    no change │
│ QQuery 24 │        378.80 / 381.70 ±3.14 / 387.28 ms │         383.14 / 387.23 ±3.86 / 393.53 ms │    no change │
│ QQuery 25 │        338.23 / 340.41 ±1.96 / 343.30 ms │         338.79 / 341.09 ±1.70 / 343.93 ms │    no change │
│ QQuery 26 │           82.23 / 83.53 ±0.97 / 85.23 ms │            80.35 / 82.73 ±1.67 / 85.20 ms │    no change │
│ QQuery 27 │              6.93 / 7.11 ±0.14 / 7.28 ms │               6.94 / 7.58 ±0.92 / 9.42 ms │ 1.07x slower │
│ QQuery 28 │        147.41 / 148.21 ±0.55 / 149.12 ms │         158.39 / 164.93 ±9.79 / 184.22 ms │ 1.11x slower │
│ QQuery 29 │        279.45 / 281.57 ±1.35 / 283.15 ms │         283.19 / 287.36 ±5.55 / 298.24 ms │    no change │
│ QQuery 30 │           44.47 / 46.25 ±1.88 / 49.58 ms │            43.01 / 44.50 ±0.78 / 45.27 ms │    no change │
│ QQuery 31 │        168.97 / 170.78 ±1.72 / 173.45 ms │         172.45 / 175.26 ±1.70 / 177.02 ms │    no change │
│ QQuery 32 │           56.62 / 57.86 ±0.68 / 58.62 ms │            57.04 / 58.85 ±2.50 / 63.79 ms │    no change │
│ QQuery 33 │        139.22 / 140.78 ±1.16 / 142.27 ms │         139.69 / 141.95 ±2.14 / 145.47 ms │    no change │
│ QQuery 34 │              6.89 / 7.18 ±0.24 / 7.62 ms │               6.98 / 7.32 ±0.50 / 8.31 ms │    no change │
│ QQuery 35 │        106.73 / 109.65 ±2.17 / 113.36 ms │         107.69 / 108.34 ±0.43 / 108.90 ms │    no change │
│ QQuery 36 │              6.70 / 6.83 ±0.12 / 7.04 ms │               6.49 / 6.71 ±0.14 / 6.91 ms │    no change │
│ QQuery 37 │             8.06 / 8.91 ±0.87 / 10.54 ms │               8.09 / 8.78 ±0.49 / 9.48 ms │    no change │
│ QQuery 38 │           83.63 / 86.72 ±3.30 / 91.15 ms │            84.42 / 86.61 ±2.47 / 91.21 ms │    no change │
│ QQuery 39 │        126.66 / 128.48 ±1.27 / 130.15 ms │         126.18 / 128.03 ±1.63 / 129.92 ms │    no change │
│ QQuery 40 │        105.86 / 115.05 ±7.41 / 128.51 ms │         110.77 / 116.55 ±5.78 / 126.33 ms │    no change │
│ QQuery 41 │           14.16 / 15.92 ±1.15 / 17.50 ms │            14.63 / 15.40 ±0.56 / 15.97 ms │    no change │
│ QQuery 42 │        105.48 / 107.72 ±2.05 / 110.63 ms │         106.89 / 108.40 ±1.41 / 110.66 ms │    no change │
│ QQuery 43 │              5.89 / 6.12 ±0.18 / 6.43 ms │               6.12 / 6.30 ±0.23 / 6.75 ms │    no change │
│ QQuery 44 │           11.85 / 12.31 ±0.29 / 12.71 ms │            11.83 / 12.41 ±0.44 / 13.16 ms │    no change │
│ QQuery 45 │           50.77 / 51.30 ±0.66 / 52.59 ms │            49.76 / 51.40 ±1.40 / 53.95 ms │    no change │
│ QQuery 46 │              8.11 / 8.42 ±0.27 / 8.77 ms │               8.32 / 8.65 ±0.29 / 9.20 ms │    no change │
│ QQuery 47 │       688.83 / 704.41 ±11.78 / 725.33 ms │         711.77 / 725.13 ±8.51 / 737.43 ms │    no change │
│ QQuery 48 │        289.20 / 295.13 ±4.73 / 302.62 ms │         277.70 / 290.37 ±7.21 / 299.76 ms │    no change │
│ QQuery 49 │        250.37 / 251.21 ±0.57 / 252.08 ms │         251.46 / 253.47 ±2.07 / 257.26 ms │    no change │
│ QQuery 50 │        225.49 / 227.52 ±1.74 / 229.50 ms │         220.15 / 227.99 ±6.07 / 236.80 ms │    no change │
│ QQuery 51 │        178.90 / 182.43 ±1.96 / 183.92 ms │         180.65 / 183.29 ±1.48 / 184.95 ms │    no change │
│ QQuery 52 │        106.48 / 108.61 ±2.42 / 113.17 ms │         107.90 / 108.40 ±0.34 / 108.92 ms │    no change │
│ QQuery 53 │        100.91 / 102.46 ±1.15 / 104.03 ms │         102.38 / 103.27 ±0.56 / 104.05 ms │    no change │
│ QQuery 54 │        144.44 / 145.64 ±1.19 / 147.91 ms │         147.26 / 148.15 ±0.93 / 149.94 ms │    no change │
│ QQuery 55 │        105.99 / 106.76 ±0.75 / 108.19 ms │         107.32 / 107.94 ±0.67 / 109.24 ms │    no change │
│ QQuery 56 │        140.03 / 141.75 ±1.02 / 142.66 ms │         141.35 / 142.03 ±0.49 / 142.61 ms │    no change │
│ QQuery 57 │        170.93 / 174.88 ±2.05 / 176.86 ms │         173.94 / 175.94 ±1.97 / 179.48 ms │    no change │
│ QQuery 58 │        292.57 / 301.23 ±7.13 / 313.88 ms │         299.97 / 304.80 ±4.05 / 311.21 ms │    no change │
│ QQuery 59 │        195.48 / 197.66 ±1.77 / 200.67 ms │         200.80 / 201.64 ±0.66 / 202.66 ms │    no change │
│ QQuery 60 │        141.18 / 142.66 ±0.95 / 143.84 ms │         142.57 / 143.66 ±0.94 / 145.42 ms │    no change │
│ QQuery 61 │           12.66 / 12.97 ±0.31 / 13.50 ms │            13.21 / 13.45 ±0.17 / 13.67 ms │    no change │
│ QQuery 62 │       880.09 / 910.68 ±21.28 / 939.46 ms │        904.68 / 954.91 ±33.91 / 993.73 ms │    no change │
│ QQuery 63 │        104.00 / 106.24 ±2.62 / 110.04 ms │         103.48 / 106.61 ±4.61 / 115.80 ms │    no change │
│ QQuery 64 │        673.59 / 683.63 ±5.87 / 691.40 ms │         691.19 / 701.97 ±6.62 / 708.65 ms │    no change │
│ QQuery 65 │        243.96 / 250.91 ±4.49 / 256.64 ms │         246.67 / 252.59 ±3.44 / 255.96 ms │    no change │
│ QQuery 66 │        245.61 / 257.96 ±9.66 / 270.92 ms │        247.38 / 269.71 ±13.70 / 283.58 ms │    no change │
│ QQuery 67 │        306.21 / 314.12 ±8.26 / 329.02 ms │         309.17 / 314.69 ±5.29 / 323.51 ms │    no change │
│ QQuery 68 │             8.39 / 9.65 ±1.14 / 11.72 ms │             9.19 / 10.77 ±1.71 / 14.07 ms │ 1.12x slower │
│ QQuery 69 │        101.42 / 102.70 ±1.50 / 105.62 ms │         101.90 / 103.09 ±1.32 / 105.37 ms │    no change │
│ QQuery 70 │       334.15 / 348.86 ±11.74 / 369.37 ms │        333.54 / 349.93 ±11.21 / 363.80 ms │    no change │
│ QQuery 71 │        131.78 / 135.62 ±2.06 / 137.38 ms │         134.58 / 136.58 ±1.39 / 138.34 ms │    no change │
│ QQuery 72 │        607.75 / 619.13 ±7.27 / 625.37 ms │         617.67 / 623.70 ±3.78 / 628.13 ms │    no change │
│ QQuery 73 │              6.58 / 7.29 ±0.40 / 7.70 ms │               6.77 / 7.51 ±0.63 / 8.60 ms │    no change │
│ QQuery 74 │        561.14 / 569.75 ±6.54 / 577.63 ms │         584.19 / 589.78 ±3.53 / 594.80 ms │    no change │
│ QQuery 75 │        273.14 / 274.27 ±1.12 / 276.20 ms │         273.55 / 280.93 ±5.41 / 290.15 ms │    no change │
│ QQuery 76 │        129.06 / 132.35 ±2.14 / 135.15 ms │         132.21 / 133.61 ±0.85 / 134.87 ms │    no change │
│ QQuery 77 │        187.52 / 189.23 ±1.09 / 190.39 ms │         185.90 / 187.26 ±0.79 / 188.16 ms │    no change │
│ QQuery 78 │        337.79 / 342.61 ±3.91 / 348.08 ms │         335.48 / 338.96 ±3.69 / 345.67 ms │    no change │
│ QQuery 79 │        229.97 / 233.34 ±3.27 / 238.11 ms │         230.92 / 233.40 ±1.51 / 235.32 ms │    no change │
│ QQuery 80 │        319.44 / 321.00 ±1.08 / 322.62 ms │         321.82 / 323.41 ±1.52 / 325.80 ms │    no change │
│ QQuery 81 │           26.64 / 27.62 ±0.72 / 28.48 ms │            25.11 / 26.72 ±1.57 / 28.84 ms │    no change │
│ QQuery 82 │        194.88 / 196.59 ±2.45 / 201.41 ms │         200.12 / 203.27 ±3.19 / 207.19 ms │    no change │
│ QQuery 83 │           38.39 / 39.97 ±1.06 / 41.26 ms │            38.82 / 39.58 ±1.10 / 41.73 ms │    no change │
│ QQuery 84 │           47.17 / 48.83 ±1.25 / 50.89 ms │            47.71 / 48.37 ±0.53 / 49.25 ms │    no change │
│ QQuery 85 │        147.85 / 149.19 ±1.00 / 150.85 ms │         146.75 / 148.77 ±1.36 / 150.94 ms │    no change │
│ QQuery 86 │           39.45 / 40.47 ±1.15 / 42.65 ms │            39.92 / 40.44 ±0.47 / 41.29 ms │    no change │
│ QQuery 87 │           83.74 / 87.51 ±2.79 / 91.83 ms │            85.47 / 88.91 ±2.45 / 92.99 ms │    no change │
│ QQuery 88 │          97.58 / 99.29 ±2.00 / 103.20 ms │         101.37 / 103.83 ±2.19 / 107.94 ms │    no change │
│ QQuery 89 │        117.14 / 118.32 ±1.12 / 120.42 ms │         117.02 / 119.21 ±1.59 / 121.09 ms │    no change │
│ QQuery 90 │           23.21 / 23.75 ±0.51 / 24.68 ms │            23.00 / 24.03 ±0.67 / 25.00 ms │    no change │
│ QQuery 91 │           61.29 / 64.13 ±1.50 / 65.78 ms │            62.57 / 64.16 ±1.49 / 66.37 ms │    no change │
│ QQuery 92 │           56.85 / 57.89 ±0.78 / 59.18 ms │            57.36 / 58.14 ±0.49 / 58.89 ms │    no change │
│ QQuery 93 │        185.75 / 187.43 ±0.91 / 188.25 ms │         184.83 / 187.18 ±2.33 / 190.67 ms │    no change │
│ QQuery 94 │           60.37 / 60.99 ±0.86 / 62.67 ms │            60.13 / 61.84 ±1.11 / 63.65 ms │    no change │
│ QQuery 95 │        128.25 / 129.77 ±1.57 / 132.79 ms │         129.00 / 130.36 ±1.28 / 132.18 ms │    no change │
│ QQuery 96 │           74.20 / 74.54 ±0.19 / 74.78 ms │            70.22 / 74.04 ±2.08 / 76.55 ms │    no change │
│ QQuery 97 │        124.91 / 126.43 ±1.96 / 130.26 ms │         126.26 / 130.59 ±4.90 / 140.09 ms │    no change │
│ QQuery 98 │        151.96 / 153.54 ±1.39 / 155.21 ms │         150.73 / 153.46 ±2.08 / 155.32 ms │    no change │
│ QQuery 99 │ 10806.62 / 10850.00 ±43.54 / 10932.46 ms │ 10740.20 / 10907.80 ±219.98 / 11340.85 ms │    no change │
└───────────┴──────────────────────────────────────────┴───────────────────────────────────────────┴──────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                             ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                             │ 31388.80ms │
│ Total Time (worktree-io-uring-object-store)   │ 31763.90ms │
│ Average Time (HEAD)                           │   317.06ms │
│ Average Time (worktree-io-uring-object-store) │   320.85ms │
│ Queries Faster                                │          0 │
│ Queries Slower                                │          4 │
│ Queries with No Change                        │         95 │
│ Queries with Failure                          │          0 │
└───────────────────────────────────────────────┴────────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 157.3s
Peak memory 5.4 GiB
Avg memory 4.5 GiB
CPU user 259.0s
CPU sys 17.3s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 159.1s
Peak memory 5.4 GiB
Avg memory 4.4 GiB
CPU user 262.3s
CPU sys 16.8s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

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

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 worktree-io-uring-object-store
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃        worktree-io-uring-object-store ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.22 / 4.39 ±6.29 / 16.97 ms │          1.21 / 4.41 ±6.31 / 17.02 ms │     no change │
│ QQuery 1  │        14.56 / 14.85 ±0.20 / 15.18 ms │        14.21 / 14.50 ±0.22 / 14.84 ms │     no change │
│ QQuery 2  │        43.03 / 43.40 ±0.32 / 43.80 ms │        44.04 / 44.47 ±0.29 / 44.81 ms │     no change │
│ QQuery 3  │        42.09 / 45.01 ±2.42 / 47.86 ms │        42.55 / 43.70 ±0.83 / 44.72 ms │     no change │
│ QQuery 4  │     282.86 / 292.83 ±9.28 / 309.81 ms │     282.85 / 287.93 ±4.44 / 293.92 ms │     no change │
│ QQuery 5  │     337.86 / 342.70 ±5.50 / 353.20 ms │     334.11 / 336.03 ±1.76 / 339.17 ms │     no change │
│ QQuery 6  │           5.14 / 6.55 ±1.31 / 8.51 ms │           5.23 / 6.44 ±0.82 / 7.80 ms │     no change │
│ QQuery 7  │        16.11 / 16.59 ±0.32 / 17.01 ms │        17.25 / 17.66 ±0.46 / 18.34 ms │  1.06x slower │
│ QQuery 8  │     408.99 / 414.38 ±3.98 / 420.57 ms │     416.24 / 419.22 ±2.04 / 421.55 ms │     no change │
│ QQuery 9  │     629.59 / 640.68 ±7.91 / 653.91 ms │     637.73 / 649.14 ±7.30 / 658.68 ms │     no change │
│ QQuery 10 │        92.63 / 94.61 ±1.83 / 98.03 ms │       91.69 / 94.72 ±3.53 / 101.40 ms │     no change │
│ QQuery 11 │     104.22 / 105.16 ±0.65 / 106.17 ms │     103.72 / 104.52 ±0.88 / 106.02 ms │     no change │
│ QQuery 12 │     337.28 / 342.40 ±3.81 / 348.29 ms │     335.42 / 339.58 ±3.30 / 344.25 ms │     no change │
│ QQuery 13 │     460.06 / 465.94 ±3.60 / 471.39 ms │    447.46 / 475.52 ±16.42 / 494.39 ms │     no change │
│ QQuery 14 │     339.97 / 344.75 ±5.60 / 355.41 ms │     345.11 / 348.30 ±3.91 / 355.35 ms │     no change │
│ QQuery 15 │    345.00 / 366.11 ±21.15 / 402.40 ms │    349.03 / 373.27 ±25.12 / 420.00 ms │     no change │
│ QQuery 16 │     698.86 / 706.22 ±3.99 / 710.95 ms │    710.04 / 734.77 ±19.92 / 762.52 ms │     no change │
│ QQuery 17 │     701.78 / 706.41 ±4.15 / 713.74 ms │     704.84 / 711.00 ±3.77 / 715.61 ms │     no change │
│ QQuery 18 │ 1420.37 / 1454.67 ±36.46 / 1520.30 ms │ 1436.39 / 1470.12 ±29.38 / 1511.31 ms │     no change │
│ QQuery 19 │       37.39 / 57.87 ±23.62 / 90.63 ms │       37.36 / 44.87 ±10.30 / 65.23 ms │ +1.29x faster │
│ QQuery 20 │    714.57 / 735.40 ±22.15 / 763.31 ms │    727.70 / 751.58 ±34.66 / 818.78 ms │     no change │
│ QQuery 21 │     758.84 / 762.22 ±1.90 / 764.27 ms │     785.55 / 795.27 ±9.84 / 813.24 ms │     no change │
│ QQuery 22 │  1128.38 / 1138.23 ±7.02 / 1150.33 ms │ 1218.76 / 1256.90 ±31.66 / 1296.82 ms │  1.10x slower │
│ QQuery 23 │ 3105.31 / 3120.39 ±17.16 / 3153.31 ms │ 3404.42 / 3480.91 ±55.48 / 3554.56 ms │  1.12x slower │
│ QQuery 24 │      98.68 / 104.06 ±3.40 / 108.26 ms │     107.93 / 111.79 ±2.74 / 114.98 ms │  1.07x slower │
│ QQuery 25 │     138.15 / 141.28 ±1.82 / 143.15 ms │     141.33 / 144.58 ±3.31 / 149.35 ms │     no change │
│ QQuery 26 │      98.32 / 102.75 ±2.26 / 104.36 ms │     105.65 / 107.95 ±1.93 / 110.51 ms │  1.05x slower │
│ QQuery 27 │     844.14 / 853.39 ±8.05 / 868.46 ms │     871.96 / 880.00 ±7.58 / 894.00 ms │     no change │
│ QQuery 28 │ 3244.53 / 3262.18 ±12.56 / 3280.06 ms │ 3259.43 / 3280.85 ±12.76 / 3298.78 ms │     no change │
│ QQuery 29 │        49.02 / 53.77 ±4.66 / 62.68 ms │        49.18 / 57.51 ±6.87 / 69.01 ms │  1.07x slower │
│ QQuery 30 │     358.75 / 362.22 ±3.43 / 366.67 ms │    361.85 / 372.46 ±10.17 / 390.76 ms │     no change │
│ QQuery 31 │     367.92 / 381.87 ±7.81 / 390.10 ms │     382.89 / 391.59 ±7.45 / 402.57 ms │     no change │
│ QQuery 32 │ 1226.49 / 1265.28 ±26.27 / 1296.66 ms │ 1090.63 / 1113.19 ±14.67 / 1128.25 ms │ +1.14x faster │
│ QQuery 33 │ 1416.01 / 1443.31 ±30.84 / 1500.12 ms │ 1484.27 / 1584.06 ±67.02 / 1675.29 ms │  1.10x slower │
│ QQuery 34 │ 1430.72 / 1449.32 ±12.05 / 1461.44 ms │ 1515.76 / 1536.05 ±18.17 / 1561.22 ms │  1.06x slower │
│ QQuery 35 │     373.95 / 378.51 ±3.56 / 384.58 ms │    380.87 / 391.19 ±12.60 / 415.12 ms │     no change │
│ QQuery 36 │     112.98 / 119.52 ±4.72 / 124.87 ms │     115.13 / 119.87 ±2.61 / 122.99 ms │     no change │
│ QQuery 37 │        46.22 / 49.62 ±2.08 / 52.14 ms │        47.74 / 50.26 ±1.91 / 52.57 ms │     no change │
│ QQuery 38 │        73.61 / 75.96 ±1.32 / 77.49 ms │        76.45 / 77.79 ±0.77 / 78.70 ms │     no change │
│ QQuery 39 │     205.54 / 217.11 ±6.21 / 222.88 ms │     202.92 / 213.88 ±7.12 / 224.79 ms │     no change │
│ QQuery 40 │        22.24 / 24.34 ±1.42 / 26.16 ms │        23.38 / 25.13 ±2.10 / 28.28 ms │     no change │
│ QQuery 41 │        19.04 / 20.47 ±1.65 / 23.65 ms │        20.19 / 21.60 ±1.61 / 24.31 ms │  1.06x slower │
│ QQuery 42 │        19.52 / 20.06 ±0.28 / 20.28 ms │        18.93 / 19.96 ±0.71 / 20.99 ms │     no change │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                             ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                             │ 22546.77ms │
│ Total Time (worktree-io-uring-object-store)   │ 23304.53ms │
│ Average Time (HEAD)                           │   524.34ms │
│ Average Time (worktree-io-uring-object-store) │   541.97ms │
│ Queries Faster                                │          2 │
│ Queries Slower                                │          9 │
│ Queries with No Change                        │         32 │
│ Queries with Failure                          │          0 │
└───────────────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 113.7s
Peak memory 37.3 GiB
Avg memory 27.8 GiB
CPU user 1061.1s
CPU sys 92.5s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 117.2s
Peak memory 27.8 GiB
Avg memory 22.4 GiB
CPU user 1055.8s
CPU sys 102.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 worktree-io-uring-object-store
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                     HEAD ┃           worktree-io-uring-object-store ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │              6.52 / 6.99 ±0.71 / 8.39 ms │              6.55 / 7.05 ±0.78 / 8.60 ms │     no change │
│ QQuery 2  │        147.88 / 149.32 ±1.07 / 150.73 ms │        147.39 / 148.35 ±0.95 / 149.52 ms │     no change │
│ QQuery 3  │        113.36 / 113.93 ±0.41 / 114.63 ms │        113.49 / 114.31 ±0.70 / 115.57 ms │     no change │
│ QQuery 4  │    1345.57 / 1370.37 ±18.83 / 1391.92 ms │    1347.41 / 1370.59 ±16.22 / 1387.97 ms │     no change │
│ QQuery 5  │        172.24 / 174.92 ±1.74 / 177.17 ms │        173.14 / 174.90 ±2.12 / 179.01 ms │     no change │
│ QQuery 6  │       848.57 / 871.63 ±15.16 / 893.07 ms │       847.78 / 859.15 ±15.40 / 889.28 ms │     no change │
│ QQuery 7  │        340.21 / 346.34 ±3.68 / 351.46 ms │        343.11 / 345.86 ±2.71 / 350.45 ms │     no change │
│ QQuery 8  │        116.20 / 117.59 ±1.10 / 119.08 ms │        115.82 / 116.80 ±1.01 / 118.65 ms │     no change │
│ QQuery 9  │         99.57 / 109.75 ±9.76 / 128.39 ms │        111.10 / 114.71 ±3.50 / 120.38 ms │     no change │
│ QQuery 10 │        106.45 / 108.30 ±1.13 / 109.67 ms │        107.32 / 109.71 ±1.60 / 111.75 ms │     no change │
│ QQuery 11 │        979.89 / 986.69 ±6.04 / 993.90 ms │        960.68 / 974.99 ±7.21 / 979.34 ms │     no change │
│ QQuery 12 │           45.13 / 46.59 ±1.20 / 48.20 ms │           44.85 / 46.59 ±1.33 / 48.89 ms │     no change │
│ QQuery 13 │        401.78 / 404.59 ±1.94 / 407.74 ms │        403.30 / 408.82 ±3.35 / 413.18 ms │     no change │
│ QQuery 14 │     1001.77 / 1013.31 ±7.91 / 1022.59 ms │     1017.19 / 1025.48 ±4.65 / 1030.85 ms │     no change │
│ QQuery 15 │           15.30 / 16.88 ±1.12 / 18.19 ms │           15.83 / 16.92 ±0.97 / 18.47 ms │     no change │
│ QQuery 16 │              7.14 / 7.76 ±0.71 / 9.10 ms │              7.64 / 7.97 ±0.54 / 9.05 ms │     no change │
│ QQuery 17 │        229.27 / 229.58 ±0.27 / 230.00 ms │        230.41 / 232.23 ±1.50 / 234.78 ms │     no change │
│ QQuery 18 │        128.08 / 128.87 ±1.17 / 131.19 ms │        129.44 / 129.68 ±0.28 / 130.22 ms │     no change │
│ QQuery 19 │        154.96 / 156.09 ±0.96 / 157.81 ms │        155.70 / 156.37 ±0.40 / 156.80 ms │     no change │
│ QQuery 20 │           14.31 / 15.02 ±0.59 / 15.93 ms │           13.92 / 14.34 ±0.35 / 14.84 ms │     no change │
│ QQuery 21 │           19.39 / 20.24 ±0.52 / 20.99 ms │           19.43 / 20.23 ±0.90 / 21.93 ms │     no change │
│ QQuery 22 │       474.99 / 487.46 ±13.31 / 512.68 ms │        478.04 / 479.28 ±0.94 / 480.54 ms │     no change │
│ QQuery 23 │        886.41 / 895.24 ±8.07 / 907.85 ms │        899.32 / 907.22 ±7.77 / 922.02 ms │     no change │
│ QQuery 24 │        380.92 / 385.47 ±3.57 / 391.39 ms │        388.73 / 391.72 ±4.42 / 400.51 ms │     no change │
│ QQuery 25 │        339.19 / 343.23 ±2.97 / 346.05 ms │        347.33 / 350.07 ±2.74 / 353.89 ms │     no change │
│ QQuery 26 │           80.26 / 82.95 ±1.88 / 85.13 ms │           81.34 / 82.71 ±1.05 / 84.12 ms │     no change │
│ QQuery 27 │              6.79 / 7.63 ±0.79 / 8.63 ms │              7.11 / 8.05 ±0.73 / 9.06 ms │  1.05x slower │
│ QQuery 28 │        148.82 / 150.38 ±1.56 / 152.56 ms │        162.86 / 169.56 ±9.26 / 187.27 ms │  1.13x slower │
│ QQuery 29 │        281.51 / 284.07 ±2.36 / 287.50 ms │        283.76 / 289.10 ±3.34 / 293.82 ms │     no change │
│ QQuery 30 │           42.28 / 44.29 ±1.21 / 45.51 ms │           42.15 / 44.30 ±1.34 / 46.25 ms │     no change │
│ QQuery 31 │        170.01 / 171.59 ±1.19 / 173.46 ms │        175.85 / 179.33 ±3.17 / 185.08 ms │     no change │
│ QQuery 32 │           56.88 / 58.63 ±1.25 / 60.00 ms │           58.17 / 59.38 ±1.18 / 61.28 ms │     no change │
│ QQuery 33 │        139.90 / 141.34 ±1.12 / 142.63 ms │        142.29 / 143.47 ±1.47 / 146.24 ms │     no change │
│ QQuery 34 │              6.73 / 7.55 ±0.85 / 9.18 ms │              7.07 / 7.35 ±0.14 / 7.46 ms │     no change │
│ QQuery 35 │        106.48 / 109.59 ±2.11 / 113.06 ms │        109.45 / 110.61 ±1.30 / 112.92 ms │     no change │
│ QQuery 36 │              6.52 / 6.63 ±0.15 / 6.93 ms │              6.57 / 6.81 ±0.27 / 7.33 ms │     no change │
│ QQuery 37 │              8.20 / 8.81 ±0.32 / 9.06 ms │             8.48 / 8.94 ±0.71 / 10.33 ms │     no change │
│ QQuery 38 │           84.16 / 88.13 ±2.97 / 93.31 ms │           83.56 / 87.38 ±2.91 / 92.03 ms │     no change │
│ QQuery 39 │        126.77 / 129.19 ±1.64 / 131.36 ms │        127.41 / 129.56 ±1.34 / 131.58 ms │     no change │
│ QQuery 40 │        109.78 / 116.31 ±7.31 / 130.06 ms │        110.29 / 114.09 ±3.41 / 119.84 ms │     no change │
│ QQuery 41 │           14.59 / 15.27 ±0.60 / 16.28 ms │           14.59 / 15.73 ±0.98 / 17.03 ms │     no change │
│ QQuery 42 │        106.84 / 108.32 ±0.90 / 109.52 ms │        107.60 / 108.48 ±0.93 / 110.18 ms │     no change │
│ QQuery 43 │              5.95 / 6.33 ±0.51 / 7.31 ms │              6.05 / 6.15 ±0.10 / 6.34 ms │     no change │
│ QQuery 44 │           11.34 / 11.90 ±0.37 / 12.46 ms │           11.36 / 11.66 ±0.25 / 11.95 ms │     no change │
│ QQuery 45 │           50.58 / 51.50 ±1.14 / 53.71 ms │           50.27 / 51.65 ±1.08 / 53.26 ms │     no change │
│ QQuery 46 │              8.29 / 8.55 ±0.20 / 8.78 ms │              8.40 / 8.91 ±0.49 / 9.80 ms │     no change │
│ QQuery 47 │        739.69 / 747.67 ±6.06 / 757.57 ms │        763.69 / 768.81 ±4.58 / 777.24 ms │     no change │
│ QQuery 48 │        284.27 / 292.00 ±5.58 / 298.09 ms │        290.61 / 293.84 ±2.33 / 297.12 ms │     no change │
│ QQuery 49 │        250.82 / 254.81 ±3.27 / 259.51 ms │        251.93 / 252.97 ±1.07 / 255.01 ms │     no change │
│ QQuery 50 │        224.65 / 229.18 ±3.93 / 235.21 ms │        225.28 / 235.11 ±6.09 / 242.86 ms │     no change │
│ QQuery 51 │        181.87 / 184.99 ±2.17 / 188.48 ms │        181.57 / 184.31 ±2.56 / 188.70 ms │     no change │
│ QQuery 52 │        107.20 / 108.50 ±1.29 / 110.53 ms │        107.44 / 107.90 ±0.29 / 108.28 ms │     no change │
│ QQuery 53 │        102.60 / 104.71 ±2.03 / 108.15 ms │        101.48 / 102.31 ±0.69 / 103.50 ms │     no change │
│ QQuery 54 │        145.96 / 147.01 ±0.67 / 147.75 ms │        146.79 / 149.94 ±1.63 / 151.38 ms │     no change │
│ QQuery 55 │        106.40 / 107.30 ±0.75 / 108.44 ms │        107.55 / 108.34 ±0.65 / 109.46 ms │     no change │
│ QQuery 56 │        140.10 / 141.77 ±2.19 / 146.10 ms │        142.62 / 144.65 ±1.32 / 146.75 ms │     no change │
│ QQuery 57 │        175.17 / 176.34 ±1.09 / 178.32 ms │        174.92 / 177.32 ±1.72 / 180.21 ms │     no change │
│ QQuery 58 │        288.87 / 297.62 ±5.00 / 303.46 ms │        293.00 / 301.46 ±8.17 / 312.30 ms │     no change │
│ QQuery 59 │        197.52 / 200.08 ±1.74 / 202.25 ms │        200.45 / 201.55 ±1.11 / 203.46 ms │     no change │
│ QQuery 60 │        143.04 / 145.76 ±1.79 / 147.81 ms │        144.26 / 145.35 ±0.63 / 146.14 ms │     no change │
│ QQuery 61 │           13.07 / 13.37 ±0.25 / 13.77 ms │           13.05 / 13.58 ±0.35 / 13.94 ms │     no change │
│ QQuery 62 │      917.31 / 948.13 ±35.19 / 1009.66 ms │      956.37 / 993.03 ±27.69 / 1036.14 ms │     no change │
│ QQuery 63 │        103.84 / 106.16 ±2.64 / 111.12 ms │        105.29 / 107.00 ±1.43 / 109.06 ms │     no change │
│ QQuery 64 │        684.38 / 698.46 ±9.07 / 711.24 ms │        700.63 / 708.47 ±5.16 / 715.91 ms │     no change │
│ QQuery 65 │        258.80 / 261.79 ±2.85 / 267.16 ms │        256.29 / 259.80 ±3.09 / 265.06 ms │     no change │
│ QQuery 66 │        248.96 / 259.94 ±6.25 / 267.47 ms │       247.52 / 271.76 ±13.67 / 288.18 ms │     no change │
│ QQuery 67 │        314.67 / 322.05 ±5.26 / 328.06 ms │       309.41 / 321.02 ±10.26 / 337.09 ms │     no change │
│ QQuery 68 │             9.25 / 9.90 ±0.61 / 10.91 ms │           10.50 / 11.40 ±1.47 / 14.34 ms │  1.15x slower │
│ QQuery 69 │        101.15 / 103.55 ±1.75 / 105.98 ms │        102.42 / 104.25 ±1.64 / 106.32 ms │     no change │
│ QQuery 70 │       322.31 / 351.47 ±15.24 / 367.13 ms │       342.45 / 350.97 ±11.86 / 373.14 ms │     no change │
│ QQuery 71 │        134.97 / 138.32 ±3.61 / 145.19 ms │        135.27 / 137.05 ±2.12 / 141.19 ms │     no change │
│ QQuery 72 │       606.63 / 628.00 ±15.29 / 648.63 ms │       616.26 / 634.13 ±11.50 / 648.36 ms │     no change │
│ QQuery 73 │             6.60 / 9.16 ±2.06 / 12.32 ms │             7.18 / 8.47 ±1.05 / 10.38 ms │ +1.08x faster │
│ QQuery 74 │        607.53 / 615.26 ±4.77 / 622.19 ms │        616.41 / 619.66 ±4.35 / 628.21 ms │     no change │
│ QQuery 75 │        276.24 / 278.25 ±1.56 / 280.16 ms │        276.20 / 281.62 ±4.12 / 288.55 ms │     no change │
│ QQuery 76 │        130.60 / 130.98 ±0.38 / 131.61 ms │        134.01 / 134.93 ±1.19 / 137.22 ms │     no change │
│ QQuery 77 │        188.30 / 190.65 ±1.77 / 193.35 ms │        188.71 / 190.87 ±2.38 / 195.24 ms │     no change │
│ QQuery 78 │        338.25 / 344.41 ±5.14 / 353.43 ms │        336.07 / 342.10 ±4.56 / 346.46 ms │     no change │
│ QQuery 79 │        237.24 / 239.07 ±1.55 / 241.04 ms │        239.11 / 242.61 ±3.54 / 248.54 ms │     no change │
│ QQuery 80 │        321.91 / 324.57 ±2.12 / 327.01 ms │        320.55 / 323.36 ±1.88 / 326.42 ms │     no change │
│ QQuery 81 │           26.50 / 27.05 ±0.45 / 27.79 ms │           25.82 / 27.61 ±1.66 / 30.06 ms │     no change │
│ QQuery 82 │        197.13 / 202.07 ±2.72 / 205.48 ms │        198.09 / 201.81 ±3.89 / 209.31 ms │     no change │
│ QQuery 83 │           38.77 / 39.34 ±0.79 / 40.91 ms │           37.67 / 39.05 ±1.30 / 41.51 ms │     no change │
│ QQuery 84 │           48.36 / 49.38 ±0.98 / 50.70 ms │           48.22 / 48.96 ±0.50 / 49.76 ms │     no change │
│ QQuery 85 │        147.96 / 151.49 ±2.59 / 155.21 ms │        147.40 / 148.70 ±1.36 / 150.96 ms │     no change │
│ QQuery 86 │           39.32 / 40.15 ±0.83 / 41.68 ms │           39.18 / 40.06 ±0.51 / 40.62 ms │     no change │
│ QQuery 87 │           83.60 / 87.73 ±3.73 / 94.76 ms │           85.85 / 89.87 ±3.45 / 96.03 ms │     no change │
│ QQuery 88 │          98.80 / 99.88 ±0.87 / 100.96 ms │         99.89 / 101.51 ±1.89 / 104.90 ms │     no change │
│ QQuery 89 │        117.96 / 119.55 ±1.16 / 121.44 ms │        117.91 / 118.72 ±0.74 / 120.01 ms │     no change │
│ QQuery 90 │           24.04 / 24.29 ±0.18 / 24.54 ms │           23.32 / 23.94 ±0.51 / 24.69 ms │     no change │
│ QQuery 91 │           65.02 / 65.80 ±0.92 / 67.55 ms │           63.16 / 64.79 ±1.56 / 67.20 ms │     no change │
│ QQuery 92 │           57.61 / 58.55 ±0.83 / 59.97 ms │           57.15 / 58.26 ±0.76 / 59.47 ms │     no change │
│ QQuery 93 │        188.27 / 189.44 ±1.52 / 192.21 ms │        187.11 / 189.26 ±1.20 / 190.53 ms │     no change │
│ QQuery 94 │           61.43 / 62.51 ±0.72 / 63.33 ms │           60.70 / 62.10 ±1.45 / 64.81 ms │     no change │
│ QQuery 95 │        128.19 / 130.59 ±2.08 / 134.27 ms │        127.74 / 129.18 ±1.12 / 130.75 ms │     no change │
│ QQuery 96 │           70.91 / 73.40 ±1.70 / 75.96 ms │           70.96 / 73.15 ±1.36 / 74.78 ms │     no change │
│ QQuery 97 │        126.05 / 128.51 ±2.85 / 133.70 ms │        126.16 / 127.06 ±0.67 / 128.22 ms │     no change │
│ QQuery 98 │        152.15 / 155.35 ±1.97 / 157.72 ms │        153.21 / 154.65 ±1.09 / 155.94 ms │     no change │
│ QQuery 99 │ 10819.19 / 10880.40 ±45.54 / 10951.96 ms │ 10823.86 / 10849.33 ±16.84 / 10872.08 ms │     no change │
└───────────┴──────────────────────────────────────────┴──────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                             ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                             │ 31811.88ms │
│ Total Time (worktree-io-uring-object-store)   │ 31944.48ms │
│ Average Time (HEAD)                           │   321.33ms │
│ Average Time (worktree-io-uring-object-store) │   322.67ms │
│ 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 159.4s
Peak memory 5.3 GiB
Avg memory 4.5 GiB
CPU user 262.6s
CPU sys 17.3s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 160.0s
Peak memory 5.7 GiB
Avg memory 4.6 GiB
CPU user 263.9s
CPU sys 16.8s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

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

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 worktree-io-uring-object-store
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃         worktree-io-uring-object-store ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.19 / 4.40 ±6.30 / 17.00 ms │           1.25 / 4.66 ±6.63 / 17.92 ms │  1.06x slower │
│ QQuery 1  │        14.18 / 14.58 ±0.26 / 14.96 ms │         14.90 / 15.31 ±0.23 / 15.58 ms │     no change │
│ QQuery 2  │        44.02 / 44.23 ±0.18 / 44.56 ms │         44.87 / 45.23 ±0.22 / 45.44 ms │     no change │
│ QQuery 3  │        40.14 / 41.02 ±0.78 / 42.33 ms │         42.41 / 44.49 ±1.70 / 47.02 ms │  1.08x slower │
│ QQuery 4  │     287.38 / 297.25 ±8.90 / 308.92 ms │     288.04 / 304.78 ±10.74 / 319.16 ms │     no change │
│ QQuery 5  │     339.80 / 346.68 ±5.35 / 356.14 ms │     334.32 / 348.87 ±12.54 / 371.60 ms │     no change │
│ QQuery 6  │           5.34 / 6.65 ±0.73 / 7.49 ms │           6.47 / 7.69 ±1.78 / 11.20 ms │  1.16x slower │
│ QQuery 7  │        16.49 / 16.78 ±0.42 / 17.61 ms │         17.58 / 18.82 ±1.84 / 22.41 ms │  1.12x slower │
│ QQuery 8  │    405.62 / 420.28 ±14.03 / 443.95 ms │      420.43 / 429.31 ±6.59 / 438.54 ms │     no change │
│ QQuery 9  │    646.68 / 660.47 ±10.39 / 672.18 ms │     672.08 / 687.73 ±12.73 / 705.60 ms │     no change │
│ QQuery 10 │       90.62 / 97.39 ±3.90 / 101.66 ms │        92.51 / 96.73 ±4.07 / 103.44 ms │     no change │
│ QQuery 11 │     103.53 / 105.49 ±1.91 / 108.94 ms │      107.36 / 111.56 ±3.71 / 117.12 ms │  1.06x slower │
│ QQuery 12 │    333.52 / 345.25 ±13.69 / 368.09 ms │     340.91 / 356.55 ±15.26 / 379.05 ms │     no change │
│ QQuery 13 │    458.19 / 483.85 ±15.23 / 497.09 ms │     453.74 / 484.97 ±23.49 / 515.96 ms │     no change │
│ QQuery 14 │     359.29 / 365.69 ±5.23 / 375.28 ms │     351.71 / 372.19 ±10.87 / 380.30 ms │     no change │
│ QQuery 15 │    362.95 / 383.50 ±16.20 / 411.10 ms │     373.98 / 393.08 ±17.55 / 419.15 ms │     no change │
│ QQuery 16 │    721.69 / 747.89 ±19.69 / 779.49 ms │     745.36 / 760.09 ±10.43 / 772.98 ms │     no change │
│ QQuery 17 │    714.52 / 726.25 ±10.57 / 738.70 ms │     729.78 / 744.15 ±12.02 / 764.57 ms │     no change │
│ QQuery 18 │ 1404.71 / 1437.88 ±21.02 / 1462.12 ms │  1459.23 / 1515.85 ±32.35 / 1549.97 ms │  1.05x slower │
│ QQuery 19 │      37.64 / 75.91 ±73.68 / 223.26 ms │       42.59 / 61.47 ±34.00 / 129.43 ms │ +1.23x faster │
│ QQuery 20 │    727.34 / 746.82 ±23.91 / 785.87 ms │     742.14 / 779.30 ±46.49 / 869.60 ms │     no change │
│ QQuery 21 │    769.17 / 783.34 ±10.15 / 797.13 ms │      808.91 / 824.85 ±9.73 / 835.89 ms │  1.05x slower │
│ QQuery 22 │  1151.53 / 1161.34 ±5.01 / 1165.52 ms │  1294.77 / 1304.95 ±11.67 / 1327.76 ms │  1.12x slower │
│ QQuery 23 │ 3140.31 / 3229.15 ±48.79 / 3277.24 ms │ 3686.21 / 3874.88 ±110.61 / 3990.90 ms │  1.20x slower │
│ QQuery 24 │     105.91 / 107.68 ±1.74 / 109.77 ms │      116.03 / 125.46 ±9.96 / 143.49 ms │  1.17x slower │
│ QQuery 25 │     141.82 / 144.19 ±1.87 / 146.63 ms │      146.13 / 150.79 ±4.03 / 155.99 ms │     no change │
│ QQuery 26 │     103.29 / 104.46 ±0.73 / 105.12 ms │      107.45 / 113.42 ±5.87 / 121.77 ms │  1.09x slower │
│ QQuery 27 │     861.17 / 869.08 ±7.92 / 884.13 ms │    880.13 / 913.31 ±46.61 / 1004.51 ms │  1.05x slower │
│ QQuery 28 │ 3256.22 / 3305.62 ±31.93 / 3353.10 ms │  3308.21 / 3339.21 ±18.56 / 3361.11 ms │     no change │
│ QQuery 29 │        49.91 / 54.14 ±3.68 / 58.72 ms │         52.50 / 57.90 ±8.11 / 73.67 ms │  1.07x slower │
│ QQuery 30 │    356.99 / 375.31 ±14.16 / 398.99 ms │      384.22 / 394.45 ±8.55 / 403.97 ms │  1.05x slower │
│ QQuery 31 │    367.05 / 391.17 ±14.27 / 405.49 ms │     383.62 / 404.93 ±20.28 / 443.25 ms │     no change │
│ QQuery 32 │ 1206.16 / 1291.73 ±69.60 / 1417.95 ms │  1165.86 / 1187.66 ±20.11 / 1217.55 ms │ +1.09x faster │
│ QQuery 33 │ 1569.33 / 1604.92 ±37.90 / 1657.45 ms │  1558.63 / 1611.55 ±35.00 / 1652.83 ms │     no change │
│ QQuery 34 │ 1527.72 / 1575.84 ±28.85 / 1616.07 ms │  1595.26 / 1675.28 ±50.58 / 1728.46 ms │  1.06x slower │
│ QQuery 35 │     431.94 / 447.83 ±8.68 / 458.02 ms │     403.68 / 435.08 ±19.76 / 463.37 ms │     no change │
│ QQuery 36 │     117.10 / 125.47 ±4.64 / 129.70 ms │      119.88 / 126.99 ±3.77 / 130.75 ms │     no change │
│ QQuery 37 │        49.68 / 52.01 ±2.03 / 55.25 ms │         48.80 / 51.72 ±1.88 / 53.95 ms │     no change │
│ QQuery 38 │        76.45 / 79.10 ±2.43 / 83.37 ms │         79.11 / 80.48 ±0.89 / 81.88 ms │     no change │
│ QQuery 39 │     220.25 / 229.12 ±6.92 / 240.08 ms │     220.66 / 234.37 ±11.01 / 253.07 ms │     no change │
│ QQuery 40 │        24.22 / 26.67 ±1.62 / 29.12 ms │         28.35 / 30.77 ±2.19 / 34.61 ms │  1.15x slower │
│ QQuery 41 │        21.31 / 23.48 ±1.74 / 25.55 ms │         20.83 / 22.62 ±2.07 / 26.64 ms │     no change │
│ QQuery 42 │        20.86 / 21.47 ±0.82 / 23.08 ms │         19.76 / 20.79 ±1.06 / 22.84 ms │     no change │
└───────────┴───────────────────────────────────────┴────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                             ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                             │ 23371.40ms │
│ Total Time (worktree-io-uring-object-store)   │ 24564.29ms │
│ Average Time (HEAD)                           │   543.52ms │
│ Average Time (worktree-io-uring-object-store) │   571.26ms │
│ Queries Faster                                │          2 │
│ Queries Slower                                │         16 │
│ Queries with No Change                        │         25 │
│ Queries with Failure                          │          0 │
└───────────────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 118.0s
Peak memory 34.0 GiB
Avg memory 25.6 GiB
CPU user 1095.3s
CPU sys 100.8s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 123.6s
Peak memory 32.7 GiB
Avg memory 23.2 GiB
CPU user 1094.1s
CPU sys 108.9s
Peak spill 0 B

File an issue against this benchmark runner

Switch the command channel to unbounded so senders never await, and
trim hot-path overhead in the worker:

- VecDeque backlog avoids the O(N) drain of the front.
- Buffers grow via set_len as completions arrive, removing the
  zero-fill cost of vec![0u8; n] without reading uninit memory.
- submit_and_wait(1) alone both flushes SQEs and waits, saving a
  syscall per loop iteration.
- Drop the fixed in-flight cap; backpressure now comes from the
  ring and CQ drain.

Co-Authored-By: Claude Opus 4.7 (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-c4273536878-1455-kkjlt 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 worktree-io-uring-object-store (da7abc7) to 7bfa3fb (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-c4273536878-1456-xnjkd 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 worktree-io-uring-object-store (da7abc7) to 7bfa3fb (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-c4273536878-1457-lj4v6 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 worktree-io-uring-object-store (da7abc7) to 7bfa3fb (merge-base) diff using: tpch
Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

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

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

Comparing HEAD and worktree-io-uring-object-store
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                     HEAD ┃           worktree-io-uring-object-store ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │              6.50 / 6.92 ±0.76 / 8.44 ms │              6.57 / 6.94 ±0.68 / 8.29 ms │     no change │
│ QQuery 2  │        146.68 / 147.81 ±0.63 / 148.38 ms │        145.61 / 147.30 ±0.96 / 148.28 ms │     no change │
│ QQuery 3  │        111.64 / 112.42 ±0.58 / 113.13 ms │        111.26 / 111.84 ±0.59 / 112.97 ms │     no change │
│ QQuery 4  │    1214.32 / 1251.36 ±21.18 / 1269.77 ms │    1221.47 / 1250.05 ±15.35 / 1265.78 ms │     no change │
│ QQuery 5  │        171.33 / 172.98 ±0.87 / 173.72 ms │        172.32 / 173.29 ±1.24 / 175.66 ms │     no change │
│ QQuery 6  │       809.86 / 844.91 ±22.60 / 871.31 ms │       806.94 / 828.66 ±16.48 / 850.41 ms │     no change │
│ QQuery 7  │        341.33 / 343.51 ±1.63 / 345.88 ms │        340.03 / 341.84 ±2.10 / 345.45 ms │     no change │
│ QQuery 8  │        116.26 / 116.80 ±0.52 / 117.75 ms │        114.15 / 115.25 ±0.82 / 116.46 ms │     no change │
│ QQuery 9  │        100.15 / 102.82 ±2.53 / 105.95 ms │        104.81 / 111.18 ±6.57 / 123.56 ms │  1.08x slower │
│ QQuery 10 │        107.57 / 108.46 ±0.65 / 109.51 ms │        104.33 / 106.14 ±1.43 / 107.94 ms │     no change │
│ QQuery 11 │       856.07 / 880.29 ±17.35 / 899.34 ms │       841.39 / 864.74 ±14.93 / 881.87 ms │     no change │
│ QQuery 12 │           44.70 / 45.53 ±0.79 / 47.02 ms │           43.71 / 45.63 ±1.40 / 47.37 ms │     no change │
│ QQuery 13 │        398.45 / 401.10 ±2.86 / 406.26 ms │        394.45 / 398.51 ±3.07 / 403.68 ms │     no change │
│ QQuery 14 │     994.84 / 1005.61 ±10.77 / 1019.41 ms │     1000.08 / 1017.66 ±9.15 / 1025.65 ms │     no change │
│ QQuery 15 │           14.72 / 16.00 ±1.01 / 17.63 ms │           14.96 / 15.91 ±0.87 / 17.44 ms │     no change │
│ QQuery 16 │             6.98 / 7.75 ±1.31 / 10.35 ms │              7.20 / 7.32 ±0.13 / 7.55 ms │ +1.06x faster │
│ QQuery 17 │        228.14 / 228.61 ±0.54 / 229.64 ms │        226.41 / 228.88 ±1.86 / 231.74 ms │     no change │
│ QQuery 18 │        127.31 / 128.46 ±0.64 / 129.07 ms │        125.55 / 127.67 ±1.30 / 129.39 ms │     no change │
│ QQuery 19 │        152.81 / 155.31 ±1.62 / 157.51 ms │        152.35 / 153.64 ±1.52 / 156.43 ms │     no change │
│ QQuery 20 │           14.10 / 14.37 ±0.25 / 14.76 ms │           13.38 / 13.93 ±0.44 / 14.67 ms │     no change │
│ QQuery 21 │           19.41 / 19.86 ±0.42 / 20.36 ms │           18.37 / 19.22 ±0.83 / 20.71 ms │     no change │
│ QQuery 22 │        474.79 / 478.00 ±2.69 / 482.81 ms │        476.74 / 479.03 ±2.71 / 484.26 ms │     no change │
│ QQuery 23 │        857.73 / 864.82 ±6.05 / 874.34 ms │        870.23 / 876.74 ±8.00 / 891.05 ms │     no change │
│ QQuery 24 │        377.11 / 379.59 ±1.74 / 382.22 ms │        377.77 / 380.40 ±3.45 / 387.16 ms │     no change │
│ QQuery 25 │        336.81 / 341.25 ±2.28 / 343.08 ms │        336.12 / 338.89 ±1.64 / 340.46 ms │     no change │
│ QQuery 26 │           80.10 / 83.08 ±2.62 / 86.68 ms │           79.91 / 80.98 ±0.90 / 82.18 ms │     no change │
│ QQuery 27 │              6.75 / 7.32 ±0.69 / 8.66 ms │              6.70 / 6.87 ±0.15 / 7.03 ms │ +1.07x faster │
│ QQuery 28 │        147.26 / 147.96 ±0.51 / 148.86 ms │        155.89 / 162.07 ±8.36 / 178.57 ms │  1.10x slower │
│ QQuery 29 │        279.00 / 281.17 ±1.66 / 284.03 ms │        278.38 / 280.22 ±1.82 / 283.65 ms │     no change │
│ QQuery 30 │           41.72 / 43.73 ±1.57 / 46.20 ms │           42.42 / 43.77 ±1.02 / 44.66 ms │     no change │
│ QQuery 31 │        167.80 / 169.83 ±1.20 / 170.96 ms │        170.03 / 171.82 ±1.28 / 173.41 ms │     no change │
│ QQuery 32 │           56.83 / 57.20 ±0.29 / 57.54 ms │          55.71 / 64.50 ±15.95 / 96.37 ms │  1.13x slower │
│ QQuery 33 │        139.06 / 140.56 ±1.06 / 141.96 ms │        139.46 / 139.81 ±0.23 / 140.17 ms │     no change │
│ QQuery 34 │              6.89 / 7.03 ±0.19 / 7.41 ms │              6.82 / 7.06 ±0.21 / 7.44 ms │     no change │
│ QQuery 35 │        104.01 / 107.29 ±1.82 / 109.08 ms │        104.58 / 105.83 ±1.01 / 106.85 ms │     no change │
│ QQuery 36 │              6.51 / 6.80 ±0.16 / 7.02 ms │              6.55 / 6.71 ±0.17 / 7.01 ms │     no change │
│ QQuery 37 │             8.16 / 8.83 ±0.84 / 10.49 ms │              7.87 / 8.57 ±0.55 / 9.46 ms │     no change │
│ QQuery 38 │           81.81 / 87.75 ±5.28 / 96.64 ms │           82.30 / 88.46 ±3.77 / 91.83 ms │     no change │
│ QQuery 39 │        123.64 / 124.51 ±0.73 / 125.53 ms │        118.40 / 124.66 ±3.27 / 127.92 ms │     no change │
│ QQuery 40 │        106.86 / 114.23 ±6.28 / 123.13 ms │        107.91 / 112.12 ±3.77 / 117.52 ms │     no change │
│ QQuery 41 │           14.35 / 15.47 ±1.13 / 17.30 ms │           13.77 / 14.85 ±0.81 / 16.24 ms │     no change │
│ QQuery 42 │        107.46 / 108.13 ±0.49 / 108.90 ms │        105.08 / 106.78 ±1.38 / 108.89 ms │     no change │
│ QQuery 43 │              5.96 / 6.38 ±0.57 / 7.50 ms │              5.88 / 6.02 ±0.21 / 6.44 ms │ +1.06x faster │
│ QQuery 44 │           11.49 / 12.07 ±0.47 / 12.74 ms │           11.20 / 11.39 ±0.13 / 11.56 ms │ +1.06x faster │
│ QQuery 45 │           49.30 / 50.65 ±0.71 / 51.23 ms │           48.57 / 49.42 ±0.66 / 50.23 ms │     no change │
│ QQuery 46 │              8.35 / 8.56 ±0.15 / 8.81 ms │              8.04 / 8.36 ±0.23 / 8.61 ms │     no change │
│ QQuery 47 │        681.29 / 686.38 ±4.85 / 694.99 ms │        673.91 / 679.47 ±2.97 / 682.62 ms │     no change │
│ QQuery 48 │        286.53 / 290.76 ±2.48 / 293.15 ms │        284.83 / 288.57 ±2.95 / 292.52 ms │     no change │
│ QQuery 49 │        249.47 / 251.50 ±2.02 / 254.42 ms │        248.93 / 250.58 ±1.33 / 252.32 ms │     no change │
│ QQuery 50 │        215.84 / 226.56 ±7.77 / 236.23 ms │        216.58 / 221.46 ±4.28 / 228.92 ms │     no change │
│ QQuery 51 │        179.69 / 183.06 ±2.32 / 186.31 ms │        177.08 / 180.73 ±2.90 / 185.21 ms │     no change │
│ QQuery 52 │        106.82 / 107.40 ±0.88 / 109.13 ms │        104.75 / 105.51 ±0.71 / 106.66 ms │     no change │
│ QQuery 53 │        100.34 / 101.85 ±1.17 / 103.30 ms │         99.51 / 100.64 ±0.94 / 101.88 ms │     no change │
│ QQuery 54 │        143.95 / 145.10 ±1.06 / 146.58 ms │        143.22 / 145.14 ±1.15 / 146.54 ms │     no change │
│ QQuery 55 │        104.23 / 108.38 ±2.34 / 111.00 ms │        104.66 / 105.38 ±0.61 / 106.23 ms │     no change │
│ QQuery 56 │        139.90 / 141.47 ±1.51 / 143.73 ms │        140.86 / 141.14 ±0.26 / 141.64 ms │     no change │
│ QQuery 57 │        173.51 / 177.96 ±2.64 / 181.66 ms │        169.85 / 172.98 ±2.36 / 175.97 ms │     no change │
│ QQuery 58 │        288.04 / 297.61 ±6.38 / 307.44 ms │        287.16 / 294.12 ±4.62 / 299.37 ms │     no change │
│ QQuery 59 │        196.14 / 199.67 ±2.84 / 204.78 ms │        196.03 / 197.56 ±1.24 / 199.33 ms │     no change │
│ QQuery 60 │        143.19 / 145.69 ±1.95 / 148.77 ms │        141.77 / 142.24 ±0.33 / 142.80 ms │     no change │
│ QQuery 61 │           12.89 / 14.15 ±1.09 / 15.46 ms │           12.89 / 13.05 ±0.18 / 13.39 ms │ +1.08x faster │
│ QQuery 62 │       912.14 / 931.40 ±18.36 / 957.07 ms │      876.61 / 933.23 ±65.59 / 1045.74 ms │     no change │
│ QQuery 63 │        101.78 / 105.46 ±2.02 / 107.14 ms │        100.00 / 103.18 ±3.24 / 109.39 ms │     no change │
│ QQuery 64 │        675.47 / 681.44 ±5.54 / 689.70 ms │        686.83 / 691.77 ±3.05 / 695.46 ms │     no change │
│ QQuery 65 │        243.47 / 246.03 ±3.32 / 252.51 ms │        243.77 / 247.50 ±3.87 / 253.84 ms │     no change │
│ QQuery 66 │       247.69 / 258.67 ±10.24 / 276.47 ms │        246.60 / 257.15 ±8.68 / 270.90 ms │     no change │
│ QQuery 67 │        304.06 / 314.75 ±9.03 / 326.45 ms │        301.83 / 307.85 ±4.72 / 313.89 ms │     no change │
│ QQuery 68 │            8.47 / 10.18 ±0.99 / 11.54 ms │            8.25 / 10.91 ±1.64 / 12.87 ms │  1.07x slower │
│ QQuery 69 │        102.33 / 104.29 ±1.69 / 106.78 ms │        100.07 / 102.04 ±1.47 / 103.70 ms │     no change │
│ QQuery 70 │       329.19 / 347.35 ±12.02 / 360.43 ms │        341.37 / 350.81 ±6.86 / 361.14 ms │     no change │
│ QQuery 71 │        132.75 / 136.44 ±3.00 / 141.83 ms │        134.44 / 136.55 ±2.20 / 139.41 ms │     no change │
│ QQuery 72 │        609.45 / 620.34 ±6.26 / 628.14 ms │       610.07 / 622.30 ±11.60 / 642.28 ms │     no change │
│ QQuery 73 │              6.41 / 7.14 ±0.74 / 8.48 ms │              7.22 / 8.35 ±1.06 / 9.98 ms │  1.17x slower │
│ QQuery 74 │       548.94 / 564.06 ±14.10 / 582.74 ms │        540.68 / 549.26 ±6.61 / 556.35 ms │     no change │
│ QQuery 75 │        275.38 / 278.08 ±2.01 / 281.02 ms │        272.23 / 276.39 ±2.56 / 279.05 ms │     no change │
│ QQuery 76 │        130.36 / 132.48 ±2.24 / 135.86 ms │        130.38 / 132.08 ±1.88 / 135.71 ms │     no change │
│ QQuery 77 │        185.57 / 188.36 ±1.73 / 190.43 ms │        184.39 / 186.77 ±3.04 / 192.77 ms │     no change │
│ QQuery 78 │        334.03 / 340.10 ±4.37 / 346.29 ms │        335.86 / 339.71 ±1.96 / 341.00 ms │     no change │
│ QQuery 79 │        227.85 / 231.50 ±2.74 / 234.73 ms │        227.54 / 230.74 ±2.46 / 234.68 ms │     no change │
│ QQuery 80 │        319.57 / 321.44 ±1.59 / 324.16 ms │        320.19 / 322.29 ±1.73 / 325.22 ms │     no change │
│ QQuery 81 │           25.23 / 26.20 ±0.89 / 27.68 ms │           25.51 / 27.10 ±1.01 / 28.54 ms │     no change │
│ QQuery 82 │        197.24 / 198.34 ±1.15 / 200.01 ms │        196.39 / 201.08 ±4.53 / 207.41 ms │     no change │
│ QQuery 83 │           37.36 / 38.65 ±1.29 / 40.91 ms │           38.18 / 39.11 ±1.02 / 41.04 ms │     no change │
│ QQuery 84 │           47.26 / 48.86 ±1.46 / 51.41 ms │           47.35 / 48.74 ±0.82 / 49.86 ms │     no change │
│ QQuery 85 │        143.83 / 148.64 ±2.92 / 152.45 ms │        146.25 / 146.89 ±0.52 / 147.75 ms │     no change │
│ QQuery 86 │           38.13 / 39.20 ±1.01 / 40.76 ms │           38.75 / 39.69 ±0.76 / 40.92 ms │     no change │
│ QQuery 87 │           84.72 / 87.64 ±3.01 / 93.40 ms │           85.97 / 88.06 ±2.93 / 93.79 ms │     no change │
│ QQuery 88 │          97.86 / 98.87 ±0.92 / 100.60 ms │         99.60 / 104.39 ±6.26 / 116.50 ms │  1.06x slower │
│ QQuery 89 │        117.29 / 118.37 ±0.62 / 118.97 ms │        116.94 / 117.97 ±1.00 / 119.86 ms │     no change │
│ QQuery 90 │           23.38 / 23.89 ±0.35 / 24.35 ms │           23.64 / 24.36 ±1.02 / 26.37 ms │     no change │
│ QQuery 91 │           61.85 / 63.24 ±1.09 / 64.66 ms │           63.37 / 63.83 ±0.40 / 64.34 ms │     no change │
│ QQuery 92 │           56.17 / 56.89 ±0.44 / 57.55 ms │           57.20 / 58.10 ±0.94 / 59.74 ms │     no change │
│ QQuery 93 │        184.83 / 185.91 ±0.79 / 186.88 ms │        184.55 / 188.26 ±2.45 / 192.29 ms │     no change │
│ QQuery 94 │           59.63 / 60.86 ±1.11 / 62.78 ms │           60.16 / 61.48 ±1.52 / 64.47 ms │     no change │
│ QQuery 95 │        128.03 / 128.61 ±0.45 / 129.28 ms │        128.45 / 130.30 ±1.15 / 131.65 ms │     no change │
│ QQuery 96 │           70.12 / 73.33 ±1.72 / 75.26 ms │           71.33 / 74.10 ±1.68 / 76.34 ms │     no change │
│ QQuery 97 │        124.98 / 127.09 ±1.24 / 128.47 ms │        127.36 / 128.09 ±0.61 / 128.92 ms │     no change │
│ QQuery 98 │        150.62 / 154.03 ±2.13 / 155.97 ms │        152.30 / 154.14 ±1.93 / 157.59 ms │     no change │
│ QQuery 99 │ 10695.99 / 10745.38 ±58.48 / 10837.17 ms │ 10690.96 / 10789.03 ±68.65 / 10890.55 ms │     no change │
└───────────┴──────────────────────────────────────────┴──────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                             ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                             │ 31084.15ms │
│ Total Time (worktree-io-uring-object-store)   │ 31093.11ms │
│ Average Time (HEAD)                           │   313.98ms │
│ Average Time (worktree-io-uring-object-store) │   314.07ms │
│ Queries Faster                                │          5 │
│ Queries Slower                                │          6 │
│ Queries with No Change                        │         88 │
│ Queries with Failure                          │          0 │
└───────────────────────────────────────────────┴────────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 155.7s
Peak memory 5.3 GiB
Avg memory 4.5 GiB
CPU user 256.6s
CPU sys 17.0s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 155.8s
Peak memory 5.2 GiB
Avg memory 4.4 GiB
CPU user 256.0s
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 worktree-io-uring-object-store
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃        worktree-io-uring-object-store ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.26 / 4.63 ±6.49 / 17.60 ms │          1.33 / 4.69 ±6.56 / 17.81 ms │     no change │
│ QQuery 1  │        14.44 / 14.93 ±0.26 / 15.17 ms │        14.32 / 14.83 ±0.31 / 15.27 ms │     no change │
│ QQuery 2  │        44.42 / 44.74 ±0.29 / 45.17 ms │        44.53 / 44.70 ±0.17 / 44.95 ms │     no change │
│ QQuery 3  │        41.14 / 42.16 ±1.07 / 43.99 ms │        45.98 / 46.62 ±0.63 / 47.80 ms │  1.11x slower │
│ QQuery 4  │     310.37 / 311.94 ±1.66 / 314.57 ms │     310.02 / 319.35 ±6.34 / 327.08 ms │     no change │
│ QQuery 5  │     357.98 / 361.25 ±3.29 / 367.42 ms │     360.60 / 365.24 ±3.63 / 370.38 ms │     no change │
│ QQuery 6  │          5.33 / 8.21 ±3.52 / 15.13 ms │           5.66 / 6.73 ±0.67 / 7.78 ms │ +1.22x faster │
│ QQuery 7  │        17.46 / 17.82 ±0.20 / 17.97 ms │        16.93 / 17.73 ±0.83 / 19.29 ms │     no change │
│ QQuery 8  │     443.20 / 450.15 ±5.38 / 458.03 ms │    441.17 / 455.98 ±10.44 / 468.03 ms │     no change │
│ QQuery 9  │    702.58 / 721.27 ±14.29 / 745.25 ms │     720.60 / 731.98 ±9.41 / 749.23 ms │     no change │
│ QQuery 10 │       96.22 / 99.05 ±2.79 / 103.90 ms │       96.46 / 98.95 ±1.70 / 101.63 ms │     no change │
│ QQuery 11 │     109.91 / 111.38 ±1.02 / 112.67 ms │     107.71 / 109.85 ±1.28 / 111.16 ms │     no change │
│ QQuery 12 │     367.14 / 369.81 ±1.50 / 371.57 ms │     361.93 / 372.36 ±5.58 / 377.53 ms │     no change │
│ QQuery 13 │     477.15 / 490.35 ±8.28 / 499.12 ms │    495.40 / 507.27 ±13.25 / 531.87 ms │     no change │
│ QQuery 14 │     361.55 / 368.37 ±3.93 / 373.00 ms │     379.17 / 382.40 ±3.04 / 387.39 ms │     no change │
│ QQuery 15 │     392.07 / 398.72 ±9.47 / 417.53 ms │     389.64 / 395.54 ±4.98 / 403.10 ms │     no change │
│ QQuery 16 │     758.94 / 766.97 ±7.35 / 780.60 ms │    769.69 / 785.92 ±12.42 / 807.93 ms │     no change │
│ QQuery 17 │     745.29 / 757.04 ±6.77 / 766.47 ms │     770.59 / 775.37 ±3.22 / 778.80 ms │     no change │
│ QQuery 18 │ 1541.52 / 1568.76 ±25.33 / 1608.23 ms │ 1534.97 / 1550.88 ±11.49 / 1565.36 ms │     no change │
│ QQuery 19 │        37.43 / 38.51 ±0.79 / 39.60 ms │      42.24 / 66.17 ±45.40 / 156.93 ms │  1.72x slower │
│ QQuery 20 │    726.11 / 743.94 ±15.19 / 762.34 ms │   739.01 / 819.77 ±99.67 / 1007.31 ms │  1.10x slower │
│ QQuery 21 │     772.67 / 775.33 ±1.56 / 777.44 ms │     814.50 / 819.62 ±3.57 / 825.29 ms │  1.06x slower │
│ QQuery 22 │  1162.98 / 1170.28 ±6.56 / 1178.86 ms │ 1264.19 / 1289.22 ±22.37 / 1322.20 ms │  1.10x slower │
│ QQuery 23 │  3236.19 / 3246.24 ±9.66 / 3263.02 ms │ 3533.23 / 3629.71 ±59.85 / 3721.81 ms │  1.12x slower │
│ QQuery 24 │     106.24 / 109.67 ±4.46 / 118.33 ms │     108.08 / 119.51 ±6.89 / 127.82 ms │  1.09x slower │
│ QQuery 25 │     143.58 / 145.45 ±1.97 / 148.05 ms │     148.75 / 154.74 ±4.65 / 163.10 ms │  1.06x slower │
│ QQuery 26 │     106.99 / 109.33 ±2.09 / 112.33 ms │     112.86 / 120.94 ±5.17 / 127.09 ms │  1.11x slower │
│ QQuery 27 │     861.24 / 865.39 ±3.67 / 871.11 ms │     884.91 / 896.15 ±9.26 / 912.98 ms │     no change │
│ QQuery 28 │ 3341.96 / 3364.59 ±18.71 / 3396.30 ms │ 3364.65 / 3399.05 ±24.59 / 3432.73 ms │     no change │
│ QQuery 29 │        52.79 / 56.18 ±3.98 / 63.81 ms │        51.95 / 59.76 ±5.81 / 67.59 ms │  1.06x slower │
│ QQuery 30 │     389.99 / 393.56 ±3.27 / 399.06 ms │     377.03 / 387.25 ±8.92 / 402.91 ms │     no change │
│ QQuery 31 │    385.14 / 397.56 ±13.94 / 424.41 ms │    384.91 / 405.68 ±14.73 / 426.45 ms │     no change │
│ QQuery 32 │ 1176.01 / 1291.57 ±64.02 / 1362.00 ms │ 1210.41 / 1228.36 ±15.88 / 1248.18 ms │     no change │
│ QQuery 33 │ 1544.09 / 1563.61 ±19.63 / 1600.60 ms │ 1633.99 / 1705.16 ±70.74 / 1811.71 ms │  1.09x slower │
│ QQuery 34 │  1603.24 / 1615.44 ±9.49 / 1628.84 ms │ 1679.57 / 1717.88 ±27.75 / 1749.90 ms │  1.06x slower │
│ QQuery 35 │     440.18 / 449.99 ±6.32 / 457.27 ms │    449.00 / 462.87 ±15.01 / 490.52 ms │     no change │
│ QQuery 36 │     127.15 / 129.71 ±2.01 / 132.27 ms │     123.32 / 128.03 ±2.70 / 130.47 ms │     no change │
│ QQuery 37 │        49.61 / 50.85 ±0.97 / 52.23 ms │        50.70 / 54.16 ±2.26 / 56.90 ms │  1.07x slower │
│ QQuery 38 │        76.90 / 79.35 ±1.94 / 82.51 ms │        76.62 / 79.30 ±1.54 / 80.53 ms │     no change │
│ QQuery 39 │     225.21 / 234.46 ±6.35 / 240.89 ms │    221.41 / 237.61 ±11.52 / 251.33 ms │     no change │
│ QQuery 40 │        25.40 / 27.31 ±1.15 / 28.85 ms │        23.16 / 25.76 ±1.50 / 27.80 ms │ +1.06x faster │
│ QQuery 41 │        22.36 / 23.79 ±1.60 / 26.39 ms │        21.48 / 24.20 ±1.56 / 26.03 ms │     no change │
│ QQuery 42 │        21.53 / 23.02 ±1.45 / 25.45 ms │        19.76 / 21.68 ±2.17 / 25.89 ms │ +1.06x faster │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                             ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                             │ 23812.68ms │
│ Total Time (worktree-io-uring-object-store)   │ 24838.98ms │
│ Average Time (HEAD)                           │   553.78ms │
│ Average Time (worktree-io-uring-object-store) │   577.65ms │
│ Queries Faster                                │          3 │
│ Queries Slower                                │         13 │
│ Queries with No Change                        │         27 │
│ Queries with Failure                          │          0 │
└───────────────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 120.1s
Peak memory 36.2 GiB
Avg memory 26.5 GiB
CPU user 1125.5s
CPU sys 99.2s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 124.9s
Peak memory 28.3 GiB
Avg memory 20.9 GiB
CPU user 1116.2s
CPU sys 113.4s
Peak spill 0 B

File an issue against this benchmark runner

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

Labels

core Core DataFusion crate execution Related to the execution crate

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants