Skip to content

bench: demonstrate tokio-uring thread-per-core execution in dfbench#21717

Draft
Dandandan wants to merge 4 commits intoapache:mainfrom
Dandandan:tokio-uring-benchmark-demo
Draft

bench: demonstrate tokio-uring thread-per-core execution in dfbench#21717
Dandandan wants to merge 4 commits intoapache:mainfrom
Dandandan:tokio-uring-benchmark-demo

Conversation

@Dandandan
Copy link
Copy Markdown
Contributor

Summary

Demo integration of tokio-uring into dfbench showing a thread-per-core + io_uring execution model for DataFusion.

  • util::tokio_uring_pool::TokioUringPool — spawns N OS threads, each hosting its own tokio_uring::start runtime (a current-thread Tokio reactor driven by io_uring). pool.spawn(|| async { ... }) ships a Send closure to a round-robin worker which constructs the (possibly-!Send) future locally, so tokio-uring's !Send fs::File can live inside it. A thread-local IN_WORKER flag lets callers detect when they are already on a pool reactor.
  • util::tokio_uring_store::TokioUringObjectStore — a local ObjectStore that services get_opts / get_ranges via tokio_uring::fs::File::read_at. If the caller is already on a pool worker (the common case), the read stays local via tokio_uring::spawn on the current ring — no cross-thread hop. Otherwise it falls back to round-robin pool.spawn.
  • util::tokio_uring_dispatch::PoolDispatchExec — transparent ExecutionPlan wrapper. wrap_leaves_with_pool_dispatch walks the plan bottom-up and inserts it around every leaf (typically the DataSourceExec scan) so RepartitionExec's lazily-spawned input fetchers pull from streams running on different pool workers. Without this, all M fetchers pile onto the worker that won the lazy-spawn race, serializing I/O + decode.
  • ClickBench uses the pool by default on Linux (one worker per CPU). Each output partition of the physical plan is pool.spawn-ed, so plan execution itself happens on the io_uring runtimes. Top-level CoalescePartitionsExec / SortPreservingMergeExec are stripped so their N-partition children fan out across workers; for SPM the merge is rebuilt over a MemorySourceConfig and re-executed on one worker.

Enabled via --tokio-uring-workers (default: std::thread::available_parallelism() on Linux, disabled elsewhere; 0 forces the legacy tokio MT path).

Design: thread-per-core with tokio-uring

          ┌───────────────┐   ┌───────────────┐   ┌───────────────┐
main tokio│ worker thread │   │ worker thread │   │ worker thread │   ← N OS threads
runtime   │ tokio_uring::    │ tokio_uring::    │ tokio_uring::     spawned with
(planning)│   start() loop │  │   start() loop │  │   start() loop │   tokio_uring::start
          │  + io_uring sq │  │  + io_uring sq │  │  + io_uring sq │
          └───────┬───────┘   └───────┬───────┘   └───────┬───────┘
                  │                   │                   │
                  └─── PoolDispatchExec + TokioUringObjectStore ─────
  • Parallel plan execution. Each output partition of the stripped plan is pool.spawn-ed; DataFusion's SendableRecordBatchStream is polled to completion on one worker.
  • Parallel scan I/O. PoolDispatchExec redirects each DataSourceExec.execute(partition, ...) onto a pool worker, so Parquet reads + decode parallelize even when the caller is a RepartitionExec fetcher concentrated on one worker.
  • Locality-preserving reads. TokioUringObjectStore stays local to the caller's ring when already on a pool worker — no mpsc+oneshot round-trip for every get_ranges.
  • !Send-safe. pool.spawn takes a builder closure that runs on the target worker, so tokio_uring::fs::File never crosses threads.

Known limitations

  • Shuffle CPU work. RepartitionExec's hash/round-robin shuffling still runs on whichever worker first polled it. PoolDispatchExec distributes the scan CPU, not the shuffle. A cleaner fix would need DataFusion to expose a spawner hook.
  • Cross-partition operator state. Operators that share state across partitions (some JoinExec variants, etc.) behave identically to the MT path but are driven by the pool instead.
  • Writes remain on LocalFileSystem — the demo focuses on reads.

Test plan

  • cargo check on macOS (non-Linux path, LocalFS fallback).
  • cargo zigbuild --target x86_64-unknown-linux-gnu --no-default-features --lib --tests (Linux tokio-uring path).
  • cargo clippy -p datafusion-benchmarks --all-targets -- -D warnings.
  • Run ./target/release/dfbench clickbench -p /path/to/hits.parquet on Linux and compare wall time against --tokio-uring-workers 0.
  • perf stat -e io_uring:* to confirm ring submissions during a ClickBench run.

🤖 Generated with Claude Code

Dandandan and others added 3 commits April 18, 2026 14:10
Adds a demo integration of `tokio-uring` into `dfbench`:

* `util::tokio_uring_pool` — spawns N OS threads, each running its own
  `tokio_uring::start` runtime (a current-thread Tokio reactor driven
  by `io_uring`). `pool.spawn(|| async { ... })` ships a Send closure
  to a round-robin worker, where it builds a possibly-`!Send` future
  that runs locally on that worker's ring.

* `util::tokio_uring_store::TokioUringObjectStore` — local
  `ObjectStore` whose `get_opts` and `get_ranges` drive reads through
  `tokio_uring::fs::File::read_at`, dispatched across the pool so
  every read lands on the next worker's ring. Writes, list, copy, and
  delete delegate to `LocalFileSystem`.

* ClickBench uses the pool by default on Linux (one worker per CPU).
  Each output partition of the physical plan is `pool.spawn`-ed, so
  plan execution itself happens on the io_uring runtimes. Top-level
  `CoalescePartitionsExec` / `SortPreservingMergeExec` are stripped
  so their N-partition children fan out across workers; for SPM the
  merge is rebuilt over a `MemorySourceConfig` and re-executed on one
  worker.

Enabled via `--tokio-uring-workers N` (default: `available_parallelism()`
on Linux, disabled elsewhere; `0` forces the legacy tokio MT path).

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
When the ObjectStore is called from inside a pool worker (the common
case — plan execution is already dispatched onto the pool), hop-free
local dispatch is strictly better than the round-robin `pool.spawn`:
bytes land on the same core that will consume them, and we skip the
mpsc + oneshot round-trip.

Adds an `IN_WORKER` thread-local set by `run_worker`, and a fast path
in `TokioUringObjectStore::read_ranges_uring` that uses
`tokio_uring::spawn` on the current ring when `in_worker()` is true.
The round-robin path is kept for callers on a non-uring runtime
(e.g. during planning on the main tokio MT).

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
`RepartitionExec` spawns its input-fetcher tasks with `tokio::spawn`
on the current runtime the first time any output partition is
polled. On a pool of thread-per-core `tokio-uring` reactors, those
fetchers pile onto whichever worker won the race, serializing
Parquet I/O + decode on one ring.

Add a transparent `PoolDispatchExec` wrapper that redirects
`execute(partition, …)` onto a pool worker via a channel-backed
bridge stream. `wrap_leaves_with_pool_dispatch` walks the plan
bottom-up and inserts it around every leaf (typically the
`DataSourceExec` scan), so per-partition scans fan out across the
pool regardless of where `RepartitionExec`'s fetcher task runs.

The wrapper is transparent to schema, partitioning, ordering, and
statistics — it only redirects where `execute` runs.

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-c4273649324-1463-hxvmj 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 tokio-uring-benchmark-demo (31e2b2f) to 3b5008a (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-c4273649324-1462-wvdqz 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 tokio-uring-benchmark-demo (31e2b2f) to 3b5008a (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-c4273649324-1464-dxsjj 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 tokio-uring-benchmark-demo (31e2b2f) to 3b5008a (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 tokio-uring-benchmark-demo
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                     HEAD ┃               tokio-uring-benchmark-demo ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │              6.59 / 6.99 ±0.74 / 8.46 ms │              6.58 / 7.04 ±0.77 / 8.58 ms │     no change │
│ QQuery 2  │        147.28 / 148.46 ±0.98 / 150.25 ms │        146.02 / 146.63 ±0.57 / 147.70 ms │     no change │
│ QQuery 3  │        115.01 / 115.47 ±0.36 / 116.00 ms │        113.07 / 113.88 ±0.66 / 115.02 ms │     no change │
│ QQuery 4  │    1287.14 / 1310.18 ±18.84 / 1332.78 ms │    1256.13 / 1283.32 ±20.98 / 1307.45 ms │     no change │
│ QQuery 5  │        172.71 / 174.70 ±2.36 / 179.19 ms │        171.55 / 172.94 ±1.22 / 174.64 ms │     no change │
│ QQuery 6  │       819.42 / 855.64 ±31.31 / 911.24 ms │       800.46 / 827.32 ±21.01 / 856.18 ms │     no change │
│ QQuery 7  │        344.74 / 348.05 ±2.67 / 352.32 ms │        341.61 / 345.44 ±2.55 / 348.73 ms │     no change │
│ QQuery 8  │        116.81 / 118.02 ±0.99 / 119.39 ms │        115.19 / 116.75 ±0.86 / 117.60 ms │     no change │
│ QQuery 9  │        101.61 / 105.17 ±2.71 / 107.52 ms │        100.96 / 104.34 ±1.86 / 106.32 ms │     no change │
│ QQuery 10 │        106.68 / 108.00 ±1.03 / 109.84 ms │        107.11 / 108.27 ±0.82 / 109.42 ms │     no change │
│ QQuery 11 │        892.30 / 902.18 ±8.23 / 915.72 ms │       893.00 / 907.89 ±15.21 / 937.25 ms │     no change │
│ QQuery 12 │           44.24 / 45.68 ±1.53 / 48.59 ms │           44.02 / 46.92 ±2.02 / 49.15 ms │     no change │
│ QQuery 13 │        400.03 / 402.11 ±1.96 / 405.71 ms │        396.52 / 400.81 ±2.99 / 405.85 ms │     no change │
│ QQuery 14 │     1008.32 / 1019.48 ±7.44 / 1031.65 ms │      993.42 / 1003.75 ±6.65 / 1011.38 ms │     no change │
│ QQuery 15 │           15.57 / 16.46 ±0.86 / 17.93 ms │           15.69 / 16.69 ±0.96 / 18.30 ms │     no change │
│ QQuery 16 │              7.08 / 7.86 ±0.81 / 8.86 ms │              7.08 / 7.92 ±0.66 / 8.70 ms │     no change │
│ QQuery 17 │        229.77 / 231.27 ±1.20 / 232.67 ms │        227.36 / 229.65 ±1.76 / 232.07 ms │     no change │
│ QQuery 18 │        126.77 / 128.26 ±0.98 / 129.38 ms │        126.74 / 129.31 ±1.68 / 132.04 ms │     no change │
│ QQuery 19 │        156.63 / 157.53 ±0.71 / 158.44 ms │        153.96 / 155.07 ±0.89 / 156.24 ms │     no change │
│ QQuery 20 │           14.18 / 14.74 ±0.47 / 15.53 ms │           13.03 / 13.63 ±0.42 / 14.11 ms │ +1.08x faster │
│ QQuery 21 │           19.71 / 20.39 ±0.78 / 21.88 ms │           19.13 / 19.33 ±0.12 / 19.46 ms │ +1.05x faster │
│ QQuery 22 │        475.38 / 481.88 ±4.66 / 486.38 ms │        479.50 / 484.19 ±4.06 / 489.27 ms │     no change │
│ QQuery 23 │        859.54 / 875.26 ±9.06 / 885.99 ms │       854.56 / 867.70 ±10.87 / 885.34 ms │     no change │
│ QQuery 24 │        384.14 / 387.34 ±2.11 / 390.06 ms │        382.11 / 385.75 ±5.42 / 396.48 ms │     no change │
│ QQuery 25 │        339.89 / 343.64 ±3.21 / 348.08 ms │        342.53 / 343.46 ±0.71 / 344.62 ms │     no change │
│ QQuery 26 │           80.54 / 83.00 ±1.62 / 85.64 ms │           80.62 / 82.41 ±1.34 / 84.54 ms │     no change │
│ QQuery 27 │              6.94 / 7.30 ±0.42 / 8.07 ms │              7.08 / 7.68 ±0.69 / 8.80 ms │  1.05x slower │
│ QQuery 28 │        149.54 / 150.77 ±0.89 / 152.18 ms │        148.40 / 149.53 ±1.28 / 151.92 ms │     no change │
│ QQuery 29 │        284.14 / 284.78 ±0.54 / 285.74 ms │        280.55 / 284.17 ±2.91 / 289.09 ms │     no change │
│ QQuery 30 │           43.43 / 45.66 ±1.68 / 47.72 ms │           43.27 / 44.54 ±0.71 / 45.41 ms │     no change │
│ QQuery 31 │        171.20 / 172.52 ±1.32 / 174.75 ms │        168.70 / 172.73 ±2.83 / 177.39 ms │     no change │
│ QQuery 32 │         57.47 / 67.06 ±17.03 / 101.10 ms │           56.63 / 57.41 ±0.58 / 58.08 ms │ +1.17x faster │
│ QQuery 33 │        142.05 / 143.56 ±0.96 / 144.76 ms │        141.35 / 142.59 ±1.27 / 145.02 ms │     no change │
│ QQuery 34 │              6.96 / 7.16 ±0.27 / 7.69 ms │              7.02 / 7.18 ±0.19 / 7.54 ms │     no change │
│ QQuery 35 │        106.18 / 109.29 ±1.84 / 111.53 ms │        108.05 / 109.01 ±0.65 / 109.80 ms │     no change │
│ QQuery 36 │              6.85 / 7.06 ±0.26 / 7.55 ms │              6.56 / 6.91 ±0.23 / 7.17 ms │     no change │
│ QQuery 37 │              8.21 / 8.74 ±0.50 / 9.53 ms │             8.32 / 9.92 ±1.38 / 11.91 ms │  1.14x slower │
│ QQuery 38 │           85.88 / 89.45 ±4.11 / 97.19 ms │           82.51 / 88.06 ±4.65 / 96.62 ms │     no change │
│ QQuery 39 │        125.37 / 128.89 ±3.25 / 134.17 ms │        124.54 / 127.96 ±2.15 / 130.16 ms │     no change │
│ QQuery 40 │        113.18 / 119.10 ±7.92 / 134.50 ms │        108.91 / 115.64 ±7.74 / 130.79 ms │     no change │
│ QQuery 41 │           14.33 / 15.45 ±1.08 / 17.20 ms │           14.22 / 15.18 ±0.83 / 16.56 ms │     no change │
│ QQuery 42 │        109.91 / 111.31 ±1.05 / 113.05 ms │        109.09 / 109.73 ±0.53 / 110.71 ms │     no change │
│ QQuery 43 │              6.05 / 6.47 ±0.44 / 7.31 ms │              6.01 / 6.16 ±0.21 / 6.57 ms │     no change │
│ QQuery 44 │           12.22 / 13.01 ±1.05 / 15.02 ms │           11.63 / 11.84 ±0.12 / 11.96 ms │ +1.10x faster │
│ QQuery 45 │           51.03 / 51.74 ±0.55 / 52.49 ms │           50.21 / 51.57 ±0.98 / 52.82 ms │     no change │
│ QQuery 46 │              8.51 / 8.98 ±0.42 / 9.68 ms │              8.61 / 8.82 ±0.14 / 9.05 ms │     no change │
│ QQuery 47 │        702.43 / 706.71 ±5.33 / 717.05 ms │       691.18 / 705.39 ±10.16 / 722.36 ms │     no change │
│ QQuery 48 │        288.18 / 292.38 ±3.94 / 299.25 ms │        285.48 / 291.04 ±2.96 / 294.12 ms │     no change │
│ QQuery 49 │        249.97 / 255.97 ±3.59 / 260.67 ms │        250.12 / 251.83 ±1.59 / 254.33 ms │     no change │
│ QQuery 50 │        220.57 / 226.09 ±3.44 / 230.97 ms │        220.23 / 225.76 ±3.28 / 229.76 ms │     no change │
│ QQuery 51 │        180.64 / 184.69 ±3.85 / 191.74 ms │        181.38 / 183.36 ±2.10 / 187.06 ms │     no change │
│ QQuery 52 │        107.24 / 110.29 ±2.48 / 114.29 ms │        107.73 / 108.51 ±0.83 / 110.07 ms │     no change │
│ QQuery 53 │        103.51 / 104.65 ±0.94 / 106.02 ms │        102.43 / 103.71 ±1.11 / 105.36 ms │     no change │
│ QQuery 54 │        146.47 / 148.32 ±1.74 / 151.46 ms │        146.93 / 149.29 ±2.20 / 153.38 ms │     no change │
│ QQuery 55 │        108.64 / 109.10 ±0.40 / 109.69 ms │        106.37 / 108.69 ±2.10 / 111.79 ms │     no change │
│ QQuery 56 │        140.57 / 141.99 ±0.81 / 142.97 ms │        140.01 / 142.85 ±2.17 / 146.08 ms │     no change │
│ QQuery 57 │        176.82 / 178.51 ±1.22 / 180.46 ms │        171.87 / 174.87 ±2.14 / 178.18 ms │     no change │
│ QQuery 58 │        287.47 / 293.97 ±4.97 / 302.38 ms │        290.20 / 294.78 ±5.03 / 301.75 ms │     no change │
│ QQuery 59 │        199.25 / 200.82 ±1.31 / 203.07 ms │        200.23 / 202.00 ±1.90 / 204.65 ms │     no change │
│ QQuery 60 │        144.95 / 146.30 ±1.29 / 148.41 ms │        145.33 / 146.48 ±0.92 / 147.87 ms │     no change │
│ QQuery 61 │           13.18 / 13.40 ±0.20 / 13.71 ms │           13.20 / 13.35 ±0.14 / 13.58 ms │     no change │
│ QQuery 62 │       882.66 / 912.54 ±22.12 / 942.56 ms │       868.10 / 911.30 ±33.76 / 969.50 ms │     no change │
│ QQuery 63 │        105.70 / 108.23 ±1.85 / 111.27 ms │        104.99 / 108.80 ±2.74 / 113.17 ms │     no change │
│ QQuery 64 │       686.96 / 700.15 ±13.40 / 719.04 ms │        684.70 / 693.00 ±7.03 / 704.45 ms │     no change │
│ QQuery 65 │        250.96 / 253.54 ±2.29 / 256.45 ms │        251.80 / 255.37 ±2.97 / 259.82 ms │     no change │
│ QQuery 66 │       245.25 / 258.68 ±11.07 / 274.52 ms │       255.62 / 263.55 ±10.36 / 283.29 ms │     no change │
│ QQuery 67 │        309.17 / 318.97 ±6.79 / 328.43 ms │        301.86 / 314.95 ±9.67 / 331.24 ms │     no change │
│ QQuery 68 │            9.21 / 11.11 ±1.27 / 12.51 ms │            9.34 / 11.39 ±1.67 / 14.38 ms │     no change │
│ QQuery 69 │        102.57 / 105.57 ±2.44 / 109.99 ms │        103.19 / 105.28 ±1.58 / 106.87 ms │     no change │
│ QQuery 70 │       337.12 / 348.92 ±12.40 / 372.84 ms │       331.21 / 347.62 ±14.18 / 373.91 ms │     no change │
│ QQuery 71 │        137.54 / 139.17 ±2.07 / 143.11 ms │        134.98 / 138.85 ±3.35 / 144.88 ms │     no change │
│ QQuery 72 │        619.05 / 628.04 ±5.67 / 635.18 ms │       618.34 / 631.20 ±12.34 / 649.34 ms │     no change │
│ QQuery 73 │              6.63 / 7.22 ±0.55 / 8.25 ms │              6.97 / 8.14 ±0.85 / 9.35 ms │  1.13x slower │
│ QQuery 74 │        556.23 / 564.46 ±6.86 / 574.05 ms │       551.70 / 577.25 ±36.22 / 647.15 ms │     no change │
│ QQuery 75 │        277.06 / 280.84 ±2.17 / 283.56 ms │        275.92 / 276.50 ±0.40 / 277.04 ms │     no change │
│ QQuery 76 │        130.83 / 133.96 ±2.26 / 136.43 ms │        131.59 / 132.91 ±1.15 / 135.04 ms │     no change │
│ QQuery 77 │        189.89 / 191.18 ±1.34 / 193.64 ms │        186.97 / 189.58 ±1.92 / 191.88 ms │     no change │
│ QQuery 78 │        340.32 / 343.85 ±2.75 / 348.06 ms │        336.94 / 344.84 ±4.72 / 349.36 ms │     no change │
│ QQuery 79 │        234.08 / 235.96 ±1.15 / 237.33 ms │        229.14 / 233.00 ±2.26 / 235.70 ms │     no change │
│ QQuery 80 │        325.13 / 328.70 ±2.94 / 332.11 ms │        323.27 / 327.17 ±3.12 / 331.03 ms │     no change │
│ QQuery 81 │           25.80 / 26.84 ±0.92 / 28.33 ms │           26.32 / 27.08 ±0.62 / 27.83 ms │     no change │
│ QQuery 82 │        199.70 / 202.91 ±1.94 / 205.44 ms │        198.30 / 201.44 ±2.21 / 204.63 ms │     no change │
│ QQuery 83 │           38.69 / 39.43 ±0.68 / 40.68 ms │           38.22 / 40.16 ±1.47 / 42.40 ms │     no change │
│ QQuery 84 │           48.59 / 49.98 ±1.14 / 51.59 ms │           47.66 / 48.91 ±1.25 / 50.84 ms │     no change │
│ QQuery 85 │        148.96 / 150.39 ±1.74 / 153.70 ms │        147.81 / 149.15 ±1.17 / 151.10 ms │     no change │
│ QQuery 86 │           39.23 / 40.96 ±1.03 / 42.43 ms │           38.95 / 39.87 ±0.49 / 40.41 ms │     no change │
│ QQuery 87 │           85.82 / 90.33 ±3.22 / 94.06 ms │           83.53 / 87.30 ±3.65 / 94.19 ms │     no change │
│ QQuery 88 │        101.61 / 103.06 ±1.39 / 105.28 ms │         99.45 / 100.83 ±1.13 / 102.46 ms │     no change │
│ QQuery 89 │        120.92 / 121.75 ±0.73 / 123.12 ms │        117.72 / 119.39 ±0.98 / 120.46 ms │     no change │
│ QQuery 90 │           23.28 / 24.00 ±0.53 / 24.68 ms │           22.73 / 23.69 ±0.63 / 24.39 ms │     no change │
│ QQuery 91 │           62.41 / 63.42 ±0.75 / 64.63 ms │           61.80 / 64.46 ±1.83 / 66.82 ms │     no change │
│ QQuery 92 │           58.13 / 58.68 ±0.57 / 59.69 ms │           56.78 / 57.41 ±0.37 / 57.75 ms │     no change │
│ QQuery 93 │        189.44 / 192.15 ±4.27 / 200.66 ms │        185.94 / 187.42 ±1.28 / 189.01 ms │     no change │
│ QQuery 94 │           60.50 / 61.60 ±0.92 / 63.11 ms │           60.81 / 62.27 ±0.92 / 63.47 ms │     no change │
│ QQuery 95 │        129.36 / 130.79 ±0.99 / 132.38 ms │        127.79 / 129.74 ±1.75 / 132.89 ms │     no change │
│ QQuery 96 │           74.64 / 75.61 ±0.83 / 77.15 ms │           72.40 / 73.95 ±0.81 / 74.65 ms │     no change │
│ QQuery 97 │        128.77 / 130.14 ±1.55 / 132.89 ms │        122.99 / 125.49 ±1.40 / 126.96 ms │     no change │
│ QQuery 98 │        153.66 / 157.65 ±2.18 / 160.24 ms │        149.38 / 152.71 ±2.41 / 155.93 ms │     no change │
│ QQuery 99 │ 10737.87 / 10780.58 ±33.01 / 10811.10 ms │ 10749.36 / 10769.54 ±15.72 / 10796.66 ms │     no change │
└───────────┴──────────────────────────────────────────┴──────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                         ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                         │ 31440.63ms │
│ Total Time (tokio-uring-benchmark-demo)   │ 31280.48ms │
│ Average Time (HEAD)                       │   317.58ms │
│ Average Time (tokio-uring-benchmark-demo) │   315.96ms │
│ Queries Faster                            │          4 │
│ Queries Slower                            │          3 │
│ Queries with No Change                    │         92 │
│ Queries with Failure                      │          0 │
└───────────────────────────────────────────┴────────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 157.5s
Peak memory 5.1 GiB
Avg memory 4.4 GiB
CPU user 260.2s
CPU sys 17.5s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 156.7s
Peak memory 5.7 GiB
Avg memory 4.6 GiB
CPU user 258.7s
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 tokio-uring-benchmark-demo
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃               tokio-uring-benchmark-demo ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.17 / 4.37 ±6.32 / 17.01 ms │             1.25 / 4.51 ±6.37 / 17.26 ms │     no change │
│ QQuery 1  │        14.44 / 14.63 ±0.16 / 14.89 ms │           51.49 / 52.33 ±0.48 / 53.00 ms │  3.58x slower │
│ QQuery 2  │        43.39 / 43.62 ±0.21 / 43.94 ms │        148.25 / 149.15 ±0.86 / 150.49 ms │  3.42x slower │
│ QQuery 3  │        40.28 / 41.08 ±1.08 / 43.22 ms │           94.92 / 95.99 ±0.83 / 97.24 ms │  2.34x slower │
│ QQuery 4  │     281.26 / 289.92 ±5.82 / 298.10 ms │    2600.76 / 2693.68 ±69.27 / 2791.10 ms │  9.29x slower │
│ QQuery 5  │     333.56 / 338.48 ±4.21 / 344.57 ms │    2668.45 / 2798.83 ±72.26 / 2870.76 ms │  8.27x slower │
│ QQuery 6  │          5.39 / 7.62 ±2.65 / 12.76 ms │              3.45 / 5.09 ±1.49 / 7.28 ms │ +1.50x faster │
│ QQuery 7  │        16.65 / 17.37 ±1.01 / 19.36 ms │           60.13 / 61.20 ±0.71 / 62.05 ms │  3.52x slower │
│ QQuery 8  │     408.45 / 413.03 ±4.30 / 419.62 ms │    3941.73 / 3967.18 ±26.10 / 4011.18 ms │  9.61x slower │
│ QQuery 9  │     629.95 / 636.19 ±6.27 / 644.21 ms │    3743.03 / 3793.43 ±35.10 / 3847.99 ms │  5.96x slower │
│ QQuery 10 │        89.61 / 90.78 ±1.37 / 93.38 ms │        470.31 / 484.18 ±8.65 / 494.01 ms │  5.33x slower │
│ QQuery 11 │     102.46 / 103.06 ±0.59 / 104.08 ms │        517.75 / 530.20 ±8.43 / 543.27 ms │  5.14x slower │
│ QQuery 12 │     331.08 / 337.32 ±9.11 / 355.32 ms │    1758.25 / 1849.21 ±51.83 / 1901.49 ms │  5.48x slower │
│ QQuery 13 │     450.46 / 460.93 ±9.33 / 478.31 ms │    2585.42 / 2626.69 ±38.63 / 2696.55 ms │  5.70x slower │
│ QQuery 14 │     338.73 / 343.48 ±3.42 / 348.28 ms │    1789.61 / 1830.43 ±38.42 / 1891.24 ms │  5.33x slower │
│ QQuery 15 │    347.48 / 365.66 ±13.21 / 388.23 ms │    2422.68 / 2484.91 ±37.92 / 2538.82 ms │  6.80x slower │
│ QQuery 16 │    704.72 / 717.04 ±15.32 / 746.75 ms │    4409.15 / 4473.47 ±52.43 / 4541.18 ms │  6.24x slower │
│ QQuery 17 │     698.31 / 705.37 ±7.13 / 718.44 ms │    6423.11 / 6496.93 ±97.32 / 6683.89 ms │  9.21x slower │
│ QQuery 18 │ 1383.54 / 1452.79 ±47.59 / 1525.33 ms │    7735.14 / 7799.90 ±62.82 / 7888.56 ms │  5.37x slower │
│ QQuery 19 │       34.50 / 51.15 ±16.13 / 74.45 ms │           61.04 / 63.77 ±1.55 / 65.70 ms │  1.25x slower │
│ QQuery 20 │    712.50 / 737.39 ±21.28 / 770.45 ms │     1762.00 / 1765.91 ±2.55 / 1768.78 ms │  2.39x slower │
│ QQuery 21 │     753.67 / 759.92 ±5.36 / 769.18 ms │    1780.99 / 1804.21 ±33.99 / 1871.66 ms │  2.37x slower │
│ QQuery 22 │  1127.63 / 1134.10 ±5.36 / 1143.60 ms │    2352.77 / 2461.91 ±80.17 / 2552.21 ms │  2.17x slower │
│ QQuery 23 │ 3056.88 / 3078.79 ±20.26 / 3113.70 ms │   3802.06 / 4186.14 ±404.18 / 4879.51 ms │  1.36x slower │
│ QQuery 24 │     100.37 / 103.00 ±1.92 / 106.21 ms │        135.27 / 142.50 ±5.86 / 152.17 ms │  1.38x slower │
│ QQuery 25 │     137.64 / 138.79 ±1.00 / 140.56 ms │       178.95 / 197.07 ±11.36 / 213.89 ms │  1.42x slower │
│ QQuery 26 │      98.00 / 100.39 ±1.95 / 102.47 ms │        136.13 / 139.62 ±3.26 / 145.10 ms │  1.39x slower │
│ QQuery 27 │     847.45 / 855.41 ±9.11 / 873.25 ms │   3373.00 / 3489.19 ±143.17 / 3744.03 ms │  4.08x slower │
│ QQuery 28 │ 3273.42 / 3315.20 ±23.05 / 3343.76 ms │ 28908.11 / 28978.67 ±56.12 / 29058.11 ms │  8.74x slower │
│ QQuery 29 │        50.22 / 55.39 ±4.62 / 61.13 ms │          86.41 / 93.95 ±4.97 / 101.81 ms │  1.70x slower │
│ QQuery 30 │     363.29 / 371.36 ±7.54 / 384.78 ms │    1619.73 / 1655.52 ±41.55 / 1734.76 ms │  4.46x slower │
│ QQuery 31 │    370.30 / 385.67 ±10.46 / 398.53 ms │       905.76 / 936.16 ±16.90 / 954.74 ms │  2.43x slower │
│ QQuery 32 │ 1173.00 / 1202.77 ±25.76 / 1239.48 ms │    3138.12 / 3160.08 ±21.46 / 3193.77 ms │  2.63x slower │
│ QQuery 33 │ 1489.66 / 1546.83 ±44.72 / 1623.76 ms │   7590.42 / 7839.90 ±138.70 / 8003.55 ms │  5.07x slower │
│ QQuery 34 │ 1437.27 / 1470.49 ±18.14 / 1488.89 ms │    7941.44 / 8035.82 ±95.12 / 8201.78 ms │  5.46x slower │
│ QQuery 35 │     383.96 / 387.28 ±4.65 / 396.50 ms │    2392.14 / 2416.74 ±30.78 / 2476.10 ms │  6.24x slower │
│ QQuery 36 │     109.83 / 117.50 ±5.37 / 123.39 ms │          89.16 / 95.12 ±7.09 / 107.18 ms │ +1.24x faster │
│ QQuery 37 │        48.58 / 49.14 ±0.50 / 49.95 ms │           52.59 / 56.79 ±3.79 / 63.14 ms │  1.16x slower │
│ QQuery 38 │        74.36 / 76.09 ±1.05 / 76.99 ms │           72.70 / 74.76 ±1.86 / 77.39 ms │     no change │
│ QQuery 39 │     215.28 / 220.24 ±3.33 / 224.18 ms │        228.95 / 240.36 ±7.96 / 247.96 ms │  1.09x slower │
│ QQuery 40 │        23.70 / 26.46 ±2.76 / 31.49 ms │           22.40 / 23.26 ±0.61 / 23.97 ms │ +1.14x faster │
│ QQuery 41 │        20.14 / 22.63 ±1.89 / 24.86 ms │           19.58 / 21.30 ±2.28 / 25.75 ms │ +1.06x faster │
│ QQuery 42 │        19.47 / 19.98 ±0.37 / 20.62 ms │           17.05 / 18.30 ±1.22 / 20.59 ms │ +1.09x faster │
└───────────┴───────────────────────────────────────┴──────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━┓
┃ Benchmark Summary                         ┃             ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━┩
│ Total Time (HEAD)                         │  22608.74ms │
│ Total Time (tokio-uring-benchmark-demo)   │ 110094.39ms │
│ Average Time (HEAD)                       │    525.78ms │
│ Average Time (tokio-uring-benchmark-demo) │   2560.33ms │
│ Queries Faster                            │           5 │
│ Queries Slower                            │          36 │
│ Queries with No Change                    │           2 │
│ Queries with Failure                      │           0 │
└───────────────────────────────────────────┴─────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 114.0s
Peak memory 35.7 GiB
Avg memory 26.1 GiB
CPU user 1065.7s
CPU sys 94.7s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 551.4s
Peak memory 35.3 GiB
Avg memory 27.1 GiB
CPU user 1019.5s
CPU sys 154.6s
Peak spill 0 B

File an issue against this benchmark runner

Wrapping only leaves left `Agg(Partial)` running in RepartitionExec's
input-fetcher task — which on a thread-per-core pool spawns all N
fetchers onto whichever worker first polled the repartition, serializing
the partial-aggregation CPU on one core. Wrap each RepartitionExec's
child instead so every input pipeline dispatches to a round-robin pool
worker and runs in parallel.

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-c4273739986-1469-kn5rj 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 tokio-uring-benchmark-demo (3ee889f) to 3b5008a (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-c4273739986-1470-2pxdm 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 tokio-uring-benchmark-demo (3ee889f) to 3b5008a (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-c4273739986-1468-pwhnz 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 tokio-uring-benchmark-demo (3ee889f) to 3b5008a (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 tokio-uring-benchmark-demo
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                     HEAD ┃               tokio-uring-benchmark-demo ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │              6.52 / 6.98 ±0.74 / 8.46 ms │              6.88 / 7.33 ±0.72 / 8.76 ms │     no change │
│ QQuery 2  │        147.24 / 148.07 ±1.30 / 150.65 ms │        149.25 / 149.89 ±0.47 / 150.69 ms │     no change │
│ QQuery 3  │        114.18 / 115.05 ±0.62 / 116.09 ms │        115.72 / 116.10 ±0.44 / 116.91 ms │     no change │
│ QQuery 4  │    1347.58 / 1403.91 ±31.26 / 1442.51 ms │     1378.27 / 1392.60 ±8.23 / 1403.87 ms │     no change │
│ QQuery 5  │        174.47 / 176.33 ±1.03 / 177.44 ms │        172.96 / 175.14 ±2.29 / 179.16 ms │     no change │
│ QQuery 6  │       846.83 / 883.86 ±23.97 / 919.73 ms │       859.03 / 886.45 ±32.47 / 949.42 ms │     no change │
│ QQuery 7  │        344.96 / 348.90 ±3.14 / 353.95 ms │        344.18 / 346.06 ±1.73 / 348.78 ms │     no change │
│ QQuery 8  │        116.90 / 117.73 ±0.83 / 119.32 ms │        117.77 / 119.06 ±1.18 / 121.30 ms │     no change │
│ QQuery 9  │        102.00 / 104.92 ±2.55 / 108.32 ms │        101.33 / 104.20 ±3.04 / 108.80 ms │     no change │
│ QQuery 10 │        107.38 / 108.09 ±0.54 / 108.67 ms │        107.58 / 108.61 ±0.84 / 109.98 ms │     no change │
│ QQuery 11 │        970.77 / 978.68 ±5.76 / 985.36 ms │     987.81 / 1004.27 ±14.92 / 1025.06 ms │     no change │
│ QQuery 12 │           44.90 / 46.46 ±1.19 / 47.87 ms │           47.64 / 48.54 ±0.49 / 48.91 ms │     no change │
│ QQuery 13 │        401.82 / 403.98 ±1.74 / 406.33 ms │        406.13 / 408.92 ±2.74 / 413.98 ms │     no change │
│ QQuery 14 │     1012.82 / 1019.44 ±6.57 / 1028.88 ms │     1009.89 / 1014.50 ±4.50 / 1021.65 ms │     no change │
│ QQuery 15 │           17.33 / 18.39 ±0.89 / 19.76 ms │           16.03 / 17.15 ±0.92 / 18.50 ms │ +1.07x faster │
│ QQuery 16 │              7.23 / 7.85 ±0.44 / 8.58 ms │              7.34 / 7.95 ±0.72 / 9.33 ms │     no change │
│ QQuery 17 │        229.85 / 232.26 ±1.73 / 234.93 ms │        232.27 / 233.97 ±1.16 / 235.63 ms │     no change │
│ QQuery 18 │        127.95 / 129.18 ±0.75 / 130.21 ms │        128.38 / 129.09 ±0.52 / 129.69 ms │     no change │
│ QQuery 19 │        155.99 / 156.94 ±0.79 / 157.95 ms │        155.71 / 157.41 ±1.50 / 159.63 ms │     no change │
│ QQuery 20 │           13.44 / 14.19 ±0.46 / 14.81 ms │           14.68 / 15.00 ±0.39 / 15.72 ms │  1.06x slower │
│ QQuery 21 │           20.03 / 20.73 ±0.49 / 21.47 ms │           20.27 / 20.56 ±0.28 / 21.04 ms │     no change │
│ QQuery 22 │        481.82 / 485.20 ±3.08 / 490.62 ms │        483.03 / 490.08 ±8.94 / 507.70 ms │     no change │
│ QQuery 23 │       879.15 / 888.84 ±10.44 / 907.75 ms │       877.72 / 891.76 ±12.23 / 910.62 ms │     no change │
│ QQuery 24 │        384.02 / 387.01 ±2.39 / 390.39 ms │        385.37 / 387.93 ±1.84 / 390.66 ms │     no change │
│ QQuery 25 │        341.00 / 343.12 ±1.86 / 346.27 ms │        343.72 / 345.34 ±1.34 / 347.42 ms │     no change │
│ QQuery 26 │           81.99 / 82.94 ±0.51 / 83.33 ms │           82.40 / 83.69 ±0.94 / 85.05 ms │     no change │
│ QQuery 27 │              7.01 / 7.41 ±0.47 / 8.31 ms │              6.93 / 7.43 ±0.63 / 8.65 ms │     no change │
│ QQuery 28 │        149.62 / 150.92 ±1.06 / 152.28 ms │       150.15 / 158.73 ±13.55 / 185.66 ms │  1.05x slower │
│ QQuery 29 │        281.31 / 283.93 ±2.07 / 286.67 ms │        284.39 / 287.94 ±2.63 / 291.72 ms │     no change │
│ QQuery 30 │           42.42 / 44.85 ±1.35 / 46.59 ms │           44.06 / 45.26 ±0.77 / 46.42 ms │     no change │
│ QQuery 31 │        174.14 / 175.57 ±1.35 / 178.12 ms │        171.00 / 173.26 ±2.08 / 176.40 ms │     no change │
│ QQuery 32 │           57.78 / 58.32 ±0.40 / 58.97 ms │           57.30 / 58.79 ±0.97 / 59.71 ms │     no change │
│ QQuery 33 │        141.99 / 143.74 ±1.19 / 145.53 ms │        140.27 / 142.52 ±1.86 / 145.17 ms │     no change │
│ QQuery 34 │              7.05 / 7.27 ±0.31 / 7.88 ms │              7.01 / 7.34 ±0.22 / 7.69 ms │     no change │
│ QQuery 35 │        110.24 / 111.61 ±1.08 / 113.32 ms │        107.40 / 110.52 ±2.94 / 115.45 ms │     no change │
│ QQuery 36 │              6.39 / 6.74 ±0.23 / 7.05 ms │              6.76 / 6.88 ±0.14 / 7.14 ms │     no change │
│ QQuery 37 │              8.32 / 9.29 ±0.55 / 9.96 ms │              8.62 / 8.92 ±0.26 / 9.33 ms │     no change │
│ QQuery 38 │           87.54 / 90.33 ±3.65 / 97.48 ms │           86.10 / 88.76 ±1.99 / 92.01 ms │     no change │
│ QQuery 39 │        123.82 / 127.11 ±1.92 / 129.43 ms │        127.51 / 131.41 ±2.21 / 133.25 ms │     no change │
│ QQuery 40 │        109.40 / 116.61 ±6.89 / 129.51 ms │        108.75 / 117.00 ±7.44 / 130.98 ms │     no change │
│ QQuery 41 │           14.27 / 15.41 ±0.97 / 17.12 ms │           14.90 / 15.81 ±0.64 / 16.88 ms │     no change │
│ QQuery 42 │        108.07 / 110.70 ±1.48 / 112.31 ms │        109.72 / 111.27 ±1.17 / 112.37 ms │     no change │
│ QQuery 43 │              5.88 / 5.99 ±0.15 / 6.29 ms │              6.09 / 6.26 ±0.18 / 6.58 ms │     no change │
│ QQuery 44 │           11.39 / 11.75 ±0.30 / 12.18 ms │           12.09 / 12.60 ±0.53 / 13.33 ms │  1.07x slower │
│ QQuery 45 │           51.15 / 51.60 ±0.25 / 51.87 ms │           51.38 / 52.94 ±0.79 / 53.46 ms │     no change │
│ QQuery 46 │             8.35 / 8.96 ±0.92 / 10.78 ms │              8.52 / 8.86 ±0.25 / 9.28 ms │     no change │
│ QQuery 47 │        724.95 / 732.73 ±4.22 / 736.62 ms │        747.66 / 751.03 ±2.98 / 755.39 ms │     no change │
│ QQuery 48 │        285.63 / 293.26 ±5.42 / 300.36 ms │        291.06 / 295.53 ±3.55 / 299.61 ms │     no change │
│ QQuery 49 │        251.00 / 255.79 ±3.71 / 260.14 ms │        252.00 / 253.39 ±0.97 / 255.01 ms │     no change │
│ QQuery 50 │        224.35 / 229.65 ±4.20 / 234.66 ms │        222.67 / 227.83 ±4.40 / 233.01 ms │     no change │
│ QQuery 51 │        182.51 / 184.86 ±1.27 / 186.37 ms │        183.64 / 184.94 ±0.95 / 185.97 ms │     no change │
│ QQuery 52 │        108.11 / 109.91 ±1.05 / 111.31 ms │        107.82 / 110.40 ±1.70 / 112.66 ms │     no change │
│ QQuery 53 │        103.36 / 104.63 ±1.16 / 106.47 ms │        103.11 / 103.66 ±0.42 / 104.19 ms │     no change │
│ QQuery 54 │        147.51 / 148.46 ±0.63 / 149.39 ms │        145.54 / 147.97 ±1.31 / 149.10 ms │     no change │
│ QQuery 55 │        107.98 / 110.10 ±1.45 / 112.39 ms │        108.10 / 109.22 ±1.07 / 110.64 ms │     no change │
│ QQuery 56 │        141.50 / 144.12 ±1.53 / 145.84 ms │        142.10 / 142.76 ±0.77 / 144.21 ms │     no change │
│ QQuery 57 │        174.61 / 177.03 ±1.59 / 179.30 ms │        175.76 / 176.99 ±1.25 / 179.24 ms │     no change │
│ QQuery 58 │        294.44 / 302.66 ±6.84 / 314.44 ms │        289.66 / 298.19 ±5.68 / 303.86 ms │     no change │
│ QQuery 59 │        199.51 / 201.95 ±1.59 / 203.88 ms │        201.27 / 202.07 ±0.67 / 203.24 ms │     no change │
│ QQuery 60 │        144.66 / 146.51 ±1.30 / 148.14 ms │        145.30 / 147.13 ±0.92 / 147.75 ms │     no change │
│ QQuery 61 │           13.31 / 13.57 ±0.23 / 13.95 ms │           13.36 / 13.46 ±0.10 / 13.59 ms │     no change │
│ QQuery 62 │     943.76 / 1001.87 ±51.09 / 1068.63 ms │       887.02 / 916.82 ±17.86 / 941.92 ms │ +1.09x faster │
│ QQuery 63 │        106.05 / 107.50 ±1.63 / 110.65 ms │        104.82 / 107.60 ±2.81 / 112.17 ms │     no change │
│ QQuery 64 │        689.76 / 695.95 ±4.34 / 702.49 ms │        693.51 / 697.76 ±4.47 / 705.51 ms │     no change │
│ QQuery 65 │        257.59 / 260.86 ±2.67 / 265.16 ms │        257.00 / 261.60 ±3.01 / 265.08 ms │     no change │
│ QQuery 66 │       236.09 / 254.66 ±15.92 / 282.83 ms │        254.79 / 264.17 ±7.78 / 278.07 ms │     no change │
│ QQuery 67 │        322.41 / 324.43 ±2.28 / 328.70 ms │        310.32 / 322.24 ±8.11 / 333.70 ms │     no change │
│ QQuery 68 │            9.11 / 11.20 ±1.49 / 13.15 ms │           10.49 / 11.19 ±0.72 / 12.10 ms │     no change │
│ QQuery 69 │        103.06 / 106.48 ±3.05 / 111.94 ms │        101.95 / 104.16 ±1.22 / 105.57 ms │     no change │
│ QQuery 70 │       337.11 / 355.81 ±12.75 / 373.08 ms │       345.06 / 355.23 ±12.19 / 378.42 ms │     no change │
│ QQuery 71 │        135.88 / 139.36 ±2.41 / 142.04 ms │        134.55 / 136.68 ±1.64 / 139.06 ms │     no change │
│ QQuery 72 │        622.56 / 628.73 ±4.07 / 634.41 ms │        621.26 / 627.88 ±3.58 / 632.13 ms │     no change │
│ QQuery 73 │             6.83 / 8.74 ±1.51 / 11.09 ms │             7.17 / 9.26 ±1.82 / 12.06 ms │  1.06x slower │
│ QQuery 74 │        605.27 / 609.67 ±4.70 / 618.41 ms │        610.60 / 629.25 ±9.88 / 636.89 ms │     no change │
│ QQuery 75 │        277.88 / 280.47 ±2.07 / 283.37 ms │        274.86 / 279.68 ±2.72 / 282.24 ms │     no change │
│ QQuery 76 │        131.64 / 134.46 ±1.81 / 136.84 ms │        135.00 / 136.55 ±1.16 / 138.58 ms │     no change │
│ QQuery 77 │        189.82 / 191.87 ±1.38 / 193.99 ms │        188.75 / 190.90 ±1.93 / 194.07 ms │     no change │
│ QQuery 78 │        345.82 / 350.00 ±3.42 / 354.02 ms │        347.52 / 349.73 ±1.90 / 352.75 ms │     no change │
│ QQuery 79 │        232.09 / 238.16 ±3.58 / 242.44 ms │        238.49 / 245.28 ±4.46 / 252.18 ms │     no change │
│ QQuery 80 │        323.75 / 325.33 ±1.21 / 327.32 ms │        323.77 / 327.88 ±2.15 / 329.98 ms │     no change │
│ QQuery 81 │           26.96 / 28.35 ±1.61 / 31.31 ms │           26.50 / 27.63 ±0.94 / 29.22 ms │     no change │
│ QQuery 82 │        201.45 / 203.57 ±2.77 / 209.04 ms │        200.21 / 202.06 ±1.10 / 203.16 ms │     no change │
│ QQuery 83 │           38.63 / 40.36 ±1.18 / 41.80 ms │           38.68 / 39.70 ±0.79 / 41.09 ms │     no change │
│ QQuery 84 │           49.46 / 50.39 ±0.95 / 52.17 ms │           48.57 / 50.25 ±1.40 / 52.53 ms │     no change │
│ QQuery 85 │        147.21 / 149.90 ±1.55 / 151.98 ms │        147.97 / 151.01 ±2.11 / 154.50 ms │     no change │
│ QQuery 86 │           40.05 / 40.71 ±0.62 / 41.87 ms │           38.61 / 40.55 ±1.14 / 41.87 ms │     no change │
│ QQuery 87 │           86.53 / 88.65 ±2.90 / 94.34 ms │           85.71 / 88.99 ±3.23 / 94.57 ms │     no change │
│ QQuery 88 │        100.69 / 101.63 ±0.73 / 102.86 ms │         99.80 / 100.74 ±0.82 / 102.11 ms │     no change │
│ QQuery 89 │        119.83 / 121.22 ±1.03 / 122.53 ms │        119.44 / 120.14 ±0.53 / 121.02 ms │     no change │
│ QQuery 90 │           24.52 / 24.87 ±0.22 / 25.19 ms │           22.91 / 23.86 ±0.57 / 24.51 ms │     no change │
│ QQuery 91 │           64.09 / 65.07 ±0.68 / 65.78 ms │           62.46 / 64.67 ±1.92 / 67.18 ms │     no change │
│ QQuery 92 │           58.15 / 60.09 ±1.81 / 63.49 ms │           58.20 / 59.48 ±0.93 / 60.67 ms │     no change │
│ QQuery 93 │        187.14 / 189.50 ±1.89 / 192.03 ms │        189.17 / 190.37 ±0.73 / 191.08 ms │     no change │
│ QQuery 94 │           62.06 / 63.09 ±0.68 / 63.88 ms │           61.61 / 62.25 ±0.54 / 63.23 ms │     no change │
│ QQuery 95 │        128.69 / 131.06 ±1.78 / 133.39 ms │        127.92 / 130.03 ±1.47 / 131.66 ms │     no change │
│ QQuery 96 │           73.96 / 75.20 ±0.69 / 76.09 ms │           70.59 / 73.81 ±1.66 / 75.16 ms │     no change │
│ QQuery 97 │        126.23 / 129.18 ±1.48 / 130.08 ms │        125.28 / 127.01 ±0.89 / 127.72 ms │     no change │
│ QQuery 98 │        152.39 / 155.26 ±1.92 / 157.49 ms │        151.65 / 155.18 ±2.41 / 158.96 ms │     no change │
│ QQuery 99 │ 10832.18 / 10847.90 ±10.59 / 10863.84 ms │ 10761.29 / 10824.39 ±52.20 / 10903.90 ms │     no change │
└───────────┴──────────────────────────────────────────┴──────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                         ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                         │ 31913.95ms │
│ Total Time (tokio-uring-benchmark-demo)   │ 31884.66ms │
│ Average Time (HEAD)                       │   322.36ms │
│ Average Time (tokio-uring-benchmark-demo) │   322.07ms │
│ Queries Faster                            │          2 │
│ Queries Slower                            │          4 │
│ Queries with No Change                    │         93 │
│ Queries with Failure                      │          0 │
└───────────────────────────────────────────┴────────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 159.9s
Peak memory 4.8 GiB
Avg memory 4.0 GiB
CPU user 263.1s
CPU sys 17.9s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 159.8s
Peak memory 5.0 GiB
Avg memory 4.2 GiB
CPU user 263.7s
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 tokio-uring-benchmark-demo
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃             tokio-uring-benchmark-demo ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.20 / 4.39 ±6.31 / 17.01 ms │           1.22 / 4.38 ±6.23 / 16.83 ms │     no change │
│ QQuery 1  │        14.13 / 14.40 ±0.14 / 14.54 ms │                                   FAIL │  incomparable │
│ QQuery 2  │        43.32 / 43.53 ±0.25 / 43.92 ms │                                   FAIL │  incomparable │
│ QQuery 3  │        40.39 / 41.30 ±0.75 / 42.67 ms │                                   FAIL │  incomparable │
│ QQuery 4  │     281.19 / 285.47 ±4.62 / 292.20 ms │  1270.55 / 1297.08 ±17.25 / 1323.69 ms │  4.54x slower │
│ QQuery 5  │     328.33 / 331.53 ±2.76 / 335.12 ms │  1056.25 / 1079.79 ±14.71 / 1098.62 ms │  3.26x slower │
│ QQuery 6  │           5.04 / 5.77 ±0.67 / 6.85 ms │                                   FAIL │  incomparable │
│ QQuery 7  │        16.06 / 16.86 ±0.82 / 18.45 ms │         16.39 / 16.95 ±0.91 / 18.76 ms │     no change │
│ QQuery 8  │     399.83 / 404.70 ±4.36 / 411.29 ms │     629.74 / 672.59 ±21.57 / 687.71 ms │  1.66x slower │
│ QQuery 9  │     618.89 / 630.48 ±8.30 / 641.87 ms │     625.92 / 671.65 ±23.03 / 686.45 ms │  1.07x slower │
│ QQuery 10 │        89.33 / 91.22 ±1.13 / 92.44 ms │       96.27 / 110.21 ±7.86 / 120.70 ms │  1.21x slower │
│ QQuery 11 │     101.98 / 103.29 ±0.81 / 104.17 ms │      126.80 / 128.91 ±2.31 / 133.27 ms │  1.25x slower │
│ QQuery 12 │     328.32 / 331.41 ±3.27 / 337.59 ms │     418.85 / 438.95 ±21.84 / 466.40 ms │  1.32x slower │
│ QQuery 13 │    441.88 / 472.01 ±23.02 / 509.39 ms │     907.23 / 938.37 ±26.15 / 978.27 ms │  1.99x slower │
│ QQuery 14 │     338.78 / 341.91 ±3.14 / 347.79 ms │     448.43 / 499.44 ±38.53 / 567.45 ms │  1.46x slower │
│ QQuery 15 │    344.15 / 358.56 ±16.11 / 387.23 ms │     613.69 / 661.05 ±42.70 / 717.02 ms │  1.84x slower │
│ QQuery 16 │     699.39 / 705.40 ±5.33 / 712.68 ms │  1369.53 / 1407.79 ±21.39 / 1435.60 ms │  2.00x slower │
│ QQuery 17 │     697.50 / 703.03 ±5.06 / 710.47 ms │  3180.48 / 3197.40 ±14.29 / 3222.73 ms │  4.55x slower │
│ QQuery 18 │ 1419.05 / 1454.24 ±30.29 / 1496.02 ms │  2736.18 / 2811.07 ±49.33 / 2874.44 ms │  1.93x slower │
│ QQuery 19 │        36.83 / 37.94 ±1.49 / 40.85 ms │         33.91 / 34.65 ±0.82 / 35.68 ms │ +1.10x faster │
│ QQuery 20 │    710.34 / 732.67 ±17.68 / 756.00 ms │                                   FAIL │  incomparable │
│ QQuery 21 │     753.29 / 760.66 ±5.35 / 766.96 ms │      782.18 / 791.19 ±7.04 / 800.72 ms │     no change │
│ QQuery 22 │  1123.62 / 1128.41 ±3.72 / 1134.69 ms │  1183.00 / 1199.68 ±11.62 / 1214.34 ms │  1.06x slower │
│ QQuery 23 │ 3042.52 / 3071.86 ±27.05 / 3107.36 ms │  3216.15 / 3256.00 ±33.16 / 3302.40 ms │  1.06x slower │
│ QQuery 24 │     101.51 / 103.74 ±2.82 / 109.30 ms │     475.28 / 488.77 ±11.41 / 507.53 ms │  4.71x slower │
│ QQuery 25 │     137.98 / 138.86 ±0.63 / 139.66 ms │      137.16 / 144.10 ±4.34 / 148.59 ms │     no change │
│ QQuery 26 │      99.18 / 101.92 ±2.04 / 104.65 ms │      502.66 / 507.96 ±5.16 / 517.71 ms │  4.98x slower │
│ QQuery 27 │     845.21 / 849.10 ±4.31 / 857.43 ms │     877.62 / 892.60 ±13.93 / 919.03 ms │  1.05x slower │
│ QQuery 28 │ 3246.16 / 3257.58 ±11.92 / 3272.64 ms │  3329.09 / 3371.72 ±25.05 / 3396.58 ms │     no change │
│ QQuery 29 │        50.07 / 53.94 ±4.46 / 60.21 ms │                                   FAIL │  incomparable │
│ QQuery 30 │     356.27 / 363.34 ±3.61 / 365.72 ms │     475.81 / 521.28 ±23.38 / 540.15 ms │  1.43x slower │
│ QQuery 31 │    372.49 / 381.34 ±10.02 / 399.73 ms │     604.66 / 630.16 ±17.04 / 652.44 ms │  1.65x slower │
│ QQuery 32 │ 1030.14 / 1038.61 ±11.82 / 1061.84 ms │  3019.02 / 3049.58 ±33.25 / 3111.27 ms │  2.94x slower │
│ QQuery 33 │  1425.00 / 1430.21 ±3.23 / 1434.83 ms │ 1932.16 / 2033.09 ±115.22 / 2248.11 ms │  1.42x slower │
│ QQuery 34 │ 1431.16 / 1459.97 ±17.37 / 1482.82 ms │   1954.49 / 1973.10 ±9.54 / 1980.19 ms │  1.35x slower │
│ QQuery 35 │    370.51 / 382.91 ±12.77 / 407.00 ms │     510.37 / 577.24 ±39.58 / 610.84 ms │  1.51x slower │
│ QQuery 36 │     118.87 / 120.64 ±1.47 / 123.35 ms │      123.08 / 125.68 ±1.90 / 128.73 ms │     no change │
│ QQuery 37 │        48.60 / 49.96 ±1.02 / 51.55 ms │         48.09 / 49.53 ±2.22 / 53.93 ms │     no change │
│ QQuery 38 │        74.68 / 78.65 ±3.35 / 83.63 ms │         75.73 / 78.16 ±1.69 / 80.71 ms │     no change │
│ QQuery 39 │     209.11 / 216.43 ±5.72 / 223.76 ms │     293.73 / 303.98 ±11.87 / 324.92 ms │  1.40x slower │
│ QQuery 40 │        23.26 / 24.81 ±1.63 / 27.93 ms │         26.16 / 27.47 ±1.75 / 30.84 ms │  1.11x slower │
│ QQuery 41 │        19.28 / 20.46 ±0.59 / 20.81 ms │         22.90 / 23.93 ±0.73 / 25.04 ms │  1.17x slower │
│ QQuery 42 │        19.76 / 19.91 ±0.10 / 20.00 ms │         19.19 / 19.68 ±0.36 / 20.20 ms │     no change │
└───────────┴───────────────────────────────────────┴────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                         ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                         │ 21271.84ms │
│ Total Time (tokio-uring-benchmark-demo)   │ 34035.16ms │
│ Average Time (HEAD)                       │   574.91ms │
│ Average Time (tokio-uring-benchmark-demo) │   919.87ms │
│ Queries Faster                            │          1 │
│ Queries Slower                            │         27 │
│ Queries with No Change                    │          9 │
│ Queries with Failure                      │          6 │
└───────────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 111.7s
Peak memory 37.3 GiB
Avg memory 27.8 GiB
CPU user 1056.2s
CPU sys 83.8s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 171.2s
Peak memory 35.5 GiB
Avg memory 27.1 GiB
CPU user 1027.6s
CPU sys 108.0s
Peak spill 0 B

File an issue against this benchmark runner

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

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants