Skip to content

Experimental: parquet bounded streaming of large column chunks (companion to arrow-rs#10410)#23795

Draft
adriangb wants to merge 5 commits into
apache:mainfrom
pydantic:bounded-streaming-core
Draft

Experimental: parquet bounded streaming of large column chunks (companion to arrow-rs#10410)#23795
adriangb wants to merge 5 commits into
apache:mainfrom
pydantic:bounded-streaming-core

Conversation

@adriangb

@adriangb adriangb commented Jul 22, 2026

Copy link
Copy Markdown
Contributor

Which issue does this PR close?

None yet — draft companion to the arrow-rs bounded streaming RFC: apache/arrow-rs#10410. This PR will not compile in CI until that lands and is released (it was developed and benchmarked against a [patch.crates-io] of that branch, not included here).

Rationale for this change

The parquet push-decoder fetch loop materializes every projected byte of a row group before decoding. For wide-value columns (e.g. 100 MB single-row-group files whose projected blob column is ~97 MB), peak reader memory ≈ row group size × concurrent partitions, and decode start is gated on the slowest range completing. arrow-rs#10410 adds an opt-in bounded streaming mode; this PR wires it through DataFusion.

What changes are included in this PR?

  • New config option datafusion.execution.parquet.bounded_streaming (default false).
  • DecoderBuilderConfig applies with_bounded_streaming to the push decoder builder when enabled.
  • PushDecoderStreamState gains a FetchState: the plain get_byte_ranges loop as today, or the parquet AdaptiveFetcher (small coalesced ranges materialized exactly as before; large column chunks consumed incrementally window by window). Falls back to the plain path when no tokio runtime is available.
  • ParquetFileReader / CachedParquetFileReader forward get_bytes_stream to ParquetObjectReader (without this the fallback silently materializes).

Benchmark summary (harness changes in the companion benchmarks PR)

On the motivating shape (8 × 94 MB single-row-group files, 92 MB blob column, full-scan checksum): identical results and request counts (8 GETs both), wall neutral (29.9 → 29.7 ms median SSD), peak RSS 1261 → 702 MB (−44%). TPC-H SF1 / TPC-DS SF1 / stock ClickBench: neutral within noise, zero request inflation (streaming does not engage below the 16 MiB threshold or without an offset index). Known issue inherited from the arrow-rs draft: ~+14% wall on ClickBench-with-page-indexes string queries from per-window dictionary re-decode (fix identified upstream: cache decoded dictionaries across windows).

Known CI failure: datafusion-common's test_cast_struct_with_array_and_map_fields fails when building against arrow-rs git main (Map entry field naming changed upstream: key/value vs keys/values). This is a DataFusion-main vs arrow-main incompatibility that the next arrow upgrade PR will resolve; it is unrelated to this change and only surfaces here because of the temporary git patch.

Are these changes tested?

datafusion-datasource-parquet suite green; correctness validated off-vs-on (identical results incl. checksums) on the benchmark datasets. sqllogictest information_schema and config docs updated.

Are there any user-facing changes?

New experimental config option, default off.

🤖 Generated with Claude Code

https://claude.ai/code/session_01MGnT9oETcFMydc9cp95HLG

…olumn chunks

Adds datafusion.execution.parquet.bounded_streaming (default false). When
enabled, the parquet push decoder decodes row groups with large projected
column chunks in bounded windows, and the fetch loop consumes those chunks
via single ranged requests whose bodies stream into a bounded buffer
(parquet AdaptiveFetcher), instead of buffering every projected byte of a
row group before decode starts.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01MGnT9oETcFMydc9cp95HLG
@github-actions github-actions Bot added documentation Improvements or additions to documentation sqllogictest SQL Logic Tests (.slt) common Related to common crate proto Related to proto crate datasource Changes to the datasource crate labels Jul 22, 2026
@github-actions

github-actions Bot commented Jul 22, 2026

Copy link
Copy Markdown

Thank you for opening this pull request!

Reviewer note: cargo-semver-checks reported the current version number is not SemVer-compatible with the changes in this pull request (compared against the base branch).

Details
     Cloning apache/main
    Building datafusion-common v54.1.0 (current)
       Built [  32.532s] (current)
     Parsing datafusion-common v54.1.0 (current)
      Parsed [   0.058s] (current)
    Building datafusion-common v54.1.0 (baseline)
       Built [  32.597s] (baseline)
     Parsing datafusion-common v54.1.0 (baseline)
      Parsed [   0.057s] (baseline)
    Checking datafusion-common v54.1.0 -> v54.1.0 (no change; assume patch)
     Checked [   0.924s] 223 checks: 222 pass, 1 fail, 0 warn, 30 skip

--- failure constructible_struct_adds_field: externally-constructible struct adds field ---

Description:
A pub struct constructible with a struct literal has a new pub field. Existing struct literals must be updated to include the new field.
        ref: https://doc.rust-lang.org/reference/expressions/struct-expr.html
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.49.0/src/lints/constructible_struct_adds_field.ron

Failed in:
  field ParquetOptions.bounded_streaming in /home/runner/work/datafusion/datafusion/datafusion/common/src/config.rs:1103

     Summary semver requires new major version: 1 major and 0 minor checks failed
    Finished [  67.780s] datafusion-common
    Building datafusion-datasource-parquet v54.1.0 (current)
error: running cargo-doc on crate 'datafusion-datasource-parquet' failed with output:
-----
   Compiling proc-macro2 v1.0.107
   Compiling quote v1.0.47
   Compiling unicode-ident v1.0.24
   Compiling libc v0.2.189
    Checking cfg-if v1.0.4
    Checking memchr v2.8.3
   Compiling autocfg v1.5.1
   Compiling libm v0.2.16
   Compiling num-traits v0.2.19
   Compiling syn v2.0.119
   Compiling zerocopy v0.8.55
    Checking bytes v1.12.1
   Compiling getrandom v0.3.4
   Compiling serde_core v1.0.229
    Checking once_cell v1.21.4
    Checking foldhash v0.2.0
    Checking itoa v1.0.18
    Checking equivalent v1.0.2
    Checking allocator-api2 v0.2.21
   Compiling zmij v1.0.23
    Checking hashbrown v0.17.1
   Compiling serde_json v1.0.151
    Checking num-integer v0.1.46
    Checking indexmap v2.14.0
    Checking stable_deref_trait v1.2.1
    Checking siphasher v1.0.3
    Checking iana-time-zone v0.1.65
   Compiling version_check v0.9.5
   Compiling ahash v0.8.12
    Checking chrono v0.4.45
    Checking phf_shared v0.12.1
    Checking num-bigint v0.4.8
   Compiling chrono-tz v0.10.4
    Checking phf v0.12.1
   Compiling shlex v2.0.1
   Compiling synstructure v0.13.2
    Checking arrow-schema v59.1.0
   Compiling jobserver v0.1.35
   Compiling find-msvc-tools v0.1.9
   Compiling cc v1.3.0
    Checking num-complex v0.4.6
    Checking smallvec v1.15.2
    Checking writeable v0.6.3
    Checking lexical-util v1.0.7
   Compiling zerocopy-derive v0.8.55
   Compiling zerofrom-derive v0.1.7
   Compiling yoke-derive v0.8.2
    Checking zerofrom v0.1.8
   Compiling zerovec-derive v0.11.3
    Checking yoke v0.8.3
   Compiling displaydoc v0.2.6
    Checking zerovec v0.11.6
    Checking litemap v0.8.2
    Checking pin-project-lite v0.2.17
   Compiling pkg-config v0.3.33
    Checking tinystr v0.8.3
    Checking icu_locale_core v2.2.0
   Compiling zstd-sys v2.0.16+zstd.1.5.7
    Checking potential_utf v0.1.5
    Checking zerotrie v0.2.4
   Compiling icu_normalizer_data v2.2.0
   Compiling icu_properties_data v2.2.0
    Checking utf8_iter v1.0.4
    Checking futures-core v0.3.33
    Checking futures-sink v0.3.33
    Checking icu_collections v2.2.0
    Checking icu_provider v2.2.0
   Compiling semver v1.0.28
    Checking futures-channel v0.3.33
   Compiling rustc_version v0.4.1
    Checking lexical-write-integer v1.0.6
    Checking lexical-parse-integer v1.0.6
   Compiling futures-macro v0.3.33
    Checking slab v0.4.12
    Checking futures-io v0.3.33
    Checking futures-task v0.3.33
   Compiling zstd-safe v7.2.4
   Compiling parking_lot_core v0.9.12
    Checking bitflags v2.13.1
    Checking lexical-parse-float v1.0.6
    Checking futures-util v0.3.33
    Checking half v2.7.1
    Checking arrow-buffer v59.1.0
    Checking lexical-write-float v1.0.6
   Compiling flatbuffers v25.12.19
    Checking icu_properties v2.2.0
    Checking arrow-data v59.1.0
    Checking arrow-array v59.1.0
    Checking icu_normalizer v2.2.0
   Compiling tokio-macros v2.7.1
   Compiling syn v3.0.3
    Checking aho-corasick v1.1.4
    Checking arrow-select v59.1.0
    Checking scopeguard v1.2.0
    Checking ryu v1.0.23
    Checking unicode-width v0.2.2
    Checking unicode-segmentation v1.13.3
    Checking regex-syntax v0.8.11
    Checking base64 v0.22.1
    Checking comfy-table v7.2.2
    Checking arrow-ord v59.1.0
    Checking lock_api v0.4.14
    Checking tokio v1.53.1
    Checking regex-automata v0.4.16
    Checking idna_adapter v1.2.2
    Checking lexical-core v1.0.6
    Checking atoi v2.0.0
    Checking either v1.16.0
    Checking alloc-no-stdlib v2.0.4
   Compiling getrandom v0.4.3
    Checking twox-hash v2.1.3
    Checking percent-encoding v2.3.2
   Compiling thiserror v2.0.19
    Checking regex v1.13.1
    Checking form_urlencoded v1.2.2
    Checking lz4_flex v0.13.1
    Checking alloc-stdlib v0.2.4
    Checking arrow-cast v59.1.0
    Checking idna v1.1.0
   Compiling thiserror-impl v2.0.19
    Checking futures-executor v0.3.33
   Compiling ring v0.17.14
   Compiling tracing-attributes v0.1.31
    Checking tracing-core v0.1.36
    Checking csv-core v0.1.13
    Checking same-file v1.0.6
    Checking simdutf8 v0.1.5
   Compiling snap v1.1.2
   Compiling paste v1.0.15
    Checking walkdir v2.5.0
    Checking csv v1.4.0
    Checking tracing v0.1.44
    Checking futures v0.3.33
    Checking url v2.5.8
    Checking brotli-decompressor v5.0.3
    Checking itertools v0.14.0
    Checking parking_lot v0.12.5
   Compiling async-trait v0.1.91
    Checking http v1.4.2
    Checking getrandom v0.2.17
    Checking humantime v2.4.0
    Checking zlib-rs v0.6.6
    Checking untrusted v0.9.0
    Checking object_store v0.13.2
    Checking flate2 v1.1.9
    Checking brotli v8.0.4
    Checking zstd v0.13.3
    Checking arrow-ipc v59.1.0
    Checking arrow-csv v59.1.0
    Checking arrow-json v59.1.0
    Checking arrow-string v59.1.0
    Checking arrow-arith v59.1.0
    Checking arrow-row v59.1.0
    Checking log v0.4.33
   Compiling seq-macro v0.3.6
    Checking arrow v59.1.0
    Checking uuid v1.24.0
    Checking itertools v0.15.0
    Checking hex v0.4.3
   Compiling pin-project-internal v1.1.13
   Compiling rustix v1.1.4
   Compiling crossbeam-utils v0.8.22
    Checking ppv-lite86 v0.2.21
    Checking rand_core v0.9.5
    Checking pin-project v1.1.13
    Checking linux-raw-sys v0.12.1
    Checking datafusion-doc v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/doc)
    Checking rand_chacha v0.9.0
    Checking parquet v59.1.0
    Checking hashbrown v0.14.5
    Checking foldhash v0.1.5
    Checking fastrand v2.5.0
    Checking hashbrown v0.15.5
    Checking dashmap v6.2.1
    Checking rand v0.9.5
    Checking tokio-util v0.7.19
    Checking fixedbitset v0.5.7
    Checking petgraph v0.8.3
    Checking tempfile v3.27.0
   Compiling datafusion-macros v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/macros)
    Checking datafusion-common-runtime v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/common-runtime)
    Checking glob v0.3.4
    Checking datafusion-common v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/common)
    Checking datafusion-expr-common v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/expr-common)
    Checking datafusion-physical-expr-common v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/physical-expr-common)
    Checking datafusion-functions-aggregate-common v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/functions-aggregate-common)
    Checking datafusion-functions-window-common v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/functions-window-common)
    Checking datafusion-expr v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/expr)
    Checking datafusion-execution v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/execution)
    Checking datafusion-physical-expr v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/physical-expr)
    Checking datafusion-functions v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/functions)
    Checking datafusion-physical-plan v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/physical-plan)
    Checking datafusion-physical-expr-adapter v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/physical-expr-adapter)
    Checking datafusion-session v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/session)
    Checking datafusion-datasource v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/datasource)
    Checking datafusion-pruning v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/pruning)
 Documenting datafusion-datasource-parquet v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/datasource-parquet)
error[E0432]: unresolved import `parquet::arrow::arrow_reader::BoundedStreamingOptions`
  --> /home/runner/work/datafusion/datafusion/datafusion/datasource-parquet/src/push_decoder.rs:50:26
   |
50 |     ArrowReaderMetadata, BoundedStreamingOptions, ParquetRecordBatchReader,
   |                          ^^^^^^^^^^^^^^^^^^^^^^^ no `BoundedStreamingOptions` in `arrow::arrow_reader`

error[E0432]: unresolved import `parquet::arrow::async_reader::AdaptiveFetcher`
  --> /home/runner/work/datafusion/datafusion/datafusion/datasource-parquet/src/push_decoder.rs:53:36
   |
53 | use parquet::arrow::async_reader::{AdaptiveFetcher, AsyncFileReader};
   |                                    ^^^^^^^^^^^^^^^ no `AdaptiveFetcher` in `arrow::async_reader`

error[E0407]: method `get_bytes_stream` is not a member of trait `AsyncFileReader`
   --> /home/runner/work/datafusion/datafusion/datafusion/datasource-parquet/src/reader.rs:125:5
    |
125 | /     fn get_bytes_stream(
126 | |         &mut self,
127 | |         range: Range<u64>,
128 | |     ) -> Option<
...   |
139 | |         Some(stream)
140 | |     }
    | |_____^ not a member of trait `AsyncFileReader`

error[E0407]: method `get_bytes_stream` is not a member of trait `AsyncFileReader`
   --> /home/runner/work/datafusion/datafusion/datafusion/datasource-parquet/src/reader.rs:308:5
    |
308 | /     fn get_bytes_stream(
309 | |         &mut self,
310 | |         range: Range<u64>,
311 | |     ) -> Option<
...   |
322 | |         Some(stream)
323 | |     }
    | |_____^ not a member of trait `AsyncFileReader`

Some errors have detailed explanations: E0407, E0432.
For more information about an error, try `rustc --explain E0407`.
error: could not document `datafusion-datasource-parquet`

-----

error: failed to build rustdoc for crate datafusion-datasource-parquet v54.1.0
note: this is usually due to a compilation error in the crate,
      and is unlikely to be a bug in cargo-semver-checks
note: the following command can be used to reproduce the error:
      cargo new --lib example &&
          cd example &&
          echo '[workspace]' >> Cargo.toml &&
          cargo add --path /home/runner/work/datafusion/datafusion/datafusion/datasource-parquet --features parquet_encryption &&
          cargo check &&
          cargo doc

    Building datafusion-proto v54.1.0 (current)
error: running cargo-doc on crate 'datafusion-proto' failed with output:
-----
   Compiling proc-macro2 v1.0.107
   Compiling unicode-ident v1.0.24
   Compiling quote v1.0.47
   Compiling libc v0.2.189
    Checking cfg-if v1.0.4
    Checking memchr v2.8.3
   Compiling libm v0.2.16
   Compiling autocfg v1.5.1
   Compiling syn v2.0.119
   Compiling num-traits v0.2.19
    Checking bytes v1.12.1
   Compiling zerocopy v0.8.55
   Compiling serde_core v1.0.229
    Checking equivalent v1.0.2
   Compiling getrandom v0.3.4
    Checking once_cell v1.21.4
    Checking allocator-api2 v0.2.21
    Checking itoa v1.0.18
    Checking foldhash v0.2.0
   Compiling zmij v1.0.23
    Checking hashbrown v0.17.1
   Compiling serde_json v1.0.151
    Checking indexmap v2.14.0
    Checking num-integer v0.1.46
    Checking siphasher v1.0.3
    Checking iana-time-zone v0.1.65
   Compiling version_check v0.9.5
   Compiling ahash v0.8.12
    Checking chrono v0.4.45
   Compiling jobserver v0.1.35
    Checking phf_shared v0.12.1
    Checking num-bigint v0.4.8
   Compiling shlex v2.0.1
   Compiling chrono-tz v0.10.4
    Checking stable_deref_trait v1.2.1
   Compiling find-msvc-tools v0.1.9
   Compiling synstructure v0.13.2
   Compiling cc v1.3.0
    Checking phf v0.12.1
    Checking arrow-schema v59.1.0
   Compiling pkg-config v0.3.33
    Checking num-complex v0.4.6
    Checking pin-project-lite v0.2.17
   Compiling syn v3.0.3
   Compiling zerocopy-derive v0.8.55
   Compiling zerofrom-derive v0.1.7
    Checking zerofrom v0.1.8
   Compiling yoke-derive v0.8.2
    Checking yoke v0.8.3
   Compiling zerovec-derive v0.11.3
    Checking zerovec v0.11.6
   Compiling displaydoc v0.2.6
   Compiling zstd-sys v2.0.16+zstd.1.5.7
    Checking futures-sink v0.3.33
    Checking litemap v0.8.2
    Checking smallvec v1.15.2
    Checking lexical-util v1.0.7
    Checking futures-core v0.3.33
    Checking writeable v0.6.3
    Checking tinystr v0.8.3
    Checking zerotrie v0.2.4
    Checking icu_locale_core v2.2.0
    Checking potential_utf v0.1.5
   Compiling icu_normalizer_data v2.2.0
   Compiling icu_properties_data v2.2.0
    Checking utf8_iter v1.0.4
    Checking half v2.7.1
    Checking icu_provider v2.2.0
    Checking icu_collections v2.2.0
    Checking arrow-buffer v59.1.0
   Compiling zstd-safe v7.2.4
   Compiling semver v1.0.28
   Compiling rustc_version v0.4.1
    Checking lexical-write-integer v1.0.6
    Checking lexical-parse-integer v1.0.6
    Checking futures-channel v0.3.33
    Checking arrow-data v59.1.0
   Compiling futures-macro v0.3.33
   Compiling tokio-macros v2.7.1
    Checking base64 v0.22.1
    Checking arrow-array v59.1.0
    Checking slab v0.4.12
    Checking bitflags v2.13.1
   Compiling parking_lot_core v0.9.12
    Checking futures-task v0.3.33
    Checking futures-io v0.3.33
    Checking futures-util v0.3.33
    Checking tokio v1.53.1
    Checking arrow-select v59.1.0
    Checking lexical-parse-float v1.0.6
    Checking lexical-write-float v1.0.6
   Compiling flatbuffers v25.12.19
    Checking icu_properties v2.2.0
    Checking icu_normalizer v2.2.0
    Checking aho-corasick v1.1.4
    Checking scopeguard v1.2.0
    Checking unicode-width v0.2.2
    Checking ryu v1.0.23
    Checking unicode-segmentation v1.13.3
    Checking regex-syntax v0.8.11
   Compiling getrandom v0.4.3
   Compiling crc32fast v1.5.0
    Checking idna_adapter v1.2.2
    Checking comfy-table v7.2.2
    Checking lock_api v0.4.14
    Checking lexical-core v1.0.6
    Checking arrow-ord v59.1.0
    Checking atoi v2.0.0
    Checking either v1.16.0
    Checking alloc-no-stdlib v2.0.4
   Compiling thiserror v2.0.19
    Checking simd-adler32 v0.3.10
   Compiling snap v1.1.2
    Checking twox-hash v2.1.3
    Checking adler2 v2.0.1
    Checking percent-encoding v2.3.2
    Checking miniz_oxide v0.8.9
    Checking form_urlencoded v1.2.2
    Checking lz4_flex v0.13.1
    Checking regex-automata v0.4.16
    Checking arrow-cast v59.1.0
    Checking alloc-stdlib v0.2.4
    Checking idna v1.1.0
    Checking futures-executor v0.3.33
   Compiling thiserror-impl v2.0.19
   Compiling tracing-attributes v0.1.31
    Checking regex v1.13.1
    Checking tracing-core v0.1.36
    Checking csv-core v0.1.13
   Compiling paste v1.0.15
    Checking same-file v1.0.6
    Checking simdutf8 v0.1.5
    Checking zlib-rs v0.6.6
    Checking walkdir v2.5.0
    Checking tracing v0.1.44
    Checking csv v1.4.0
    Checking futures v0.3.33
    Checking url v2.5.8
    Checking brotli-decompressor v5.0.3
    Checking itertools v0.14.0
    Checking flate2 v1.1.9
    Checking parking_lot v0.12.5
   Compiling async-trait v0.1.91
    Checking http v1.4.2
    Checking humantime v2.4.0
   Compiling anyhow v1.0.104
   Compiling serde v1.0.229
    Checking object_store v0.13.2
    Checking brotli v8.0.4
    Checking arrow-csv v59.1.0
    Checking arrow-json v59.1.0
    Checking arrow-string v59.1.0
    Checking uuid v1.24.0
    Checking arrow-row v59.1.0
    Checking arrow-arith v59.1.0
   Compiling serde_derive v1.0.229
    Checking log v0.4.33
   Compiling seq-macro v0.3.6
    Checking itertools v0.15.0
    Checking zstd v0.13.3
    Checking arrow-ipc v59.1.0
   Compiling prost-derive v0.14.4
   Compiling pin-project-internal v1.1.13
    Checking arrow v59.1.0
    Checking parquet v59.1.0
    Checking pbjson v0.9.0
    Checking pin-project v1.1.13
    Checking ppv-lite86 v0.2.21
    Checking rand_core v0.9.5
   Compiling rustix v1.1.4
    Checking prost v0.14.4
   Compiling crossbeam-utils v0.8.22
    Checking rand_chacha v0.9.0
    Checking linux-raw-sys v0.12.1
    Checking datafusion-doc v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/doc)
    Checking rand v0.9.5
    Checking tokio-util v0.7.19
    Checking foldhash v0.1.5
    Checking fastrand v2.5.0
    Checking hashbrown v0.14.5
    Checking hashbrown v0.15.5
    Checking dashmap v6.2.1
    Checking fixedbitset v0.5.7
   Compiling datafusion-macros v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/macros)
    Checking petgraph v0.8.3
    Checking tempfile v3.27.0
    Checking hex v0.4.3
    Checking datafusion-common-runtime v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/common-runtime)
    Checking glob v0.3.4
   Compiling liblzma-sys v0.4.7
    Checking crc-catalog v2.5.0
    Checking libbz2-rs-sys v0.2.5
   Compiling heck v0.5.0
   Compiling strum_macros v0.28.0
    Checking bzip2 v0.6.1
    Checking crc v3.4.0
    Checking tokio-stream v0.1.19
    Checking datafusion-common v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/common)
    Checking datafusion-proto-common v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/proto-common)
    Checking datafusion-expr-common v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/expr-common)
    Checking liblzma v0.4.7
    Checking arrow-avro v59.1.0
    Checking datafusion-proto-models v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/proto-models)
    Checking datafusion-physical-expr-common v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/physical-expr-common)
    Checking datafusion-functions-aggregate-common v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/functions-aggregate-common)
    Checking datafusion-functions-window-common v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/functions-window-common)
    Checking datafusion-expr v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/expr)
    Checking datafusion-execution v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/execution)
    Checking datafusion-physical-expr v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/physical-expr)
    Checking datafusion-functions v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/functions)
    Checking datafusion-physical-plan v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/physical-plan)
    Checking datafusion-physical-expr-adapter v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/physical-expr-adapter)
    Checking datafusion-session v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/session)
    Checking datafusion-datasource v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/datasource)
    Checking datafusion-catalog v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/catalog)
    Checking datafusion-pruning v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/pruning)
    Checking datafusion-datasource-csv v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/datasource-csv)
    Checking datafusion-datasource-arrow v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/datasource-arrow)
    Checking datafusion-datasource-parquet v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/datasource-parquet)
error[E0432]: unresolved import `parquet::arrow::arrow_reader::BoundedStreamingOptions`
  --> /home/runner/work/datafusion/datafusion/datafusion/datasource-parquet/src/push_decoder.rs:50:26
   |
50 |     ArrowReaderMetadata, BoundedStreamingOptions, ParquetRecordBatchReader,
   |                          ^^^^^^^^^^^^^^^^^^^^^^^ no `BoundedStreamingOptions` in `arrow::arrow_reader`

error[E0432]: unresolved import `parquet::arrow::async_reader::AdaptiveFetcher`
  --> /home/runner/work/datafusion/datafusion/datafusion/datasource-parquet/src/push_decoder.rs:53:36
   |
53 | use parquet::arrow::async_reader::{AdaptiveFetcher, AsyncFileReader};
   |                                    ^^^^^^^^^^^^^^^ no `AdaptiveFetcher` in `arrow::async_reader`

error[E0407]: method `get_bytes_stream` is not a member of trait `AsyncFileReader`
   --> /home/runner/work/datafusion/datafusion/datafusion/datasource-parquet/src/reader.rs:125:5
    |
125 | /     fn get_bytes_stream(
126 | |         &mut self,
127 | |         range: Range<u64>,
128 | |     ) -> Option<
...   |
139 | |         Some(stream)
140 | |     }
    | |_____^ not a member of trait `AsyncFileReader`

error[E0407]: method `get_bytes_stream` is not a member of trait `AsyncFileReader`
   --> /home/runner/work/datafusion/datafusion/datafusion/datasource-parquet/src/reader.rs:308:5
    |
308 | /     fn get_bytes_stream(
309 | |         &mut self,
310 | |         range: Range<u64>,
311 | |     ) -> Option<
...   |
322 | |         Some(stream)
323 | |     }
    | |_____^ not a member of trait `AsyncFileReader`

    Checking datafusion-datasource-json v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/datasource-json)
    Checking datafusion-datasource-avro v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/datasource-avro)
error[E0599]: no method named `upcoming_fetch_plan` found for mutable reference `&mut ParquetPushDecoder` in the current scope
   --> /home/runner/work/datafusion/datafusion/datafusion/datasource-parquet/src/push_decoder.rs:424:48
    |
424 | ...                   let plan = decoder.upcoming_fetch_plan();
    |                                          ^^^^^^^^^^^^^^^^^^^ method not found in `&mut ParquetPushDecoder`

error[E0599]: no method named `with_bounded_streaming` found for struct `ArrowReaderBuilder<T>` in the current scope
   --> /home/runner/work/datafusion/datafusion/datafusion/datasource-parquet/src/push_decoder.rs:111:31
    |
111 |             builder = builder.with_bounded_streaming(BoundedStreamingOptions::default());
    |                               ^^^^^^^^^^^^^^^^^^^^^^ method not found in `ArrowReaderBuilder<PushDecoderInput>`

error[E0599]: no method named `get_bytes_stream` found for struct `ParquetObjectReader` in the current scope
   --> /home/runner/work/datafusion/datafusion/datafusion/datasource-parquet/src/reader.rs:137:33
    |
137 |         let stream = self.inner.get_bytes_stream(range)?;
    |                                 ^^^^^^^^^^^^^^^^
    |
help: there is a method `get_bytes` with a similar name
    |
137 -         let stream = self.inner.get_bytes_stream(range)?;
137 +         let stream = self.inner.get_bytes(range)?;
    |

error[E0599]: no method named `get_bytes_stream` found for struct `ParquetObjectReader` in the current scope
   --> /home/runner/work/datafusion/datafusion/datafusion/datasource-parquet/src/reader.rs:320:33
    |
320 |         let stream = self.inner.get_bytes_stream(range)?;
    |                                 ^^^^^^^^^^^^^^^^
    |
help: there is a method `get_bytes` with a similar name
    |
320 -         let stream = self.inner.get_bytes_stream(range)?;
320 +         let stream = self.inner.get_bytes(range)?;
    |

Some errors have detailed explanations: E0407, E0432, E0599.
For more information about an error, try `rustc --explain E0407`.
error: could not compile `datafusion-datasource-parquet` (lib) due to 8 previous errors
warning: build failed, waiting for other jobs to finish...

-----

error: failed to build rustdoc for crate datafusion-proto v54.1.0
note: this is usually due to a compilation error in the crate,
      and is unlikely to be a bug in cargo-semver-checks
note: the following command can be used to reproduce the error:
      cargo new --lib example &&
          cd example &&
          echo '[workspace]' >> Cargo.toml &&
          cargo add --path /home/runner/work/datafusion/datafusion/datafusion/proto --features avro,datafusion-datasource-avro,datafusion-datasource-parquet,default,json,parquet,serde_json &&
          cargo check &&
          cargo doc

    Building datafusion-proto-common v54.1.0 (current)
       Built [  20.628s] (current)
     Parsing datafusion-proto-common v54.1.0 (current)
      Parsed [   0.045s] (current)
    Building datafusion-proto-common v54.1.0 (baseline)
       Built [  20.954s] (baseline)
     Parsing datafusion-proto-common v54.1.0 (baseline)
      Parsed [   0.050s] (baseline)
    Checking datafusion-proto-common v54.1.0 -> v54.1.0 (no change; assume patch)
     Checked [   1.496s] 223 checks: 223 pass, 30 skip
     Summary no semver update required
    Finished [  44.258s] datafusion-proto-common
    Building datafusion-sqllogictest v54.1.0 (current)
error: running cargo-doc on crate 'datafusion-sqllogictest' failed with output:
-----
   Compiling proc-macro2 v1.0.107
   Compiling unicode-ident v1.0.24
   Compiling quote v1.0.47
   Compiling libc v0.2.189
    Checking cfg-if v1.0.4
    Checking bytes v1.12.1
    Checking memchr v2.8.3
   Compiling serde_core v1.0.229
   Compiling syn v2.0.119
   Compiling autocfg v1.5.1
   Compiling find-msvc-tools v0.1.9
   Compiling jobserver v0.1.35
   Compiling shlex v2.0.1
   Compiling cc v1.3.0
    Checking itoa v1.0.18
    Checking foldhash v0.2.0
    Checking once_cell v1.21.4
    Checking allocator-api2 v0.2.21
    Checking equivalent v1.0.2
   Compiling syn v3.0.3
   Compiling libm v0.2.16
   Compiling num-traits v0.2.19
    Checking hashbrown v0.17.1
    Checking indexmap v2.14.0
    Checking pin-project-lite v0.2.17
   Compiling zmij v1.0.23
    Checking futures-core v0.3.33
   Compiling zerocopy v0.8.55
    Checking futures-sink v0.3.33
    Checking errno v0.3.14
    Checking signal-hook-registry v1.4.8
    Checking socket2 v0.6.5
    Checking mio v1.2.2
   Compiling version_check v0.9.5
   Compiling serde v1.0.229
    Checking num-integer v0.1.46
   Compiling serde_json v1.0.151
    Checking slab v0.4.12
    Checking futures-channel v0.3.33
   Compiling getrandom v0.3.4
    Checking smallvec v1.15.2
    Checking num-bigint v0.4.8
   Compiling zerocopy-derive v0.8.55
   Compiling tokio-macros v2.7.1
   Compiling serde_derive v1.0.229
    Checking tokio v1.53.1
   Compiling futures-macro v0.3.33
   Compiling synstructure v0.13.2
    Checking http v1.4.2
    Checking futures-io v0.3.33
    Checking base64 v0.22.1
    Checking futures-task v0.3.33
    Checking futures-util v0.3.33
    Checking iana-time-zone v0.1.65
    Checking chrono v0.4.45
   Compiling zerofrom-derive v0.1.7
   Compiling tracing-attributes v0.1.31
    Checking tracing-core v0.1.36
    Checking siphasher v1.0.3
    Checking zerofrom v0.1.8
   Compiling yoke-derive v0.8.2
   Compiling getrandom v0.4.3
    Checking stable_deref_trait v1.2.1
    Checking rand_core v0.10.1
    Checking num-complex v0.4.6
    Checking tracing v0.1.44
   Compiling zerovec-derive v0.11.3
    Checking getrandom v0.2.17
   Compiling pkg-config v0.3.33
    Checking cpufeatures v0.3.0
    Checking phf_shared v0.12.1
    Checking half v2.7.1
    Checking yoke v0.8.3
   Compiling displaydoc v0.2.6
   Compiling ahash v0.8.12
   Compiling chrono-tz v0.10.4
   Compiling thiserror v2.0.19
    Checking percent-encoding v2.3.2
    Checking arrow-buffer v59.1.0
    Checking phf v0.12.1
    Checking zerovec v0.11.6
    Checking arrow-schema v59.1.0
   Compiling thiserror-impl v2.0.19
   Compiling ring v0.17.14
    Checking arrow-data v59.1.0
   Compiling semver v1.0.28
    Checking log v0.4.33
    Checking tinystr v0.8.3
    Checking chacha20 v0.10.1
    Checking untrusted v0.9.0
    Checking bitflags v2.13.1
    Checking writeable v0.6.3
    Checking litemap v0.8.2
    Checking rand v0.10.2
    Checking icu_locale_core v2.2.0
    Checking potential_utf v0.1.5
    Checking zerotrie v0.2.4
   Compiling zstd-sys v2.0.16+zstd.1.5.7
   Compiling async-trait v0.1.91
   Compiling icu_normalizer_data v2.2.0
   Compiling icu_properties_data v2.2.0
    Checking utf8_iter v1.0.4
    Checking icu_collections v2.2.0
    Checking icu_provider v2.2.0
    Checking tokio-util v0.7.19
    Checking aho-corasick v1.1.4
   Compiling zstd-safe v7.2.4
   Compiling object v0.37.3
    Checking arrow-array v59.1.0
    Checking ryu v1.0.23
    Checking lexical-util v1.0.7
    Checking regex-syntax v0.8.11
    Checking regex-automata v0.4.16
    Checking arrow-select v59.1.0
    Checking icu_properties v2.2.0
    Checking icu_normalizer v2.2.0
   Compiling rustix v1.1.4
    Checking either v1.16.0
    Checking regex v1.13.1
    Checking idna_adapter v1.2.2
    Checking form_urlencoded v1.2.2
   Compiling parking_lot_core v0.9.12
    Checking unicode-width v0.2.2
   Compiling crc32fast v1.5.0
    Checking typenum v1.20.1
    Checking idna v1.1.0
    Checking lexical-parse-integer v1.0.6
    Checking lexical-write-integer v1.0.6
   Compiling rustc_version v0.4.1
    Checking futures-executor v0.3.33
   Compiling pin-project-internal v1.1.13
    Checking simd-adler32 v0.3.10
    Checking adler2 v2.0.1
    Checking scopeguard v1.2.0
    Checking lock_api v0.4.14
    Checking miniz_oxide v0.8.9
    Checking futures v0.3.33
    Checking pin-project v1.1.13
   Compiling flatbuffers v25.12.19
    Checking lexical-write-float v1.0.6
    Checking lexical-parse-float v1.0.6
    Checking url v2.5.8
    Checking unicode-segmentation v1.13.3
    Checking zlib-rs v0.6.6
    Checking comfy-table v7.2.2
    Checking lexical-core v1.0.6
   Compiling ar_archive_writer v0.5.2
    Checking itertools v0.14.0
    Checking flate2 v1.1.9
    Checking arrow-ord v59.1.0
   Compiling psm v0.1.31
    Checking twox-hash v2.1.3
    Checking atoi v2.0.0
   Compiling stacker v0.1.24
   Compiling snap v1.1.2
    Checking alloc-no-stdlib v2.0.4
    Checking hex v0.4.3
    Checking lz4_flex v0.13.1
    Checking alloc-stdlib v0.2.4
    Checking arrow-cast v59.1.0
    Checking parking_lot v0.12.5
    Checking csv-core v0.1.13
    Checking same-file v1.0.6
   Compiling paste v1.0.15
    Checking humantime v2.4.0
    Checking simdutf8 v0.1.5
    Checking walkdir v2.5.0
    Checking csv v1.4.0
    Checking brotli-decompressor v5.0.3
   Compiling recursive-proc-macro-impl v0.1.1
    Checking subtle v2.6.1
    Checking arrow-csv v59.1.0
    Checking brotli v8.0.4
    Checking recursive v0.1.1
    Checking arrow-json v59.1.0
    Checking object_store v0.13.2
    Checking arrow-string v59.1.0
    Checking arrow-row v59.1.0
    Checking arrow-arith v59.1.0
    Checking uuid v1.24.0
   Compiling sqlparser_derive v0.5.0
   Compiling seq-macro v0.3.6
    Checking itertools v0.15.0
    Checking ppv-lite86 v0.2.21
    Checking sqlparser v0.62.0
    Checking hybrid-array v0.4.13
    Checking zstd v0.13.3
    Checking arrow-ipc v59.1.0
    Checking linux-raw-sys v0.12.1
    Checking cmov v0.5.4
    Checking ctutils v0.4.2
    Checking crypto-common v0.2.2
    Checking parquet v59.1.0
    Checking arrow v59.1.0
    Checking block-buffer v0.12.1
    Checking rand_core v0.9.5
   Compiling generic-array v0.14.7
    Checking const-oid v0.10.2
    Checking digest v0.11.3
    Checking rand_chacha v0.9.0
    Checking rand v0.9.5
    Checking datafusion-doc v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/doc)
    Checking foldhash v0.1.5
   Compiling crossbeam-utils v0.8.22
    Checking hashbrown v0.15.5
    Checking block-buffer v0.10.4
    Checking crypto-common v0.1.7
    Checking fixedbitset v0.5.7
   Compiling heck v0.5.0
    Checking fastrand v2.5.0
    Checking petgraph v0.8.3
    Checking tempfile v3.27.0
    Checking digest v0.10.7
    Checking md-5 v0.11.0
    Checking sha2 v0.11.0
    Checking hashbrown v0.14.5
    Checking dashmap v6.2.1
   Compiling datafusion-macros v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/macros)
   Compiling blake3 v1.8.5
   Compiling anyhow v1.0.104
    Checking arrayvec v0.7.8
    Checking arrayref v0.3.9
    Checking constant_time_eq v0.4.2
    Checking blake2 v0.10.6
   Compiling liblzma-sys v0.4.7
    Checking libbz2-rs-sys v0.2.5
    Checking bzip2 v0.6.1
    Checking datafusion-common-runtime v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/common-runtime)
   Compiling prost-derive v0.14.4
    Checking compression-core v0.4.32
   Compiling httparse v1.10.1
    Checking http-body v1.1.0
    Checking glob v0.3.4
    Checking tower-service v0.3.3
    Checking try-lock v0.2.5
    Checking fnv v1.0.7
    Checking atomic-waker v1.1.2
    Checking h2 v0.4.15
    Checking want v0.3.1
    Checking tokio-stream v0.1.19
    Checking zeroize v1.9.0
    Checking httpdate v1.0.3
    Checking hyper v1.11.0
    Checking datafusion-common v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/common)
    Checking rustls-pki-types v1.15.0
   Compiling prost v0.14.4
    Checking hyper-util v0.1.20
    Checking http-body-util v0.1.4
    Checking tower-layer v0.3.3
   Compiling rustls v0.23.42
    Checking datafusion-expr-common v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/expr-common)
    Checking sync_wrapper v1.0.2
   Compiling prettyplease v0.2.37
    Checking datafusion-physical-expr-common v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/physical-expr-common)
   Compiling prost-types v0.14.4
    Checking datafusion-functions-window-common v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/functions-window-common)
    Checking datafusion-functions-aggregate-common v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/functions-aggregate-common)
    Checking rustls-webpki v0.103.13
    Checking liblzma v0.4.7
    Checking compression-codecs v0.4.38
    Checking datafusion-expr v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/expr)
   Compiling serde_derive_internals v0.29.1
   Compiling schemars v0.8.22
    Checking async-compression v0.4.42
    Checking mime v0.3.17
   Compiling schemars_derive v0.8.22
   Compiling hashbrown v0.16.1
    Checking axum-core v0.5.6
    Checking tower v0.5.3
    Checking datafusion-physical-expr v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/physical-expr)
    Checking datafusion-execution v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/execution)
    Checking matchit v0.8.4
   Compiling dyn-clone v1.0.20
   Compiling multimap v0.10.1
   Compiling prost-build v0.14.4
    Checking datafusion-functions v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/functions)
    Checking axum v0.8.9
   Compiling regress v0.10.5
   Compiling pbjson-build v0.8.0
    Checking hyper-timeout v0.5.2
   Compiling strsim v0.11.1
   Compiling portable-atomic v1.14.0
   Compiling ident_case v1.0.1
   Compiling darling_core v0.23.0
    Checking tonic v0.14.6
    Checking datafusion-physical-plan v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/physical-plan)
    Checking datafusion-physical-expr-adapter v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/physical-expr-adapter)
   Compiling typify-impl v0.5.0
   Compiling serde_tokenstream v0.2.3
    Checking ureq-proto v0.6.0
   Compiling bigdecimal v0.4.10
    Checking tinyvec_macros v0.1.1
    Checking utf8parse v0.2.2
    Checking utf8-zero v0.8.1
   Compiling bollard-buildkit-proto v0.7.0
    Checking crc-catalog v2.5.0
    Checking crc v3.4.0
    Checking ureq v3.3.0
   Compiling darling_macro v0.23.0
    Checking anstyle-parse v1.0.0
    Checking tinyvec v1.12.0
    Checking tonic-prost v0.14.6
    Checking datafusion-functions-aggregate v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/functions-aggregate)
   Compiling strum_macros v0.28.0
   Compiling typify-macro v0.5.0
   Compiling structmeta-derive v0.3.0
    Checking deranged v0.5.8
    Checking num-conv v0.2.2
    Checking is_terminal_polyfill v1.70.2
    Checking powerfmt v0.2.0
    Checking anstyle v1.0.14
   Compiling unsafe-libyaml v0.2.11
    Checking colorchoice v1.0.5
    Checking time-core v0.1.9
    Checking anstyle-query v1.1.5
    Checking time v0.3.54
    Checking anstream v1.0.0
   Compiling serde_yaml v0.9.34+deprecated
   Compiling typify v0.5.0
   Compiling structmeta v0.3.0
    Checking datafusion-functions-nested v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/functions-nested)
    Checking datafusion-session v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/session)
    Checking datafusion-datasource v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/datasource)
    Checking arrow-avro v59.1.0
    Checking unicode-normalization v0.1.25
    Checking datafusion-pruning v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/pruning)
    Checking datafusion-catalog v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/catalog)
   Compiling darling v0.23.0
   Compiling pbjson-types v0.8.0
    Checking tokio-rustls v0.26.4
    Checking num-rational v0.4.2
   Compiling serde_repr v0.1.21
   Compiling async-stream-impl v0.3.6
    Checking num-iter v0.1.46
    Checking unicode-properties v0.1.4
    Checking unicode-bidi v0.3.18
    Checking clap_lex v1.1.0
    Checking openssl-probe v0.2.1
    Checking rustls-native-certs v0.8.4
    Checking clap_builder v4.6.2
    Checking stringprep v0.1.5
    Checking bollard-stubs v1.52.1-rc.29.1.3
    Checking async-stream v0.3.6
    Checking num v0.4.3
    Checking datafusion-sql v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/sql)
    Checking hyper-rustls v0.27.9
   Compiling serde_with_macros v3.21.0
    Checking datafusion-datasource-avro v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/datasource-avro)
    Checking datafusion-datasource-parquet v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/datasource-parquet)
error[E0432]: unresolved import `parquet::arrow::arrow_reader::BoundedStreamingOptions`
  --> /home/runner/work/datafusion/datafusion/datafusion/datasource-parquet/src/push_decoder.rs:50:26
   |
50 |     ArrowReaderMetadata, BoundedStreamingOptions, ParquetRecordBatchReader,
   |                          ^^^^^^^^^^^^^^^^^^^^^^^ no `BoundedStreamingOptions` in `arrow::arrow_reader`

error[E0432]: unresolved import `parquet::arrow::async_reader::AdaptiveFetcher`
  --> /home/runner/work/datafusion/datafusion/datafusion/datasource-parquet/src/push_decoder.rs:53:36
   |
53 | use parquet::arrow::async_reader::{AdaptiveFetcher, AsyncFileReader};
   |                                    ^^^^^^^^^^^^^^^ no `AdaptiveFetcher` in `arrow::async_reader`

    Checking datafusion-physical-optimizer v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/physical-optimizer)
error[E0407]: method `get_bytes_stream` is not a member of trait `AsyncFileReader`
   --> /home/runner/work/datafusion/datafusion/datafusion/datasource-parquet/src/reader.rs:125:5
    |
125 | /     fn get_bytes_stream(
126 | |         &mut self,
127 | |         range: Range<u64>,
128 | |     ) -> Option<
...   |
139 | |         Some(stream)
140 | |     }
    | |_____^ not a member of trait `AsyncFileReader`

error[E0407]: method `get_bytes_stream` is not a member of trait `AsyncFileReader`
   --> /home/runner/work/datafusion/datafusion/datafusion/datasource-parquet/src/reader.rs:308:5
    |
308 | /     fn get_bytes_stream(
309 | |         &mut self,
310 | |         range: Range<u64>,
311 | |     ) -> Option<
...   |
322 | |         Some(stream)
323 | |     }
    | |_____^ not a member of trait `AsyncFileReader`

error[E0599]: no method named `upcoming_fetch_plan` found for mutable reference `&mut ParquetPushDecoder` in the current scope
   --> /home/runner/work/datafusion/datafusion/datafusion/datasource-parquet/src/push_decoder.rs:424:48
    |
424 | ...                   let plan = decoder.upcoming_fetch_plan();
    |                                          ^^^^^^^^^^^^^^^^^^^ method not found in `&mut ParquetPushDecoder`

error[E0599]: no method named `with_bounded_streaming` found for struct `ArrowReaderBuilder<T>` in the current scope
   --> /home/runner/work/datafusion/datafusion/datafusion/datasource-parquet/src/push_decoder.rs:111:31
    |
111 |             builder = builder.with_bounded_streaming(BoundedStreamingOptions::default());
    |                               ^^^^^^^^^^^^^^^^^^^^^^ method not found in `ArrowReaderBuilder<PushDecoderInput>`

error[E0599]: no method named `get_bytes_stream` found for struct `ParquetObjectReader` in the current scope
   --> /home/runner/work/datafusion/datafusion/datafusion/datasource-parquet/src/reader.rs:137:33
    |
137 |         let stream = self.inner.get_bytes_stream(range)?;
    |                                 ^^^^^^^^^^^^^^^^
    |
help: there is a method `get_bytes` with a similar name
    |
137 -         let stream = self.inner.get_bytes_stream(range)?;
137 +         let stream = self.inner.get_bytes(range)?;
    |

error[E0599]: no method named `get_bytes_stream` found for struct `ParquetObjectReader` in the current scope
   --> /home/runner/work/datafusion/datafusion/datafusion/datasource-parquet/src/reader.rs:320:33
    |
320 |         let stream = self.inner.get_bytes_stream(range)?;
    |                                 ^^^^^^^^^^^^^^^^
    |
help: there is a method `get_bytes` with a similar name
    |
320 -         let stream = self.inner.get_bytes_stream(range)?;
320 +         let stream = self.inner.get_bytes(range)?;
    |

    Checking datafusion-datasource-arrow v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/datasource-arrow)
    Checking datafusion-datasource-json v54.1.0 (/home/runner/work/datafusion/datafusion/datafusion/datasource-json)
Some errors have detailed explanations: E0407, E0432, E0599.
For more information about an error, try `rustc --explain E0407`.
error: could not compile `datafusion-datasource-parquet` (lib) due to 8 previous errors
warning: build failed, waiting for other jobs to finish...

-----

error: failed to build rustdoc for crate datafusion-sqllogictest v54.1.0
note: this is usually due to a compilation error in the crate,
      and is unlikely to be a bug in cargo-semver-checks
note: the following command can be used to reproduce the error:
      cargo new --lib example &&
          cd example &&
          echo '[workspace]' >> Cargo.toml &&
          cargo add --path /home/runner/work/datafusion/datafusion/datafusion/sqllogictest --features avro,backtrace,bytes,chrono,datafusion-substrait,parquet_encryption,postgres,postgres-types,substrait,testcontainers-modules,tokio-postgres &&
          cargo check &&
          cargo doc

error: aborting due to failure to build rustdoc for crate datafusion-datasource-parquet v54.1.0

@github-actions github-actions Bot added the auto detected api change Auto detected API change label Jul 22, 2026
Makes the PR buildable by CI and benchmark infrastructure until the
parquet changes are released. Must be removed before merge.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01MGnT9oETcFMydc9cp95HLG
@adriangb

Copy link
Copy Markdown
Contributor Author

run benchmark tpch clickbench_partitioned tpcds

changed:
env:
DATAFUSION_EXECUTION_PARQUET_BOUNDED_STREAMING: "true"

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c5048848850-1229-qfvkn 6.12.85+ #1 SMP Mon May 11 08:17:35 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 bounded-streaming-core (5e4bc31) to 5de7f1d (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-c5048848850-1230-sh4fj 6.12.85+ #1 SMP Mon May 11 08:17:35 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 bounded-streaming-core (5e4bc31) to 5de7f1d (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-c5048848850-1231-kd2w9 6.12.85+ #1 SMP Mon May 11 08:17:35 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 bounded-streaming-core (5e4bc31) to 5de7f1d (merge-base) diff using: tpcds
Results will be posted here when complete


File an issue against this benchmark runner

@adriangb

Copy link
Copy Markdown
Contributor Author

run benchmark tpch clickbench_partitioned tpcds

env:
SIMULATE_LATENCY: "true"

changed:
env:
DATAFUSION_EXECUTION_PARQUET_BOUNDED_STREAMING: "true"

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c5048885348-1234-75bnh 6.12.85+ #1 SMP Mon May 11 08:17:35 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 bounded-streaming-core (5e4bc31) to 5de7f1d (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 bounded-streaming-core
--------------------
Benchmark tpch_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┓
┃ Query     ┃                           HEAD ┃         bounded-streaming-core ┃    Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━┩
│ QQuery 1  │ 38.22 / 38.91 ±1.00 / 40.85 ms │ 38.50 / 39.28 ±1.04 / 41.26 ms │ no change │
│ QQuery 2  │ 19.14 / 19.38 ±0.18 / 19.70 ms │ 18.87 / 19.28 ±0.37 / 19.93 ms │ no change │
│ QQuery 3  │ 30.46 / 31.70 ±1.22 / 33.27 ms │ 30.93 / 32.31 ±1.45 / 34.70 ms │ no change │
│ QQuery 4  │ 17.39 / 17.79 ±0.49 / 18.67 ms │ 17.21 / 17.57 ±0.20 / 17.77 ms │ no change │
│ QQuery 5  │ 37.42 / 39.74 ±1.25 / 41.00 ms │ 39.12 / 41.31 ±2.03 / 44.20 ms │ no change │
│ QQuery 6  │ 16.02 / 17.04 ±1.13 / 18.54 ms │ 16.23 / 16.40 ±0.13 / 16.61 ms │ no change │
│ QQuery 7  │ 43.77 / 45.29 ±0.82 / 46.19 ms │ 44.73 / 45.71 ±1.33 / 48.31 ms │ no change │
│ QQuery 8  │ 42.48 / 42.76 ±0.16 / 42.96 ms │ 42.33 / 42.60 ±0.24 / 42.96 ms │ no change │
│ QQuery 9  │ 48.98 / 50.23 ±0.85 / 51.53 ms │ 48.47 / 49.51 ±0.82 / 50.94 ms │ no change │
│ QQuery 10 │ 42.22 / 42.88 ±0.99 / 44.82 ms │ 42.41 / 42.60 ±0.11 / 42.75 ms │ no change │
│ QQuery 11 │ 13.39 / 13.62 ±0.26 / 14.10 ms │ 13.39 / 13.61 ±0.15 / 13.86 ms │ no change │
│ QQuery 12 │ 23.81 / 24.27 ±0.32 / 24.68 ms │ 23.61 / 24.19 ±0.39 / 24.80 ms │ no change │
│ QQuery 13 │ 31.70 / 33.06 ±0.85 / 33.88 ms │ 32.82 / 33.75 ±1.19 / 35.87 ms │ no change │
│ QQuery 14 │ 23.09 / 23.30 ±0.12 / 23.41 ms │ 23.21 / 23.76 ±0.66 / 25.05 ms │ no change │
│ QQuery 15 │ 30.76 / 30.98 ±0.18 / 31.25 ms │ 30.95 / 31.61 ±0.75 / 33.05 ms │ no change │
│ QQuery 16 │ 13.94 / 14.16 ±0.14 / 14.29 ms │ 14.06 / 14.14 ±0.10 / 14.33 ms │ no change │
│ QQuery 17 │ 70.52 / 72.18 ±1.28 / 74.16 ms │ 70.22 / 71.30 ±1.50 / 74.26 ms │ no change │
│ QQuery 18 │ 57.54 / 58.95 ±1.15 / 60.76 ms │ 59.51 / 61.21 ±1.71 / 63.32 ms │ no change │
│ QQuery 19 │ 32.66 / 33.61 ±1.18 / 35.91 ms │ 32.91 / 33.35 ±0.36 / 33.86 ms │ no change │
│ QQuery 20 │ 31.47 / 31.59 ±0.16 / 31.90 ms │ 31.12 / 31.43 ±0.22 / 31.78 ms │ no change │
│ QQuery 21 │ 54.00 / 55.49 ±1.63 / 57.77 ms │ 55.68 / 56.92 ±1.37 / 59.23 ms │ no change │
│ QQuery 22 │ 13.65 / 13.93 ±0.18 / 14.22 ms │ 13.87 / 14.09 ±0.16 / 14.35 ms │ no change │
└───────────┴────────────────────────────────┴────────────────────────────────┴───────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━┓
┃ Benchmark Summary                     ┃          ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━┩
│ Total Time (HEAD)                     │ 750.85ms │
│ Total Time (bounded-streaming-core)   │ 755.93ms │
│ Average Time (HEAD)                   │  34.13ms │
│ Average Time (bounded-streaming-core) │  34.36ms │
│ Queries Faster                        │        0 │
│ Queries Slower                        │        0 │
│ Queries with No Change                │       22 │
│ Queries with Failure                  │        0 │
└───────────────────────────────────────┴──────────┘

Resource Usage

tpch — base (merge-base)

Metric Value
Wall time 5.0s
Peak memory 1.2 GiB
Avg memory 510.2 MiB
CPU user 21.5s
CPU sys 1.6s
Peak spill 0 B

tpch — branch

Metric Value
Wall time 5.0s
Peak memory 1.2 GiB
Avg memory 512.3 MiB
CPU user 21.8s
CPU sys 1.6s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c5048885348-1235-6rjd6 6.12.85+ #1 SMP Mon May 11 08:17:35 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 bounded-streaming-core (5e4bc31) to 5de7f1d (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-c5048885348-1236-dzlgb 6.12.85+ #1 SMP Mon May 11 08:17:35 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 bounded-streaming-core (5e4bc31) to 5de7f1d (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 bounded-streaming-core
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃                bounded-streaming-core ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │           5.64 / 6.19 ±0.95 / 8.08 ms │           5.97 / 6.48 ±0.83 / 8.13 ms │     no change │
│ QQuery 2  │        82.05 / 82.51 ±0.33 / 82.92 ms │        82.69 / 83.11 ±0.30 / 83.49 ms │     no change │
│ QQuery 3  │        30.24 / 30.45 ±0.14 / 30.64 ms │        30.49 / 30.71 ±0.22 / 31.11 ms │     no change │
│ QQuery 4  │     526.86 / 532.92 ±5.28 / 540.96 ms │     523.24 / 531.72 ±7.44 / 542.25 ms │     no change │
│ QQuery 5  │        53.28 / 53.95 ±0.82 / 55.55 ms │        53.64 / 53.93 ±0.27 / 54.45 ms │     no change │
│ QQuery 6  │        37.71 / 38.13 ±0.33 / 38.69 ms │        37.99 / 38.42 ±0.42 / 39.14 ms │     no change │
│ QQuery 7  │       96.65 / 99.59 ±3.58 / 106.62 ms │      96.98 / 101.00 ±5.43 / 111.61 ms │     no change │
│ QQuery 8  │        37.52 / 37.77 ±0.24 / 38.17 ms │        38.08 / 38.52 ±0.40 / 39.04 ms │     no change │
│ QQuery 9  │        53.85 / 54.85 ±0.95 / 56.38 ms │        53.69 / 55.81 ±1.31 / 57.58 ms │     no change │
│ QQuery 10 │        64.48 / 65.35 ±0.45 / 65.70 ms │        65.71 / 67.11 ±2.49 / 72.07 ms │     no change │
│ QQuery 11 │     327.64 / 335.12 ±5.04 / 343.29 ms │     332.74 / 339.07 ±5.10 / 346.51 ms │     no change │
│ QQuery 12 │        29.64 / 30.32 ±0.49 / 30.97 ms │        30.16 / 30.57 ±0.33 / 31.14 ms │     no change │
│ QQuery 13 │     122.18 / 123.24 ±1.12 / 125.26 ms │     123.07 / 125.37 ±3.93 / 133.20 ms │     no change │
│ QQuery 14 │     419.71 / 421.77 ±2.26 / 426.12 ms │     421.60 / 427.47 ±3.74 / 431.60 ms │     no change │
│ QQuery 15 │        61.94 / 63.18 ±0.69 / 63.90 ms │        61.15 / 62.93 ±1.58 / 65.63 ms │     no change │
│ QQuery 16 │           6.55 / 6.95 ±0.37 / 7.54 ms │           6.76 / 6.98 ±0.19 / 7.29 ms │     no change │
│ QQuery 17 │        80.73 / 83.05 ±2.35 / 87.28 ms │        82.08 / 84.62 ±2.57 / 89.16 ms │     no change │
│ QQuery 18 │     125.58 / 127.53 ±1.95 / 130.59 ms │     127.72 / 130.21 ±2.00 / 132.80 ms │     no change │
│ QQuery 19 │        43.21 / 44.28 ±1.30 / 46.35 ms │        43.49 / 45.10 ±1.37 / 47.59 ms │     no change │
│ QQuery 20 │        36.19 / 36.83 ±0.47 / 37.50 ms │        37.65 / 38.60 ±0.75 / 39.65 ms │     no change │
│ QQuery 21 │        18.17 / 18.47 ±0.20 / 18.76 ms │        18.55 / 18.76 ±0.21 / 19.17 ms │     no change │
│ QQuery 22 │        66.22 / 67.21 ±1.19 / 69.48 ms │        67.93 / 69.39 ±1.17 / 70.46 ms │     no change │
│ QQuery 23 │     362.21 / 367.31 ±4.75 / 373.95 ms │     369.15 / 377.15 ±6.39 / 385.43 ms │     no change │
│ QQuery 24 │     228.09 / 230.64 ±2.24 / 234.62 ms │     231.09 / 232.63 ±1.15 / 234.34 ms │     no change │
│ QQuery 25 │     112.72 / 115.09 ±2.51 / 118.44 ms │     112.51 / 114.52 ±1.84 / 117.51 ms │     no change │
│ QQuery 26 │        59.63 / 59.81 ±0.13 / 60.01 ms │        60.03 / 60.41 ±0.31 / 60.96 ms │     no change │
│ QQuery 27 │           6.55 / 6.63 ±0.07 / 6.73 ms │           6.57 / 6.66 ±0.09 / 6.82 ms │     no change │
│ QQuery 28 │        58.33 / 61.64 ±1.69 / 63.07 ms │        59.24 / 61.77 ±1.76 / 63.81 ms │     no change │
│ QQuery 29 │      98.75 / 102.74 ±3.51 / 107.87 ms │      99.46 / 101.16 ±1.33 / 103.35 ms │     no change │
│ QQuery 30 │        33.86 / 34.10 ±0.22 / 34.48 ms │        33.92 / 34.33 ±0.40 / 34.87 ms │     no change │
│ QQuery 31 │     115.80 / 118.45 ±3.32 / 124.51 ms │     115.25 / 118.07 ±3.45 / 124.80 ms │     no change │
│ QQuery 32 │        21.14 / 21.66 ±0.39 / 22.28 ms │        21.52 / 21.75 ±0.18 / 21.97 ms │     no change │
│ QQuery 33 │        39.00 / 39.28 ±0.23 / 39.60 ms │        39.18 / 39.76 ±0.41 / 40.26 ms │     no change │
│ QQuery 34 │        10.32 / 10.50 ±0.21 / 10.86 ms │        10.54 / 10.93 ±0.29 / 11.40 ms │     no change │
│ QQuery 35 │        75.45 / 76.57 ±0.71 / 77.29 ms │        77.00 / 78.63 ±1.64 / 81.50 ms │     no change │
│ QQuery 36 │           5.78 / 5.92 ±0.14 / 6.18 ms │           6.00 / 6.20 ±0.15 / 6.47 ms │     no change │
│ QQuery 37 │           7.03 / 7.43 ±0.63 / 8.67 ms │           7.15 / 7.31 ±0.18 / 7.65 ms │     no change │
│ QQuery 38 │        65.43 / 67.46 ±2.30 / 71.86 ms │        65.02 / 65.65 ±0.35 / 66.05 ms │     no change │
│ QQuery 39 │        92.90 / 94.06 ±0.80 / 95.12 ms │        93.67 / 95.01 ±1.00 / 96.31 ms │     no change │
│ QQuery 40 │        23.92 / 24.60 ±0.37 / 24.95 ms │        24.31 / 25.28 ±1.04 / 27.28 ms │     no change │
│ QQuery 41 │        12.09 / 12.20 ±0.12 / 12.37 ms │        11.90 / 12.23 ±0.19 / 12.47 ms │     no change │
│ QQuery 42 │        24.48 / 25.43 ±0.56 / 26.23 ms │        25.02 / 25.49 ±0.33 / 26.01 ms │     no change │
│ QQuery 43 │           4.97 / 5.10 ±0.16 / 5.40 ms │           5.04 / 5.12 ±0.15 / 5.42 ms │     no change │
│ QQuery 44 │          9.56 / 9.83 ±0.16 / 10.02 ms │           9.76 / 9.85 ±0.08 / 9.94 ms │     no change │
│ QQuery 45 │        41.60 / 43.32 ±1.32 / 44.79 ms │        41.19 / 42.13 ±0.80 / 43.46 ms │     no change │
│ QQuery 46 │        12.49 / 12.78 ±0.22 / 13.03 ms │        12.42 / 12.64 ±0.24 / 13.09 ms │     no change │
│ QQuery 47 │     250.08 / 255.06 ±2.59 / 257.45 ms │     242.04 / 248.97 ±4.63 / 256.13 ms │     no change │
│ QQuery 48 │      98.50 / 100.15 ±1.47 / 102.72 ms │      99.98 / 101.39 ±1.77 / 104.73 ms │     no change │
│ QQuery 49 │        77.44 / 78.34 ±0.55 / 79.02 ms │        79.23 / 80.33 ±0.82 / 81.61 ms │     no change │
│ QQuery 50 │        60.59 / 60.98 ±0.38 / 61.65 ms │        60.98 / 63.05 ±2.70 / 68.28 ms │     no change │
│ QQuery 51 │       95.50 / 99.09 ±4.00 / 106.61 ms │        94.36 / 95.51 ±1.28 / 97.62 ms │     no change │
│ QQuery 52 │        24.99 / 25.21 ±0.13 / 25.37 ms │        25.32 / 25.58 ±0.19 / 25.86 ms │     no change │
│ QQuery 53 │        30.71 / 30.95 ±0.16 / 31.20 ms │        30.54 / 30.93 ±0.24 / 31.30 ms │     no change │
│ QQuery 54 │        56.95 / 57.35 ±0.31 / 57.87 ms │        57.57 / 59.82 ±3.32 / 66.35 ms │     no change │
│ QQuery 55 │        24.50 / 27.14 ±3.87 / 34.80 ms │        24.68 / 25.43 ±0.60 / 26.51 ms │ +1.07x faster │
│ QQuery 56 │        40.88 / 41.53 ±0.55 / 42.30 ms │        40.68 / 41.47 ±0.52 / 42.27 ms │     no change │
│ QQuery 57 │     182.89 / 184.89 ±1.65 / 187.55 ms │     183.84 / 184.99 ±1.25 / 186.92 ms │     no change │
│ QQuery 58 │     120.65 / 121.70 ±1.11 / 123.60 ms │     118.08 / 120.14 ±1.57 / 122.53 ms │     no change │
│ QQuery 59 │     122.20 / 124.39 ±2.63 / 129.53 ms │     120.11 / 122.14 ±1.43 / 124.21 ms │     no change │
│ QQuery 60 │        41.06 / 41.84 ±1.08 / 43.99 ms │        41.28 / 42.05 ±0.58 / 42.91 ms │     no change │
│ QQuery 61 │        12.56 / 12.64 ±0.09 / 12.82 ms │        12.94 / 13.06 ±0.08 / 13.16 ms │     no change │
│ QQuery 62 │        47.38 / 48.28 ±0.64 / 49.32 ms │        48.16 / 49.92 ±2.19 / 53.98 ms │     no change │
│ QQuery 63 │        30.82 / 33.18 ±3.71 / 40.56 ms │        30.80 / 31.49 ±0.37 / 31.89 ms │ +1.05x faster │
│ QQuery 64 │     419.84 / 427.36 ±4.95 / 434.60 ms │     426.76 / 431.62 ±3.74 / 435.84 ms │     no change │
│ QQuery 65 │     129.42 / 131.83 ±1.85 / 134.06 ms │     128.23 / 130.35 ±1.83 / 133.74 ms │     no change │
│ QQuery 66 │        82.85 / 84.45 ±1.93 / 88.10 ms │        83.47 / 86.16 ±4.15 / 94.41 ms │     no change │
│ QQuery 67 │     261.93 / 264.64 ±1.94 / 266.60 ms │     257.82 / 263.48 ±4.84 / 270.84 ms │     no change │
│ QQuery 68 │        12.38 / 12.53 ±0.11 / 12.64 ms │        12.46 / 12.65 ±0.15 / 12.91 ms │     no change │
│ QQuery 69 │        59.88 / 60.34 ±0.45 / 61.15 ms │        59.61 / 61.15 ±2.14 / 65.38 ms │     no change │
│ QQuery 70 │     107.68 / 113.22 ±7.69 / 128.47 ms │     109.12 / 111.89 ±3.76 / 119.15 ms │     no change │
│ QQuery 71 │        36.44 / 37.02 ±0.35 / 37.44 ms │        36.91 / 37.48 ±0.71 / 38.85 ms │     no change │
│ QQuery 72 │ 2223.82 / 2284.74 ±41.21 / 2350.95 ms │ 2216.87 / 2373.67 ±90.61 / 2479.50 ms │     no change │
│ QQuery 73 │         9.95 / 10.17 ±0.14 / 10.37 ms │        10.30 / 10.44 ±0.11 / 10.61 ms │     no change │
│ QQuery 74 │     186.40 / 191.56 ±5.90 / 202.71 ms │     189.12 / 193.64 ±5.03 / 203.37 ms │     no change │
│ QQuery 75 │     151.84 / 153.10 ±0.92 / 154.58 ms │     154.89 / 159.50 ±8.49 / 176.47 ms │     no change │
│ QQuery 76 │        36.61 / 40.62 ±5.48 / 51.15 ms │        36.39 / 37.25 ±0.56 / 37.83 ms │ +1.09x faster │
│ QQuery 77 │        62.31 / 63.53 ±0.95 / 64.60 ms │        63.50 / 65.33 ±1.84 / 68.57 ms │     no change │
│ QQuery 78 │     205.75 / 208.86 ±2.16 / 211.47 ms │     207.82 / 212.30 ±3.65 / 218.94 ms │     no change │
│ QQuery 79 │        68.90 / 70.38 ±0.92 / 71.70 ms │        71.79 / 72.22 ±0.40 / 72.95 ms │     no change │
│ QQuery 80 │     103.48 / 107.00 ±4.65 / 115.81 ms │     105.02 / 105.80 ±0.99 / 107.70 ms │     no change │
│ QQuery 81 │        27.03 / 27.29 ±0.35 / 27.97 ms │        27.27 / 30.44 ±5.03 / 40.45 ms │  1.12x slower │
│ QQuery 82 │        17.09 / 17.70 ±0.55 / 18.36 ms │        18.13 / 18.82 ±0.47 / 19.49 ms │  1.06x slower │
│ QQuery 83 │        41.47 / 42.29 ±0.74 / 43.43 ms │        42.25 / 42.77 ±0.38 / 43.33 ms │     no change │
│ QQuery 84 │        31.01 / 31.38 ±0.22 / 31.66 ms │        31.44 / 31.89 ±0.37 / 32.56 ms │     no change │
│ QQuery 85 │     109.70 / 115.09 ±6.51 / 127.65 ms │     111.87 / 116.22 ±6.04 / 127.90 ms │     no change │
│ QQuery 86 │        26.31 / 26.80 ±0.34 / 27.22 ms │        26.58 / 27.30 ±0.46 / 27.76 ms │     no change │
│ QQuery 87 │        65.17 / 66.04 ±0.50 / 66.54 ms │        66.13 / 68.23 ±1.32 / 70.14 ms │     no change │
│ QQuery 88 │        64.61 / 67.52 ±4.51 / 76.51 ms │        65.96 / 66.41 ±0.47 / 67.27 ms │     no change │
│ QQuery 89 │        36.93 / 37.44 ±0.42 / 37.97 ms │        38.20 / 40.05 ±3.19 / 46.43 ms │  1.07x slower │
│ QQuery 90 │        17.84 / 18.04 ±0.26 / 18.56 ms │        18.29 / 18.58 ±0.20 / 18.86 ms │     no change │
│ QQuery 91 │        46.78 / 47.50 ±0.38 / 47.87 ms │        49.25 / 49.56 ±0.26 / 49.97 ms │     no change │
│ QQuery 92 │        30.94 / 32.00 ±1.60 / 35.19 ms │        31.55 / 32.03 ±0.50 / 32.82 ms │     no change │
│ QQuery 93 │        50.87 / 53.08 ±2.12 / 56.87 ms │        51.90 / 53.78 ±1.29 / 55.26 ms │     no change │
│ QQuery 94 │        38.96 / 39.46 ±0.37 / 40.07 ms │        39.65 / 41.77 ±2.31 / 46.14 ms │  1.06x slower │
│ QQuery 95 │        83.09 / 83.69 ±0.37 / 84.12 ms │        84.21 / 86.11 ±1.47 / 88.19 ms │     no change │
│ QQuery 96 │        24.91 / 25.13 ±0.16 / 25.36 ms │        25.42 / 25.79 ±0.20 / 26.01 ms │     no change │
│ QQuery 97 │        47.79 / 48.75 ±0.60 / 49.55 ms │        49.42 / 50.55 ±1.60 / 53.65 ms │     no change │
│ QQuery 98 │        44.29 / 45.33 ±0.86 / 46.55 ms │        46.19 / 46.58 ±0.33 / 46.96 ms │     no change │
│ QQuery 99 │        72.70 / 73.01 ±0.21 / 73.32 ms │        73.17 / 73.79 ±0.42 / 74.45 ms │     no change │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                     ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                     │ 10413.84ms │
│ Total Time (bounded-streaming-core)   │ 10572.40ms │
│ Average Time (HEAD)                   │   105.19ms │
│ Average Time (bounded-streaming-core) │   106.79ms │
│ Queries Faster                        │          3 │
│ Queries Slower                        │          4 │
│ Queries with No Change                │         92 │
│ Queries with Failure                  │          0 │
└───────────────────────────────────────┴────────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 55.0s
Peak memory 2.0 GiB
Avg memory 1.5 GiB
CPU user 239.8s
CPU sys 6.6s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 55.0s
Peak memory 2.1 GiB
Avg memory 1.4 GiB
CPU user 242.0s
CPU sys 6.3s
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 bounded-streaming-core
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃                bounded-streaming-core ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.23 / 3.94 ±5.35 / 14.64 ms │          1.24 / 4.12 ±5.62 / 15.35 ms │     no change │
│ QQuery 1  │        12.52 / 12.73 ±0.11 / 12.83 ms │        13.29 / 13.64 ±0.27 / 14.10 ms │  1.07x slower │
│ QQuery 2  │        35.80 / 36.07 ±0.21 / 36.32 ms │        36.60 / 36.92 ±0.31 / 37.50 ms │     no change │
│ QQuery 3  │        30.65 / 31.17 ±0.58 / 32.30 ms │        30.93 / 31.63 ±0.50 / 32.24 ms │     no change │
│ QQuery 4  │     222.41 / 226.36 ±2.43 / 230.01 ms │     222.03 / 227.69 ±3.50 / 231.02 ms │     no change │
│ QQuery 5  │     270.60 / 271.53 ±0.80 / 273.02 ms │     269.21 / 274.81 ±3.10 / 278.10 ms │     no change │
│ QQuery 6  │           1.27 / 1.42 ±0.24 / 1.91 ms │           1.28 / 1.44 ±0.24 / 1.90 ms │     no change │
│ QQuery 7  │        13.57 / 13.79 ±0.25 / 14.24 ms │        14.62 / 14.66 ±0.02 / 14.68 ms │  1.06x slower │
│ QQuery 8  │     320.87 / 325.10 ±4.02 / 331.83 ms │     324.81 / 328.27 ±2.38 / 332.11 ms │     no change │
│ QQuery 9  │     452.23 / 456.69 ±3.45 / 460.76 ms │     454.20 / 459.95 ±6.67 / 472.50 ms │     no change │
│ QQuery 10 │        71.23 / 72.29 ±0.89 / 73.86 ms │        70.80 / 72.07 ±0.72 / 72.83 ms │     no change │
│ QQuery 11 │        83.09 / 84.44 ±0.89 / 85.50 ms │        82.55 / 84.01 ±1.61 / 86.99 ms │     no change │
│ QQuery 12 │     267.55 / 271.28 ±2.82 / 276.12 ms │     268.25 / 273.68 ±4.40 / 281.07 ms │     no change │
│ QQuery 13 │    362.03 / 376.02 ±14.45 / 403.43 ms │    373.61 / 385.02 ±12.44 / 407.21 ms │     no change │
│ QQuery 14 │     281.82 / 283.71 ±1.69 / 286.81 ms │     282.97 / 286.11 ±2.04 / 288.29 ms │     no change │
│ QQuery 15 │     268.74 / 277.24 ±7.99 / 287.73 ms │     272.08 / 280.34 ±4.63 / 286.40 ms │     no change │
│ QQuery 16 │    601.37 / 617.24 ±13.00 / 638.38 ms │     610.87 / 624.26 ±8.81 / 635.11 ms │     no change │
│ QQuery 17 │     614.86 / 622.80 ±4.95 / 628.77 ms │    627.46 / 642.20 ±17.67 / 673.58 ms │     no change │
│ QQuery 18 │  1265.89 / 1276.85 ±8.73 / 1291.32 ms │ 1248.76 / 1279.62 ±20.11 / 1311.34 ms │     no change │
│ QQuery 19 │        28.26 / 29.67 ±2.15 / 33.89 ms │       28.49 / 35.12 ±13.05 / 61.21 ms │  1.18x slower │
│ QQuery 20 │    515.28 / 527.07 ±12.91 / 545.41 ms │     516.12 / 521.55 ±5.76 / 531.34 ms │     no change │
│ QQuery 21 │     512.62 / 521.60 ±6.58 / 531.04 ms │     516.84 / 522.37 ±3.77 / 528.31 ms │     no change │
│ QQuery 22 │   974.64 / 993.17 ±10.45 / 1004.81 ms │   995.59 / 1001.64 ±8.32 / 1018.02 ms │     no change │
│ QQuery 23 │ 3099.90 / 3125.84 ±19.32 / 3154.28 ms │ 3074.51 / 3121.80 ±30.93 / 3156.87 ms │     no change │
│ QQuery 24 │        41.55 / 44.86 ±4.69 / 54.09 ms │        41.38 / 42.66 ±2.10 / 46.83 ms │     no change │
│ QQuery 25 │     112.60 / 116.84 ±5.04 / 125.75 ms │     113.47 / 114.26 ±0.55 / 115.16 ms │     no change │
│ QQuery 26 │        41.49 / 43.85 ±4.42 / 52.70 ms │        42.19 / 45.17 ±4.11 / 53.29 ms │     no change │
│ QQuery 27 │     505.71 / 515.67 ±6.79 / 524.18 ms │    514.69 / 528.82 ±13.10 / 551.76 ms │     no change │
│ QQuery 28 │ 2877.02 / 2899.37 ±17.02 / 2926.73 ms │ 2879.20 / 2908.05 ±25.67 / 2952.04 ms │     no change │
│ QQuery 29 │       41.17 / 52.25 ±11.42 / 72.21 ms │        41.39 / 42.11 ±0.78 / 43.47 ms │ +1.24x faster │
│ QQuery 30 │     296.33 / 304.48 ±4.76 / 310.64 ms │     301.04 / 310.54 ±6.98 / 322.75 ms │     no change │
│ QQuery 31 │     295.86 / 301.68 ±5.47 / 310.10 ms │    287.53 / 302.86 ±11.03 / 317.55 ms │     no change │
│ QQuery 32 │    912.82 / 933.52 ±17.45 / 959.34 ms │    953.89 / 964.85 ±12.70 / 989.60 ms │     no change │
│ QQuery 33 │ 1409.70 / 1468.34 ±37.17 / 1510.74 ms │ 1446.45 / 1468.51 ±12.42 / 1483.62 ms │     no change │
│ QQuery 34 │ 1472.96 / 1500.29 ±28.56 / 1550.70 ms │ 1466.78 / 1505.58 ±29.26 / 1551.12 ms │     no change │
│ QQuery 35 │    276.19 / 308.62 ±56.88 / 422.11 ms │    279.39 / 303.48 ±25.48 / 336.62 ms │     no change │
│ QQuery 36 │        71.98 / 74.98 ±2.53 / 79.51 ms │        64.64 / 74.43 ±8.08 / 85.16 ms │     no change │
│ QQuery 37 │        35.69 / 36.29 ±0.45 / 36.78 ms │        35.53 / 37.07 ±2.12 / 41.18 ms │     no change │
│ QQuery 38 │        42.58 / 45.56 ±2.68 / 48.82 ms │        41.12 / 43.88 ±2.19 / 47.50 ms │     no change │
│ QQuery 39 │     144.47 / 155.39 ±9.63 / 170.64 ms │     145.98 / 156.32 ±5.70 / 162.99 ms │     no change │
│ QQuery 40 │        14.25 / 14.50 ±0.21 / 14.79 ms │        14.66 / 15.19 ±0.42 / 15.78 ms │     no change │
│ QQuery 41 │        13.75 / 17.14 ±3.90 / 22.82 ms │        14.18 / 14.84 ±1.08 / 16.99 ms │ +1.15x faster │
│ QQuery 42 │        12.90 / 13.14 ±0.24 / 13.55 ms │        13.32 / 13.81 ±0.26 / 14.03 ms │  1.05x slower │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                     ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                     │ 19304.80ms │
│ Total Time (bounded-streaming-core)   │ 19415.35ms │
│ Average Time (HEAD)                   │   448.95ms │
│ Average Time (bounded-streaming-core) │   451.52ms │
│ Queries Faster                        │          2 │
│ Queries Slower                        │          4 │
│ Queries with No Change                │         37 │
│ Queries with Failure                  │          0 │
└───────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 100.0s
Peak memory 10.9 GiB
Avg memory 4.0 GiB
CPU user 992.1s
CPU sys 68.1s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 100.0s
Peak memory 12.1 GiB
Avg memory 4.7 GiB
CPU user 997.7s
CPU sys 69.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 bounded-streaming-core
--------------------
Benchmark tpch_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                   HEAD ┃                 bounded-streaming-core ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │     495.80 / 588.40 ±64.49 / 658.44 ms │     495.87 / 565.75 ±44.33 / 615.20 ms │     no change │
│ QQuery 2  │     872.34 / 919.37 ±44.12 / 997.13 ms │     869.05 / 910.30 ±42.06 / 983.12 ms │     no change │
│ QQuery 3  │   916.09 / 1047.26 ±93.08 / 1185.94 ms │   869.39 / 994.76 ±103.10 / 1134.32 ms │ +1.05x faster │
│ QQuery 4  │     779.05 / 847.34 ±55.68 / 919.76 ms │     747.13 / 836.30 ±55.22 / 903.59 ms │     no change │
│ QQuery 5  │ 1106.63 / 1208.11 ±105.00 / 1389.48 ms │ 1062.29 / 1216.13 ±114.08 / 1358.60 ms │     no change │
│ QQuery 6  │     487.03 / 565.14 ±68.14 / 668.72 ms │     572.81 / 605.73 ±35.89 / 669.29 ms │  1.07x slower │
│ QQuery 7  │  1020.72 / 1118.77 ±68.51 / 1216.34 ms │  990.12 / 1146.84 ±129.47 / 1271.86 ms │     no change │
│ QQuery 8  │ 1145.13 / 1324.41 ±153.90 / 1578.07 ms │ 1215.84 / 1325.38 ±116.04 / 1546.95 ms │     no change │
│ QQuery 9  │  1128.39 / 1246.43 ±89.30 / 1383.87 ms │  1151.05 / 1224.89 ±56.90 / 1323.00 ms │     no change │
│ QQuery 10 │    855.90 / 975.29 ±71.05 / 1047.54 ms │   863.06 / 1002.80 ±82.17 / 1091.11 ms │     no change │
│ QQuery 11 │     686.84 / 841.47 ±96.65 / 927.74 ms │     684.70 / 801.23 ±81.92 / 924.42 ms │     no change │
│ QQuery 12 │     670.20 / 827.72 ±90.57 / 924.97 ms │     738.85 / 823.25 ±46.50 / 880.64 ms │     no change │
│ QQuery 13 │     399.33 / 433.51 ±25.18 / 465.30 ms │     399.58 / 426.46 ±19.69 / 445.23 ms │     no change │
│ QQuery 14 │     596.49 / 674.07 ±60.01 / 765.35 ms │     642.08 / 699.89 ±63.28 / 818.45 ms │     no change │
│ QQuery 15 │  1136.12 / 1249.59 ±71.13 / 1322.98 ms │  1156.92 / 1289.38 ±92.06 / 1390.16 ms │     no change │
│ QQuery 16 │     364.20 / 406.99 ±31.06 / 448.83 ms │     342.42 / 415.61 ±46.73 / 478.29 ms │     no change │
│ QQuery 17 │ 1050.03 / 1310.46 ±134.42 / 1416.82 ms │  1189.34 / 1269.18 ±82.49 / 1382.75 ms │     no change │
│ QQuery 18 │  1418.06 / 1521.57 ±86.07 / 1617.49 ms │ 1425.59 / 1555.38 ±109.82 / 1744.58 ms │     no change │
│ QQuery 19 │     644.22 / 712.90 ±75.66 / 857.34 ms │     538.97 / 669.06 ±80.70 / 766.99 ms │ +1.07x faster │
│ QQuery 20 │   931.36 / 1045.08 ±83.76 / 1146.25 ms │   935.10 / 1041.72 ±85.24 / 1153.21 ms │     no change │
│ QQuery 21 │ 2024.21 / 2177.95 ±138.26 / 2438.70 ms │ 1994.38 / 2198.95 ±124.39 / 2340.66 ms │     no change │
│ QQuery 22 │     530.01 / 580.57 ±43.35 / 653.22 ms │     513.07 / 553.33 ±29.43 / 590.76 ms │     no change │
└───────────┴────────────────────────────────────────┴────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                     ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                     │ 21622.39ms │
│ Total Time (bounded-streaming-core)   │ 21572.32ms │
│ Average Time (HEAD)                   │   982.84ms │
│ Average Time (bounded-streaming-core) │   980.56ms │
│ Queries Faster                        │          2 │
│ Queries Slower                        │          1 │
│ Queries with No Change                │         19 │
│ Queries with Failure                  │          0 │
└───────────────────────────────────────┴────────────┘

Resource Usage

tpch — base (merge-base)

Metric Value
Wall time 110.0s
Peak memory 781.4 MiB
Avg memory 415.9 MiB
CPU user 30.3s
CPU sys 4.0s
Peak spill 0 B

tpch — branch

Metric Value
Wall time 110.0s
Peak memory 854.0 MiB
Avg memory 423.0 MiB
CPU user 30.4s
CPU sys 3.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 bounded-streaming-core
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                   HEAD ┃                 bounded-streaming-core ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │     106.56 / 172.63 ±37.54 / 206.64 ms │     106.56 / 173.12 ±37.85 / 207.25 ms │     no change │
│ QQuery 2  │     520.36 / 647.61 ±68.17 / 701.26 ms │     522.69 / 651.43 ±68.42 / 707.47 ms │     no change │
│ QQuery 3  │     383.25 / 427.52 ±31.11 / 473.34 ms │     382.47 / 427.59 ±31.42 / 474.08 ms │     no change │
│ QQuery 4  │  1206.70 / 1294.04 ±49.35 / 1352.93 ms │  1102.04 / 1250.38 ±87.79 / 1357.07 ms │     no change │
│ QQuery 5  │     518.85 / 586.03 ±53.77 / 679.83 ms │     498.92 / 572.24 ±64.25 / 679.42 ms │     no change │
│ QQuery 6  │    544.26 / 695.63 ±104.76 / 821.65 ms │    540.31 / 699.91 ±106.09 / 821.49 ms │     no change │
│ QQuery 7  │     564.99 / 692.90 ±73.08 / 775.24 ms │     579.91 / 704.54 ±70.53 / 782.90 ms │     no change │
│ QQuery 8  │     572.45 / 621.22 ±27.79 / 652.52 ms │     619.05 / 638.10 ±16.25 / 665.55 ms │     no change │
│ QQuery 9  │  1371.69 / 1488.20 ±93.29 / 1589.76 ms │  1384.08 / 1489.23 ±85.81 / 1575.98 ms │     no change │
│ QQuery 10 │     750.25 / 782.97 ±32.32 / 841.01 ms │     703.35 / 795.39 ±62.34 / 881.54 ms │     no change │
│ QQuery 11 │    896.03 / 987.73 ±77.27 / 1077.73 ms │    914.39 / 994.00 ±66.77 / 1111.02 ms │     no change │
│ QQuery 12 │     343.23 / 373.96 ±27.66 / 419.02 ms │     344.77 / 375.26 ±27.21 / 420.46 ms │     no change │
│ QQuery 13 │     687.32 / 749.88 ±40.45 / 792.31 ms │     689.63 / 751.65 ±41.82 / 804.81 ms │     no change │
│ QQuery 14 │ 3794.21 / 4010.41 ±162.43 / 4265.33 ms │ 3786.26 / 4099.43 ±256.60 / 4557.29 ms │     no change │
│ QQuery 15 │     415.42 / 514.30 ±56.37 / 582.28 ms │     407.16 / 485.53 ±67.80 / 582.62 ms │ +1.06x faster │
│ QQuery 16 │     107.05 / 174.60 ±38.65 / 211.05 ms │     108.23 / 174.06 ±37.75 / 208.20 ms │     no change │
│ QQuery 17 │     627.58 / 707.35 ±43.43 / 744.63 ms │     632.44 / 709.49 ±40.93 / 745.36 ms │     no change │
│ QQuery 18 │     720.18 / 801.59 ±59.10 / 902.88 ms │     719.49 / 801.67 ±59.24 / 902.47 ms │     no change │
│ QQuery 19 │     529.49 / 596.93 ±56.72 / 680.83 ms │     532.79 / 595.76 ±54.46 / 676.95 ms │     no change │
│ QQuery 20 │     324.82 / 398.26 ±40.61 / 446.51 ms │     325.53 / 397.22 ±40.23 / 446.65 ms │     no change │
│ QQuery 21 │     508.31 / 571.36 ±48.77 / 632.75 ms │     508.30 / 572.02 ±49.84 / 632.40 ms │     no change │
│ QQuery 22 │     473.03 / 522.55 ±26.31 / 546.91 ms │     477.10 / 529.43 ±30.94 / 572.56 ms │     no change │
│ QQuery 23 │  2544.34 / 2660.22 ±77.62 / 2741.44 ms │ 2557.37 / 2768.69 ±111.61 / 2888.92 ms │     no change │
│ QQuery 24 │ 2191.37 / 2352.75 ±104.25 / 2473.00 ms │ 2184.44 / 2350.22 ±105.31 / 2464.89 ms │     no change │
│ QQuery 25 │     663.19 / 728.56 ±43.26 / 774.63 ms │     690.00 / 741.66 ±40.29 / 807.22 ms │     no change │
│ QQuery 26 │     553.68 / 616.35 ±53.39 / 705.17 ms │     582.25 / 628.31 ±25.55 / 660.12 ms │     no change │
│ QQuery 27 │     141.87 / 253.92 ±83.65 / 358.33 ms │     141.41 / 253.91 ±83.85 / 359.30 ms │     no change │
│ QQuery 28 │     344.00 / 399.24 ±31.11 / 432.57 ms │     343.48 / 399.03 ±32.61 / 433.12 ms │     no change │
│ QQuery 29 │     727.78 / 786.28 ±44.48 / 833.28 ms │     728.37 / 783.02 ±39.92 / 824.83 ms │     no change │
│ QQuery 30 │     541.20 / 629.68 ±76.46 / 740.81 ms │     564.62 / 632.16 ±43.58 / 694.01 ms │     no change │
│ QQuery 31 │  1136.83 / 1242.12 ±71.63 / 1344.58 ms │  1217.51 / 1274.44 ±42.00 / 1346.55 ms │     no change │
│ QQuery 32 │     412.89 / 450.20 ±31.66 / 485.42 ms │     375.34 / 443.05 ±42.44 / 486.27 ms │     no change │
│ QQuery 33 │     540.16 / 574.15 ±19.87 / 600.52 ms │     521.61 / 570.44 ±40.51 / 641.32 ms │     no change │
│ QQuery 34 │     194.99 / 306.02 ±59.42 / 361.54 ms │     194.75 / 305.67 ±59.32 / 357.77 ms │     no change │
│ QQuery 35 │     717.34 / 756.08 ±30.50 / 805.12 ms │     710.79 / 754.47 ±33.61 / 805.33 ms │     no change │
│ QQuery 36 │     107.06 / 173.74 ±37.77 / 207.76 ms │     107.29 / 173.81 ±38.39 / 209.79 ms │     no change │
│ QQuery 37 │     220.11 / 276.12 ±30.72 / 310.59 ms │     221.13 / 276.00 ±30.16 / 309.65 ms │     no change │
│ QQuery 38 │     602.65 / 672.65 ±67.03 / 795.11 ms │     631.55 / 689.89 ±56.66 / 796.89 ms │     no change │
│ QQuery 39 │ 1849.67 / 2007.86 ±107.83 / 2139.00 ms │ 1850.90 / 2009.11 ±109.55 / 2143.30 ms │     no change │
│ QQuery 40 │     464.71 / 493.78 ±23.29 / 516.52 ms │     466.87 / 493.37 ±20.66 / 510.85 ms │     no change │
│ QQuery 41 │     175.72 / 278.47 ±72.96 / 380.25 ms │     176.75 / 279.37 ±73.49 / 381.42 ms │     no change │
│ QQuery 42 │     307.75 / 404.27 ±66.84 / 466.61 ms │     308.89 / 404.25 ±66.63 / 467.84 ms │     no change │
│ QQuery 43 │     106.11 / 152.66 ±40.74 / 205.65 ms │     106.61 / 153.58 ±41.58 / 206.73 ms │     no change │
│ QQuery 44 │     196.90 / 262.05 ±47.25 / 302.31 ms │     196.50 / 262.40 ±47.40 / 302.69 ms │     no change │
│ QQuery 45 │     457.69 / 536.41 ±63.96 / 607.07 ms │     452.28 / 510.77 ±66.21 / 610.46 ms │     no change │
│ QQuery 46 │     290.42 / 345.64 ±41.34 / 399.27 ms │     310.19 / 351.91 ±34.69 / 399.12 ms │     no change │
│ QQuery 47 │  1247.61 / 1276.16 ±31.88 / 1316.63 ms │  1233.48 / 1268.70 ±40.88 / 1325.95 ms │     no change │
│ QQuery 48 │     602.09 / 709.18 ±64.45 / 778.38 ms │     600.70 / 706.85 ±59.79 / 768.88 ms │     no change │
│ QQuery 49 │     576.94 / 632.22 ±51.76 / 711.29 ms │     546.78 / 622.25 ±60.25 / 713.50 ms │     no change │
│ QQuery 50 │     537.05 / 635.89 ±54.06 / 694.45 ms │     540.85 / 635.37 ±52.41 / 689.16 ms │     no change │
│ QQuery 51 │     514.70 / 539.91 ±17.00 / 555.92 ms │     520.78 / 542.66 ±16.24 / 559.17 ms │     no change │
│ QQuery 52 │     314.58 / 404.53 ±64.26 / 462.21 ms │     314.08 / 407.32 ±66.37 / 473.99 ms │     no change │
│ QQuery 53 │     413.69 / 454.10 ±47.91 / 515.72 ms │     409.96 / 455.54 ±48.45 / 515.18 ms │     no change │
│ QQuery 54 │    860.49 / 947.45 ±66.08 / 1034.27 ms │    905.66 / 973.69 ±54.71 / 1035.58 ms │     no change │
│ QQuery 55 │     376.98 / 421.62 ±31.29 / 467.88 ms │     377.69 / 422.38 ±30.64 / 465.95 ms │     no change │
│ QQuery 56 │     500.51 / 605.36 ±64.44 / 696.32 ms │     548.63 / 603.40 ±30.51 / 641.49 ms │     no change │
│ QQuery 57 │  1079.96 / 1193.08 ±78.66 / 1304.32 ms │  1061.72 / 1149.22 ±87.57 / 1304.49 ms │     no change │
│ QQuery 58 │  1149.91 / 1325.89 ±98.42 / 1423.26 ms │  1161.18 / 1327.39 ±95.68 / 1422.30 ms │     no change │
│ QQuery 59 │      894.31 / 900.63 ±5.94 / 908.03 ms │    895.39 / 926.35 ±44.69 / 1014.98 ms │     no change │
│ QQuery 60 │     574.26 / 626.47 ±62.37 / 738.75 ms │     579.75 / 673.34 ±61.73 / 746.06 ms │  1.07x slower │
│ QQuery 61 │      392.96 / 396.07 ±2.54 / 399.53 ms │      394.49 / 395.56 ±1.23 / 397.91 ms │     no change │
│ QQuery 62 │     579.71 / 600.57 ±24.11 / 630.65 ms │     580.18 / 601.60 ±24.76 / 632.44 ms │     no change │
│ QQuery 63 │     418.46 / 440.92 ±26.62 / 473.96 ms │     417.33 / 441.29 ±26.55 / 474.44 ms │     no change │
│ QQuery 64 │ 3120.28 / 3292.55 ±112.81 / 3389.22 ms │  3132.80 / 3267.01 ±92.64 / 3375.26 ms │     no change │
│ QQuery 65 │     613.63 / 718.49 ±63.02 / 801.82 ms │     608.83 / 719.59 ±65.27 / 799.94 ms │     no change │
│ QQuery 66 │     560.75 / 593.44 ±42.93 / 676.39 ms │     564.52 / 591.86 ±44.06 / 679.05 ms │     no change │
│ QQuery 67 │     620.29 / 698.59 ±42.50 / 740.95 ms │     656.02 / 695.24 ±29.71 / 736.77 ms │     no change │
│ QQuery 68 │     282.19 / 319.99 ±24.10 / 356.18 ms │     282.30 / 320.67 ±24.46 / 357.60 ms │     no change │
│ QQuery 69 │     702.82 / 799.92 ±69.69 / 883.64 ms │     703.98 / 768.42 ±83.87 / 931.27 ms │     no change │
│ QQuery 70 │     698.30 / 769.00 ±57.09 / 862.37 ms │     675.25 / 759.95 ±66.50 / 862.46 ms │     no change │
│ QQuery 71 │     520.91 / 602.49 ±59.33 / 676.90 ms │     515.75 / 577.21 ±58.76 / 680.67 ms │     no change │
│ QQuery 72 │  3046.79 / 3136.46 ±45.19 / 3165.33 ms │  3019.80 / 3135.80 ±90.34 / 3277.32 ms │     no change │
│ QQuery 73 │     194.37 / 307.26 ±61.16 / 357.43 ms │     194.55 / 308.52 ±58.97 / 359.17 ms │     no change │
│ QQuery 74 │     724.31 / 770.28 ±30.97 / 809.11 ms │     729.30 / 811.47 ±77.10 / 937.45 ms │  1.05x slower │
│ QQuery 75 │    924.45 / 996.77 ±53.88 / 1082.67 ms │    935.50 / 994.55 ±37.39 / 1040.79 ms │     no change │
│ QQuery 76 │     522.06 / 601.30 ±54.83 / 656.96 ms │     523.08 / 601.03 ±56.47 / 659.59 ms │     no change │
│ QQuery 77 │     650.82 / 688.01 ±37.50 / 758.09 ms │     679.01 / 708.40 ±33.07 / 772.83 ms │     no change │
│ QQuery 78 │     709.84 / 853.62 ±78.24 / 948.38 ms │     707.21 / 854.24 ±81.56 / 951.41 ms │     no change │
│ QQuery 79 │     450.43 / 502.62 ±44.48 / 581.45 ms │     451.41 / 505.93 ±45.99 / 584.15 ms │     no change │
│ QQuery 80 │     638.65 / 715.57 ±52.05 / 774.03 ms │     648.44 / 723.89 ±60.50 / 808.23 ms │     no change │
│ QQuery 81 │     476.70 / 609.06 ±71.91 / 681.16 ms │     476.50 / 609.90 ±72.32 / 680.89 ms │     no change │
│ QQuery 82 │     554.46 / 643.16 ±48.42 / 683.09 ms │     561.32 / 644.17 ±45.58 / 681.17 ms │     no change │
│ QQuery 83 │   981.47 / 1036.57 ±50.32 / 1095.79 ms │    940.02 / 974.70 ±31.83 / 1025.90 ms │ +1.06x faster │
│ QQuery 84 │     438.19 / 500.59 ±59.42 / 597.72 ms │     438.99 / 500.84 ±55.81 / 587.54 ms │     no change │
│ QQuery 85 │     812.81 / 887.55 ±52.84 / 955.08 ms │     817.10 / 889.55 ±53.05 / 959.01 ms │     no change │
│ QQuery 86 │     246.97 / 313.83 ±55.72 / 394.73 ms │     247.03 / 314.20 ±56.27 / 395.88 ms │     no change │
│ QQuery 87 │     566.50 / 641.42 ±44.57 / 698.72 ms │     615.15 / 689.51 ±59.66 / 780.16 ms │  1.07x slower │
│ QQuery 88 │      737.14 / 737.77 ±0.49 / 738.51 ms │      736.42 / 740.68 ±3.17 / 745.32 ms │     no change │
│ QQuery 89 │     425.64 / 460.85 ±28.10 / 485.29 ms │     427.46 / 461.25 ±27.42 / 484.54 ms │     no change │
│ QQuery 90 │     423.54 / 466.05 ±26.31 / 500.76 ms │     427.35 / 466.95 ±25.41 / 501.74 ms │     no change │
│ QQuery 91 │    526.21 / 663.83 ±111.61 / 804.72 ms │    526.80 / 664.44 ±111.78 / 805.77 ms │     no change │
│ QQuery 92 │     371.51 / 439.26 ±37.90 / 488.38 ms │     439.52 / 460.15 ±22.64 / 489.97 ms │     no change │
│ QQuery 93 │     456.97 / 475.32 ±17.11 / 502.05 ms │     466.29 / 481.27 ±13.82 / 503.93 ms │     no change │
│ QQuery 94 │     481.45 / 529.41 ±42.16 / 584.68 ms │     480.47 / 531.87 ±42.58 / 585.00 ms │     no change │
│ QQuery 95 │     686.40 / 775.85 ±48.43 / 824.84 ms │     693.23 / 779.38 ±46.36 / 827.10 ms │     no change │
│ QQuery 96 │     407.46 / 448.34 ±48.10 / 507.64 ms │     408.07 / 449.31 ±47.58 / 508.09 ms │     no change │
│ QQuery 97 │     461.93 / 520.18 ±48.84 / 610.19 ms │     513.91 / 560.25 ±48.14 / 623.94 ms │  1.08x slower │
│ QQuery 98 │     395.84 / 442.89 ±29.72 / 482.88 ms │     394.48 / 445.36 ±31.38 / 486.21 ms │     no change │
│ QQuery 99 │     507.84 / 610.73 ±61.54 / 694.22 ms │     507.82 / 611.87 ±62.27 / 696.78 ms │     no change │
└───────────┴────────────────────────────────────────┴────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                     ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                     │ 74855.91ms │
│ Total Time (bounded-streaming-core)   │ 75169.31ms │
│ Average Time (HEAD)                   │   756.12ms │
│ Average Time (bounded-streaming-core) │   759.29ms │
│ 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 380.1s
Peak memory 1.0 GiB
Avg memory 534.0 MiB
CPU user 233.2s
CPU sys 11.6s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 380.1s
Peak memory 1.0 GiB
Avg memory 553.6 MiB
CPU user 236.8s
CPU sys 11.6s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

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

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

Comparing HEAD and bounded-streaming-core
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃                 bounded-streaming-core ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.42 / 4.42 ±5.75 / 15.92 ms │           1.24 / 4.03 ±5.49 / 15.02 ms │ +1.10x faster │
│ QQuery 1  │ 1906.57 / 1941.49 ±43.08 / 2024.41 ms │  1919.15 / 1943.52 ±17.40 / 1969.52 ms │     no change │
│ QQuery 2  │ 2152.87 / 2228.30 ±57.82 / 2303.63 ms │  2150.52 / 2232.65 ±62.90 / 2293.72 ms │     no change │
│ QQuery 3  │ 2130.59 / 2184.75 ±49.29 / 2260.16 ms │  2162.88 / 2213.83 ±40.76 / 2282.68 ms │     no change │
│ QQuery 4  │ 2335.69 / 2380.57 ±40.09 / 2439.42 ms │  2274.46 / 2355.22 ±65.27 / 2449.39 ms │     no change │
│ QQuery 5  │ 2375.57 / 2418.60 ±37.98 / 2474.60 ms │  2364.01 / 2422.98 ±31.86 / 2459.99 ms │     no change │
│ QQuery 6  │           1.28 / 1.43 ±0.23 / 1.89 ms │            1.29 / 1.45 ±0.24 / 1.92 ms │     no change │
│ QQuery 7  │ 1936.17 / 1988.57 ±53.84 / 2090.10 ms │  1960.61 / 1997.49 ±36.09 / 2056.75 ms │     no change │
│ QQuery 8  │ 2394.14 / 2463.32 ±63.43 / 2571.73 ms │  2389.38 / 2448.91 ±42.11 / 2515.90 ms │     no change │
│ QQuery 9  │ 2606.00 / 2696.74 ±78.93 / 2844.32 ms │  2679.75 / 2752.78 ±68.55 / 2868.17 ms │     no change │
│ QQuery 10 │ 2204.57 / 2267.41 ±41.50 / 2311.26 ms │  2209.00 / 2247.47 ±45.54 / 2336.86 ms │     no change │
│ QQuery 11 │ 2224.25 / 2251.26 ±23.22 / 2288.56 ms │  2179.84 / 2250.50 ±36.79 / 2280.18 ms │     no change │
│ QQuery 12 │ 2378.22 / 2422.68 ±33.54 / 2463.44 ms │  2356.45 / 2415.13 ±44.72 / 2487.60 ms │     no change │
│ QQuery 13 │ 2529.01 / 2574.26 ±47.13 / 2657.82 ms │  2465.92 / 2558.88 ±62.84 / 2629.24 ms │     no change │
│ QQuery 14 │ 2414.37 / 2474.59 ±46.72 / 2535.18 ms │  2377.97 / 2484.17 ±73.28 / 2608.52 ms │     no change │
│ QQuery 15 │ 2402.17 / 2450.86 ±58.64 / 2553.57 ms │  2374.22 / 2452.09 ±60.22 / 2536.30 ms │     no change │
│ QQuery 16 │ 2603.36 / 2665.57 ±49.47 / 2739.57 ms │  2744.61 / 2776.28 ±24.57 / 2807.77 ms │     no change │
│ QQuery 17 │ 2741.68 / 2785.05 ±35.28 / 2828.86 ms │  2633.02 / 2678.17 ±35.34 / 2719.98 ms │     no change │
│ QQuery 18 │ 3157.95 / 3190.50 ±33.06 / 3251.22 ms │  3142.53 / 3181.17 ±31.33 / 3236.24 ms │     no change │
│ QQuery 19 │ 1742.25 / 1786.68 ±31.12 / 1825.89 ms │  1773.98 / 1814.39 ±44.80 / 1897.32 ms │     no change │
│ QQuery 20 │ 2679.31 / 2746.23 ±50.65 / 2826.72 ms │  2612.49 / 2684.05 ±76.14 / 2821.28 ms │     no change │
│ QQuery 21 │ 2672.15 / 2723.24 ±39.57 / 2780.18 ms │  2686.99 / 2721.44 ±40.15 / 2793.43 ms │     no change │
│ QQuery 22 │ 3028.70 / 3130.28 ±65.65 / 3220.01 ms │  3113.22 / 3195.24 ±72.58 / 3318.47 ms │     no change │
│ QQuery 23 │ 4955.05 / 5019.44 ±50.37 / 5087.74 ms │  5125.22 / 5197.13 ±84.85 / 5348.33 ms │     no change │
│ QQuery 24 │    478.18 / 504.77 ±23.32 / 533.63 ms │     466.22 / 510.83 ±35.61 / 555.75 ms │     no change │
│ QQuery 25 │ 2267.62 / 2322.38 ±41.45 / 2389.46 ms │  2284.68 / 2380.95 ±70.99 / 2460.24 ms │     no change │
│ QQuery 26 │    478.26 / 495.99 ±14.42 / 519.05 ms │     466.80 / 522.77 ±58.80 / 610.84 ms │  1.05x slower │
│ QQuery 27 │ 2710.32 / 2743.01 ±27.40 / 2793.50 ms │  2626.52 / 2763.88 ±88.31 / 2867.53 ms │     no change │
│ QQuery 28 │ 4973.81 / 5059.73 ±47.48 / 5115.31 ms │ 5031.76 / 5142.66 ±100.54 / 5293.36 ms │     no change │
│ QQuery 29 │ 2193.20 / 2255.25 ±42.42 / 2326.69 ms │ 2125.42 / 2290.56 ±115.16 / 2454.44 ms │     no change │
│ QQuery 30 │ 2500.57 / 2557.69 ±70.10 / 2692.41 ms │  2384.07 / 2468.69 ±83.16 / 2598.76 ms │     no change │
│ QQuery 31 │ 2429.13 / 2465.07 ±40.62 / 2532.05 ms │ 2319.60 / 2488.54 ±104.22 / 2590.51 ms │     no change │
│ QQuery 32 │ 2520.47 / 2610.06 ±64.16 / 2688.17 ms │  2546.57 / 2636.63 ±70.60 / 2763.30 ms │     no change │
│ QQuery 33 │ 3435.85 / 3485.46 ±55.33 / 3589.17 ms │ 3448.49 / 3632.73 ±169.40 / 3833.00 ms │     no change │
│ QQuery 34 │ 3475.39 / 3573.52 ±88.35 / 3700.97 ms │  3454.85 / 3538.71 ±93.33 / 3709.94 ms │     no change │
│ QQuery 35 │ 2422.97 / 2478.41 ±49.50 / 2557.78 ms │  2415.23 / 2515.31 ±79.39 / 2607.05 ms │     no change │
│ QQuery 36 │    191.52 / 287.41 ±53.93 / 342.85 ms │     191.24 / 281.63 ±55.74 / 347.55 ms │     no change │
│ QQuery 37 │    219.07 / 252.49 ±37.95 / 312.67 ms │     148.99 / 241.68 ±54.10 / 304.46 ms │     no change │
│ QQuery 38 │    174.81 / 263.89 ±54.13 / 329.86 ms │     177.92 / 266.34 ±56.08 / 339.17 ms │     no change │
│ QQuery 39 │    271.97 / 343.99 ±50.99 / 415.60 ms │     288.16 / 341.07 ±47.20 / 418.85 ms │     no change │
│ QQuery 40 │    146.52 / 240.71 ±56.38 / 309.63 ms │     153.67 / 242.94 ±53.73 / 302.54 ms │     no change │
│ QQuery 41 │    143.24 / 217.92 ±65.02 / 301.79 ms │     144.29 / 232.54 ±54.22 / 300.44 ms │  1.07x slower │
│ QQuery 42 │    143.81 / 232.87 ±55.42 / 304.67 ms │     148.78 / 233.48 ±52.84 / 301.15 ms │     no change │
└───────────┴───────────────────────────────────────┴────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                     ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                     │ 89186.84ms │
│ Total Time (bounded-streaming-core)   │ 89760.92ms │
│ Average Time (HEAD)                   │  2074.11ms │
│ Average Time (bounded-streaming-core) │  2087.46ms │
│ Queries Faster                        │          1 │
│ Queries Slower                        │          2 │
│ Queries with No Change                │         40 │
│ Queries with Failure                  │          0 │
└───────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 450.1s
Peak memory 9.4 GiB
Avg memory 1.8 GiB
CPU user 1008.4s
CPU sys 110.2s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 450.1s
Peak memory 9.3 GiB
Avg memory 1.8 GiB
CPU user 1013.4s
CPU sys 112.3s
Peak spill 0 B

File an issue against this benchmark runner

@adriangb

Copy link
Copy Markdown
Contributor Author

run benchmark clickbench_partitioned

baseline:
ref: main
changed:
ref: main

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c5049571260-1237-q85bg 6.12.85+ #1 SMP Mon May 11 08:17:35 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 main (96e8fdf) to main 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 bounded-streaming-core
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃                bounded-streaming-core ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.24 / 4.04 ±5.46 / 14.96 ms │          1.23 / 4.02 ±5.48 / 14.98 ms │     no change │
│ QQuery 1  │        13.38 / 13.71 ±0.21 / 14.04 ms │        13.07 / 13.33 ±0.14 / 13.48 ms │     no change │
│ QQuery 2  │        36.43 / 36.72 ±0.31 / 37.14 ms │        36.89 / 37.15 ±0.16 / 37.36 ms │     no change │
│ QQuery 3  │        31.00 / 31.66 ±0.82 / 33.23 ms │        30.85 / 31.16 ±0.24 / 31.46 ms │     no change │
│ QQuery 4  │     225.54 / 228.06 ±2.91 / 232.15 ms │     223.38 / 226.37 ±2.10 / 228.38 ms │     no change │
│ QQuery 5  │     271.79 / 274.16 ±2.46 / 278.61 ms │     271.03 / 273.54 ±2.59 / 278.02 ms │     no change │
│ QQuery 6  │           1.31 / 1.46 ±0.23 / 1.92 ms │           1.29 / 1.44 ±0.23 / 1.90 ms │     no change │
│ QQuery 7  │        14.29 / 14.72 ±0.26 / 15.03 ms │        14.16 / 14.39 ±0.13 / 14.57 ms │     no change │
│ QQuery 8  │     326.89 / 333.25 ±4.62 / 341.12 ms │     324.58 / 330.23 ±5.98 / 340.99 ms │     no change │
│ QQuery 9  │    456.48 / 465.43 ±11.74 / 488.64 ms │    461.96 / 474.09 ±11.78 / 494.98 ms │     no change │
│ QQuery 10 │        71.17 / 72.48 ±1.63 / 75.55 ms │        69.90 / 71.50 ±1.95 / 75.22 ms │     no change │
│ QQuery 11 │        82.87 / 86.64 ±4.33 / 93.15 ms │        81.91 / 84.75 ±5.18 / 95.10 ms │     no change │
│ QQuery 12 │     267.96 / 274.92 ±4.08 / 280.10 ms │     271.93 / 281.87 ±8.26 / 294.22 ms │     no change │
│ QQuery 13 │    368.54 / 383.49 ±10.00 / 397.52 ms │     371.22 / 381.83 ±7.97 / 393.39 ms │     no change │
│ QQuery 14 │     282.93 / 285.20 ±2.66 / 290.33 ms │     288.61 / 291.35 ±1.94 / 294.37 ms │     no change │
│ QQuery 15 │     268.02 / 274.08 ±6.17 / 285.62 ms │    274.89 / 288.24 ±14.14 / 313.71 ms │  1.05x slower │
│ QQuery 16 │     612.66 / 619.09 ±3.79 / 622.92 ms │    627.11 / 644.46 ±15.03 / 667.41 ms │     no change │
│ QQuery 17 │     617.26 / 626.94 ±9.43 / 644.41 ms │     621.37 / 634.00 ±8.54 / 643.49 ms │     no change │
│ QQuery 18 │ 1242.17 / 1271.21 ±21.78 / 1298.24 ms │ 1272.70 / 1293.56 ±13.35 / 1307.74 ms │     no change │
│ QQuery 19 │       28.61 / 34.18 ±10.23 / 54.62 ms │        28.18 / 28.42 ±0.14 / 28.57 ms │ +1.20x faster │
│ QQuery 20 │    519.88 / 529.01 ±10.67 / 549.26 ms │    520.31 / 531.57 ±13.78 / 558.14 ms │     no change │
│ QQuery 21 │     520.35 / 525.44 ±3.50 / 530.13 ms │     521.77 / 525.78 ±3.90 / 533.23 ms │     no change │
│ QQuery 22 │  990.34 / 1008.84 ±12.60 / 1024.57 ms │    990.17 / 994.54 ±3.84 / 1001.75 ms │     no change │
│ QQuery 23 │ 3062.20 / 3127.51 ±47.58 / 3194.68 ms │ 3051.99 / 3107.04 ±51.66 / 3193.06 ms │     no change │
│ QQuery 24 │        41.77 / 44.28 ±3.79 / 51.78 ms │        41.37 / 42.96 ±1.62 / 45.80 ms │     no change │
│ QQuery 25 │     112.03 / 112.91 ±0.67 / 113.77 ms │     111.39 / 113.16 ±1.59 / 115.98 ms │     no change │
│ QQuery 26 │        42.23 / 47.52 ±4.30 / 52.42 ms │        42.16 / 47.92 ±5.68 / 58.14 ms │     no change │
│ QQuery 27 │     517.51 / 522.54 ±4.29 / 529.92 ms │     515.75 / 522.57 ±4.90 / 528.23 ms │     no change │
│ QQuery 28 │ 2877.14 / 2912.00 ±27.12 / 2960.68 ms │ 2871.81 / 2921.35 ±41.56 / 2976.91 ms │     no change │
│ QQuery 29 │       41.74 / 49.25 ±14.38 / 77.99 ms │        41.64 / 45.66 ±6.75 / 59.13 ms │ +1.08x faster │
│ QQuery 30 │     306.01 / 308.62 ±3.74 / 316.01 ms │     305.29 / 316.49 ±9.15 / 331.76 ms │     no change │
│ QQuery 31 │     291.08 / 292.04 ±1.35 / 294.64 ms │     295.33 / 306.32 ±6.21 / 313.79 ms │     no change │
│ QQuery 32 │   943.57 / 983.56 ±26.58 / 1018.29 ms │    921.28 / 940.16 ±18.50 / 972.69 ms │     no change │
│ QQuery 33 │ 1473.18 / 1494.01 ±26.41 / 1544.38 ms │ 1473.22 / 1486.50 ±13.97 / 1512.04 ms │     no change │
│ QQuery 34 │ 1468.15 / 1509.45 ±26.81 / 1545.25 ms │ 1490.22 / 1515.24 ±27.36 / 1566.10 ms │     no change │
│ QQuery 35 │    284.73 / 315.21 ±31.35 / 353.95 ms │    280.20 / 309.15 ±22.28 / 343.21 ms │     no change │
│ QQuery 36 │        67.42 / 71.25 ±3.33 / 76.37 ms │        69.32 / 78.91 ±5.14 / 83.79 ms │  1.11x slower │
│ QQuery 37 │        36.44 / 45.62 ±8.26 / 60.42 ms │        36.24 / 42.51 ±7.98 / 56.84 ms │ +1.07x faster │
│ QQuery 38 │        43.48 / 51.29 ±6.48 / 62.10 ms │        41.11 / 44.78 ±3.24 / 49.91 ms │ +1.15x faster │
│ QQuery 39 │     150.28 / 156.57 ±5.95 / 165.14 ms │     139.64 / 155.72 ±9.05 / 165.68 ms │     no change │
│ QQuery 40 │        14.61 / 19.16 ±5.39 / 29.27 ms │        14.85 / 19.04 ±7.66 / 34.34 ms │     no change │
│ QQuery 41 │        14.82 / 17.81 ±4.68 / 27.05 ms │        13.93 / 14.22 ±0.18 / 14.36 ms │ +1.25x faster │
│ QQuery 42 │        13.34 / 13.64 ±0.25 / 14.00 ms │        13.63 / 13.70 ±0.10 / 13.89 ms │     no change │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                     ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                     │ 19488.96ms │
│ Total Time (bounded-streaming-core)   │ 19501.00ms │
│ Average Time (HEAD)                   │   453.23ms │
│ Average Time (bounded-streaming-core) │   453.51ms │
│ Queries Faster                        │          5 │
│ Queries Slower                        │          2 │
│ Queries with No Change                │         36 │
│ Queries with Failure                  │          0 │
└───────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 100.0s
Peak memory 12.7 GiB
Avg memory 4.7 GiB
CPU user 999.3s
CPU sys 70.5s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 100.0s
Peak memory 11.2 GiB
Avg memory 4.0 GiB
CPU user 995.8s
CPU sys 72.3s
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

auto detected api change Auto detected API change common Related to common crate datasource Changes to the datasource crate documentation Improvements or additions to documentation proto Related to proto crate sqllogictest SQL Logic Tests (.slt)

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants