Skip to content

introduce optional rle reads from parquet - #24227

Open
Rich-T-kid wants to merge 2 commits into
apache:mainfrom
Rich-T-kid:rich-T-kid/introduce-rle-parquet-flag
Open

introduce optional rle reads from parquet#24227
Rich-T-kid wants to merge 2 commits into
apache:mainfrom
Rich-T-kid:rich-T-kid/introduce-rle-parquet-flag

Conversation

@Rich-T-kid

@Rich-T-kid Rich-T-kid commented Aug 10, 2026

Copy link
Copy Markdown
Contributor

a large portion of this PR is test!

Which issue does this PR close?

Rationale for this change

When DataFusion reads a parquet file with dictionary-encoded string or binary columns, it currently decodes the dictionary and returns plain Utf8/Binary arrays, discarding the encoding. For low-cardinality columns (status, country, category, etc.) this doesn't take full advantage of the compacted format parquet gives the engine Preserving the dictionary encoding reduces memory usage and can improve aggregation performance on these columns.

What changes are included in this PR?

Adds datafusion.execution.parquet.enable_rle_to_dictionary with a default of false.

When enabled for inferred-schema Parquet tables, DataFusion inspects Parquet footer metadata and promotes top-level string/binary columns with dictionary pages to Arrow dictionary types. Mixed dictionary/plain files are normalized before schema merge when the value types are compatible. At scan time, the parquet opener passes the promoted schema to arrow-rs so those columns can be read as dictionary arrays directly.

Tables with a user-supplied schema are not promoted because DataFusion does not use footer metadata to infer their schema.

Are these changes tested?

yes.

  • datafusion/sqllogictest/test_files/parquet_rle_to_dictionary.slt

  • datafusion/datasource-parquet/src/schema_coercion.rs

    • uniform_dict_schemas_respects_value_type_families checks that mixed file schemas are normalized only across compatible string/binary families.
    • rle_schema_coercion_respects_dictionary_value_type checks scan-time coercion into dictionary types, including incompatible cases and the flag-off path.
  • datafusion/datasource-parquet/src/opener/mod.rs

    • test_rle_binary_column_promotion verifies the opener passes a promoted Dictionary(Int32, Binary) schema to arrow-rs so binary columns can be read as dictionary arrays directly.

Are there any user-facing changes?

New session config option: SET datafusion.execution.parquet.enable_rle_to_dictionary = true. Default is false so existing behavior is unchanged.

@github-actions github-actions Bot added sqllogictest SQL Logic Tests (.slt) common Related to common crate datasource Changes to the datasource crate labels Aug 10, 2026
Comment thread datafusion/datasource-parquet/src/opener/mod.rs Outdated
Comment thread datafusion/common/src/config.rs Outdated
@github-actions github-actions Bot added the auto detected api change Auto detected API change label Aug 10, 2026
@Rich-T-kid
Rich-T-kid marked this pull request as ready for review August 10, 2026 15:45
@github-actions github-actions Bot added proto Related to proto crate documentation Improvements or additions to documentation labels Aug 10, 2026
@codecov-commenter

codecov-commenter commented Aug 10, 2026

Copy link
Copy Markdown

Codecov Report

❌ Patch coverage is 94.51074% with 23 lines in your changes missing coverage. Please review.
✅ Project coverage is 81.59%. Comparing base (a274959) to head (b7c4ea7).

Files with missing lines Patch % Lines
datafusion/proto-common/src/generated/pbjson.rs 0.00% 14 Missing ⚠️
datafusion/datasource-parquet/src/metadata.rs 90.74% 5 Missing ⚠️
...tafusion/datasource-parquet/src/schema_coercion.rs 98.46% 3 Missing and 1 partial ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##             main   #24227      +/-   ##
==========================================
+ Coverage   81.58%   81.59%   +0.01%     
==========================================
  Files        1123     1123              
  Lines      406610   407018     +408     
  Branches   406610   407018     +408     
==========================================
+ Hits       331719   332099     +380     
- Misses      55453    55476      +23     
- Partials    19438    19443       +5     

☔ View full report in Codecov by Harness.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@Rich-T-kid

Copy link
Copy Markdown
Contributor Author

@adriangb pinging you since you seem interested in parquet related speed ups 👍

@adriangb

Copy link
Copy Markdown
Contributor

If I understand correctly the goal is to evaluate filters during filter pushdown against dictionary / RLE encoded columns? We can't propagate these dynamic type changes to the rest of the query plan / scan. Is that right?

@Rich-T-kid

Rich-T-kid commented Aug 13, 2026

Copy link
Copy Markdown
Contributor Author

@adriangb

If I understand correctly the goal is to evaluate filters during filter pushdown against dictionary / RLE encoded columns?

no not exactly. The goal of this PR is to keep RLE parquet columns in their compacted form by materializing them as dictionary arrays instead of regular strings.

We can't propagate these dynamic type changes to the rest of the query plan / scan. Is that right?

exactly! This is why it needs to be done as early in the plan as possible. we inspect DFParquetMetadata::fetch_schema to see if any RLE columns exist, if so change the plan type from utf8/binary to dict<_,utf8/binary>. Thanks to some plumbing in arrow-rs it will handle the conversions correctly returning a dictionary array, this can cause a 60x perf boost

@Rich-T-kid
Rich-T-kid force-pushed the rich-T-kid/introduce-rle-parquet-flag branch from 0479f9c to 6e1cbc1 Compare August 13, 2026 15:10
@adriangb

Copy link
Copy Markdown
Contributor

no not exactly. The goal of this PR is to keep RLE parquet columns in their compacted form by materializing them as dictionary arrays instead of regular strings.

Why only RLE and not dictionaries as well? How does this compare to / relate to the schema_force_view_types option?

It also looks like this goes through infer_schema right? A lot of code paths never touch that (CREATE EXTERNAL TABLE (a VARCHAR), any custom table providers, etc.).

I'd be more interested in seeing something at the parquet scan level that was able to e.g. optimize how row filters are applied by applying them to the dictionary instead of expanding into Utf8View. That would be applicable to all DataFusion users.

@Rich-T-kid
Rich-T-kid force-pushed the rich-T-kid/introduce-rle-parquet-flag branch from 6a4e89d to d1273bf Compare August 13, 2026 15:48
@Rich-T-kid

Copy link
Copy Markdown
Contributor Author

Why only RLE and not dictionaries as well? How does this compare to / relate to the schema_force_view_types option?

my bad when I say RLE i'm referring to RLE_DICTIONARY

It also looks like this goes through infer_schema right? A lot of code paths never touch that (CREATE EXTERNAL TABLE (a VARCHAR), any custom table providers, etc.).

I'd be more interested in seeing something at the parquet scan level that was able to e.g. optimize how row filters are applied by applying them to the dictionary instead of expanding into Utf8View. That would be applicable to all DataFusion users.

I agree, ill update the PR to target all parquet scans.

@github-actions github-actions Bot added the core Core DataFusion crate label Aug 13, 2026
@Rich-T-kid

Copy link
Copy Markdown
Contributor Author

ideally we surface columns that are physically RLE_DICTIONARY-encoded in the parquet file as Arrow Dictionary(Int32, Utf8) arrays rather than decoding them back to plain Utf8.

To know whether a specific column is RLE_DICTIONARY-encoded you need to read the parquet file footer. For the infer_schema path this happens at table registration, but for explicit schemas (CREATE EXTERNAL TABLE (col VARCHAR)) and direct ParquetSource construction no footer is ever read during planning, so per-column encoding information isn't available for all paths.

Downstream physical operators (FilterExec, AggregateExec) are compiled against the scan's declared output schema during physical planning, before any files are opened. If the scan declares Utf8 but produces Dictionary(Int32, Utf8) at execution time that's a type mismatch.

So when the flag is enabled we promote all string/binary columns to dict at planning time, not just the ones that are actually RLE-encoded, because that's the only way to guarantee schema consistency across all parquet scan paths without introducing file I/O into the planning stage.

I feel like i'm missing something here. if we could take a peak at the parquets metadata before physical planning and change the schema for all operators from the point forward that would be perfect. Im not sure this is currently possible

@Rich-T-kid
Rich-T-kid marked this pull request as draft August 13, 2026 19:53
@Rich-T-kid
Rich-T-kid force-pushed the rich-T-kid/introduce-rle-parquet-flag branch from 717d31a to fc360e8 Compare August 14, 2026 17:27
@Rich-T-kid

Rich-T-kid commented Aug 14, 2026

Copy link
Copy Markdown
Contributor Author

@adriangb When the flag is on, DataFusion promotes string and binary columns that are physically RLE_DICTIONARY encoded in the parquet file to Dictionary(Int32, Utf8) or Dictionary(Int32, Binary) at schema inference time. This applies to all parquet scans regardless of how the table was registered.

the PR is ready for review

@Rich-T-kid
Rich-T-kid marked this pull request as ready for review August 14, 2026 17:36
@Rich-T-kid

Copy link
Copy Markdown
Contributor Author

How does this compare to / relate to the schema_force_view_types option?

utf8 columns become dict<_,utf8 so the default string type for parquet columns utf8View is replaced.

@Rich-T-kid
Rich-T-kid force-pushed the rich-T-kid/introduce-rle-parquet-flag branch 6 times, most recently from bc5011f to 6899579 Compare August 15, 2026 18:45
@Rich-T-kid
Rich-T-kid force-pushed the rich-T-kid/introduce-rle-parquet-flag branch from 4865205 to c6a627a Compare August 21, 2026 19:06
@github-actions github-actions Bot removed core Core DataFusion crate substrait Changes to the substrait crate labels Aug 21, 2026
@Rich-T-kid
Rich-T-kid force-pushed the rich-T-kid/introduce-rle-parquet-flag branch from c6a627a to 1cbb472 Compare August 21, 2026 19:25
@Rich-T-kid

Copy link
Copy Markdown
Contributor Author

run benchmarks

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c5374297430-1850-t29qh 6.12.85+ #1 SMP Sat Jun 27 09:31:30 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 rich-T-kid/introduce-rle-parquet-flag (b0b0c0e) to db8796d (merge-base) diff

Run configuration
run benchmark 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-c5374297430-1851-d4grz 6.12.85+ #1 SMP Sat Jun 27 09:31:30 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 rich-T-kid/introduce-rle-parquet-flag (b0b0c0e) to db8796d (merge-base) diff

Run configuration
run benchmark 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-c5374297430-1849-gmv77 6.12.85+ #1 SMP Sat Jun 27 09:31:30 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 rich-T-kid/introduce-rle-parquet-flag (b0b0c0e) to db8796d (merge-base) diff

Run configuration
run benchmark clickbench_partitioned

Results will be posted here when complete


File an issue against this benchmark runner

@Rich-T-kid
Rich-T-kid marked this pull request as ready for review August 21, 2026 19:31
@adriangbot

Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

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

Comparing rich-T-kid/introduce-rle-parquet-flag (b0b0c0e) to db8796d (merge-base) diff

Run configuration
run benchmark tpch
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 rich-T-kid_introduce-rle-parquet-flag
--------------------
Benchmark tpch_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┓
┃ Query     ┃     HEAD ┃ rich-T-kid_introduce-rle-parquet-flag ┃    Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━┩
│ QQuery 1  │ 38.33 ms │                              38.28 ms │ no change │
│ QQuery 2  │ 18.87 ms │                              19.31 ms │ no change │
│ QQuery 3  │ 30.27 ms │                              30.28 ms │ no change │
│ QQuery 4  │ 17.40 ms │                              17.12 ms │ no change │
│ QQuery 5  │ 37.76 ms │                              37.86 ms │ no change │
│ QQuery 6  │ 15.84 ms │                              16.04 ms │ no change │
│ QQuery 7  │ 43.54 ms │                              44.31 ms │ no change │
│ QQuery 8  │ 41.96 ms │                              41.94 ms │ no change │
│ QQuery 9  │ 48.06 ms │                              48.88 ms │ no change │
│ QQuery 10 │ 41.59 ms │                              41.62 ms │ no change │
│ QQuery 11 │ 13.29 ms │                              13.32 ms │ no change │
│ QQuery 12 │ 23.63 ms │                              23.64 ms │ no change │
│ QQuery 13 │ 32.48 ms │                              31.71 ms │ no change │
│ QQuery 14 │ 23.08 ms │                              22.81 ms │ no change │
│ QQuery 15 │ 30.29 ms │                              30.41 ms │ no change │
│ QQuery 16 │ 13.68 ms │                              13.69 ms │ no change │
│ QQuery 17 │ 69.79 ms │                              69.36 ms │ no change │
│ QQuery 18 │ 59.15 ms │                              57.57 ms │ no change │
│ QQuery 19 │ 32.17 ms │                              32.22 ms │ no change │
│ QQuery 20 │ 31.13 ms │                              31.37 ms │ no change │
│ QQuery 21 │ 54.49 ms │                              54.39 ms │ no change │
│ QQuery 22 │ 13.58 ms │                              14.16 ms │ no change │
└───────────┴──────────┴───────────────────────────────────────┴───────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━┓
┃ Benchmark Summary                                    ┃          ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━┩
│ Total Time (HEAD)                                    │ 730.37ms │
│ Total Time (rich-T-kid_introduce-rle-parquet-flag)   │ 730.29ms │
│ Average Time (HEAD)                                  │  33.20ms │
│ Average Time (rich-T-kid_introduce-rle-parquet-flag) │  33.19ms │
│ Queries Faster                                       │        0 │
│ Queries Slower                                       │        0 │
│ Queries with No Change                               │       22 │
│ Queries with Failure                                 │        0 │
└──────────────────────────────────────────────────────┴──────────┘

Distribution per query (min / mean ±stddev / max):

Comparing HEAD and rich-T-kid_introduce-rle-parquet-flag
--------------------
Benchmark tpch_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┓
┃ Query     ┃                           HEAD ┃ rich-T-kid_introduce-rle-parquet-flag ┃    Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━┩
│ QQuery 1  │ 38.33 / 39.58 ±1.31 / 41.35 ms │        38.28 / 39.26 ±0.98 / 41.11 ms │ no change │
│ QQuery 2  │ 18.87 / 20.13 ±1.39 / 22.17 ms │        19.31 / 19.50 ±0.17 / 19.83 ms │ no change │
│ QQuery 3  │ 30.27 / 32.34 ±1.41 / 33.77 ms │        30.28 / 32.81 ±1.34 / 34.11 ms │ no change │
│ QQuery 4  │ 17.40 / 17.95 ±0.54 / 18.97 ms │        17.12 / 17.40 ±0.18 / 17.66 ms │ no change │
│ QQuery 5  │ 37.76 / 39.36 ±1.35 / 41.19 ms │        37.86 / 39.84 ±1.14 / 41.40 ms │ no change │
│ QQuery 6  │ 15.84 / 15.97 ±0.09 / 16.08 ms │        16.04 / 16.13 ±0.11 / 16.32 ms │ no change │
│ QQuery 7  │ 43.54 / 44.52 ±0.74 / 45.82 ms │        44.31 / 45.33 ±0.81 / 46.30 ms │ no change │
│ QQuery 8  │ 41.96 / 42.90 ±0.87 / 44.53 ms │        41.94 / 42.39 ±0.23 / 42.58 ms │ no change │
│ QQuery 9  │ 48.06 / 49.55 ±0.82 / 50.43 ms │        48.88 / 49.60 ±0.57 / 50.23 ms │ no change │
│ QQuery 10 │ 41.59 / 42.51 ±1.30 / 44.99 ms │        41.62 / 41.92 ±0.18 / 42.14 ms │ no change │
│ QQuery 11 │ 13.29 / 14.21 ±0.56 / 14.82 ms │        13.32 / 13.61 ±0.25 / 13.96 ms │ no change │
│ QQuery 12 │ 23.63 / 24.18 ±0.32 / 24.60 ms │        23.64 / 24.82 ±1.16 / 26.79 ms │ no change │
│ QQuery 13 │ 32.48 / 33.81 ±1.02 / 35.44 ms │        31.71 / 32.88 ±0.90 / 33.85 ms │ no change │
│ QQuery 14 │ 23.08 / 23.24 ±0.19 / 23.61 ms │        22.81 / 23.04 ±0.16 / 23.22 ms │ no change │
│ QQuery 15 │ 30.29 / 31.15 ±1.15 / 33.42 ms │        30.41 / 30.86 ±0.75 / 32.35 ms │ no change │
│ QQuery 16 │ 13.68 / 14.05 ±0.64 / 15.32 ms │        13.69 / 13.88 ±0.16 / 14.10 ms │ no change │
│ QQuery 17 │ 69.79 / 70.48 ±0.46 / 71.21 ms │        69.36 / 70.77 ±1.03 / 72.06 ms │ no change │
│ QQuery 18 │ 59.15 / 60.49 ±1.37 / 63.11 ms │        57.57 / 59.45 ±1.02 / 60.52 ms │ no change │
│ QQuery 19 │ 32.17 / 32.53 ±0.34 / 33.11 ms │        32.22 / 32.59 ±0.32 / 33.14 ms │ no change │
│ QQuery 20 │ 31.13 / 32.01 ±1.18 / 34.34 ms │        31.37 / 31.80 ±0.63 / 33.04 ms │ no change │
│ QQuery 21 │ 54.49 / 55.67 ±0.89 / 56.79 ms │        54.39 / 56.76 ±1.82 / 59.36 ms │ no change │
│ QQuery 22 │ 13.58 / 13.92 ±0.30 / 14.28 ms │        14.16 / 14.29 ±0.11 / 14.48 ms │ no change │
└───────────┴────────────────────────────────┴───────────────────────────────────────┴───────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━┓
┃ Benchmark Summary                                    ┃          ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━┩
│ Total Time (HEAD)                                    │ 750.53ms │
│ Total Time (rich-T-kid_introduce-rle-parquet-flag)   │ 748.93ms │
│ Average Time (HEAD)                                  │  34.11ms │
│ Average Time (rich-T-kid_introduce-rle-parquet-flag) │  34.04ms │
│ 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 518.7 MiB
CPU user 21.3s
CPU sys 1.6s
Peak spill 0 B

tpch — branch

Metric Value
Wall time 5.0s
Peak memory 1.2 GiB
Avg memory 527.2 MiB
CPU user 21.4s
CPU sys 1.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)

Comparing rich-T-kid/introduce-rle-parquet-flag (b0b0c0e) to db8796d (merge-base) diff

Run configuration
run benchmark tpcds
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 rich-T-kid_introduce-rle-parquet-flag
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃       HEAD ┃ rich-T-kid_introduce-rle-parquet-flag ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │    5.56 ms │                               5.78 ms │     no change │
│ QQuery 2  │   79.84 ms │                              79.86 ms │     no change │
│ QQuery 3  │   28.80 ms │                              28.74 ms │     no change │
│ QQuery 4  │  477.24 ms │                             497.34 ms │     no change │
│ QQuery 5  │   50.65 ms │                              51.57 ms │     no change │
│ QQuery 6  │   35.37 ms │                              35.61 ms │     no change │
│ QQuery 7  │   92.26 ms │                              92.98 ms │     no change │
│ QQuery 8  │   36.09 ms │                              36.17 ms │     no change │
│ QQuery 9  │   49.80 ms │                              51.23 ms │     no change │
│ QQuery 10 │   62.10 ms │                              62.37 ms │     no change │
│ QQuery 11 │  305.34 ms │                             309.76 ms │     no change │
│ QQuery 12 │   28.29 ms │                              28.62 ms │     no change │
│ QQuery 13 │  115.99 ms │                             116.91 ms │     no change │
│ QQuery 14 │  410.27 ms │                             413.00 ms │     no change │
│ QQuery 15 │   56.14 ms │                              56.40 ms │     no change │
│ QQuery 16 │    6.60 ms │                               6.61 ms │     no change │
│ QQuery 17 │   78.40 ms │                              79.44 ms │     no change │
│ QQuery 18 │  120.65 ms │                             120.36 ms │     no change │
│ QQuery 19 │   40.32 ms │                              40.35 ms │     no change │
│ QQuery 20 │   34.65 ms │                              35.33 ms │     no change │
│ QQuery 21 │   17.12 ms │                              17.17 ms │     no change │
│ QQuery 22 │   62.38 ms │                              61.28 ms │     no change │
│ QQuery 23 │  333.65 ms │                             335.75 ms │     no change │
│ QQuery 24 │  222.35 ms │                             217.72 ms │     no change │
│ QQuery 25 │  108.75 ms │                             107.53 ms │     no change │
│ QQuery 26 │   57.57 ms │                              56.49 ms │     no change │
│ QQuery 27 │    6.28 ms │                               6.17 ms │     no change │
│ QQuery 28 │   59.39 ms │                              59.11 ms │     no change │
│ QQuery 29 │   96.26 ms │                              94.90 ms │     no change │
│ QQuery 30 │   32.33 ms │                              31.76 ms │     no change │
│ QQuery 31 │  109.96 ms │                             108.42 ms │     no change │
│ QQuery 32 │   20.33 ms │                              19.63 ms │     no change │
│ QQuery 33 │   37.78 ms │                              37.13 ms │     no change │
│ QQuery 34 │   10.08 ms │                               9.68 ms │     no change │
│ QQuery 35 │   73.01 ms │                              72.01 ms │     no change │
│ QQuery 36 │    5.71 ms │                               5.79 ms │     no change │
│ QQuery 37 │    6.83 ms │                               6.71 ms │     no change │
│ QQuery 38 │   60.99 ms │                              60.83 ms │     no change │
│ QQuery 39 │   89.69 ms │                              88.46 ms │     no change │
│ QQuery 40 │   23.29 ms │                              22.97 ms │     no change │
│ QQuery 41 │   11.59 ms │                              10.88 ms │ +1.06x faster │
│ QQuery 42 │   23.50 ms │                              23.31 ms │     no change │
│ QQuery 43 │    5.05 ms │                               5.10 ms │     no change │
│ QQuery 44 │    9.42 ms │                               9.13 ms │     no change │
│ QQuery 45 │   38.19 ms │                              37.36 ms │     no change │
│ QQuery 46 │   12.08 ms │                              11.61 ms │     no change │
│ QQuery 47 │  231.84 ms │                             219.46 ms │ +1.06x faster │
│ QQuery 48 │   94.79 ms │                              94.07 ms │     no change │
│ QQuery 49 │   75.34 ms │                              74.70 ms │     no change │
│ QQuery 50 │   58.18 ms │                              58.16 ms │     no change │
│ QQuery 51 │   91.99 ms │                              91.62 ms │     no change │
│ QQuery 52 │   23.86 ms │                              23.47 ms │     no change │
│ QQuery 53 │   29.17 ms │                              28.41 ms │     no change │
│ QQuery 54 │   54.37 ms │                              54.02 ms │     no change │
│ QQuery 55 │   23.66 ms │                              22.98 ms │     no change │
│ QQuery 56 │   38.59 ms │                              37.79 ms │     no change │
│ QQuery 57 │  173.33 ms │                             173.80 ms │     no change │
│ QQuery 58 │  111.69 ms │                             110.28 ms │     no change │
│ QQuery 59 │  117.92 ms │                             117.62 ms │     no change │
│ QQuery 60 │   38.66 ms │                              38.99 ms │     no change │
│ QQuery 61 │   12.25 ms │                              12.15 ms │     no change │
│ QQuery 62 │   46.36 ms │                              45.58 ms │     no change │
│ QQuery 63 │   29.47 ms │                              29.04 ms │     no change │
│ QQuery 64 │  401.64 ms │                             404.29 ms │     no change │
│ QQuery 65 │  121.31 ms │                             122.20 ms │     no change │
│ QQuery 66 │   80.58 ms │                              79.57 ms │     no change │
│ QQuery 67 │  241.97 ms │                             238.00 ms │     no change │
│ QQuery 68 │   12.01 ms │                              11.88 ms │     no change │
│ QQuery 69 │   56.60 ms │                              56.32 ms │     no change │
│ QQuery 70 │  105.47 ms │                             104.66 ms │     no change │
│ QQuery 71 │   34.46 ms │                              34.29 ms │     no change │
│ QQuery 72 │ 2033.09 ms │                            1999.15 ms │     no change │
│ QQuery 73 │   10.11 ms │                               9.91 ms │     no change │
│ QQuery 74 │  177.93 ms │                             184.55 ms │     no change │
│ QQuery 75 │  147.09 ms │                             149.15 ms │     no change │
│ QQuery 76 │   34.91 ms │                              35.40 ms │     no change │
│ QQuery 77 │   60.35 ms │                              61.80 ms │     no change │
│ QQuery 78 │  193.99 ms │                             197.97 ms │     no change │
│ QQuery 79 │   66.98 ms │                              66.87 ms │     no change │
│ QQuery 80 │   97.60 ms │                              98.42 ms │     no change │
│ QQuery 81 │   25.61 ms │                              26.41 ms │     no change │
│ QQuery 82 │   15.93 ms │                              16.54 ms │     no change │
│ QQuery 83 │   40.24 ms │                              40.51 ms │     no change │
│ QQuery 84 │   30.20 ms │                              30.04 ms │     no change │
│ QQuery 85 │  106.08 ms │                             105.69 ms │     no change │
│ QQuery 86 │   25.38 ms │                              25.65 ms │     no change │
│ QQuery 87 │   63.24 ms │                              61.92 ms │     no change │
│ QQuery 88 │   62.53 ms │                              63.40 ms │     no change │
│ QQuery 89 │   35.03 ms │                              35.28 ms │     no change │
│ QQuery 90 │   17.09 ms │                              17.09 ms │     no change │
│ QQuery 91 │   45.80 ms │                              46.24 ms │     no change │
│ QQuery 92 │   29.62 ms │                              29.44 ms │     no change │
│ QQuery 93 │   49.33 ms │                              49.56 ms │     no change │
│ QQuery 94 │   37.44 ms │                              38.00 ms │     no change │
│ QQuery 95 │   79.35 ms │                              80.35 ms │     no change │
│ QQuery 96 │   23.99 ms │                              23.99 ms │     no change │
│ QQuery 97 │   46.41 ms │                              46.79 ms │     no change │
│ QQuery 98 │   41.75 ms │                              42.32 ms │     no change │
│ QQuery 99 │   69.72 ms │                              69.72 ms │     no change │
└───────────┴────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┓
┃ Benchmark Summary                                    ┃           ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━┩
│ Total Time (HEAD)                                    │ 9620.22ms │
│ Total Time (rich-T-kid_introduce-rle-parquet-flag)   │ 9600.85ms │
│ Average Time (HEAD)                                  │   97.17ms │
│ Average Time (rich-T-kid_introduce-rle-parquet-flag) │   96.98ms │
│ Queries Faster                                       │         2 │
│ Queries Slower                                       │         0 │
│ Queries with No Change                               │        97 │
│ Queries with Failure                                 │         0 │
└──────────────────────────────────────────────────────┴───────────┘

Distribution per query (min / mean ±stddev / max):

Comparing HEAD and rich-T-kid_introduce-rle-parquet-flag
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃ rich-T-kid_introduce-rle-parquet-flag ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │           5.56 / 6.09 ±0.88 / 7.86 ms │           5.78 / 6.28 ±0.85 / 7.98 ms │     no change │
│ QQuery 2  │        79.84 / 80.27 ±0.31 / 80.65 ms │        79.86 / 80.10 ±0.20 / 80.44 ms │     no change │
│ QQuery 3  │        28.80 / 28.93 ±0.09 / 29.05 ms │        28.74 / 28.85 ±0.11 / 29.00 ms │     no change │
│ QQuery 4  │     477.24 / 482.76 ±3.75 / 488.42 ms │     497.34 / 505.58 ±6.75 / 514.21 ms │     no change │
│ QQuery 5  │        50.65 / 51.77 ±0.68 / 52.61 ms │        51.57 / 51.96 ±0.43 / 52.79 ms │     no change │
│ QQuery 6  │        35.37 / 35.71 ±0.36 / 36.27 ms │        35.61 / 36.12 ±0.29 / 36.43 ms │     no change │
│ QQuery 7  │        92.26 / 92.90 ±0.58 / 93.87 ms │       92.98 / 94.88 ±3.14 / 101.14 ms │     no change │
│ QQuery 8  │        36.09 / 37.73 ±2.65 / 43.02 ms │        36.17 / 37.25 ±0.89 / 38.74 ms │     no change │
│ QQuery 9  │        49.80 / 52.77 ±2.03 / 55.86 ms │        51.23 / 53.24 ±1.20 / 54.76 ms │     no change │
│ QQuery 10 │        62.10 / 62.43 ±0.28 / 62.90 ms │        62.37 / 62.80 ±0.35 / 63.39 ms │     no change │
│ QQuery 11 │     305.34 / 310.31 ±4.20 / 316.01 ms │     309.76 / 313.75 ±3.20 / 317.52 ms │     no change │
│ QQuery 12 │        28.29 / 28.70 ±0.31 / 29.16 ms │        28.62 / 28.95 ±0.30 / 29.46 ms │     no change │
│ QQuery 13 │     115.99 / 116.69 ±0.44 / 117.15 ms │     116.91 / 117.36 ±0.30 / 117.70 ms │     no change │
│ QQuery 14 │     410.27 / 414.25 ±3.43 / 419.35 ms │     413.00 / 415.76 ±2.82 / 421.07 ms │     no change │
│ QQuery 15 │        56.14 / 58.00 ±1.05 / 59.06 ms │        56.40 / 57.53 ±0.91 / 58.87 ms │     no change │
│ QQuery 16 │           6.60 / 6.75 ±0.17 / 7.08 ms │           6.61 / 6.84 ±0.23 / 7.27 ms │     no change │
│ QQuery 17 │        78.40 / 79.73 ±1.70 / 83.05 ms │        79.44 / 80.41 ±1.12 / 82.55 ms │     no change │
│ QQuery 18 │     120.65 / 121.89 ±1.34 / 124.47 ms │     120.36 / 121.99 ±2.12 / 126.17 ms │     no change │
│ QQuery 19 │        40.32 / 40.72 ±0.41 / 41.36 ms │        40.35 / 40.57 ±0.12 / 40.68 ms │     no change │
│ QQuery 20 │        34.65 / 34.97 ±0.37 / 35.69 ms │        35.33 / 35.74 ±0.23 / 36.01 ms │     no change │
│ QQuery 21 │        17.12 / 17.43 ±0.33 / 18.01 ms │        17.17 / 17.39 ±0.33 / 18.04 ms │     no change │
│ QQuery 22 │        62.38 / 63.08 ±0.70 / 64.15 ms │        61.28 / 62.64 ±0.93 / 64.09 ms │     no change │
│ QQuery 23 │     333.65 / 342.42 ±8.00 / 355.48 ms │     335.75 / 339.95 ±3.15 / 344.50 ms │     no change │
│ QQuery 24 │     222.35 / 225.26 ±3.98 / 233.15 ms │     217.72 / 222.35 ±3.24 / 227.71 ms │     no change │
│ QQuery 25 │     108.75 / 110.89 ±1.95 / 114.22 ms │     107.53 / 108.98 ±1.28 / 111.14 ms │     no change │
│ QQuery 26 │        57.57 / 59.14 ±2.44 / 63.95 ms │        56.49 / 58.24 ±2.81 / 63.80 ms │     no change │
│ QQuery 27 │           6.28 / 6.52 ±0.19 / 6.85 ms │           6.17 / 6.28 ±0.15 / 6.57 ms │     no change │
│ QQuery 28 │        59.39 / 60.19 ±0.52 / 60.89 ms │        59.11 / 59.84 ±0.47 / 60.50 ms │     no change │
│ QQuery 29 │       96.26 / 97.90 ±1.40 / 100.36 ms │        94.90 / 96.13 ±1.48 / 99.00 ms │     no change │
│ QQuery 30 │        32.33 / 33.45 ±1.75 / 36.93 ms │        31.76 / 33.99 ±2.93 / 39.76 ms │     no change │
│ QQuery 31 │     109.96 / 112.18 ±1.74 / 115.18 ms │     108.42 / 110.26 ±1.40 / 112.62 ms │     no change │
│ QQuery 32 │        20.33 / 20.88 ±0.32 / 21.25 ms │        19.63 / 20.20 ±0.29 / 20.43 ms │     no change │
│ QQuery 33 │        37.78 / 37.98 ±0.25 / 38.46 ms │        37.13 / 37.25 ±0.11 / 37.43 ms │     no change │
│ QQuery 34 │        10.08 / 10.29 ±0.17 / 10.55 ms │         9.68 / 10.92 ±1.90 / 14.68 ms │  1.06x slower │
│ QQuery 35 │        73.01 / 75.89 ±2.19 / 79.45 ms │        72.01 / 72.63 ±1.00 / 74.63 ms │     no change │
│ QQuery 36 │           5.71 / 5.90 ±0.21 / 6.30 ms │           5.79 / 5.95 ±0.19 / 6.32 ms │     no change │
│ QQuery 37 │           6.83 / 6.93 ±0.08 / 7.04 ms │           6.71 / 6.87 ±0.09 / 6.98 ms │     no change │
│ QQuery 38 │        60.99 / 62.87 ±1.13 / 63.90 ms │        60.83 / 61.54 ±0.78 / 62.97 ms │     no change │
│ QQuery 39 │        89.69 / 91.20 ±0.82 / 92.07 ms │        88.46 / 89.84 ±1.98 / 93.74 ms │     no change │
│ QQuery 40 │        23.29 / 23.72 ±0.23 / 23.91 ms │        22.97 / 23.54 ±0.76 / 25.03 ms │     no change │
│ QQuery 41 │        11.59 / 12.21 ±0.99 / 14.17 ms │        10.88 / 11.13 ±0.25 / 11.61 ms │ +1.10x faster │
│ QQuery 42 │        23.50 / 23.97 ±0.75 / 25.45 ms │        23.31 / 23.64 ±0.43 / 24.46 ms │     no change │
│ QQuery 43 │           5.05 / 5.25 ±0.17 / 5.53 ms │           5.10 / 5.22 ±0.14 / 5.48 ms │     no change │
│ QQuery 44 │           9.42 / 9.51 ±0.12 / 9.74 ms │           9.13 / 9.30 ±0.16 / 9.55 ms │     no change │
│ QQuery 45 │        38.19 / 39.60 ±1.09 / 41.10 ms │        37.36 / 37.73 ±0.25 / 38.08 ms │     no change │
│ QQuery 46 │        12.08 / 12.39 ±0.25 / 12.76 ms │        11.61 / 11.87 ±0.23 / 12.20 ms │     no change │
│ QQuery 47 │     231.84 / 237.58 ±4.81 / 244.97 ms │     219.46 / 224.85 ±3.48 / 229.56 ms │ +1.06x faster │
│ QQuery 48 │        94.79 / 96.77 ±1.69 / 99.64 ms │        94.07 / 95.43 ±1.16 / 97.33 ms │     no change │
│ QQuery 49 │        75.34 / 76.17 ±1.00 / 77.99 ms │        74.70 / 75.65 ±0.65 / 76.64 ms │     no change │
│ QQuery 50 │        58.18 / 59.78 ±2.09 / 63.83 ms │        58.16 / 59.06 ±0.84 / 60.64 ms │     no change │
│ QQuery 51 │        91.99 / 93.82 ±1.35 / 96.11 ms │        91.62 / 93.66 ±1.71 / 96.49 ms │     no change │
│ QQuery 52 │        23.86 / 24.09 ±0.13 / 24.22 ms │        23.47 / 23.67 ±0.11 / 23.80 ms │     no change │
│ QQuery 53 │        29.17 / 29.34 ±0.12 / 29.52 ms │        28.41 / 28.68 ±0.21 / 29.03 ms │     no change │
│ QQuery 54 │        54.37 / 56.40 ±2.90 / 62.12 ms │        54.02 / 54.61 ±0.76 / 56.02 ms │     no change │
│ QQuery 55 │        23.66 / 23.92 ±0.25 / 24.32 ms │        22.98 / 23.35 ±0.59 / 24.52 ms │     no change │
│ QQuery 56 │        38.59 / 39.01 ±0.27 / 39.33 ms │        37.79 / 39.49 ±1.56 / 42.37 ms │     no change │
│ QQuery 57 │     173.33 / 174.73 ±1.52 / 177.66 ms │     173.80 / 175.13 ±1.34 / 177.44 ms │     no change │
│ QQuery 58 │     111.69 / 112.99 ±0.84 / 114.25 ms │     110.28 / 112.37 ±2.58 / 117.33 ms │     no change │
│ QQuery 59 │     117.92 / 120.37 ±1.82 / 122.80 ms │     117.62 / 118.48 ±1.31 / 121.06 ms │     no change │
│ QQuery 60 │        38.66 / 39.66 ±0.53 / 40.21 ms │        38.99 / 39.82 ±0.94 / 41.61 ms │     no change │
│ QQuery 61 │        12.25 / 12.49 ±0.15 / 12.65 ms │        12.15 / 12.28 ±0.14 / 12.52 ms │     no change │
│ QQuery 62 │        46.36 / 46.68 ±0.18 / 46.87 ms │        45.58 / 46.40 ±0.58 / 47.35 ms │     no change │
│ QQuery 63 │        29.47 / 31.25 ±3.12 / 37.46 ms │        29.04 / 30.20 ±1.71 / 33.59 ms │     no change │
│ QQuery 64 │     401.64 / 405.95 ±4.48 / 413.91 ms │     404.29 / 406.72 ±3.15 / 412.83 ms │     no change │
│ QQuery 65 │     121.31 / 124.89 ±2.90 / 129.98 ms │     122.20 / 123.29 ±0.63 / 123.90 ms │     no change │
│ QQuery 66 │        80.58 / 82.92 ±3.84 / 90.54 ms │        79.57 / 82.16 ±3.65 / 89.39 ms │     no change │
│ QQuery 67 │     241.97 / 247.21 ±4.46 / 252.96 ms │     238.00 / 242.71 ±4.78 / 251.22 ms │     no change │
│ QQuery 68 │        12.01 / 12.14 ±0.12 / 12.32 ms │        11.88 / 12.10 ±0.26 / 12.60 ms │     no change │
│ QQuery 69 │        56.60 / 57.00 ±0.34 / 57.45 ms │        56.32 / 56.61 ±0.27 / 57.13 ms │     no change │
│ QQuery 70 │     105.47 / 113.31 ±8.41 / 129.65 ms │     104.66 / 109.72 ±4.39 / 115.79 ms │     no change │
│ QQuery 71 │        34.46 / 34.66 ±0.26 / 35.16 ms │        34.29 / 34.94 ±0.83 / 36.57 ms │     no change │
│ QQuery 72 │ 2033.09 / 2067.92 ±20.33 / 2089.90 ms │ 1999.15 / 2059.49 ±41.44 / 2127.87 ms │     no change │
│ QQuery 73 │        10.11 / 10.21 ±0.12 / 10.43 ms │         9.91 / 10.08 ±0.22 / 10.52 ms │     no change │
│ QQuery 74 │     177.93 / 184.41 ±5.29 / 193.86 ms │     184.55 / 187.29 ±2.76 / 190.79 ms │     no change │
│ QQuery 75 │     147.09 / 151.99 ±5.76 / 163.17 ms │     149.15 / 150.02 ±0.61 / 150.63 ms │     no change │
│ QQuery 76 │        34.91 / 35.29 ±0.29 / 35.79 ms │        35.40 / 35.55 ±0.15 / 35.81 ms │     no change │
│ QQuery 77 │        60.35 / 60.68 ±0.30 / 61.04 ms │        61.80 / 62.61 ±0.91 / 64.24 ms │     no change │
│ QQuery 78 │     193.99 / 196.87 ±3.27 / 201.58 ms │     197.97 / 202.26 ±2.73 / 205.64 ms │     no change │
│ QQuery 79 │        66.98 / 68.70 ±2.01 / 71.80 ms │        66.87 / 68.61 ±2.35 / 73.17 ms │     no change │
│ QQuery 80 │       97.60 / 98.75 ±1.05 / 100.03 ms │       98.42 / 99.91 ±0.88 / 100.87 ms │     no change │
│ QQuery 81 │        25.61 / 25.86 ±0.27 / 26.21 ms │        26.41 / 26.66 ±0.29 / 27.23 ms │     no change │
│ QQuery 82 │        15.93 / 19.10 ±5.87 / 30.83 ms │        16.54 / 17.60 ±1.90 / 21.40 ms │ +1.09x faster │
│ QQuery 83 │        40.24 / 40.61 ±0.25 / 40.99 ms │        40.51 / 42.09 ±2.20 / 46.42 ms │     no change │
│ QQuery 84 │        30.20 / 30.89 ±0.79 / 32.45 ms │        30.04 / 30.63 ±0.76 / 32.11 ms │     no change │
│ QQuery 85 │     106.08 / 107.10 ±0.77 / 108.12 ms │     105.69 / 106.43 ±0.43 / 106.91 ms │     no change │
│ QQuery 86 │        25.38 / 27.69 ±4.12 / 35.91 ms │        25.65 / 27.25 ±2.83 / 32.91 ms │     no change │
│ QQuery 87 │        63.24 / 64.14 ±0.98 / 65.82 ms │        61.92 / 63.74 ±1.34 / 66.06 ms │     no change │
│ QQuery 88 │        62.53 / 63.13 ±0.36 / 63.64 ms │        63.40 / 63.78 ±0.22 / 64.07 ms │     no change │
│ QQuery 89 │        35.03 / 35.53 ±0.47 / 36.28 ms │        35.28 / 35.51 ±0.16 / 35.78 ms │     no change │
│ QQuery 90 │        17.09 / 17.35 ±0.26 / 17.78 ms │        17.09 / 17.28 ±0.23 / 17.71 ms │     no change │
│ QQuery 91 │        45.80 / 48.12 ±3.83 / 55.76 ms │        46.24 / 47.47 ±1.31 / 49.33 ms │     no change │
│ QQuery 92 │        29.62 / 30.56 ±0.94 / 32.33 ms │        29.44 / 30.02 ±0.42 / 30.53 ms │     no change │
│ QQuery 93 │        49.33 / 50.34 ±0.80 / 51.18 ms │        49.56 / 50.69 ±1.16 / 52.93 ms │     no change │
│ QQuery 94 │        37.44 / 37.96 ±0.30 / 38.33 ms │        38.00 / 38.39 ±0.25 / 38.69 ms │     no change │
│ QQuery 95 │        79.35 / 80.89 ±1.53 / 83.76 ms │        80.35 / 81.56 ±1.27 / 83.93 ms │     no change │
│ QQuery 96 │        23.99 / 25.04 ±1.71 / 28.45 ms │        23.99 / 24.19 ±0.28 / 24.72 ms │     no change │
│ QQuery 97 │        46.41 / 47.01 ±0.35 / 47.44 ms │        46.79 / 47.50 ±0.75 / 48.91 ms │     no change │
│ QQuery 98 │        41.75 / 42.28 ±0.52 / 43.11 ms │        42.32 / 43.11 ±0.58 / 43.90 ms │     no change │
│ QQuery 99 │        69.72 / 71.28 ±2.60 / 76.46 ms │        69.72 / 70.47 ±1.02 / 72.49 ms │     no change │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┓
┃ Benchmark Summary                                    ┃           ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━┩
│ Total Time (HEAD)                                    │ 9803.24ms │
│ Total Time (rich-T-kid_introduce-rle-parquet-flag)   │ 9781.20ms │
│ Average Time (HEAD)                                  │   99.02ms │
│ Average Time (rich-T-kid_introduce-rle-parquet-flag) │   98.80ms │
│ Queries Faster                                       │         3 │
│ Queries Slower                                       │         1 │
│ Queries with No Change                               │        95 │
│ Queries with Failure                                 │         0 │
└──────────────────────────────────────────────────────┴───────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 50.0s
Peak memory 1.9 GiB
Avg memory 1.4 GiB
CPU user 222.2s
CPU sys 5.6s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 50.0s
Peak memory 2.2 GiB
Avg memory 1.6 GiB
CPU user 216.9s
CPU sys 5.7s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

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

Comparing rich-T-kid/introduce-rle-parquet-flag (b0b0c0e) to db8796d (merge-base) diff

Run configuration
run benchmark clickbench_partitioned
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 rich-T-kid_introduce-rle-parquet-flag
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┓
┃ Query     ┃       HEAD ┃ rich-T-kid_introduce-rle-parquet-flag ┃       Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━┩
│ QQuery 0  │    1.20 ms │                               1.20 ms │    no change │
│ QQuery 1  │   11.60 ms │                              11.88 ms │    no change │
│ QQuery 2  │   35.99 ms │                              37.25 ms │    no change │
│ QQuery 3  │   30.51 ms │                              30.78 ms │    no change │
│ QQuery 4  │  222.33 ms │                             222.86 ms │    no change │
│ QQuery 5  │  268.62 ms │                             270.86 ms │    no change │
│ QQuery 6  │    1.29 ms │                               1.25 ms │    no change │
│ QQuery 7  │   12.89 ms │                              13.01 ms │    no change │
│ QQuery 8  │  322.88 ms │                             320.54 ms │    no change │
│ QQuery 9  │  447.23 ms │                             454.78 ms │    no change │
│ QQuery 10 │   68.68 ms │                              69.36 ms │    no change │
│ QQuery 11 │   79.99 ms │                              79.93 ms │    no change │
│ QQuery 12 │  265.04 ms │                             268.67 ms │    no change │
│ QQuery 13 │  362.00 ms │                             363.97 ms │    no change │
│ QQuery 14 │  276.42 ms │                             279.99 ms │    no change │
│ QQuery 15 │  264.23 ms │                             267.49 ms │    no change │
│ QQuery 16 │  606.22 ms │                             606.52 ms │    no change │
│ QQuery 17 │  610.64 ms │                             608.89 ms │    no change │
│ QQuery 18 │ 1232.34 ms │                            1226.80 ms │    no change │
│ QQuery 19 │   27.12 ms │                              27.14 ms │    no change │
│ QQuery 20 │  514.11 ms │                             512.72 ms │    no change │
│ QQuery 21 │  513.50 ms │                             517.66 ms │    no change │
│ QQuery 22 │  985.01 ms │                             990.41 ms │    no change │
│ QQuery 23 │ 2998.24 ms │                            3069.01 ms │    no change │
│ QQuery 24 │   40.66 ms │                              41.06 ms │    no change │
│ QQuery 25 │  110.25 ms │                             109.66 ms │    no change │
│ QQuery 26 │   40.68 ms │                              41.06 ms │    no change │
│ QQuery 27 │  510.34 ms │                             511.57 ms │    no change │
│ QQuery 28 │ 2880.18 ms │                            2898.95 ms │    no change │
│ QQuery 29 │   40.63 ms │                              40.40 ms │    no change │
│ QQuery 30 │  296.79 ms │                             301.31 ms │    no change │
│ QQuery 31 │  272.79 ms │                             284.74 ms │    no change │
│ QQuery 32 │  922.27 ms │                             908.35 ms │    no change │
│ QQuery 33 │ 1431.77 ms │                            1436.29 ms │    no change │
│ QQuery 34 │ 1464.67 ms │                            1452.04 ms │    no change │
│ QQuery 35 │  269.53 ms │                             274.85 ms │    no change │
│ QQuery 36 │   66.16 ms │                              67.56 ms │    no change │
│ QQuery 37 │   36.34 ms │                              35.26 ms │    no change │
│ QQuery 38 │   40.69 ms │                              40.81 ms │    no change │
│ QQuery 39 │  134.90 ms │                             150.44 ms │ 1.12x slower │
│ QQuery 40 │   13.92 ms │                              13.84 ms │    no change │
│ QQuery 41 │   13.44 ms │                              13.51 ms │    no change │
│ QQuery 42 │   12.97 ms │                              13.42 ms │    no change │
└───────────┴────────────┴───────────────────────────────────────┴──────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                                    ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                                    │ 18757.06ms │
│ Total Time (rich-T-kid_introduce-rle-parquet-flag)   │ 18888.08ms │
│ Average Time (HEAD)                                  │   436.21ms │
│ Average Time (rich-T-kid_introduce-rle-parquet-flag) │   439.26ms │
│ Queries Faster                                       │          0 │
│ Queries Slower                                       │          1 │
│ Queries with No Change                               │         42 │
│ Queries with Failure                                 │          0 │
└──────────────────────────────────────────────────────┴────────────┘

Distribution per query (min / mean ±stddev / max):

Comparing HEAD and rich-T-kid_introduce-rle-parquet-flag
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃ rich-T-kid_introduce-rle-parquet-flag ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.20 / 3.89 ±5.30 / 14.48 ms │          1.20 / 3.92 ±5.38 / 14.69 ms │     no change │
│ QQuery 1  │        11.60 / 11.85 ±0.17 / 12.08 ms │        11.88 / 12.16 ±0.25 / 12.55 ms │     no change │
│ QQuery 2  │        35.99 / 36.54 ±0.55 / 37.54 ms │        37.25 / 37.40 ±0.15 / 37.65 ms │     no change │
│ QQuery 3  │        30.51 / 34.82 ±3.53 / 40.09 ms │        30.78 / 30.96 ±0.18 / 31.25 ms │ +1.12x faster │
│ QQuery 4  │     222.33 / 225.35 ±4.18 / 233.63 ms │     222.86 / 225.62 ±2.14 / 228.60 ms │     no change │
│ QQuery 5  │     268.62 / 273.24 ±2.34 / 274.98 ms │     270.86 / 272.97 ±1.43 / 274.92 ms │     no change │
│ QQuery 6  │           1.29 / 1.42 ±0.21 / 1.84 ms │           1.25 / 1.40 ±0.22 / 1.83 ms │     no change │
│ QQuery 7  │        12.89 / 13.06 ±0.14 / 13.23 ms │        13.01 / 13.22 ±0.13 / 13.38 ms │     no change │
│ QQuery 8  │     322.88 / 326.09 ±1.71 / 327.99 ms │     320.54 / 326.22 ±4.46 / 333.62 ms │     no change │
│ QQuery 9  │     447.23 / 454.34 ±4.25 / 460.20 ms │     454.78 / 460.22 ±2.99 / 463.23 ms │     no change │
│ QQuery 10 │        68.68 / 69.46 ±0.62 / 70.41 ms │        69.36 / 71.09 ±2.09 / 75.11 ms │     no change │
│ QQuery 11 │        79.99 / 84.07 ±7.57 / 99.19 ms │        79.93 / 82.03 ±1.91 / 85.30 ms │     no change │
│ QQuery 12 │     265.04 / 272.52 ±4.85 / 279.48 ms │     268.67 / 274.44 ±2.95 / 276.77 ms │     no change │
│ QQuery 13 │     362.00 / 369.65 ±6.76 / 381.53 ms │    363.97 / 380.22 ±16.16 / 410.70 ms │     no change │
│ QQuery 14 │     276.42 / 282.63 ±4.45 / 288.34 ms │     279.99 / 285.86 ±6.39 / 295.57 ms │     no change │
│ QQuery 15 │     264.23 / 270.63 ±6.57 / 282.49 ms │    267.49 / 287.00 ±30.72 / 348.20 ms │  1.06x slower │
│ QQuery 16 │     606.22 / 610.80 ±5.39 / 620.99 ms │     606.52 / 616.95 ±7.25 / 627.09 ms │     no change │
│ QQuery 17 │     610.64 / 620.59 ±8.48 / 632.98 ms │    608.89 / 630.05 ±21.91 / 668.21 ms │     no change │
│ QQuery 18 │ 1232.34 / 1248.76 ±15.71 / 1275.07 ms │ 1226.80 / 1270.37 ±25.20 / 1302.96 ms │     no change │
│ QQuery 19 │        27.12 / 27.38 ±0.31 / 27.95 ms │       27.14 / 38.62 ±14.62 / 63.57 ms │  1.41x slower │
│ QQuery 20 │     514.11 / 523.08 ±7.95 / 532.91 ms │     512.72 / 519.40 ±4.88 / 526.09 ms │     no change │
│ QQuery 21 │     513.50 / 518.00 ±3.62 / 523.55 ms │     517.66 / 521.72 ±4.92 / 531.01 ms │     no change │
│ QQuery 22 │   985.01 / 994.28 ±10.89 / 1014.53 ms │    990.41 / 999.31 ±5.61 / 1005.30 ms │     no change │
│ QQuery 23 │ 2998.24 / 3037.67 ±27.20 / 3078.27 ms │ 3069.01 / 3090.61 ±15.06 / 3113.76 ms │     no change │
│ QQuery 24 │       40.66 / 52.83 ±22.94 / 98.69 ms │        41.06 / 46.68 ±6.92 / 58.37 ms │ +1.13x faster │
│ QQuery 25 │     110.25 / 111.27 ±0.91 / 112.68 ms │     109.66 / 115.54 ±9.90 / 135.30 ms │     no change │
│ QQuery 26 │        40.68 / 41.37 ±0.61 / 42.50 ms │        41.06 / 43.67 ±3.82 / 51.23 ms │  1.06x slower │
│ QQuery 27 │     510.34 / 523.08 ±9.69 / 539.98 ms │     511.57 / 516.23 ±4.87 / 524.72 ms │     no change │
│ QQuery 28 │ 2880.18 / 2900.59 ±13.56 / 2918.85 ms │ 2898.95 / 2916.87 ±12.90 / 2937.00 ms │     no change │
│ QQuery 29 │      40.63 / 60.91 ±34.47 / 129.43 ms │        40.40 / 41.56 ±1.76 / 45.05 ms │ +1.47x faster │
│ QQuery 30 │     296.79 / 305.32 ±9.60 / 324.10 ms │     301.31 / 307.16 ±3.61 / 312.02 ms │     no change │
│ QQuery 31 │     272.79 / 284.81 ±9.51 / 299.35 ms │     284.74 / 289.89 ±6.24 / 302.00 ms │     no change │
│ QQuery 32 │    922.27 / 939.56 ±10.84 / 952.84 ms │    908.35 / 937.06 ±21.76 / 975.12 ms │     no change │
│ QQuery 33 │ 1431.77 / 1465.02 ±21.66 / 1491.35 ms │ 1436.29 / 1459.17 ±18.70 / 1482.21 ms │     no change │
│ QQuery 34 │ 1464.67 / 1511.86 ±63.60 / 1636.17 ms │ 1452.04 / 1484.97 ±34.91 / 1548.10 ms │     no change │
│ QQuery 35 │    269.53 / 287.95 ±22.55 / 332.06 ms │    274.85 / 327.66 ±62.02 / 431.42 ms │  1.14x slower │
│ QQuery 36 │        66.16 / 73.59 ±7.34 / 86.77 ms │        67.56 / 73.49 ±6.56 / 85.44 ms │     no change │
│ QQuery 37 │        36.34 / 40.96 ±4.92 / 47.04 ms │        35.26 / 39.88 ±4.32 / 45.20 ms │     no change │
│ QQuery 38 │        40.69 / 42.80 ±1.19 / 44.09 ms │        40.81 / 42.21 ±0.94 / 43.69 ms │     no change │
│ QQuery 39 │    134.90 / 150.75 ±13.32 / 166.71 ms │     150.44 / 155.42 ±4.38 / 160.98 ms │     no change │
│ QQuery 40 │        13.92 / 14.63 ±0.63 / 15.64 ms │        13.84 / 16.07 ±2.69 / 20.53 ms │  1.10x slower │
│ QQuery 41 │        13.44 / 13.78 ±0.33 / 14.28 ms │        13.51 / 13.74 ±0.26 / 14.21 ms │     no change │
│ QQuery 42 │        12.97 / 13.16 ±0.19 / 13.46 ms │        13.42 / 13.65 ±0.27 / 14.19 ms │     no change │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                                    ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                                    │ 19144.36ms │
│ Total Time (rich-T-kid_introduce-rle-parquet-flag)   │ 19292.67ms │
│ Average Time (HEAD)                                  │   445.22ms │
│ Average Time (rich-T-kid_introduce-rle-parquet-flag) │   448.67ms │
│ Queries Faster                                       │          3 │
│ Queries Slower                                       │          5 │
│ Queries with No Change                               │         35 │
│ Queries with Failure                                 │          0 │
└──────────────────────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 100.0s
Peak memory 12.9 GiB
Avg memory 4.8 GiB
CPU user 986.2s
CPU sys 65.9s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 100.0s
Peak memory 11.7 GiB
Avg memory 4.5 GiB
CPU user 986.5s
CPU sys 67.8s
Peak spill 0 B

File an issue against this benchmark runner

@Rich-T-kid
Rich-T-kid force-pushed the rich-T-kid/introduce-rle-parquet-flag branch 2 times, most recently from 72342ef to b74533a Compare August 22, 2026 17:23
@Rich-T-kid

Copy link
Copy Markdown
Contributor Author

run benchmarks

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c5400020690-1906-gcg7g 6.12.85+ #1 SMP Sat Jun 27 09:31:30 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 rich-T-kid/introduce-rle-parquet-flag (35dd8d8) to 26b40dd (merge-base) diff

Run configuration
run benchmark 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-c5400020690-1908-t5p4g 6.12.85+ #1 SMP Sat Jun 27 09:31:30 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 rich-T-kid/introduce-rle-parquet-flag (35dd8d8) to 26b40dd (merge-base) diff

Run configuration
run benchmark 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-c5400020690-1907-njl57 6.12.85+ #1 SMP Sat Jun 27 09:31:30 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 rich-T-kid/introduce-rle-parquet-flag (35dd8d8) to 26b40dd (merge-base) diff

Run configuration
run benchmark 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)

Comparing rich-T-kid/introduce-rle-parquet-flag (35dd8d8) to 26b40dd (merge-base) diff

Run configuration
run benchmark tpch
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 rich-T-kid_introduce-rle-parquet-flag
--------------------
Benchmark tpch_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┓
┃ Query     ┃     HEAD ┃ rich-T-kid_introduce-rle-parquet-flag ┃       Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━┩
│ QQuery 1  │ 38.19 ms │                              39.75 ms │    no change │
│ QQuery 2  │ 18.34 ms │                              19.50 ms │ 1.06x slower │
│ QQuery 3  │ 28.72 ms │                              30.42 ms │ 1.06x slower │
│ QQuery 4  │ 17.31 ms │                              18.39 ms │ 1.06x slower │
│ QQuery 5  │ 35.42 ms │                              39.11 ms │ 1.10x slower │
│ QQuery 6  │ 15.89 ms │                              16.90 ms │ 1.06x slower │
│ QQuery 7  │ 39.17 ms │                              45.43 ms │ 1.16x slower │
│ QQuery 8  │ 40.63 ms │                              43.25 ms │ 1.06x slower │
│ QQuery 9  │ 47.93 ms │                              53.46 ms │ 1.12x slower │
│ QQuery 10 │ 41.34 ms │                              45.32 ms │ 1.10x slower │
│ QQuery 11 │ 13.28 ms │                              14.68 ms │ 1.11x slower │
│ QQuery 12 │ 23.96 ms │                              25.47 ms │ 1.06x slower │
│ QQuery 13 │ 38.88 ms │                              46.54 ms │ 1.20x slower │
│ QQuery 14 │ 24.10 ms │                              26.18 ms │ 1.09x slower │
│ QQuery 15 │ 30.37 ms │                              33.09 ms │ 1.09x slower │
│ QQuery 16 │ 13.64 ms │                              14.71 ms │ 1.08x slower │
│ QQuery 17 │ 69.18 ms │                              76.18 ms │ 1.10x slower │
│ QQuery 18 │ 58.52 ms │                              62.46 ms │ 1.07x slower │
│ QQuery 19 │ 32.48 ms │                              33.57 ms │    no change │
│ QQuery 20 │ 31.09 ms │                              32.46 ms │    no change │
│ QQuery 21 │ 54.48 ms │                              56.53 ms │    no change │
│ QQuery 22 │ 13.31 ms │                              14.78 ms │ 1.11x slower │
└───────────┴──────────┴───────────────────────────────────────┴──────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━┓
┃ Benchmark Summary                                    ┃          ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━┩
│ Total Time (HEAD)                                    │ 726.21ms │
│ Total Time (rich-T-kid_introduce-rle-parquet-flag)   │ 788.19ms │
│ Average Time (HEAD)                                  │  33.01ms │
│ Average Time (rich-T-kid_introduce-rle-parquet-flag) │  35.83ms │
│ Queries Faster                                       │        0 │
│ Queries Slower                                       │       18 │
│ Queries with No Change                               │        4 │
│ Queries with Failure                                 │        0 │
└──────────────────────────────────────────────────────┴──────────┘

Distribution per query (min / mean ±stddev / max):

Comparing HEAD and rich-T-kid_introduce-rle-parquet-flag
--------------------
Benchmark tpch_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┓
┃ Query     ┃                           HEAD ┃ rich-T-kid_introduce-rle-parquet-flag ┃       Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━┩
│ QQuery 1  │ 38.19 / 39.54 ±1.90 / 43.30 ms │        39.75 / 40.42 ±1.03 / 42.48 ms │    no change │
│ QQuery 2  │ 18.34 / 18.86 ±0.47 / 19.57 ms │        19.50 / 19.71 ±0.20 / 20.06 ms │    no change │
│ QQuery 3  │ 28.72 / 29.76 ±0.89 / 31.18 ms │        30.42 / 30.70 ±0.33 / 31.33 ms │    no change │
│ QQuery 4  │ 17.31 / 18.03 ±0.58 / 18.94 ms │        18.39 / 18.55 ±0.13 / 18.74 ms │    no change │
│ QQuery 5  │ 35.42 / 35.77 ±0.36 / 36.44 ms │        39.11 / 39.35 ±0.25 / 39.75 ms │ 1.10x slower │
│ QQuery 6  │ 15.89 / 16.27 ±0.43 / 16.96 ms │        16.90 / 17.32 ±0.40 / 18.02 ms │ 1.06x slower │
│ QQuery 7  │ 39.17 / 41.98 ±1.67 / 43.86 ms │        45.43 / 47.43 ±1.19 / 48.80 ms │ 1.13x slower │
│ QQuery 8  │ 40.63 / 41.46 ±1.25 / 43.94 ms │        43.25 / 43.76 ±0.47 / 44.61 ms │ 1.06x slower │
│ QQuery 9  │ 47.93 / 49.02 ±1.15 / 51.11 ms │        53.46 / 53.99 ±0.44 / 54.72 ms │ 1.10x slower │
│ QQuery 10 │ 41.34 / 41.59 ±0.17 / 41.84 ms │        45.32 / 45.82 ±0.42 / 46.45 ms │ 1.10x slower │
│ QQuery 11 │ 13.28 / 13.87 ±0.62 / 14.93 ms │        14.68 / 14.80 ±0.07 / 14.87 ms │ 1.07x slower │
│ QQuery 12 │ 23.96 / 24.29 ±0.23 / 24.54 ms │        25.47 / 25.84 ±0.22 / 26.07 ms │ 1.06x slower │
│ QQuery 13 │ 38.88 / 40.52 ±1.57 / 42.86 ms │        46.54 / 46.89 ±0.33 / 47.50 ms │ 1.16x slower │
│ QQuery 14 │ 24.10 / 24.36 ±0.16 / 24.57 ms │        26.18 / 26.31 ±0.10 / 26.43 ms │ 1.08x slower │
│ QQuery 15 │ 30.37 / 31.77 ±1.22 / 33.77 ms │        33.09 / 33.55 ±0.35 / 34.00 ms │ 1.06x slower │
│ QQuery 16 │ 13.64 / 13.86 ±0.18 / 14.15 ms │        14.71 / 14.90 ±0.10 / 14.99 ms │ 1.08x slower │
│ QQuery 17 │ 69.18 / 70.82 ±2.21 / 75.19 ms │        76.18 / 81.17 ±2.94 / 84.30 ms │ 1.15x slower │
│ QQuery 18 │ 58.52 / 60.48 ±2.46 / 65.29 ms │        62.46 / 64.00 ±1.03 / 65.66 ms │ 1.06x slower │
│ QQuery 19 │ 32.48 / 32.76 ±0.23 / 33.08 ms │        33.57 / 33.93 ±0.31 / 34.49 ms │    no change │
│ QQuery 20 │ 31.09 / 31.72 ±0.83 / 33.35 ms │        32.46 / 33.04 ±0.45 / 33.79 ms │    no change │
│ QQuery 21 │ 54.48 / 55.10 ±0.46 / 55.78 ms │        56.53 / 57.14 ±0.64 / 58.06 ms │    no change │
│ QQuery 22 │ 13.31 / 13.69 ±0.31 / 14.19 ms │        14.78 / 15.38 ±0.82 / 16.99 ms │ 1.12x slower │
└───────────┴────────────────────────────────┴───────────────────────────────────────┴──────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━┓
┃ Benchmark Summary                                    ┃          ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━┩
│ Total Time (HEAD)                                    │ 745.52ms │
│ Total Time (rich-T-kid_introduce-rle-parquet-flag)   │ 803.99ms │
│ Average Time (HEAD)                                  │  33.89ms │
│ Average Time (rich-T-kid_introduce-rle-parquet-flag) │  36.55ms │
│ Queries Faster                                       │        0 │
│ Queries Slower                                       │       15 │
│ Queries with No Change                               │        7 │
│ Queries with Failure                                 │        0 │
└──────────────────────────────────────────────────────┴──────────┘

Resource Usage

tpch — base (merge-base)

Metric Value
Wall time 5.0s
Peak memory 1.3 GiB
Avg memory 514.7 MiB
CPU user 20.6s
CPU sys 1.7s
Peak spill 0 B

tpch — branch

Metric Value
Wall time 5.0s
Peak memory 1.0 GiB
Avg memory 622.4 MiB
CPU user 22.9s
CPU sys 1.9s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

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

Comparing rich-T-kid/introduce-rle-parquet-flag (35dd8d8) to 26b40dd (merge-base) diff

Run configuration
run benchmark tpcds
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 rich-T-kid_introduce-rle-parquet-flag
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃       HEAD ┃ rich-T-kid_introduce-rle-parquet-flag ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │    6.01 ms │                               6.18 ms │     no change │
│ QQuery 2  │   82.12 ms │                              84.20 ms │     no change │
│ QQuery 3  │   29.24 ms │                              30.19 ms │     no change │
│ QQuery 4  │  480.96 ms │                             567.74 ms │  1.18x slower │
│ QQuery 5  │   51.47 ms │                              54.42 ms │  1.06x slower │
│ QQuery 6  │   35.98 ms │                              39.46 ms │  1.10x slower │
│ QQuery 7  │   75.16 ms │                              78.81 ms │     no change │
│ QQuery 8  │   36.94 ms │                              38.07 ms │     no change │
│ QQuery 9  │   53.73 ms │                              53.71 ms │     no change │
│ QQuery 10 │   65.01 ms │                              65.42 ms │     no change │
│ QQuery 11 │  297.85 ms │                             301.34 ms │     no change │
│ QQuery 12 │   29.31 ms │                              28.55 ms │     no change │
│ QQuery 13 │  118.87 ms │                             117.44 ms │     no change │
│ QQuery 14 │  411.59 ms │                             411.19 ms │     no change │
│ QQuery 15 │   56.46 ms │                              56.98 ms │     no change │
│ QQuery 16 │    6.67 ms │                               6.76 ms │     no change │
│ QQuery 17 │   78.77 ms │                              79.03 ms │     no change │
│ QQuery 18 │  103.62 ms │                             105.71 ms │     no change │
│ QQuery 19 │   40.49 ms │                              41.02 ms │     no change │
│ QQuery 20 │   35.07 ms │                              35.36 ms │     no change │
│ QQuery 21 │   17.23 ms │                              17.24 ms │     no change │
│ QQuery 22 │   62.34 ms │                              62.45 ms │     no change │
│ QQuery 23 │  304.79 ms │                             308.78 ms │     no change │
│ QQuery 24 │  195.33 ms │                             191.17 ms │     no change │
│ QQuery 25 │  107.82 ms │                             114.09 ms │  1.06x slower │
│ QQuery 26 │   48.37 ms │                              51.49 ms │  1.06x slower │
│ QQuery 27 │    6.07 ms │                               6.69 ms │  1.10x slower │
│ QQuery 28 │   55.47 ms │                              58.49 ms │  1.05x slower │
│ QQuery 29 │   95.13 ms │                              98.01 ms │     no change │
│ QQuery 30 │   31.29 ms │                              33.84 ms │  1.08x slower │
│ QQuery 31 │  108.73 ms │                             109.82 ms │     no change │
│ QQuery 32 │   21.68 ms │                              19.86 ms │ +1.09x faster │
│ QQuery 33 │   39.63 ms │                              37.16 ms │ +1.07x faster │
│ QQuery 34 │   10.87 ms │                               9.84 ms │ +1.10x faster │
│ QQuery 35 │   80.37 ms │                              72.53 ms │ +1.11x faster │
│ QQuery 36 │    6.39 ms │                               5.69 ms │ +1.12x faster │
│ QQuery 37 │    7.38 ms │                               6.67 ms │ +1.11x faster │
│ QQuery 38 │   60.69 ms │                              61.19 ms │     no change │
│ QQuery 39 │   87.87 ms │                              88.56 ms │     no change │
│ QQuery 40 │   23.73 ms │                              23.56 ms │     no change │
│ QQuery 41 │   10.99 ms │                              11.05 ms │     no change │
│ QQuery 42 │   23.18 ms │                              23.31 ms │     no change │
│ QQuery 43 │    5.08 ms │                               5.11 ms │     no change │
│ QQuery 44 │    9.07 ms │                               9.18 ms │     no change │
│ QQuery 45 │   36.35 ms │                              37.09 ms │     no change │
│ QQuery 46 │   12.04 ms │                              11.80 ms │     no change │
│ QQuery 47 │  224.09 ms │                             227.39 ms │     no change │
│ QQuery 48 │   95.35 ms │                              95.04 ms │     no change │
│ QQuery 49 │   71.03 ms │                              70.96 ms │     no change │
│ QQuery 50 │   58.30 ms │                              58.42 ms │     no change │
│ QQuery 51 │   92.00 ms │                              92.11 ms │     no change │
│ QQuery 52 │   23.96 ms │                              23.85 ms │     no change │
│ QQuery 53 │   29.11 ms │                              29.15 ms │     no change │
│ QQuery 54 │   53.75 ms │                              53.78 ms │     no change │
│ QQuery 55 │   22.89 ms │                              23.05 ms │     no change │
│ QQuery 56 │   38.52 ms │                              38.27 ms │     no change │
│ QQuery 57 │  173.60 ms │                             173.34 ms │     no change │
│ QQuery 58 │  110.53 ms │                             110.36 ms │     no change │
│ QQuery 59 │  116.67 ms │                             117.70 ms │     no change │
│ QQuery 60 │   39.36 ms │                              38.76 ms │     no change │
│ QQuery 61 │   11.78 ms │                              12.17 ms │     no change │
│ QQuery 62 │   45.11 ms │                              45.75 ms │     no change │
│ QQuery 63 │   28.92 ms │                              28.83 ms │     no change │
│ QQuery 64 │  364.65 ms │                             360.34 ms │     no change │
│ QQuery 65 │  121.73 ms │                             131.01 ms │  1.08x slower │
│ QQuery 66 │   79.71 ms │                              80.49 ms │     no change │
│ QQuery 67 │  237.29 ms │                             242.12 ms │     no change │
│ QQuery 68 │   11.86 ms │                              11.79 ms │     no change │
│ QQuery 69 │   56.65 ms │                              56.87 ms │     no change │
│ QQuery 70 │  105.44 ms │                             106.74 ms │     no change │
│ QQuery 71 │   34.66 ms │                              34.99 ms │     no change │
│ QQuery 72 │ 1814.65 ms │                            1729.95 ms │     no change │
│ QQuery 73 │    9.81 ms │                               9.54 ms │     no change │
│ QQuery 74 │  167.39 ms │                             168.33 ms │     no change │
│ QQuery 75 │  145.35 ms │                             144.70 ms │     no change │
│ QQuery 76 │   34.85 ms │                              34.69 ms │     no change │
│ QQuery 77 │   60.75 ms │                              61.26 ms │     no change │
│ QQuery 78 │  214.76 ms │                             219.74 ms │     no change │
│ QQuery 79 │   65.99 ms │                              71.02 ms │  1.08x slower │
│ QQuery 80 │   97.42 ms │                             106.60 ms │  1.09x slower │
│ QQuery 81 │   25.16 ms │                              25.77 ms │     no change │
│ QQuery 82 │   16.00 ms │                              15.88 ms │     no change │
│ QQuery 83 │   33.30 ms │                              33.32 ms │     no change │
│ QQuery 84 │   29.05 ms │                              29.25 ms │     no change │
│ QQuery 85 │  102.02 ms │                             101.90 ms │     no change │
│ QQuery 86 │   25.11 ms │                              25.00 ms │     no change │
│ QQuery 87 │   61.97 ms │                              61.00 ms │     no change │
│ QQuery 88 │   63.40 ms │                              63.67 ms │     no change │
│ QQuery 89 │   35.72 ms │                              35.36 ms │     no change │
│ QQuery 90 │   17.14 ms │                              16.86 ms │     no change │
│ QQuery 91 │   44.36 ms │                              44.96 ms │     no change │
│ QQuery 92 │   29.17 ms │                              28.14 ms │     no change │
│ QQuery 93 │   49.49 ms │                              48.69 ms │     no change │
│ QQuery 94 │   38.12 ms │                              37.79 ms │     no change │
│ QQuery 95 │   78.69 ms │                              78.35 ms │     no change │
│ QQuery 96 │   23.85 ms │                              23.43 ms │     no change │
│ QQuery 97 │   51.73 ms │                              51.89 ms │     no change │
│ QQuery 98 │   42.53 ms │                              42.65 ms │     no change │
│ QQuery 99 │   69.79 ms │                              70.02 ms │     no change │
└───────────┴────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┓
┃ Benchmark Summary                                    ┃           ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━┩
│ Total Time (HEAD)                                    │ 9257.77ms │
│ Total Time (rich-T-kid_introduce-rle-parquet-flag)   │ 9319.27ms │
│ Average Time (HEAD)                                  │   93.51ms │
│ Average Time (rich-T-kid_introduce-rle-parquet-flag) │   94.13ms │
│ Queries Faster                                       │         6 │
│ Queries Slower                                       │        11 │
│ Queries with No Change                               │        82 │
│ Queries with Failure                                 │         0 │
└──────────────────────────────────────────────────────┴───────────┘

Distribution per query (min / mean ±stddev / max):

Comparing HEAD and rich-T-kid_introduce-rle-parquet-flag
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃ rich-T-kid_introduce-rle-parquet-flag ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │           6.01 / 6.52 ±0.86 / 8.24 ms │           6.18 / 6.80 ±0.88 / 8.54 ms │     no change │
│ QQuery 2  │        82.12 / 82.72 ±0.35 / 83.15 ms │        84.20 / 84.39 ±0.21 / 84.76 ms │     no change │
│ QQuery 3  │        29.24 / 29.78 ±0.32 / 30.06 ms │        30.19 / 30.62 ±0.25 / 30.93 ms │     no change │
│ QQuery 4  │     480.96 / 487.60 ±3.97 / 493.20 ms │     567.74 / 571.26 ±3.24 / 576.35 ms │  1.17x slower │
│ QQuery 5  │        51.47 / 52.18 ±0.60 / 53.26 ms │        54.42 / 55.07 ±0.45 / 55.65 ms │  1.06x slower │
│ QQuery 6  │        35.98 / 36.46 ±0.27 / 36.78 ms │        39.46 / 40.19 ±0.44 / 40.72 ms │  1.10x slower │
│ QQuery 7  │        75.16 / 75.48 ±0.26 / 75.78 ms │        78.81 / 80.34 ±1.70 / 83.52 ms │  1.06x slower │
│ QQuery 8  │        36.94 / 39.57 ±3.75 / 46.97 ms │        38.07 / 38.62 ±0.32 / 38.97 ms │     no change │
│ QQuery 9  │        53.73 / 55.58 ±1.55 / 58.06 ms │        53.71 / 56.26 ±2.89 / 61.63 ms │     no change │
│ QQuery 10 │        65.01 / 65.66 ±0.61 / 66.58 ms │        65.42 / 67.08 ±2.15 / 71.31 ms │     no change │
│ QQuery 11 │    297.85 / 327.25 ±28.12 / 370.14 ms │    301.34 / 312.03 ±14.59 / 340.92 ms │     no change │
│ QQuery 12 │        29.31 / 29.76 ±0.29 / 30.22 ms │        28.55 / 29.27 ±0.49 / 29.91 ms │     no change │
│ QQuery 13 │     118.87 / 120.83 ±1.79 / 123.73 ms │     117.44 / 119.63 ±2.89 / 125.24 ms │     no change │
│ QQuery 14 │     411.59 / 415.34 ±3.57 / 421.98 ms │     411.19 / 415.94 ±2.72 / 418.77 ms │     no change │
│ QQuery 15 │        56.46 / 57.65 ±0.87 / 59.14 ms │        56.98 / 57.68 ±0.59 / 58.61 ms │     no change │
│ QQuery 16 │           6.67 / 6.82 ±0.20 / 7.21 ms │           6.76 / 6.95 ±0.27 / 7.49 ms │     no change │
│ QQuery 17 │        78.77 / 79.77 ±0.78 / 81.07 ms │        79.03 / 85.15 ±4.89 / 93.39 ms │  1.07x slower │
│ QQuery 18 │     103.62 / 105.10 ±1.82 / 108.60 ms │     105.71 / 110.69 ±2.50 / 112.17 ms │  1.05x slower │
│ QQuery 19 │        40.49 / 41.05 ±0.46 / 41.70 ms │        41.02 / 41.43 ±0.39 / 42.15 ms │     no change │
│ QQuery 20 │        35.07 / 35.27 ±0.19 / 35.60 ms │        35.36 / 36.36 ±0.78 / 37.68 ms │     no change │
│ QQuery 21 │        17.23 / 17.56 ±0.23 / 17.80 ms │        17.24 / 17.43 ±0.23 / 17.84 ms │     no change │
│ QQuery 22 │        62.34 / 64.16 ±1.26 / 66.28 ms │        62.45 / 63.08 ±0.79 / 64.64 ms │     no change │
│ QQuery 23 │     304.79 / 307.07 ±1.56 / 309.39 ms │     308.78 / 310.47 ±1.34 / 311.88 ms │     no change │
│ QQuery 24 │     195.33 / 198.27 ±3.72 / 205.45 ms │     191.17 / 198.22 ±7.11 / 211.37 ms │     no change │
│ QQuery 25 │     107.82 / 110.19 ±1.63 / 112.50 ms │     114.09 / 115.62 ±1.65 / 118.75 ms │     no change │
│ QQuery 26 │        48.37 / 48.93 ±0.46 / 49.48 ms │        51.49 / 52.22 ±0.47 / 52.84 ms │  1.07x slower │
│ QQuery 27 │           6.07 / 6.24 ±0.20 / 6.61 ms │           6.69 / 6.81 ±0.14 / 7.06 ms │  1.09x slower │
│ QQuery 28 │        55.47 / 58.36 ±2.18 / 60.48 ms │        58.49 / 63.82 ±4.48 / 72.12 ms │  1.09x slower │
│ QQuery 29 │        95.13 / 95.92 ±0.44 / 96.36 ms │       98.01 / 99.58 ±0.89 / 100.64 ms │     no change │
│ QQuery 30 │        31.29 / 31.73 ±0.27 / 32.07 ms │        33.84 / 34.14 ±0.18 / 34.30 ms │  1.08x slower │
│ QQuery 31 │     108.73 / 113.82 ±3.78 / 118.31 ms │     109.82 / 112.28 ±2.00 / 115.17 ms │     no change │
│ QQuery 32 │        21.68 / 22.62 ±1.39 / 25.37 ms │        19.86 / 20.36 ±0.31 / 20.71 ms │ +1.11x faster │
│ QQuery 33 │        39.63 / 40.06 ±0.33 / 40.54 ms │        37.16 / 37.94 ±0.77 / 39.42 ms │ +1.06x faster │
│ QQuery 34 │        10.87 / 11.06 ±0.29 / 11.62 ms │         9.84 / 10.17 ±0.25 / 10.47 ms │ +1.09x faster │
│ QQuery 35 │        80.37 / 81.81 ±1.26 / 83.97 ms │        72.53 / 75.03 ±2.65 / 80.07 ms │ +1.09x faster │
│ QQuery 36 │           6.39 / 6.59 ±0.14 / 6.75 ms │           5.69 / 5.80 ±0.16 / 6.12 ms │ +1.14x faster │
│ QQuery 37 │           7.38 / 7.52 ±0.09 / 7.65 ms │           6.67 / 6.92 ±0.24 / 7.23 ms │ +1.09x faster │
│ QQuery 38 │        60.69 / 64.36 ±2.84 / 67.96 ms │        61.19 / 61.43 ±0.21 / 61.70 ms │     no change │
│ QQuery 39 │        87.87 / 92.46 ±3.68 / 95.87 ms │        88.56 / 89.71 ±0.67 / 90.55 ms │     no change │
│ QQuery 40 │        23.73 / 23.99 ±0.18 / 24.30 ms │        23.56 / 24.93 ±1.84 / 28.56 ms │     no change │
│ QQuery 41 │        10.99 / 12.04 ±1.91 / 15.86 ms │        11.05 / 11.18 ±0.18 / 11.52 ms │ +1.08x faster │
│ QQuery 42 │        23.18 / 23.77 ±0.44 / 24.30 ms │        23.31 / 24.23 ±0.74 / 25.24 ms │     no change │
│ QQuery 43 │           5.08 / 5.20 ±0.19 / 5.58 ms │           5.11 / 5.24 ±0.17 / 5.59 ms │     no change │
│ QQuery 44 │           9.07 / 9.17 ±0.07 / 9.27 ms │           9.18 / 9.31 ±0.14 / 9.56 ms │     no change │
│ QQuery 45 │        36.35 / 38.05 ±1.53 / 40.83 ms │        37.09 / 37.93 ±0.44 / 38.27 ms │     no change │
│ QQuery 46 │        12.04 / 12.37 ±0.30 / 12.92 ms │        11.80 / 12.02 ±0.22 / 12.41 ms │     no change │
│ QQuery 47 │     224.09 / 226.03 ±1.64 / 228.44 ms │     227.39 / 228.65 ±1.41 / 231.23 ms │     no change │
│ QQuery 48 │       95.35 / 96.78 ±2.28 / 101.33 ms │        95.04 / 96.78 ±1.39 / 98.65 ms │     no change │
│ QQuery 49 │        71.03 / 71.63 ±0.40 / 72.25 ms │        70.96 / 71.62 ±0.79 / 73.11 ms │     no change │
│ QQuery 50 │        58.30 / 59.20 ±0.77 / 60.49 ms │        58.42 / 58.96 ±0.35 / 59.48 ms │     no change │
│ QQuery 51 │        92.00 / 93.72 ±1.43 / 95.76 ms │        92.11 / 93.99 ±1.21 / 95.53 ms │     no change │
│ QQuery 52 │        23.96 / 24.35 ±0.47 / 24.94 ms │        23.85 / 24.25 ±0.41 / 25.02 ms │     no change │
│ QQuery 53 │        29.11 / 29.54 ±0.39 / 30.23 ms │        29.15 / 29.23 ±0.05 / 29.31 ms │     no change │
│ QQuery 54 │        53.75 / 54.46 ±1.00 / 56.44 ms │        53.78 / 54.16 ±0.29 / 54.66 ms │     no change │
│ QQuery 55 │        22.89 / 23.28 ±0.28 / 23.61 ms │        23.05 / 23.27 ±0.20 / 23.60 ms │     no change │
│ QQuery 56 │        38.52 / 39.56 ±1.64 / 42.81 ms │        38.27 / 38.95 ±0.76 / 40.10 ms │     no change │
│ QQuery 57 │     173.60 / 174.95 ±1.08 / 176.47 ms │     173.34 / 174.41 ±1.45 / 177.27 ms │     no change │
│ QQuery 58 │     110.53 / 112.56 ±1.24 / 113.93 ms │     110.36 / 111.71 ±1.99 / 115.66 ms │     no change │
│ QQuery 59 │     116.67 / 118.24 ±1.80 / 121.75 ms │     117.70 / 118.75 ±0.70 / 119.77 ms │     no change │
│ QQuery 60 │        39.36 / 39.78 ±0.42 / 40.53 ms │        38.76 / 39.54 ±0.45 / 40.04 ms │     no change │
│ QQuery 61 │        11.78 / 11.95 ±0.15 / 12.24 ms │        12.17 / 12.30 ±0.16 / 12.62 ms │     no change │
│ QQuery 62 │        45.11 / 45.51 ±0.35 / 45.96 ms │        45.75 / 46.19 ±0.22 / 46.39 ms │     no change │
│ QQuery 63 │        28.92 / 29.14 ±0.16 / 29.33 ms │        28.83 / 29.32 ±0.40 / 30.00 ms │     no change │
│ QQuery 64 │     364.65 / 367.59 ±2.37 / 371.51 ms │    360.34 / 372.93 ±13.23 / 391.07 ms │     no change │
│ QQuery 65 │     121.73 / 125.36 ±2.15 / 127.22 ms │     131.01 / 134.79 ±3.55 / 140.63 ms │  1.08x slower │
│ QQuery 66 │        79.71 / 81.59 ±2.30 / 86.01 ms │        80.49 / 83.16 ±1.95 / 85.19 ms │     no change │
│ QQuery 67 │     237.29 / 241.67 ±2.37 / 244.27 ms │     242.12 / 243.19 ±1.19 / 244.92 ms │     no change │
│ QQuery 68 │        11.86 / 12.01 ±0.12 / 12.21 ms │        11.79 / 11.93 ±0.18 / 12.29 ms │     no change │
│ QQuery 69 │        56.65 / 59.31 ±4.19 / 67.66 ms │        56.87 / 57.42 ±0.43 / 58.17 ms │     no change │
│ QQuery 70 │     105.44 / 109.38 ±3.24 / 114.24 ms │     106.74 / 110.48 ±3.84 / 117.18 ms │     no change │
│ QQuery 71 │        34.66 / 35.28 ±0.53 / 35.88 ms │        34.99 / 36.13 ±1.41 / 38.75 ms │     no change │
│ QQuery 72 │ 1814.65 / 1923.76 ±93.95 / 2076.49 ms │ 1729.95 / 1819.57 ±71.16 / 1891.11 ms │ +1.06x faster │
│ QQuery 73 │         9.81 / 10.17 ±0.47 / 11.00 ms │         9.54 / 10.14 ±0.37 / 10.61 ms │     no change │
│ QQuery 74 │     167.39 / 170.45 ±3.46 / 177.19 ms │     168.33 / 170.03 ±1.45 / 172.31 ms │     no change │
│ QQuery 75 │     145.35 / 146.15 ±1.13 / 148.35 ms │     144.70 / 147.54 ±3.46 / 154.31 ms │     no change │
│ QQuery 76 │        34.85 / 36.12 ±2.29 / 40.69 ms │        34.69 / 36.05 ±1.85 / 39.69 ms │     no change │
│ QQuery 77 │        60.75 / 61.49 ±0.60 / 62.56 ms │        61.26 / 63.43 ±2.75 / 68.76 ms │     no change │
│ QQuery 78 │     214.76 / 219.32 ±2.84 / 222.56 ms │    219.74 / 238.99 ±14.20 / 258.88 ms │  1.09x slower │
│ QQuery 79 │        65.99 / 66.17 ±0.16 / 66.43 ms │        71.02 / 71.72 ±0.39 / 72.21 ms │  1.08x slower │
│ QQuery 80 │      97.42 / 101.23 ±5.38 / 111.89 ms │     106.60 / 107.76 ±1.31 / 110.24 ms │  1.06x slower │
│ QQuery 81 │        25.16 / 25.55 ±0.30 / 26.01 ms │        25.77 / 27.28 ±1.25 / 29.05 ms │  1.07x slower │
│ QQuery 82 │        16.00 / 16.29 ±0.19 / 16.52 ms │        15.88 / 16.61 ±0.98 / 18.53 ms │     no change │
│ QQuery 83 │        33.30 / 33.53 ±0.23 / 33.90 ms │        33.32 / 33.76 ±0.45 / 34.57 ms │     no change │
│ QQuery 84 │        29.05 / 31.13 ±3.81 / 38.74 ms │        29.25 / 29.37 ±0.12 / 29.58 ms │ +1.06x faster │
│ QQuery 85 │     102.02 / 104.93 ±3.58 / 111.97 ms │     101.90 / 104.16 ±2.38 / 108.66 ms │     no change │
│ QQuery 86 │        25.11 / 25.38 ±0.31 / 25.97 ms │        25.00 / 25.41 ±0.23 / 25.65 ms │     no change │
│ QQuery 87 │        61.97 / 62.62 ±0.44 / 63.28 ms │        61.00 / 61.62 ±0.49 / 62.39 ms │     no change │
│ QQuery 88 │        63.40 / 65.15 ±2.25 / 69.59 ms │        63.67 / 65.01 ±1.61 / 68.16 ms │     no change │
│ QQuery 89 │        35.72 / 36.15 ±0.32 / 36.56 ms │        35.36 / 36.10 ±0.73 / 37.25 ms │     no change │
│ QQuery 90 │        17.14 / 17.31 ±0.13 / 17.55 ms │        16.86 / 17.02 ±0.18 / 17.36 ms │     no change │
│ QQuery 91 │        44.36 / 44.91 ±0.42 / 45.43 ms │        44.96 / 45.24 ±0.19 / 45.53 ms │     no change │
│ QQuery 92 │        29.17 / 29.55 ±0.31 / 30.04 ms │        28.14 / 28.42 ±0.28 / 28.93 ms │     no change │
│ QQuery 93 │        49.49 / 51.25 ±2.44 / 55.97 ms │        48.69 / 49.94 ±1.00 / 51.14 ms │     no change │
│ QQuery 94 │        38.12 / 38.95 ±0.96 / 40.73 ms │        37.79 / 39.12 ±1.61 / 42.27 ms │     no change │
│ QQuery 95 │        78.69 / 79.91 ±0.64 / 80.42 ms │        78.35 / 80.00 ±1.04 / 81.33 ms │     no change │
│ QQuery 96 │        23.85 / 24.03 ±0.16 / 24.31 ms │        23.43 / 23.67 ±0.26 / 24.16 ms │     no change │
│ QQuery 97 │        51.73 / 53.41 ±1.50 / 55.61 ms │        51.89 / 52.90 ±1.50 / 55.88 ms │     no change │
│ QQuery 98 │        42.53 / 43.49 ±0.76 / 44.87 ms │        42.65 / 43.39 ±0.88 / 45.03 ms │     no change │
│ QQuery 99 │        69.79 / 71.15 ±1.37 / 72.96 ms │        70.02 / 70.30 ±0.29 / 70.76 ms │     no change │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┓
┃ Benchmark Summary                                    ┃           ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━┩
│ Total Time (HEAD)                                    │ 9526.07ms │
│ Total Time (rich-T-kid_introduce-rle-parquet-flag)   │ 9568.26ms │
│ Average Time (HEAD)                                  │   96.22ms │
│ Average Time (rich-T-kid_introduce-rle-parquet-flag) │   96.65ms │
│ Queries Faster                                       │         9 │
│ Queries Slower                                       │        15 │
│ Queries with No Change                               │        75 │
│ Queries with Failure                                 │         0 │
└──────────────────────────────────────────────────────┴───────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 50.0s
Peak memory 2.0 GiB
Avg memory 1.4 GiB
CPU user 205.9s
CPU sys 5.2s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 50.0s
Peak memory 2.2 GiB
Avg memory 1.5 GiB
CPU user 203.4s
CPU sys 5.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)

Comparing rich-T-kid/introduce-rle-parquet-flag (35dd8d8) to 26b40dd (merge-base) diff

Run configuration
run benchmark clickbench_partitioned
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 rich-T-kid_introduce-rle-parquet-flag
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃       HEAD ┃ rich-T-kid_introduce-rle-parquet-flag ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │    1.21 ms │                               1.20 ms │     no change │
│ QQuery 1  │   11.54 ms │                              11.95 ms │     no change │
│ QQuery 2  │   35.69 ms │                              36.38 ms │     no change │
│ QQuery 3  │   30.76 ms │                              31.11 ms │     no change │
│ QQuery 4  │  222.36 ms │                             223.84 ms │     no change │
│ QQuery 5  │  270.71 ms │                             272.10 ms │     no change │
│ QQuery 6  │    1.24 ms │                               1.25 ms │     no change │
│ QQuery 7  │   13.03 ms │                              13.13 ms │     no change │
│ QQuery 8  │  326.37 ms │                             325.71 ms │     no change │
│ QQuery 9  │  456.11 ms │                             456.91 ms │     no change │
│ QQuery 10 │   70.85 ms │                              70.92 ms │     no change │
│ QQuery 11 │   82.07 ms │                              81.60 ms │     no change │
│ QQuery 12 │  265.78 ms │                             267.45 ms │     no change │
│ QQuery 13 │  364.36 ms │                             373.98 ms │     no change │
│ QQuery 14 │  284.46 ms │                             283.18 ms │     no change │
│ QQuery 15 │  270.99 ms │                             274.76 ms │     no change │
│ QQuery 16 │  611.87 ms │                             613.28 ms │     no change │
│ QQuery 17 │  616.74 ms │                             613.62 ms │     no change │
│ QQuery 18 │ 1250.11 ms │                            1297.89 ms │     no change │
│ QQuery 19 │   27.49 ms │                              27.27 ms │     no change │
│ QQuery 20 │  517.16 ms │                             516.10 ms │     no change │
│ QQuery 21 │  519.43 ms │                             514.84 ms │     no change │
│ QQuery 22 │  989.84 ms │                             991.20 ms │     no change │
│ QQuery 23 │ 3055.04 ms │                            3100.77 ms │     no change │
│ QQuery 24 │   41.21 ms │                              41.27 ms │     no change │
│ QQuery 25 │  110.81 ms │                             111.01 ms │     no change │
│ QQuery 26 │   42.42 ms │                              42.43 ms │     no change │
│ QQuery 27 │  513.08 ms │                             514.18 ms │     no change │
│ QQuery 28 │ 2874.53 ms │                            2898.77 ms │     no change │
│ QQuery 29 │   40.56 ms │                              40.49 ms │     no change │
│ QQuery 30 │  302.15 ms │                             298.37 ms │     no change │
│ QQuery 31 │  275.55 ms │                             279.35 ms │     no change │
│ QQuery 32 │  945.40 ms │                             957.83 ms │     no change │
│ QQuery 33 │ 1495.10 ms │                            1443.54 ms │     no change │
│ QQuery 34 │ 1499.45 ms │                            1474.46 ms │     no change │
│ QQuery 35 │  281.06 ms │                             283.12 ms │     no change │
│ QQuery 36 │   68.73 ms │                              66.47 ms │     no change │
│ QQuery 37 │   35.25 ms │                              36.21 ms │     no change │
│ QQuery 38 │   41.79 ms │                              41.89 ms │     no change │
│ QQuery 39 │  155.44 ms │                             145.66 ms │ +1.07x faster │
│ QQuery 40 │   14.83 ms │                              14.10 ms │     no change │
│ QQuery 41 │   13.95 ms │                              13.72 ms │     no change │
│ QQuery 42 │   13.50 ms │                              13.01 ms │     no change │
└───────────┴────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                                    ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                                    │ 19060.03ms │
│ Total Time (rich-T-kid_introduce-rle-parquet-flag)   │ 19116.34ms │
│ Average Time (HEAD)                                  │   443.26ms │
│ Average Time (rich-T-kid_introduce-rle-parquet-flag) │   444.57ms │
│ Queries Faster                                       │          1 │
│ Queries Slower                                       │          0 │
│ Queries with No Change                               │         42 │
│ Queries with Failure                                 │          0 │
└──────────────────────────────────────────────────────┴────────────┘

Distribution per query (min / mean ±stddev / max):

Comparing HEAD and rich-T-kid_introduce-rle-parquet-flag
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃ rich-T-kid_introduce-rle-parquet-flag ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.21 / 3.90 ±5.32 / 14.54 ms │          1.20 / 4.02 ±5.50 / 15.02 ms │     no change │
│ QQuery 1  │        11.54 / 11.94 ±0.32 / 12.52 ms │        11.95 / 12.31 ±0.31 / 12.84 ms │     no change │
│ QQuery 2  │        35.69 / 35.98 ±0.29 / 36.45 ms │        36.38 / 36.62 ±0.20 / 36.96 ms │     no change │
│ QQuery 3  │        30.76 / 31.64 ±0.74 / 32.56 ms │        31.11 / 31.69 ±0.94 / 33.57 ms │     no change │
│ QQuery 4  │     222.36 / 224.18 ±1.25 / 225.62 ms │     223.84 / 227.42 ±3.66 / 234.02 ms │     no change │
│ QQuery 5  │     270.71 / 273.92 ±1.85 / 275.55 ms │     272.10 / 274.67 ±2.33 / 278.65 ms │     no change │
│ QQuery 6  │           1.24 / 1.39 ±0.21 / 1.81 ms │           1.25 / 1.39 ±0.22 / 1.82 ms │     no change │
│ QQuery 7  │        13.03 / 13.10 ±0.07 / 13.22 ms │        13.13 / 13.27 ±0.11 / 13.47 ms │     no change │
│ QQuery 8  │     326.37 / 330.10 ±3.84 / 335.59 ms │     325.71 / 331.21 ±2.96 / 334.15 ms │     no change │
│ QQuery 9  │     456.11 / 461.00 ±4.11 / 466.79 ms │     456.91 / 462.54 ±4.14 / 468.72 ms │     no change │
│ QQuery 10 │        70.85 / 75.35 ±8.02 / 91.35 ms │        70.92 / 71.60 ±0.49 / 72.32 ms │     no change │
│ QQuery 11 │        82.07 / 85.08 ±5.27 / 95.59 ms │        81.60 / 82.08 ±0.63 / 83.32 ms │     no change │
│ QQuery 12 │     265.78 / 271.47 ±3.72 / 276.46 ms │     267.45 / 272.57 ±3.51 / 276.54 ms │     no change │
│ QQuery 13 │    364.36 / 378.92 ±11.00 / 396.80 ms │    373.98 / 390.62 ±20.56 / 429.80 ms │     no change │
│ QQuery 14 │     284.46 / 289.15 ±3.83 / 294.95 ms │     283.18 / 287.79 ±3.12 / 293.00 ms │     no change │
│ QQuery 15 │     270.99 / 277.02 ±5.93 / 287.39 ms │     274.76 / 281.82 ±5.36 / 291.08 ms │     no change │
│ QQuery 16 │     611.87 / 622.33 ±8.03 / 631.91 ms │    613.28 / 630.84 ±11.76 / 644.76 ms │     no change │
│ QQuery 17 │    616.74 / 632.88 ±25.21 / 682.85 ms │    613.62 / 629.88 ±11.51 / 646.66 ms │     no change │
│ QQuery 18 │ 1250.11 / 1291.84 ±45.45 / 1380.14 ms │ 1297.89 / 1317.19 ±11.30 / 1329.61 ms │     no change │
│ QQuery 19 │        27.49 / 31.18 ±6.64 / 44.44 ms │       27.27 / 40.90 ±17.48 / 70.38 ms │  1.31x slower │
│ QQuery 20 │    517.16 / 526.88 ±11.16 / 547.43 ms │    516.10 / 530.44 ±12.17 / 548.28 ms │     no change │
│ QQuery 21 │     519.43 / 522.37 ±1.97 / 525.53 ms │     514.84 / 529.62 ±9.34 / 539.51 ms │     no change │
│ QQuery 22 │    989.84 / 997.35 ±8.44 / 1013.22 ms │    991.20 / 999.53 ±7.23 / 1009.38 ms │     no change │
│ QQuery 23 │ 3055.04 / 3100.92 ±36.47 / 3153.10 ms │ 3100.77 / 3144.67 ±39.44 / 3191.26 ms │     no change │
│ QQuery 24 │        41.21 / 43.77 ±4.35 / 52.44 ms │        41.27 / 43.14 ±2.07 / 46.25 ms │     no change │
│ QQuery 25 │     110.81 / 114.95 ±4.68 / 121.06 ms │     111.01 / 113.84 ±5.47 / 124.78 ms │     no change │
│ QQuery 26 │        42.42 / 43.91 ±1.69 / 46.96 ms │        42.43 / 45.06 ±2.31 / 48.03 ms │     no change │
│ QQuery 27 │     513.08 / 516.87 ±3.66 / 523.87 ms │     514.18 / 516.58 ±1.66 / 518.41 ms │     no change │
│ QQuery 28 │ 2874.53 / 2902.31 ±19.95 / 2926.27 ms │  2898.77 / 2908.61 ±7.73 / 2920.44 ms │     no change │
│ QQuery 29 │       40.56 / 59.69 ±22.96 / 91.94 ms │        40.49 / 41.71 ±1.81 / 45.29 ms │ +1.43x faster │
│ QQuery 30 │     302.15 / 307.54 ±3.66 / 313.34 ms │     298.37 / 311.93 ±9.79 / 327.33 ms │     no change │
│ QQuery 31 │     275.55 / 288.07 ±7.12 / 296.75 ms │    279.35 / 297.22 ±13.65 / 321.61 ms │     no change │
│ QQuery 32 │    945.40 / 965.74 ±15.55 / 988.43 ms │     957.83 / 963.68 ±7.74 / 977.84 ms │     no change │
│ QQuery 33 │ 1495.10 / 1516.01 ±17.58 / 1542.07 ms │ 1443.54 / 1468.45 ±15.68 / 1487.63 ms │     no change │
│ QQuery 34 │ 1499.45 / 1529.09 ±25.93 / 1574.14 ms │  1474.46 / 1487.91 ±8.75 / 1500.56 ms │     no change │
│ QQuery 35 │    281.06 / 316.76 ±48.81 / 411.89 ms │    283.12 / 322.01 ±54.60 / 428.37 ms │     no change │
│ QQuery 36 │        68.73 / 72.95 ±3.55 / 77.90 ms │        66.47 / 73.43 ±6.41 / 85.40 ms │     no change │
│ QQuery 37 │       35.25 / 44.95 ±14.02 / 71.87 ms │        36.21 / 38.27 ±1.05 / 39.03 ms │ +1.17x faster │
│ QQuery 38 │        41.79 / 43.89 ±1.49 / 46.46 ms │        41.89 / 45.62 ±4.00 / 53.33 ms │     no change │
│ QQuery 39 │     155.44 / 163.33 ±7.69 / 175.33 ms │     145.66 / 150.82 ±5.83 / 161.97 ms │ +1.08x faster │
│ QQuery 40 │        14.83 / 15.26 ±0.41 / 16.03 ms │        14.10 / 15.16 ±1.97 / 19.11 ms │     no change │
│ QQuery 41 │        13.95 / 14.26 ±0.30 / 14.80 ms │        13.72 / 13.93 ±0.17 / 14.18 ms │     no change │
│ QQuery 42 │        13.50 / 13.65 ±0.10 / 13.78 ms │        13.01 / 15.63 ±4.76 / 25.14 ms │  1.15x slower │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                                    ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                                    │ 19462.87ms │
│ Total Time (rich-T-kid_introduce-rle-parquet-flag)   │ 19477.69ms │
│ Average Time (HEAD)                                  │   452.62ms │
│ Average Time (rich-T-kid_introduce-rle-parquet-flag) │   452.97ms │
│ Queries Faster                                       │          3 │
│ Queries Slower                                       │          2 │
│ Queries with No Change                               │         38 │
│ Queries with Failure                                 │          0 │
└──────────────────────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 100.0s
Peak memory 11.0 GiB
Avg memory 4.2 GiB
CPU user 993.5s
CPU sys 71.4s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 100.0s
Peak memory 12.9 GiB
Avg memory 4.8 GiB
CPU user 991.7s
CPU sys 72.3s
Peak spill 0 B

File an issue against this benchmark runner

@Rich-T-kid
Rich-T-kid force-pushed the rich-T-kid/introduce-rle-parquet-flag branch from 35dd8d8 to 28458b7 Compare August 26, 2026 04:43
Comment thread datafusion/datasource-parquet/src/schema_coercion.rs Outdated
Comment thread datafusion/datasource-parquet/src/schema_coercion.rs
Comment thread datafusion/datasource-parquet/src/file_format.rs
Comment thread datafusion/datasource-parquet/src/file_format.rs Outdated
@Rich-T-kid
Rich-T-kid force-pushed the rich-T-kid/introduce-rle-parquet-flag branch from 3690c2d to d0003c9 Compare August 31, 2026 18:50
@Rich-T-kid
Rich-T-kid force-pushed the rich-T-kid/introduce-rle-parquet-flag branch from d0003c9 to 6b75dcf Compare August 31, 2026 18:57
@Rich-T-kid

Copy link
Copy Markdown
Contributor Author

thank you for the review @kumarUjjawal, I implemented all of you suggestions in 6b75dcf. everything related to the per-column allowlist has been removed

…ssion in schema coercion

- Drop rle_column_allowlist from ParquetFormat and DFParquetMetadata: no callers
  existed and new public API is hard to remove post-release
- Remove Dictionary arm from transform_schema_to_view and transform_binary_to_string:
  those arms fired unconditionally regardless of enable_rle_to_dictionary, causing
  pre-existing dict columns to get wrong value types when the flag was off
- Remove the unit test that covered the now-deleted transform_binary_to_string dict arm
- Drop Utf8View/BinaryView arms added to common_dictionary_value_type: the parquet
  reader never produces view types in the physical file schema so they were dead code
- Clean up parquet_rle_to_dictionary.slt: remove redundant SET and spurious RESET
@Rich-T-kid
Rich-T-kid force-pushed the rich-T-kid/introduce-rle-parquet-flag branch from 6b75dcf to b7c4ea7 Compare August 31, 2026 19:23
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.

Allow users to enable dictionary column reads from parquet files

5 participants