Skip to content

Unify LRU memory-limiting caches into one generic cache#22613

Open
mkleen wants to merge 1 commit into
apache:mainfrom
mkleen:generic-cache-1
Open

Unify LRU memory-limiting caches into one generic cache#22613
mkleen wants to merge 1 commit into
apache:mainfrom
mkleen:generic-cache-1

Conversation

@mkleen
Copy link
Copy Markdown
Contributor

@mkleen mkleen commented May 29, 2026

Which issue does this PR close?

Rationale for this change

This PR introduces a new cache which merges the functionality of file-metadata cache, list-files caches and file-statistics cache into one generic implementation. This removes a lot of redundant code.

What changes are included in this PR?

  • Introduce a generic DefaultCache with LRU eviction, memory-limit and TTL.

  • Migrate all cache tests to use the new DefaultCache.

  • Replace file-metadata cache, list-files-cache and file-statistics-cache implementations usage with the new generic version.

Are these changes tested?

Yes. All previous cache tests are migrated to the new cache and passing. They had to be slighlty adapted because the new implementation also counts the cache-key for memory accounting which wasn't the case for all previous implementations. The tests are still at the same location to have a diff for reviews.
Once the tests are reviewed and approved they should probably move to default_cache.rs and the files file_statistics_cache.rs, file_metadata_cache.rs and list_files_cache.rs can be removed.

Are there any user-facing changes?

The traits FileStatisticsCache, ListFilesCache and FileMetadataCache are replaced with the types Cache<TableScopedPath, CachedFileMetadata>, Cache<TableScopedPath, CachedFileList> and Cache<Path, CachedFileMetadataEntry>.

@github-actions github-actions Bot added core Core DataFusion crate catalog Related to the catalog crate execution Related to the execution crate datasource Changes to the datasource crate labels May 29, 2026
@mkleen mkleen force-pushed the generic-cache-1 branch 2 times, most recently from f0af85c to 8283e19 Compare May 29, 2026 08:07
}

#[test]
fn test_entry_creation() {
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Test is removed because ListFilesEntry is removed.

fn put(&mut self, key: &K, value: V, now: Instant) -> Option<V> {
let value_size = value.size();

if value_size == 0 {
Copy link
Copy Markdown
Contributor Author

@mkleen mkleen May 29, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

List-files-cache rejected values with size 0 which is needed to operate correctly.

@github-actions
Copy link
Copy Markdown

github-actions Bot commented May 29, 2026

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 v53.1.0 (current)
       Built [ 100.120s] (current)
     Parsing datafusion v53.1.0 (current)
      Parsed [   0.036s] (current)
    Building datafusion v53.1.0 (baseline)
       Built [  96.798s] (baseline)
     Parsing datafusion v53.1.0 (baseline)
      Parsed [   0.037s] (baseline)
    Checking datafusion v53.1.0 -> v53.1.0 (no change; assume patch)
     Checked [   0.925s] 222 checks: 222 pass, 30 skip
     Summary no semver update required
    Finished [ 200.719s] datafusion
    Building datafusion-catalog-listing v53.1.0 (current)
       Built [  41.613s] (current)
     Parsing datafusion-catalog-listing v53.1.0 (current)
      Parsed [   0.012s] (current)
    Building datafusion-catalog-listing v53.1.0 (baseline)
       Built [  41.967s] (baseline)
     Parsing datafusion-catalog-listing v53.1.0 (baseline)
      Parsed [   0.013s] (baseline)
    Checking datafusion-catalog-listing v53.1.0 -> v53.1.0 (no change; assume patch)
     Checked [   0.114s] 222 checks: 222 pass, 30 skip
     Summary no semver update required
    Finished [  84.978s] datafusion-catalog-listing
    Building datafusion-cli v53.1.0 (current)
       Built [ 174.126s] (current)
     Parsing datafusion-cli v53.1.0 (current)
      Parsed [   0.036s] (current)
    Building datafusion-cli v53.1.0 (baseline)
       Built [ 175.515s] (baseline)
     Parsing datafusion-cli v53.1.0 (baseline)
      Parsed [   0.037s] (baseline)
    Checking datafusion-cli v53.1.0 -> v53.1.0 (no change; assume patch)
     Checked [   0.176s] 222 checks: 222 pass, 30 skip
     Summary no semver update required
    Finished [ 353.983s] datafusion-cli
    Building datafusion-datasource v53.1.0 (current)
       Built [  34.978s] (current)
     Parsing datafusion-datasource v53.1.0 (current)
      Parsed [   0.033s] (current)
    Building datafusion-datasource v53.1.0 (baseline)
       Built [  34.783s] (baseline)
     Parsing datafusion-datasource v53.1.0 (baseline)
      Parsed [   0.032s] (baseline)
    Checking datafusion-datasource v53.1.0 -> v53.1.0 (no change; assume patch)
     Checked [   0.355s] 222 checks: 222 pass, 30 skip
     Summary no semver update required
    Finished [  71.821s] datafusion-datasource
    Building datafusion-datasource-parquet v53.1.0 (current)
       Built [  41.033s] (current)
     Parsing datafusion-datasource-parquet v53.1.0 (current)
      Parsed [   0.030s] (current)
    Building datafusion-datasource-parquet v53.1.0 (baseline)
       Built [  40.985s] (baseline)
     Parsing datafusion-datasource-parquet v53.1.0 (baseline)
      Parsed [   0.031s] (baseline)
    Checking datafusion-datasource-parquet v53.1.0 -> v53.1.0 (no change; assume patch)
     Checked [   0.194s] 222 checks: 222 pass, 30 skip
     Summary no semver update required
    Finished [  83.523s] datafusion-datasource-parquet
    Building datafusion-execution v53.1.0 (current)
       Built [  28.270s] (current)
     Parsing datafusion-execution v53.1.0 (current)
      Parsed [   0.025s] (current)
    Building datafusion-execution v53.1.0 (baseline)
       Built [  28.270s] (baseline)
     Parsing datafusion-execution v53.1.0 (baseline)
      Parsed [   0.027s] (baseline)
    Checking datafusion-execution v53.1.0 -> v53.1.0 (no change; assume patch)
     Checked [   0.280s] 222 checks: 219 pass, 3 fail, 0 warn, 30 skip

--- failure pub_module_level_const_missing: pub module-level const is missing ---

Description:
A public const is missing or renamed
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.47.0/src/lints/pub_module_level_const_missing.ron

Failed in:
  DEFAULT_FILE_STATISTICS_MEMORY_LIMIT in file /home/runner/work/datafusion/datafusion/target/semver-checks/git-apache_main/074d15095d00f5deaaf71b272f1e42315dfd73f8/datafusion/execution/src/cache/file_statistics_cache.rs:73

--- failure struct_missing: pub struct removed or renamed ---

Description:
A publicly-visible struct cannot be imported by its prior path. A `pub use` may have been removed, or the struct itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.47.0/src/lints/struct_missing.ron

Failed in:
  struct datafusion_execution::cache::file_statistics_cache::DefaultFilesMetadataCache, previously in file /home/runner/work/datafusion/datafusion/target/semver-checks/git-apache_main/074d15095d00f5deaaf71b272f1e42315dfd73f8/datafusion/execution/src/cache/file_metadata_cache.rs:143
  struct datafusion_execution::cache::DefaultFilesMetadataCache, previously in file /home/runner/work/datafusion/datafusion/target/semver-checks/git-apache_main/074d15095d00f5deaaf71b272f1e42315dfd73f8/datafusion/execution/src/cache/file_metadata_cache.rs:143
  struct datafusion_execution::cache::file_statistics_cache::DefaultFileStatisticsCache, previously in file /home/runner/work/datafusion/datafusion/target/semver-checks/git-apache_main/074d15095d00f5deaaf71b272f1e42315dfd73f8/datafusion/execution/src/cache/file_statistics_cache.rs:49
  struct datafusion_execution::cache::ListFilesEntry, previously in file /home/runner/work/datafusion/datafusion/target/semver-checks/git-apache_main/074d15095d00f5deaaf71b272f1e42315dfd73f8/datafusion/execution/src/cache/list_files_cache.rs:97
  struct datafusion_execution::cache::TableScopedPath, previously in file /home/runner/work/datafusion/datafusion/target/semver-checks/git-apache_main/074d15095d00f5deaaf71b272f1e42315dfd73f8/datafusion/execution/src/cache/list_files_cache.rs:150
  struct datafusion_execution::cache::DefaultListFilesCache, previously in file /home/runner/work/datafusion/datafusion/target/semver-checks/git-apache_main/074d15095d00f5deaaf71b272f1e42315dfd73f8/datafusion/execution/src/cache/list_files_cache.rs:65

--- failure trait_missing: pub trait removed or renamed ---

Description:
A publicly-visible trait cannot be imported by its prior path. A `pub use` may have been removed, or the trait itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.47.0/src/lints/trait_missing.ron

Failed in:
  trait datafusion_execution::cache::cache_manager::FileStatisticsCache, previously in file /home/runner/work/datafusion/datafusion/target/semver-checks/git-apache_main/074d15095d00f5deaaf71b272f1e42315dfd73f8/datafusion/execution/src/cache/cache_manager.rs:98
  trait datafusion_execution::cache::cache_manager::FileMetadataCache, previously in file /home/runner/work/datafusion/datafusion/target/semver-checks/git-apache_main/074d15095d00f5deaaf71b272f1e42315dfd73f8/datafusion/execution/src/cache/cache_manager.rs:301
  trait datafusion_execution::cache::cache_manager::ListFilesCache, previously in file /home/runner/work/datafusion/datafusion/target/semver-checks/git-apache_main/074d15095d00f5deaaf71b272f1e42315dfd73f8/datafusion/execution/src/cache/cache_manager.rs:209

     Summary semver requires new major version: 3 major and 0 minor checks failed
    Finished [  58.032s] datafusion-execution

@github-actions github-actions Bot added the auto detected api change Auto detected API change label May 29, 2026
DEFAULT_LIST_FILES_CACHE_MEMORY_LIMIT, DEFAULT_LIST_FILES_CACHE_TTL,
};
/// Calculates the number of bytes an [`ObjectMeta`] occupies in the heap.
pub fn meta_heap_bytes(object_meta: &ObjectMeta) -> usize {
Copy link
Copy Markdown
Contributor Author

@mkleen mkleen May 29, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a left-over from list-files-cache which didn't use the DFHeapsize trait for heap-size accounting because it did not exist at the time. DFHeapsize cannot be implemented here for ObjectMeta because it would become an orphan. To remove it and use DFHeapsize this would require one of the following changes:

  • Add a dependency to object_store to the package commons where DFHeapsize is located and implement it for ObjectMeta. The downside is that this would spread the object_store further around.

  • Move the DFHeapsize trait into the execution package where the cache is located, since it's nowhere else used yet.

  • Create a new crate/package for the heap-size estimation and add the object_store dependency there and use it from there.

@mkleen mkleen force-pushed the generic-cache-1 branch from 8283e19 to a772086 Compare May 29, 2026 08:24
@mkleen mkleen changed the title Replace metadata, list-files and statistics cache with the generic cache Replace metadata, list-files and statistics cache with generic cache May 29, 2026
@mkleen mkleen changed the title Replace metadata, list-files and statistics cache with generic cache Unify LRU memory-limiting caches into one generic cache May 29, 2026
@mkleen mkleen force-pushed the generic-cache-1 branch 2 times, most recently from c7c538a to 29d2f82 Compare May 29, 2026 09:09
@mkleen mkleen force-pushed the generic-cache-1 branch from 29d2f82 to 5920922 Compare May 29, 2026 09:23
@mkleen mkleen marked this pull request as ready for review May 29, 2026 09:53
@mkleen
Copy link
Copy Markdown
Contributor Author

mkleen commented May 29, 2026

@adriangb @alamb Can I get a benchmark run please?

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4574199977-362-skcq4 6.12.68+ #1 SMP Wed Apr 1 02:23:28 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 generic-cache-1 (5920922) to 32a1fe5 (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-c4574199977-363-p98gl 6.12.68+ #1 SMP Wed Apr 1 02:23:28 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 generic-cache-1 (5920922) to 32a1fe5 (merge-base) diff using: tpcds
Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4574199977-364-j2s8l 6.12.68+ #1 SMP Wed Apr 1 02:23:28 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 generic-cache-1 (5920922) to 32a1fe5 (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 generic-cache-1
--------------------
Benchmark tpch_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┓
┃ Query     ┃                           HEAD ┃                generic-cache-1 ┃    Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━┩
│ QQuery 1  │ 38.35 / 39.42 ±1.16 / 40.97 ms │ 38.35 / 39.23 ±1.05 / 40.97 ms │ no change │
│ QQuery 2  │ 18.30 / 18.58 ±0.28 / 19.11 ms │ 18.31 / 18.54 ±0.16 / 18.81 ms │ no change │
│ QQuery 3  │ 30.90 / 32.55 ±1.11 / 33.74 ms │ 33.22 / 33.87 ±0.56 / 34.81 ms │ no change │
│ QQuery 4  │ 17.07 / 17.19 ±0.07 / 17.29 ms │ 17.21 / 17.32 ±0.11 / 17.52 ms │ no change │
│ QQuery 5  │ 37.56 / 39.69 ±1.09 / 40.47 ms │ 39.44 / 40.02 ±0.44 / 40.57 ms │ no change │
│ QQuery 6  │ 15.96 / 16.27 ±0.42 / 17.09 ms │ 16.01 / 16.51 ±0.84 / 18.19 ms │ no change │
│ QQuery 7  │ 44.10 / 45.75 ±0.97 / 46.80 ms │ 43.37 / 44.18 ±0.46 / 44.68 ms │ no change │
│ QQuery 8  │ 42.22 / 43.02 ±0.91 / 44.78 ms │ 42.63 / 43.07 ±0.60 / 44.24 ms │ no change │
│ QQuery 9  │ 48.57 / 49.10 ±0.35 / 49.55 ms │ 48.94 / 49.34 ±0.42 / 50.04 ms │ no change │
│ QQuery 10 │ 41.95 / 42.77 ±1.11 / 44.78 ms │ 41.95 / 42.76 ±0.83 / 44.17 ms │ no change │
│ QQuery 11 │ 13.02 / 13.79 ±0.82 / 15.20 ms │ 12.95 / 13.32 ±0.33 / 13.90 ms │ no change │
│ QQuery 12 │ 23.42 / 24.24 ±0.84 / 25.79 ms │ 24.13 / 24.30 ±0.12 / 24.47 ms │ no change │
│ QQuery 13 │ 32.26 / 33.95 ±1.01 / 35.36 ms │ 31.57 / 32.86 ±1.43 / 35.57 ms │ no change │
│ QQuery 14 │ 23.55 / 24.10 ±0.72 / 25.51 ms │ 23.60 / 23.71 ±0.09 / 23.82 ms │ no change │
│ QQuery 15 │ 30.81 / 31.16 ±0.21 / 31.42 ms │ 31.01 / 31.63 ±0.74 / 33.06 ms │ no change │
│ QQuery 16 │ 14.47 / 14.71 ±0.30 / 15.29 ms │ 13.89 / 14.22 ±0.29 / 14.74 ms │ no change │
│ QQuery 17 │ 72.19 / 73.12 ±0.61 / 73.99 ms │ 72.46 / 73.14 ±0.66 / 74.34 ms │ no change │
│ QQuery 18 │ 58.35 / 59.83 ±1.64 / 63.02 ms │ 58.32 / 60.63 ±2.61 / 65.50 ms │ no change │
│ QQuery 19 │ 32.72 / 33.12 ±0.29 / 33.59 ms │ 32.70 / 33.05 ±0.30 / 33.56 ms │ no change │
│ QQuery 20 │ 31.88 / 32.11 ±0.23 / 32.50 ms │ 32.24 / 32.73 ±0.55 / 33.68 ms │ no change │
│ QQuery 21 │ 53.49 / 55.99 ±1.53 / 57.80 ms │ 55.16 / 56.98 ±1.10 / 58.45 ms │ no change │
│ QQuery 22 │ 13.70 / 14.13 ±0.55 / 15.20 ms │ 13.59 / 13.77 ±0.14 / 13.99 ms │ no change │
└───────────┴────────────────────────────────┴────────────────────────────────┴───────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━┓
┃ Benchmark Summary              ┃          ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━┩
│ Total Time (HEAD)              │ 754.60ms │
│ Total Time (generic-cache-1)   │ 755.17ms │
│ Average Time (HEAD)            │  34.30ms │
│ Average Time (generic-cache-1) │  34.33ms │
│ 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 5.7 GiB
Avg memory 4.9 GiB
CPU user 29.4s
CPU sys 2.3s
Peak spill 0 B

tpch — branch

Metric Value
Wall time 5.0s
Peak memory 5.6 GiB
Avg memory 4.9 GiB
CPU user 29.7s
CPU sys 2.2s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

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

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

Comparing HEAD and generic-cache-1
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃                       generic-cache-1 ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │           5.79 / 6.26 ±0.80 / 7.84 ms │           5.76 / 6.26 ±0.82 / 7.89 ms │     no change │
│ QQuery 2  │        83.55 / 84.17 ±0.72 / 85.52 ms │        80.54 / 81.01 ±0.45 / 81.60 ms │     no change │
│ QQuery 3  │        29.27 / 29.86 ±0.43 / 30.43 ms │        29.10 / 29.30 ±0.14 / 29.45 ms │     no change │
│ QQuery 4  │     490.51 / 495.52 ±4.86 / 502.27 ms │     484.59 / 490.30 ±4.15 / 496.57 ms │     no change │
│ QQuery 5  │        51.77 / 52.27 ±0.37 / 52.65 ms │        51.35 / 51.57 ±0.14 / 51.72 ms │     no change │
│ QQuery 6  │        36.94 / 37.22 ±0.21 / 37.54 ms │        36.91 / 37.23 ±0.32 / 37.83 ms │     no change │
│ QQuery 7  │       95.99 / 97.90 ±3.02 / 103.89 ms │        95.95 / 96.23 ±0.27 / 96.63 ms │     no change │
│ QQuery 8  │        37.14 / 38.02 ±0.82 / 39.51 ms │        36.90 / 37.34 ±0.40 / 38.01 ms │     no change │
│ QQuery 9  │        51.85 / 54.41 ±2.17 / 57.74 ms │        52.70 / 55.23 ±1.61 / 57.50 ms │     no change │
│ QQuery 10 │        68.62 / 69.15 ±0.28 / 69.42 ms │        69.50 / 69.95 ±0.43 / 70.74 ms │     no change │
│ QQuery 11 │     305.23 / 310.09 ±3.88 / 316.06 ms │     300.49 / 302.96 ±2.05 / 305.58 ms │     no change │
│ QQuery 12 │        28.65 / 29.17 ±0.29 / 29.53 ms │        28.62 / 29.02 ±0.31 / 29.51 ms │     no change │
│ QQuery 13 │     119.86 / 122.79 ±4.03 / 130.78 ms │     119.26 / 120.48 ±0.86 / 121.34 ms │     no change │
│ QQuery 14 │     507.29 / 509.56 ±2.97 / 515.30 ms │     505.62 / 511.03 ±4.52 / 519.15 ms │     no change │
│ QQuery 15 │        58.48 / 60.31 ±1.73 / 63.44 ms │        60.19 / 61.33 ±1.53 / 64.34 ms │     no change │
│ QQuery 16 │           6.76 / 6.95 ±0.19 / 7.29 ms │           6.68 / 6.85 ±0.25 / 7.33 ms │     no change │
│ QQuery 17 │        81.10 / 83.87 ±3.94 / 91.67 ms │        81.10 / 82.39 ±1.94 / 86.20 ms │     no change │
│ QQuery 18 │     125.80 / 127.56 ±1.32 / 129.87 ms │     126.33 / 128.01 ±0.92 / 129.11 ms │     no change │
│ QQuery 19 │        41.86 / 42.30 ±0.40 / 42.77 ms │        41.60 / 42.44 ±0.70 / 43.57 ms │     no change │
│ QQuery 20 │        35.89 / 36.28 ±0.31 / 36.82 ms │        35.60 / 35.97 ±0.37 / 36.63 ms │     no change │
│ QQuery 21 │        17.10 / 17.32 ±0.22 / 17.70 ms │        17.53 / 17.63 ±0.08 / 17.76 ms │     no change │
│ QQuery 22 │        62.47 / 63.79 ±1.77 / 67.27 ms │        62.24 / 62.93 ±0.49 / 63.75 ms │     no change │
│ QQuery 23 │    473.76 / 490.00 ±16.70 / 521.22 ms │     476.04 / 480.38 ±3.51 / 486.50 ms │     no change │
│ QQuery 24 │     224.90 / 231.40 ±5.19 / 238.55 ms │     226.43 / 231.36 ±5.63 / 240.96 ms │     no change │
│ QQuery 25 │     113.98 / 117.38 ±2.82 / 121.65 ms │     112.54 / 115.59 ±2.89 / 120.63 ms │     no change │
│ QQuery 26 │        57.98 / 58.78 ±0.57 / 59.44 ms │        58.68 / 59.21 ±0.60 / 60.33 ms │     no change │
│ QQuery 27 │           6.70 / 6.82 ±0.15 / 7.11 ms │           6.64 / 6.79 ±0.18 / 7.13 ms │     no change │
│ QQuery 28 │        56.68 / 61.01 ±2.20 / 62.57 ms │        56.90 / 58.80 ±2.18 / 61.52 ms │     no change │
│ QQuery 29 │      98.81 / 103.58 ±5.92 / 114.11 ms │      98.33 / 101.40 ±3.43 / 106.79 ms │     no change │
│ QQuery 30 │        32.72 / 33.10 ±0.43 / 33.83 ms │        33.19 / 34.09 ±0.52 / 34.66 ms │     no change │
│ QQuery 31 │     111.90 / 114.22 ±2.94 / 120.00 ms │     112.11 / 112.83 ±0.54 / 113.51 ms │     no change │
│ QQuery 32 │        20.17 / 20.34 ±0.30 / 20.94 ms │        20.12 / 22.64 ±4.30 / 31.22 ms │  1.11x slower │
│ QQuery 33 │        38.26 / 38.81 ±0.35 / 39.22 ms │        38.51 / 39.74 ±1.43 / 42.44 ms │     no change │
│ QQuery 34 │         9.50 / 10.29 ±0.68 / 11.54 ms │         9.43 / 10.07 ±0.67 / 11.17 ms │     no change │
│ QQuery 35 │        76.73 / 78.17 ±0.97 / 79.49 ms │        78.30 / 79.04 ±0.64 / 80.11 ms │     no change │
│ QQuery 36 │           6.12 / 6.25 ±0.15 / 6.52 ms │           5.83 / 5.96 ±0.20 / 6.35 ms │     no change │
│ QQuery 37 │           6.87 / 6.97 ±0.08 / 7.11 ms │           6.81 / 6.93 ±0.11 / 7.11 ms │     no change │
│ QQuery 38 │        63.38 / 65.82 ±2.05 / 68.37 ms │        63.41 / 64.24 ±0.56 / 65.00 ms │     no change │
│ QQuery 39 │       97.94 / 99.33 ±0.77 / 100.07 ms │      98.82 / 100.09 ±1.52 / 103.03 ms │     no change │
│ QQuery 40 │        23.10 / 23.34 ±0.22 / 23.69 ms │        23.49 / 24.25 ±0.42 / 24.73 ms │     no change │
│ QQuery 41 │        11.41 / 11.61 ±0.17 / 11.87 ms │        11.48 / 11.66 ±0.16 / 11.95 ms │     no change │
│ QQuery 42 │        23.84 / 24.24 ±0.45 / 24.79 ms │        23.92 / 24.48 ±0.60 / 25.43 ms │     no change │
│ QQuery 43 │           4.90 / 5.04 ±0.15 / 5.31 ms │           4.75 / 4.89 ±0.13 / 5.13 ms │     no change │
│ QQuery 44 │        10.67 / 12.23 ±2.97 / 18.17 ms │        10.77 / 10.86 ±0.08 / 10.97 ms │ +1.13x faster │
│ QQuery 45 │        38.58 / 40.14 ±1.99 / 44.08 ms │        38.92 / 40.40 ±2.54 / 45.47 ms │     no change │
│ QQuery 46 │        12.01 / 12.47 ±0.34 / 13.05 ms │        11.89 / 13.01 ±1.29 / 15.49 ms │     no change │
│ QQuery 47 │     229.44 / 236.43 ±6.21 / 247.91 ms │     244.74 / 249.43 ±3.27 / 254.38 ms │  1.05x slower │
│ QQuery 48 │        96.41 / 97.21 ±0.54 / 97.82 ms │        97.84 / 98.68 ±0.52 / 99.45 ms │     no change │
│ QQuery 49 │        79.15 / 80.75 ±2.10 / 84.84 ms │        78.96 / 82.62 ±3.04 / 87.15 ms │     no change │
│ QQuery 50 │        59.66 / 60.18 ±0.46 / 60.94 ms │        60.60 / 60.94 ±0.48 / 61.88 ms │     no change │
│ QQuery 51 │        91.79 / 94.46 ±2.40 / 98.41 ms │       94.39 / 97.54 ±3.16 / 103.04 ms │     no change │
│ QQuery 52 │        24.09 / 25.78 ±2.57 / 30.86 ms │        24.58 / 26.35 ±2.43 / 31.10 ms │     no change │
│ QQuery 53 │        29.35 / 29.80 ±0.30 / 30.27 ms │        30.34 / 30.50 ±0.11 / 30.65 ms │     no change │
│ QQuery 54 │        55.49 / 56.25 ±0.46 / 56.82 ms │        56.45 / 57.11 ±0.51 / 58.00 ms │     no change │
│ QQuery 55 │        23.71 / 24.02 ±0.26 / 24.39 ms │        23.93 / 24.12 ±0.15 / 24.39 ms │     no change │
│ QQuery 56 │        38.95 / 39.24 ±0.32 / 39.68 ms │        39.10 / 39.59 ±0.44 / 40.37 ms │     no change │
│ QQuery 57 │     177.38 / 180.28 ±3.51 / 187.08 ms │     180.02 / 183.80 ±3.31 / 189.73 ms │     no change │
│ QQuery 58 │     117.85 / 119.05 ±0.82 / 120.36 ms │     121.44 / 123.95 ±2.61 / 127.80 ms │     no change │
│ QQuery 59 │     121.53 / 122.51 ±1.58 / 125.66 ms │     118.91 / 120.71 ±1.89 / 124.15 ms │     no change │
│ QQuery 60 │        39.52 / 40.82 ±2.01 / 44.83 ms │        39.87 / 41.45 ±2.00 / 45.35 ms │     no change │
│ QQuery 61 │        12.57 / 12.71 ±0.19 / 13.09 ms │        12.88 / 12.98 ±0.10 / 13.15 ms │     no change │
│ QQuery 62 │        46.56 / 47.92 ±1.76 / 51.39 ms │        46.92 / 47.14 ±0.17 / 47.37 ms │     no change │
│ QQuery 63 │        29.59 / 30.44 ±0.54 / 31.22 ms │        30.38 / 30.82 ±0.34 / 31.37 ms │     no change │
│ QQuery 64 │    397.63 / 409.73 ±11.25 / 425.01 ms │     398.07 / 405.66 ±6.81 / 417.93 ms │     no change │
│ QQuery 65 │     147.08 / 149.05 ±1.82 / 151.86 ms │     144.77 / 149.75 ±3.40 / 154.79 ms │     no change │
│ QQuery 66 │        79.41 / 80.67 ±0.81 / 81.94 ms │        79.60 / 80.12 ±0.29 / 80.36 ms │     no change │
│ QQuery 67 │     249.28 / 257.63 ±9.67 / 276.17 ms │     257.51 / 265.30 ±6.59 / 276.52 ms │     no change │
│ QQuery 68 │        11.74 / 11.97 ±0.16 / 12.25 ms │        12.15 / 12.27 ±0.08 / 12.36 ms │     no change │
│ QQuery 69 │        63.25 / 63.53 ±0.21 / 63.82 ms │        64.33 / 64.56 ±0.17 / 64.76 ms │     no change │
│ QQuery 70 │     105.21 / 108.02 ±2.74 / 113.15 ms │     106.70 / 115.25 ±9.91 / 130.82 ms │  1.07x slower │
│ QQuery 71 │        35.42 / 38.69 ±4.93 / 48.51 ms │        35.44 / 36.17 ±0.65 / 36.98 ms │ +1.07x faster │
│ QQuery 72 │ 2165.82 / 2236.77 ±70.87 / 2334.61 ms │ 2197.93 / 2230.20 ±18.67 / 2247.31 ms │     no change │
│ QQuery 73 │           9.29 / 9.67 ±0.20 / 9.88 ms │          9.59 / 9.90 ±0.20 / 10.18 ms │     no change │
│ QQuery 74 │     170.57 / 174.82 ±3.56 / 181.21 ms │    187.57 / 196.42 ±10.52 / 217.02 ms │  1.12x slower │
│ QQuery 75 │     149.68 / 152.91 ±4.00 / 160.30 ms │     149.11 / 156.21 ±6.63 / 164.89 ms │     no change │
│ QQuery 76 │        36.32 / 38.43 ±3.37 / 45.13 ms │        35.74 / 36.67 ±0.56 / 37.35 ms │     no change │
│ QQuery 77 │        60.95 / 61.26 ±0.32 / 61.83 ms │        61.44 / 62.07 ±0.65 / 63.26 ms │     no change │
│ QQuery 78 │     190.04 / 195.07 ±8.08 / 211.09 ms │     190.49 / 192.83 ±1.47 / 194.58 ms │     no change │
│ QQuery 79 │        67.04 / 67.57 ±0.37 / 67.95 ms │        67.58 / 69.77 ±1.43 / 71.94 ms │     no change │
│ QQuery 80 │     100.59 / 105.69 ±5.61 / 115.63 ms │     102.74 / 104.84 ±1.53 / 107.33 ms │     no change │
│ QQuery 81 │        25.91 / 26.08 ±0.21 / 26.50 ms │        26.44 / 26.52 ±0.06 / 26.59 ms │     no change │
│ QQuery 82 │        16.40 / 16.66 ±0.13 / 16.80 ms │        16.79 / 17.00 ±0.14 / 17.18 ms │     no change │
│ QQuery 83 │        39.65 / 40.31 ±0.39 / 40.71 ms │        41.19 / 44.40 ±5.85 / 56.09 ms │  1.10x slower │
│ QQuery 84 │        34.76 / 35.20 ±0.56 / 36.30 ms │        35.49 / 36.18 ±0.45 / 36.76 ms │     no change │
│ QQuery 85 │     109.24 / 111.97 ±3.12 / 118.05 ms │     110.71 / 111.92 ±1.08 / 113.80 ms │     no change │
│ QQuery 86 │        24.76 / 25.19 ±0.33 / 25.74 ms │        25.65 / 25.80 ±0.14 / 26.05 ms │     no change │
│ QQuery 87 │        63.02 / 65.48 ±1.85 / 68.65 ms │        67.69 / 71.27 ±3.61 / 77.94 ms │  1.09x slower │
│ QQuery 88 │        61.79 / 62.65 ±0.52 / 63.20 ms │        63.02 / 63.62 ±0.53 / 64.32 ms │     no change │
│ QQuery 89 │        35.64 / 36.37 ±0.53 / 37.02 ms │        36.15 / 36.80 ±0.37 / 37.18 ms │     no change │
│ QQuery 90 │        16.50 / 16.89 ±0.35 / 17.50 ms │        17.52 / 17.60 ±0.08 / 17.73 ms │     no change │
│ QQuery 91 │        45.04 / 45.35 ±0.27 / 45.74 ms │        45.41 / 47.69 ±2.71 / 53.01 ms │  1.05x slower │
│ QQuery 92 │        28.90 / 29.53 ±0.34 / 29.91 ms │        31.71 / 32.36 ±0.97 / 34.28 ms │  1.10x slower │
│ QQuery 93 │        51.88 / 52.91 ±1.52 / 55.87 ms │        51.87 / 53.26 ±1.04 / 54.72 ms │     no change │
│ QQuery 94 │        38.64 / 39.09 ±0.24 / 39.34 ms │        39.50 / 40.03 ±0.45 / 40.80 ms │     no change │
│ QQuery 95 │        85.08 / 85.65 ±0.42 / 86.16 ms │        85.78 / 87.56 ±1.99 / 90.54 ms │     no change │
│ QQuery 96 │        24.05 / 24.30 ±0.21 / 24.66 ms │        24.73 / 24.89 ±0.15 / 25.16 ms │     no change │
│ QQuery 97 │        46.51 / 48.17 ±1.83 / 50.98 ms │        46.66 / 47.04 ±0.31 / 47.61 ms │     no change │
│ QQuery 98 │        42.94 / 44.36 ±1.20 / 46.53 ms │        43.44 / 43.92 ±0.36 / 44.52 ms │     no change │
│ QQuery 99 │        70.37 / 70.76 ±0.34 / 71.18 ms │        70.45 / 72.77 ±3.36 / 79.43 ms │     no change │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary              ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)              │ 10382.37ms │
│ Total Time (generic-cache-1)   │ 10430.49ms │
│ Average Time (HEAD)            │   104.87ms │
│ Average Time (generic-cache-1) │   105.36ms │
│ Queries Faster                 │          2 │
│ Queries Slower                 │          8 │
│ Queries with No Change         │         89 │
│ Queries with Failure           │          0 │
└────────────────────────────────┴────────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 55.0s
Peak memory 7.0 GiB
Avg memory 6.2 GiB
CPU user 237.3s
CPU sys 6.9s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 55.0s
Peak memory 7.0 GiB
Avg memory 6.2 GiB
CPU user 239.6s
CPU sys 7.2s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

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

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

Comparing HEAD and generic-cache-1
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃                       generic-cache-1 ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.16 / 3.31 ±4.20 / 11.71 ms │          1.20 / 3.39 ±4.31 / 12.02 ms │     no change │
│ QQuery 1  │        12.83 / 12.90 ±0.08 / 13.03 ms │        12.47 / 12.85 ±0.21 / 13.05 ms │     no change │
│ QQuery 2  │        35.86 / 36.16 ±0.23 / 36.46 ms │        35.76 / 36.38 ±0.96 / 38.30 ms │     no change │
│ QQuery 3  │        30.85 / 31.82 ±0.93 / 33.42 ms │        30.58 / 30.93 ±0.30 / 31.41 ms │     no change │
│ QQuery 4  │     224.92 / 227.45 ±2.60 / 232.34 ms │     221.04 / 223.88 ±2.39 / 227.26 ms │     no change │
│ QQuery 5  │     271.02 / 272.93 ±1.93 / 275.97 ms │     270.32 / 275.23 ±4.43 / 282.95 ms │     no change │
│ QQuery 6  │           1.21 / 1.34 ±0.22 / 1.78 ms │           1.24 / 1.38 ±0.22 / 1.82 ms │     no change │
│ QQuery 7  │        14.02 / 14.14 ±0.10 / 14.29 ms │        13.72 / 14.01 ±0.20 / 14.24 ms │     no change │
│ QQuery 8  │     316.48 / 320.89 ±2.85 / 325.15 ms │     321.84 / 327.81 ±7.11 / 341.71 ms │     no change │
│ QQuery 9  │     453.62 / 459.48 ±7.05 / 472.09 ms │     453.62 / 460.77 ±7.57 / 474.77 ms │     no change │
│ QQuery 10 │        70.63 / 70.97 ±0.49 / 71.93 ms │        71.59 / 72.36 ±0.56 / 73.11 ms │     no change │
│ QQuery 11 │        82.09 / 83.08 ±0.80 / 84.13 ms │        83.33 / 84.32 ±0.68 / 85.31 ms │     no change │
│ QQuery 12 │     263.69 / 271.04 ±5.88 / 278.54 ms │     265.81 / 273.09 ±6.39 / 283.04 ms │     no change │
│ QQuery 13 │     372.83 / 379.18 ±4.65 / 387.06 ms │     375.30 / 384.02 ±8.63 / 399.21 ms │     no change │
│ QQuery 14 │     278.55 / 283.65 ±4.38 / 291.78 ms │     281.55 / 286.23 ±3.73 / 292.42 ms │     no change │
│ QQuery 15 │    267.76 / 278.14 ±10.13 / 294.89 ms │     262.70 / 272.67 ±8.70 / 285.33 ms │     no change │
│ QQuery 16 │     609.08 / 620.66 ±8.41 / 629.79 ms │     612.21 / 623.59 ±7.32 / 631.54 ms │     no change │
│ QQuery 17 │     608.74 / 621.07 ±7.67 / 629.27 ms │     614.13 / 626.44 ±8.91 / 639.92 ms │     no change │
│ QQuery 18 │ 1253.03 / 1269.09 ±13.62 / 1284.63 ms │ 1268.41 / 1280.70 ±12.12 / 1297.29 ms │     no change │
│ QQuery 19 │        27.78 / 28.07 ±0.20 / 28.34 ms │       27.76 / 37.04 ±18.17 / 73.38 ms │  1.32x slower │
│ QQuery 20 │    513.91 / 524.93 ±10.00 / 543.42 ms │     522.96 / 527.96 ±5.48 / 537.66 ms │     no change │
│ QQuery 21 │     595.46 / 601.52 ±3.76 / 606.22 ms │     599.86 / 607.55 ±5.17 / 615.49 ms │     no change │
│ QQuery 22 │ 1059.55 / 1078.81 ±19.41 / 1102.17 ms │ 1074.25 / 1091.52 ±12.69 / 1108.77 ms │     no change │
│ QQuery 23 │ 3188.87 / 3203.95 ±18.35 / 3240.00 ms │ 3229.98 / 3280.34 ±44.34 / 3347.34 ms │     no change │
│ QQuery 24 │        41.26 / 42.09 ±1.09 / 44.15 ms │        41.91 / 47.28 ±9.89 / 67.02 ms │  1.12x slower │
│ QQuery 25 │     110.72 / 112.01 ±1.12 / 113.82 ms │     113.08 / 113.77 ±0.49 / 114.35 ms │     no change │
│ QQuery 26 │        42.76 / 48.20 ±6.82 / 61.37 ms │        42.43 / 43.23 ±0.90 / 44.79 ms │ +1.11x faster │
│ QQuery 27 │     663.55 / 671.08 ±6.97 / 684.07 ms │     672.95 / 678.20 ±4.11 / 684.13 ms │     no change │
│ QQuery 28 │ 3038.65 / 3060.83 ±18.48 / 3082.96 ms │ 3020.70 / 3054.88 ±17.63 / 3069.11 ms │     no change │
│ QQuery 29 │        40.16 / 40.87 ±0.87 / 42.42 ms │       40.03 / 53.45 ±13.10 / 69.80 ms │  1.31x slower │
│ QQuery 30 │     294.02 / 303.55 ±6.52 / 311.54 ms │     300.70 / 306.41 ±3.86 / 310.82 ms │     no change │
│ QQuery 31 │     286.00 / 293.92 ±7.97 / 308.77 ms │     288.03 / 296.54 ±6.40 / 304.37 ms │     no change │
│ QQuery 32 │   942.11 / 969.41 ±27.49 / 1020.70 ms │    930.19 / 957.84 ±17.67 / 977.56 ms │     no change │
│ QQuery 33 │ 1436.76 / 1472.21 ±24.57 / 1511.55 ms │ 1462.51 / 1483.34 ±11.37 / 1495.16 ms │     no change │
│ QQuery 34 │ 1476.03 / 1507.36 ±26.72 / 1553.46 ms │ 1473.31 / 1488.10 ±15.14 / 1515.47 ms │     no change │
│ QQuery 35 │    278.97 / 293.62 ±14.45 / 318.26 ms │    277.16 / 304.07 ±20.53 / 330.79 ms │     no change │
│ QQuery 36 │        65.99 / 70.12 ±4.31 / 78.38 ms │        68.97 / 75.79 ±5.49 / 85.18 ms │  1.08x slower │
│ QQuery 37 │        34.88 / 37.53 ±2.84 / 42.93 ms │        35.29 / 38.90 ±3.89 / 45.87 ms │     no change │
│ QQuery 38 │        39.75 / 46.58 ±3.82 / 50.56 ms │        40.09 / 41.72 ±1.49 / 43.98 ms │ +1.12x faster │
│ QQuery 39 │     133.78 / 149.12 ±8.85 / 160.48 ms │     140.28 / 154.15 ±6.96 / 158.36 ms │     no change │
│ QQuery 40 │        13.46 / 15.58 ±3.42 / 22.40 ms │        13.76 / 14.29 ±0.50 / 15.02 ms │ +1.09x faster │
│ QQuery 41 │        13.41 / 15.19 ±2.24 / 19.55 ms │        13.34 / 13.44 ±0.08 / 13.58 ms │ +1.13x faster │
│ QQuery 42 │        12.88 / 15.10 ±4.05 / 23.20 ms │        12.71 / 12.82 ±0.10 / 12.97 ms │ +1.18x faster │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary              ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)              │ 19858.97ms │
│ Total Time (generic-cache-1)   │ 20012.68ms │
│ Average Time (HEAD)            │   461.84ms │
│ Average Time (generic-cache-1) │   465.41ms │
│ Queries Faster                 │          5 │
│ Queries Slower                 │          4 │
│ Queries with No Change         │         34 │
│ Queries with Failure           │          0 │
└────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 100.0s
Peak memory 30.1 GiB
Avg memory 23.0 GiB
CPU user 1021.7s
CPU sys 74.7s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 105.0s
Peak memory 31.0 GiB
Avg memory 23.1 GiB
CPU user 1026.4s
CPU sys 77.1s
Peak spill 0 B

File an issue against this benchmark runner

@mkleen
Copy link
Copy Markdown
Contributor Author

mkleen commented May 29, 2026

run benchmark clickbench_partitioned

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4574687079-368-s8jm6 6.12.68+ #1 SMP Wed Apr 1 02:23:28 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 generic-cache-1 (5920922) to 32a1fe5 (merge-base) diff using: clickbench_partitioned
Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot
Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

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

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

Comparing HEAD and generic-cache-1
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃                       generic-cache-1 ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.18 / 3.28 ±4.12 / 11.53 ms │          1.19 / 3.33 ±4.25 / 11.83 ms │     no change │
│ QQuery 1  │        12.39 / 12.48 ±0.06 / 12.57 ms │        12.66 / 13.08 ±0.41 / 13.84 ms │     no change │
│ QQuery 2  │        35.41 / 37.10 ±2.06 / 41.08 ms │        35.69 / 36.15 ±0.40 / 36.85 ms │     no change │
│ QQuery 3  │        30.56 / 30.91 ±0.61 / 32.14 ms │        30.38 / 30.78 ±0.30 / 31.12 ms │     no change │
│ QQuery 4  │     216.60 / 222.70 ±4.16 / 228.74 ms │     221.62 / 226.08 ±4.05 / 231.45 ms │     no change │
│ QQuery 5  │     268.78 / 272.96 ±2.85 / 276.24 ms │     270.73 / 275.29 ±3.30 / 280.96 ms │     no change │
│ QQuery 6  │           1.20 / 1.35 ±0.22 / 1.78 ms │           1.22 / 1.36 ±0.21 / 1.78 ms │     no change │
│ QQuery 7  │        13.47 / 13.63 ±0.13 / 13.85 ms │        13.72 / 13.96 ±0.16 / 14.19 ms │     no change │
│ QQuery 8  │     317.37 / 321.08 ±3.48 / 326.08 ms │     318.61 / 323.15 ±2.47 / 325.54 ms │     no change │
│ QQuery 9  │    436.63 / 459.64 ±13.73 / 479.38 ms │    446.45 / 459.93 ±12.09 / 480.17 ms │     no change │
│ QQuery 10 │        68.82 / 69.36 ±0.50 / 70.08 ms │        71.41 / 74.84 ±6.34 / 87.53 ms │  1.08x slower │
│ QQuery 11 │        80.90 / 82.50 ±1.76 / 84.70 ms │       83.42 / 88.48 ±9.80 / 108.08 ms │  1.07x slower │
│ QQuery 12 │     264.72 / 268.88 ±4.40 / 275.74 ms │     265.30 / 269.67 ±4.61 / 275.85 ms │     no change │
│ QQuery 13 │     357.26 / 367.63 ±8.49 / 379.59 ms │    364.64 / 381.22 ±14.18 / 401.54 ms │     no change │
│ QQuery 14 │     278.64 / 281.77 ±5.06 / 291.79 ms │     282.59 / 287.43 ±6.65 / 300.50 ms │     no change │
│ QQuery 15 │     262.91 / 266.04 ±2.99 / 269.68 ms │     261.01 / 269.77 ±6.08 / 277.81 ms │     no change │
│ QQuery 16 │     610.21 / 620.76 ±9.35 / 637.53 ms │    611.08 / 625.23 ±16.69 / 657.52 ms │     no change │
│ QQuery 17 │     610.43 / 620.43 ±7.61 / 631.22 ms │    609.12 / 627.66 ±16.36 / 657.62 ms │     no change │
│ QQuery 18 │ 1248.37 / 1271.60 ±18.03 / 1297.72 ms │ 1263.73 / 1279.72 ±12.93 / 1296.53 ms │     no change │
│ QQuery 19 │        27.42 / 29.46 ±2.53 / 33.50 ms │        27.58 / 27.78 ±0.20 / 28.14 ms │ +1.06x faster │
│ QQuery 20 │     516.55 / 525.85 ±7.08 / 536.79 ms │    521.32 / 532.87 ±12.72 / 556.82 ms │     no change │
│ QQuery 21 │     591.81 / 598.11 ±8.41 / 614.77 ms │     595.91 / 600.82 ±3.15 / 604.72 ms │     no change │
│ QQuery 22 │ 1058.40 / 1071.71 ±11.31 / 1089.77 ms │ 1068.60 / 1076.54 ±10.20 / 1096.49 ms │     no change │
│ QQuery 23 │ 3165.55 / 3224.78 ±38.35 / 3284.33 ms │ 3211.58 / 3244.88 ±20.96 / 3274.46 ms │     no change │
│ QQuery 24 │        41.31 / 44.55 ±3.66 / 51.70 ms │        42.80 / 47.08 ±4.44 / 52.98 ms │  1.06x slower │
│ QQuery 25 │     111.86 / 115.18 ±4.83 / 124.73 ms │     111.97 / 113.07 ±0.77 / 113.97 ms │     no change │
│ QQuery 26 │        41.66 / 43.96 ±2.65 / 48.90 ms │        41.92 / 43.36 ±2.41 / 48.16 ms │     no change │
│ QQuery 27 │     667.30 / 672.92 ±3.70 / 677.32 ms │     669.95 / 674.68 ±3.23 / 679.41 ms │     no change │
│ QQuery 28 │ 3038.93 / 3071.97 ±35.32 / 3123.51 ms │  3048.98 / 3055.45 ±4.39 / 3061.72 ms │     no change │
│ QQuery 29 │       39.84 / 47.50 ±14.95 / 77.39 ms │       40.02 / 48.78 ±11.93 / 71.37 ms │     no change │
│ QQuery 30 │     297.08 / 303.20 ±3.94 / 309.17 ms │    297.49 / 308.29 ±12.27 / 330.87 ms │     no change │
│ QQuery 31 │     281.89 / 293.00 ±6.21 / 298.98 ms │     283.52 / 290.18 ±5.97 / 298.59 ms │     no change │
│ QQuery 32 │   916.96 / 953.36 ±30.17 / 1003.95 ms │   935.90 / 978.26 ±25.41 / 1014.33 ms │     no change │
│ QQuery 33 │ 1439.56 / 1463.30 ±17.78 / 1492.57 ms │ 1439.45 / 1486.34 ±37.05 / 1552.72 ms │     no change │
│ QQuery 34 │ 1442.31 / 1471.10 ±20.57 / 1498.81 ms │ 1449.00 / 1477.01 ±19.66 / 1508.09 ms │     no change │
│ QQuery 35 │    265.75 / 299.65 ±37.88 / 364.19 ms │    274.70 / 314.47 ±46.18 / 402.72 ms │     no change │
│ QQuery 36 │        67.39 / 76.96 ±6.59 / 85.77 ms │        66.41 / 72.60 ±6.42 / 84.05 ms │ +1.06x faster │
│ QQuery 37 │        35.44 / 37.10 ±1.42 / 38.98 ms │        34.76 / 36.33 ±2.21 / 40.70 ms │     no change │
│ QQuery 38 │        39.86 / 41.67 ±1.47 / 43.03 ms │        43.59 / 50.79 ±5.94 / 60.40 ms │  1.22x slower │
│ QQuery 39 │     142.44 / 147.77 ±4.81 / 156.45 ms │    130.39 / 147.33 ±10.96 / 161.94 ms │     no change │
│ QQuery 40 │        13.72 / 14.13 ±0.36 / 14.67 ms │        13.54 / 18.14 ±8.54 / 35.21 ms │  1.28x slower │
│ QQuery 41 │        13.41 / 13.69 ±0.17 / 13.91 ms │        13.81 / 14.22 ±0.73 / 15.67 ms │     no change │
│ QQuery 42 │        12.73 / 12.92 ±0.20 / 13.21 ms │        12.80 / 14.10 ±1.89 / 17.84 ms │  1.09x slower │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary              ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)              │ 19797.93ms │
│ Total Time (generic-cache-1)   │ 19960.50ms │
│ Average Time (HEAD)            │   460.42ms │
│ Average Time (generic-cache-1) │   464.20ms │
│ Queries Faster                 │          2 │
│ Queries Slower                 │          6 │
│ Queries with No Change         │         35 │
│ Queries with Failure           │          0 │
└────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 100.0s
Peak memory 30.8 GiB
Avg memory 23.0 GiB
CPU user 1017.7s
CPU sys 74.9s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 105.0s
Peak memory 29.8 GiB
Avg memory 22.4 GiB
CPU user 1022.1s
CPU sys 77.1s
Peak spill 0 B

File an issue against this benchmark runner

@mkleen
Copy link
Copy Markdown
Contributor Author

mkleen commented May 29, 2026

@nuno-faria Do you have maybe time for a review for this? Thanks

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 catalog Related to the catalog crate core Core DataFusion crate datasource Changes to the datasource crate execution Related to the execution crate

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants