Skip to content

perf: optimize varbinview construction#8146

Open
joseph-isaacs wants to merge 6 commits into
developfrom
claude/avx512-decode-benchmark-wRhkZ
Open

perf: optimize varbinview construction#8146
joseph-isaacs wants to merge 6 commits into
developfrom
claude/avx512-decode-benchmark-wRhkZ

Conversation

@joseph-isaacs
Copy link
Copy Markdown
Contributor

@joseph-isaacs joseph-isaacs commented May 29, 2026

Summary

Opptimizes the hot path for constructing binary views when the entire decoded heap fits within a single buffer.

Changes

Optimized view construction (vortex-array/src/arrays/varbinview/build_views.rs):

  • Fast path for the common case where the entire decoded heap fits in a single buffer
  • Eliminates per-element rollover checks and out-of-line BinaryView::make_view calls in the hot loop
  • Constructs reference views inline for long strings (>4 bytes) and inlined views for short strings
  • Reduces branch mispredictions and improves cache locality during view construction

@joseph-isaacs joseph-isaacs added changelog/performance A performance improvement action/benchmark Trigger full benchmarks to run on this PR labels May 29, 2026
@github-actions github-actions Bot removed the action/benchmark Trigger full benchmarks to run on this PR label May 29, 2026
build_views is the hot loop that turns a decoded string heap plus
per-element lengths into VarBinView views. It is shared by FSST, VarBin,
zstd and dict canonicalization. The previous implementation checked for a
2 GiB buffer rollover on every element and called the out-of-line
(#[inline(never)]) BinaryView::make_view per element.

Add a fast path for the common case where the whole decoded heap fits in a
single buffer (bytes.len() <= max_buffer_len, which bounds every offset).
In that path there can be no rollover, so the loop drops the per-element
rollover branch and builds the reference-view variant inline, avoiding the
make_view call for long (>12 byte) values. Output is byte-for-byte
identical to the previous code; the multi-buffer path is unchanged.

Signed-off-by: Joe Isaacs <joe.isaacs@live.co.uk>
@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented May 29, 2026

Polar Signals Profiling Results

Latest Run

Status Commit Job Attempt Link
🟢 Done 2042c37 2 Explore Profiling Data
Previous Runs (1)
Status Commit Job Attempt Link
🟢 Done 2042c37 1 Explore Profiling Data

Powered by Polar Signals Cloud

@github-actions
Copy link
Copy Markdown
Contributor

Benchmarks: PolarSignals Profiling

Vortex (geomean): 0.999x ➖

How to read Verdict and Engines
  • Verdict: Overall PR-level signal after subtracting baseline drift estimated from Parquet control rows. It can be Likely improvement, Likely regression, or No clear signal.
  • Engines: Per-engine attribution. DataFusion is compared against DataFusion/Parquet controls; DuckDB is compared against DuckDB/Parquet controls. This answers whether each engine improved or regressed independently.
  • Confidence: Based on directional consistency, share of rows above the noise floor, and control-run noise.

datafusion / vortex-file-compressed (0.999x ➖, 1↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
polarsignals_q00/datafusion:vortex-file-compressed 116160144 116119216 1.00
polarsignals_q01/datafusion:vortex-file-compressed 🚀 245133301 280294282 0.87
polarsignals_q02/datafusion:vortex-file-compressed 22364003 22286967 1.00
polarsignals_q03/datafusion:vortex-file-compressed 269364572 265876497 1.01
polarsignals_q04/datafusion:vortex-file-compressed 11064468 11013731 1.00
polarsignals_q05/datafusion:vortex-file-compressed 14906089 14791527 1.01
polarsignals_q06/datafusion:vortex-file-compressed 17971591 17717360 1.01
polarsignals_q07/datafusion:vortex-file-compressed 13092948 12657228 1.03
polarsignals_q08/datafusion:vortex-file-compressed 400409160 378978871 1.06
polarsignals_q09/datafusion:vortex-file-compressed 10488446 10525330 1.00

File Size Changes (545 files changed, -98.9% overall, 0↑ 545↓)
File Scale Format Base HEAD Change %
addressview.vortex 1.0 vortex-compact 24.53 MB 0 B 24.53 MB -100.0%
categoryview.vortex 1.0 vortex-compact 19.86 KB 0 B 19.86 KB -100.0%
creditcardview.vortex 1.0 vortex-compact 32.23 MB 0 B 32.23 MB -100.0%
customerview.vortex 1.0 vortex-compact 10.60 MB 0 B 10.60 MB -100.0%
duckdb.db 1.0 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
orderitemnovelty_update.vortex 1.0 vortex-compact 13.14 KB 0 B 13.14 KB -100.0%
orderitemview.vortex 1.0 vortex-compact 156.30 MB 0 B 156.30 MB -100.0%
orderview.vortex 1.0 vortex-compact 32.16 MB 0 B 32.16 MB -100.0%
productview.vortex 1.0 vortex-compact 18.77 KB 0 B 18.77 KB -100.0%
taxrecordview.vortex 1.0 vortex-compact 17.34 MB 0 B 17.34 MB -100.0%
addressview.vortex 1.0 vortex-file-compressed 34.71 MB 0 B 34.71 MB -100.0%
categoryview.vortex 1.0 vortex-file-compressed 20.74 KB 0 B 20.74 KB -100.0%
creditcardview.vortex 1.0 vortex-file-compressed 66.75 MB 0 B 66.75 MB -100.0%
customerview.vortex 1.0 vortex-file-compressed 19.91 MB 0 B 19.91 MB -100.0%
duckdb.db 1.0 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
orderitemnovelty_update.vortex 1.0 vortex-file-compressed 13.14 KB 0 B 13.14 KB -100.0%
orderitemview.vortex 1.0 vortex-file-compressed 297.21 MB 0 B 297.21 MB -100.0%
orderview.vortex 1.0 vortex-file-compressed 88.79 MB 0 B 88.79 MB -100.0%
productview.vortex 1.0 vortex-file-compressed 20.44 KB 0 B 20.44 KB -100.0%
taxrecordview.vortex 1.0 vortex-file-compressed 22.01 MB 0 B 22.01 MB -100.0%
duckdb.db 1.0 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
hits_0.vortex 1.0 vortex-compact 58.66 MB 0 B 58.66 MB -100.0%
hits_1.vortex 1.0 vortex-compact 90.34 MB 0 B 90.34 MB -100.0%
hits_10.vortex 1.0 vortex-compact 48.86 MB 0 B 48.86 MB -100.0%
hits_11.vortex 1.0 vortex-compact 54.35 MB 0 B 54.35 MB -100.0%
hits_12.vortex 1.0 vortex-compact 69.27 MB 0 B 69.27 MB -100.0%
hits_13.vortex 1.0 vortex-compact 67.96 MB 0 B 67.96 MB -100.0%
hits_14.vortex 1.0 vortex-compact 73.75 MB 0 B 73.75 MB -100.0%
hits_15.vortex 1.0 vortex-compact 48.14 MB 0 B 48.14 MB -100.0%
hits_16.vortex 1.0 vortex-compact 48.30 MB 0 B 48.30 MB -100.0%
hits_17.vortex 1.0 vortex-compact 58.32 MB 0 B 58.32 MB -100.0%
hits_18.vortex 1.0 vortex-compact 64.28 MB 0 B 64.28 MB -100.0%
hits_19.vortex 1.0 vortex-compact 44.88 MB 0 B 44.88 MB -100.0%
hits_2.vortex 1.0 vortex-compact 129.36 MB 0 B 129.36 MB -100.0%
hits_20.vortex 1.0 vortex-compact 38.14 MB 0 B 38.14 MB -100.0%
hits_21.vortex 1.0 vortex-compact 51.60 MB 0 B 51.60 MB -100.0%
hits_22.vortex 1.0 vortex-compact 44.74 MB 0 B 44.74 MB -100.0%
hits_23.vortex 1.0 vortex-compact 44.17 MB 0 B 44.17 MB -100.0%
hits_24.vortex 1.0 vortex-compact 43.63 MB 0 B 43.63 MB -100.0%
hits_25.vortex 1.0 vortex-compact 73.14 MB 0 B 73.14 MB -100.0%
hits_26.vortex 1.0 vortex-compact 70.89 MB 0 B 70.89 MB -100.0%
hits_27.vortex 1.0 vortex-compact 69.88 MB 0 B 69.88 MB -100.0%
hits_28.vortex 1.0 vortex-compact 70.27 MB 0 B 70.27 MB -100.0%
hits_29.vortex 1.0 vortex-compact 36.61 MB 0 B 36.61 MB -100.0%
hits_3.vortex 1.0 vortex-compact 94.23 MB 0 B 94.23 MB -100.0%
hits_30.vortex 1.0 vortex-compact 58.69 MB 0 B 58.69 MB -100.0%
hits_31.vortex 1.0 vortex-compact 55.56 MB 0 B 55.56 MB -100.0%
hits_32.vortex 1.0 vortex-compact 44.13 MB 0 B 44.13 MB -100.0%
hits_33.vortex 1.0 vortex-compact 35.95 MB 0 B 35.95 MB -100.0%
hits_34.vortex 1.0 vortex-compact 58.26 MB 0 B 58.26 MB -100.0%
hits_35.vortex 1.0 vortex-compact 75.11 MB 0 B 75.11 MB -100.0%
hits_36.vortex 1.0 vortex-compact 48.99 MB 0 B 48.99 MB -100.0%
hits_37.vortex 1.0 vortex-compact 53.83 MB 0 B 53.83 MB -100.0%
hits_38.vortex 1.0 vortex-compact 63.10 MB 0 B 63.10 MB -100.0%
hits_39.vortex 1.0 vortex-compact 49.82 MB 0 B 49.82 MB -100.0%
hits_4.vortex 1.0 vortex-compact 71.81 MB 0 B 71.81 MB -100.0%
hits_40.vortex 1.0 vortex-compact 75.92 MB 0 B 75.92 MB -100.0%
hits_41.vortex 1.0 vortex-compact 165.78 MB 0 B 165.78 MB -100.0%
hits_42.vortex 1.0 vortex-compact 164.22 MB 0 B 164.22 MB -100.0%
hits_43.vortex 1.0 vortex-compact 168.91 MB 0 B 168.91 MB -100.0%
hits_44.vortex 1.0 vortex-compact 132.46 MB 0 B 132.46 MB -100.0%
hits_45.vortex 1.0 vortex-compact 76.07 MB 0 B 76.07 MB -100.0%
hits_46.vortex 1.0 vortex-compact 41.92 MB 0 B 41.92 MB -100.0%
hits_47.vortex 1.0 vortex-compact 18.25 MB 0 B 18.25 MB -100.0%
hits_48.vortex 1.0 vortex-compact 17.32 MB 0 B 17.32 MB -100.0%
hits_49.vortex 1.0 vortex-compact 50.53 MB 0 B 50.53 MB -100.0%
hits_5.vortex 1.0 vortex-compact 62.90 MB 0 B 62.90 MB -100.0%
hits_50.vortex 1.0 vortex-compact 113.12 MB 0 B 113.12 MB -100.0%
hits_51.vortex 1.0 vortex-compact 167.81 MB 0 B 167.81 MB -100.0%
hits_52.vortex 1.0 vortex-compact 63.73 MB 0 B 63.73 MB -100.0%
hits_53.vortex 1.0 vortex-compact 59.09 MB 0 B 59.09 MB -100.0%
hits_54.vortex 1.0 vortex-compact 117.66 MB 0 B 117.66 MB -100.0%
hits_55.vortex 1.0 vortex-compact 93.77 MB 0 B 93.77 MB -100.0%
hits_56.vortex 1.0 vortex-compact 77.87 MB 0 B 77.87 MB -100.0%
hits_57.vortex 1.0 vortex-compact 83.54 MB 0 B 83.54 MB -100.0%
hits_58.vortex 1.0 vortex-compact 60.41 MB 0 B 60.41 MB -100.0%
hits_59.vortex 1.0 vortex-compact 66.30 MB 0 B 66.30 MB -100.0%
hits_6.vortex 1.0 vortex-compact 63.16 MB 0 B 63.16 MB -100.0%
hits_60.vortex 1.0 vortex-compact 64.33 MB 0 B 64.33 MB -100.0%
hits_61.vortex 1.0 vortex-compact 57.66 MB 0 B 57.66 MB -100.0%
hits_62.vortex 1.0 vortex-compact 74.26 MB 0 B 74.26 MB -100.0%
hits_63.vortex 1.0 vortex-compact 46.10 MB 0 B 46.10 MB -100.0%
hits_64.vortex 1.0 vortex-compact 53.91 MB 0 B 53.91 MB -100.0%
hits_65.vortex 1.0 vortex-compact 129.95 MB 0 B 129.95 MB -100.0%
hits_66.vortex 1.0 vortex-compact 53.49 MB 0 B 53.49 MB -100.0%
hits_67.vortex 1.0 vortex-compact 114.05 MB 0 B 114.05 MB -100.0%
hits_68.vortex 1.0 vortex-compact 75.99 MB 0 B 75.99 MB -100.0%
hits_69.vortex 1.0 vortex-compact 81.02 MB 0 B 81.02 MB -100.0%
hits_7.vortex 1.0 vortex-compact 63.80 MB 0 B 63.80 MB -100.0%
hits_70.vortex 1.0 vortex-compact 61.29 MB 0 B 61.29 MB -100.0%
hits_71.vortex 1.0 vortex-compact 69.29 MB 0 B 69.29 MB -100.0%
hits_72.vortex 1.0 vortex-compact 51.79 MB 0 B 51.79 MB -100.0%
hits_73.vortex 1.0 vortex-compact 70.04 MB 0 B 70.04 MB -100.0%
hits_74.vortex 1.0 vortex-compact 71.62 MB 0 B 71.62 MB -100.0%
hits_75.vortex 1.0 vortex-compact 43.63 MB 0 B 43.63 MB -100.0%
hits_76.vortex 1.0 vortex-compact 76.44 MB 0 B 76.44 MB -100.0%
hits_77.vortex 1.0 vortex-compact 118.11 MB 0 B 118.11 MB -100.0%
hits_78.vortex 1.0 vortex-compact 97.87 MB 0 B 97.87 MB -100.0%
hits_79.vortex 1.0 vortex-compact 85.70 MB 0 B 85.70 MB -100.0%
hits_8.vortex 1.0 vortex-compact 62.89 MB 0 B 62.89 MB -100.0%
hits_80.vortex 1.0 vortex-compact 68.07 MB 0 B 68.07 MB -100.0%
hits_81.vortex 1.0 vortex-compact 65.45 MB 0 B 65.45 MB -100.0%
hits_82.vortex 1.0 vortex-compact 66.89 MB 0 B 66.89 MB -100.0%
hits_83.vortex 1.0 vortex-compact 52.57 MB 0 B 52.57 MB -100.0%
hits_84.vortex 1.0 vortex-compact 73.14 MB 0 B 73.14 MB -100.0%
hits_85.vortex 1.0 vortex-compact 52.73 MB 0 B 52.73 MB -100.0%
hits_86.vortex 1.0 vortex-compact 48.25 MB 0 B 48.25 MB -100.0%
hits_87.vortex 1.0 vortex-compact 119.04 MB 0 B 119.04 MB -100.0%
hits_88.vortex 1.0 vortex-compact 73.31 MB 0 B 73.31 MB -100.0%
hits_89.vortex 1.0 vortex-compact 112.82 MB 0 B 112.82 MB -100.0%
hits_9.vortex 1.0 vortex-compact 65.67 MB 0 B 65.67 MB -100.0%
hits_90.vortex 1.0 vortex-compact 81.86 MB 0 B 81.86 MB -100.0%
hits_91.vortex 1.0 vortex-compact 60.94 MB 0 B 60.94 MB -100.0%
hits_92.vortex 1.0 vortex-compact 94.27 MB 0 B 94.27 MB -100.0%
hits_93.vortex 1.0 vortex-compact 58.90 MB 0 B 58.90 MB -100.0%
hits_94.vortex 1.0 vortex-compact 90.63 MB 0 B 90.63 MB -100.0%
hits_95.vortex 1.0 vortex-compact 57.75 MB 0 B 57.75 MB -100.0%
hits_96.vortex 1.0 vortex-compact 91.08 MB 0 B 91.08 MB -100.0%
hits_97.vortex 1.0 vortex-compact 69.16 MB 0 B 69.16 MB -100.0%
hits_98.vortex 1.0 vortex-compact 72.77 MB 0 B 72.77 MB -100.0%
hits_99.vortex 1.0 vortex-compact 77.31 MB 0 B 77.31 MB -100.0%
duckdb.db 1.0 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
hits_0.vortex 1.0 vortex-file-compressed 112.17 MB 0 B 112.17 MB -100.0%
hits_1.vortex 1.0 vortex-file-compressed 181.16 MB 0 B 181.16 MB -100.0%
hits_10.vortex 1.0 vortex-file-compressed 81.76 MB 0 B 81.76 MB -100.0%
hits_11.vortex 1.0 vortex-file-compressed 96.07 MB 0 B 96.07 MB -100.0%
hits_12.vortex 1.0 vortex-file-compressed 125.34 MB 0 B 125.34 MB -100.0%
hits_13.vortex 1.0 vortex-file-compressed 123.20 MB 0 B 123.20 MB -100.0%
hits_14.vortex 1.0 vortex-file-compressed 135.14 MB 0 B 135.14 MB -100.0%
hits_15.vortex 1.0 vortex-file-compressed 97.01 MB 0 B 97.01 MB -100.0%
hits_16.vortex 1.0 vortex-file-compressed 87.59 MB 0 B 87.59 MB -100.0%
hits_17.vortex 1.0 vortex-file-compressed 103.64 MB 0 B 103.64 MB -100.0%
hits_18.vortex 1.0 vortex-file-compressed 126.06 MB 0 B 126.06 MB -100.0%
hits_19.vortex 1.0 vortex-file-compressed 82.10 MB 0 B 82.10 MB -100.0%
hits_2.vortex 1.0 vortex-file-compressed 241.46 MB 0 B 241.46 MB -100.0%
hits_20.vortex 1.0 vortex-file-compressed 67.53 MB 0 B 67.53 MB -100.0%
hits_21.vortex 1.0 vortex-file-compressed 101.28 MB 0 B 101.28 MB -100.0%
hits_22.vortex 1.0 vortex-file-compressed 81.17 MB 0 B 81.17 MB -100.0%
hits_23.vortex 1.0 vortex-file-compressed 80.37 MB 0 B 80.37 MB -100.0%
hits_24.vortex 1.0 vortex-file-compressed 79.71 MB 0 B 79.71 MB -100.0%
hits_25.vortex 1.0 vortex-file-compressed 137.01 MB 0 B 137.01 MB -100.0%
hits_26.vortex 1.0 vortex-file-compressed 144.05 MB 0 B 144.05 MB -100.0%
hits_27.vortex 1.0 vortex-file-compressed 174.61 MB 0 B 174.61 MB -100.0%
hits_28.vortex 1.0 vortex-file-compressed 167.55 MB 0 B 167.55 MB -100.0%
hits_29.vortex 1.0 vortex-file-compressed 65.47 MB 0 B 65.47 MB -100.0%
hits_3.vortex 1.0 vortex-file-compressed 193.11 MB 0 B 193.11 MB -100.0%
hits_30.vortex 1.0 vortex-file-compressed 104.00 MB 0 B 104.00 MB -100.0%
hits_31.vortex 1.0 vortex-file-compressed 104.39 MB 0 B 104.39 MB -100.0%
hits_32.vortex 1.0 vortex-file-compressed 77.12 MB 0 B 77.12 MB -100.0%
hits_33.vortex 1.0 vortex-file-compressed 62.97 MB 0 B 62.97 MB -100.0%
hits_34.vortex 1.0 vortex-file-compressed 111.68 MB 0 B 111.68 MB -100.0%
hits_35.vortex 1.0 vortex-file-compressed 138.81 MB 0 B 138.81 MB -100.0%
hits_36.vortex 1.0 vortex-file-compressed 80.27 MB 0 B 80.27 MB -100.0%
hits_37.vortex 1.0 vortex-file-compressed 97.54 MB 0 B 97.54 MB -100.0%
hits_38.vortex 1.0 vortex-file-compressed 118.43 MB 0 B 118.43 MB -100.0%
hits_39.vortex 1.0 vortex-file-compressed 94.06 MB 0 B 94.06 MB -100.0%
hits_4.vortex 1.0 vortex-file-compressed 138.86 MB 0 B 138.86 MB -100.0%
hits_40.vortex 1.0 vortex-file-compressed 142.99 MB 0 B 142.99 MB -100.0%
hits_41.vortex 1.0 vortex-file-compressed 300.49 MB 0 B 300.49 MB -100.0%
hits_42.vortex 1.0 vortex-file-compressed 298.79 MB 0 B 298.79 MB -100.0%
hits_43.vortex 1.0 vortex-file-compressed 305.71 MB 0 B 305.71 MB -100.0%
hits_44.vortex 1.0 vortex-file-compressed 243.64 MB 0 B 243.64 MB -100.0%
hits_45.vortex 1.0 vortex-file-compressed 145.48 MB 0 B 145.48 MB -100.0%
hits_46.vortex 1.0 vortex-file-compressed 80.32 MB 0 B 80.32 MB -100.0%
hits_47.vortex 1.0 vortex-file-compressed 41.86 MB 0 B 41.86 MB -100.0%
hits_48.vortex 1.0 vortex-file-compressed 28.53 MB 0 B 28.53 MB -100.0%
hits_49.vortex 1.0 vortex-file-compressed 88.67 MB 0 B 88.67 MB -100.0%
hits_5.vortex 1.0 vortex-file-compressed 122.64 MB 0 B 122.64 MB -100.0%
hits_50.vortex 1.0 vortex-file-compressed 255.24 MB 0 B 255.24 MB -100.0%
hits_51.vortex 1.0 vortex-file-compressed 428.84 MB 0 B 428.84 MB -100.0%
hits_52.vortex 1.0 vortex-file-compressed 120.78 MB 0 B 120.78 MB -100.0%
hits_53.vortex 1.0 vortex-file-compressed 98.26 MB 0 B 98.26 MB -100.0%
hits_54.vortex 1.0 vortex-file-compressed 361.83 MB 0 B 361.83 MB -100.0%
hits_55.vortex 1.0 vortex-file-compressed 251.56 MB 0 B 251.56 MB -100.0%
hits_56.vortex 1.0 vortex-file-compressed 163.76 MB 0 B 163.76 MB -100.0%
hits_57.vortex 1.0 vortex-file-compressed 158.37 MB 0 B 158.37 MB -100.0%
hits_58.vortex 1.0 vortex-file-compressed 113.78 MB 0 B 113.78 MB -100.0%
hits_59.vortex 1.0 vortex-file-compressed 121.84 MB 0 B 121.84 MB -100.0%
hits_6.vortex 1.0 vortex-file-compressed 122.86 MB 0 B 122.86 MB -100.0%
hits_60.vortex 1.0 vortex-file-compressed 121.19 MB 0 B 121.19 MB -100.0%
hits_61.vortex 1.0 vortex-file-compressed 114.43 MB 0 B 114.43 MB -100.0%
hits_62.vortex 1.0 vortex-file-compressed 148.36 MB 0 B 148.36 MB -100.0%
hits_63.vortex 1.0 vortex-file-compressed 80.62 MB 0 B 80.62 MB -100.0%
hits_64.vortex 1.0 vortex-file-compressed 95.27 MB 0 B 95.27 MB -100.0%
hits_65.vortex 1.0 vortex-file-compressed 238.05 MB 0 B 238.05 MB -100.0%
hits_66.vortex 1.0 vortex-file-compressed 105.34 MB 0 B 105.34 MB -100.0%
hits_67.vortex 1.0 vortex-file-compressed 265.94 MB 0 B 265.94 MB -100.0%
hits_68.vortex 1.0 vortex-file-compressed 172.16 MB 0 B 172.16 MB -100.0%
hits_69.vortex 1.0 vortex-file-compressed 147.61 MB 0 B 147.61 MB -100.0%
hits_7.vortex 1.0 vortex-file-compressed 123.82 MB 0 B 123.82 MB -100.0%
hits_70.vortex 1.0 vortex-file-compressed 115.14 MB 0 B 115.14 MB -100.0%
hits_71.vortex 1.0 vortex-file-compressed 126.41 MB 0 B 126.41 MB -100.0%
hits_72.vortex 1.0 vortex-file-compressed 96.27 MB 0 B 96.27 MB -100.0%
hits_73.vortex 1.0 vortex-file-compressed 131.83 MB 0 B 131.83 MB -100.0%
hits_74.vortex 1.0 vortex-file-compressed 152.12 MB 0 B 152.12 MB -100.0%
hits_75.vortex 1.0 vortex-file-compressed 74.18 MB 0 B 74.18 MB -100.0%
hits_76.vortex 1.0 vortex-file-compressed 140.05 MB 0 B 140.05 MB -100.0%
hits_77.vortex 1.0 vortex-file-compressed 218.96 MB 0 B 218.96 MB -100.0%
hits_78.vortex 1.0 vortex-file-compressed 238.59 MB 0 B 238.59 MB -100.0%
hits_79.vortex 1.0 vortex-file-compressed 204.16 MB 0 B 204.16 MB -100.0%
hits_8.vortex 1.0 vortex-file-compressed 122.86 MB 0 B 122.86 MB -100.0%
hits_80.vortex 1.0 vortex-file-compressed 124.24 MB 0 B 124.24 MB -100.0%
hits_81.vortex 1.0 vortex-file-compressed 126.55 MB 0 B 126.55 MB -100.0%
hits_82.vortex 1.0 vortex-file-compressed 122.77 MB 0 B 122.77 MB -100.0%
hits_83.vortex 1.0 vortex-file-compressed 103.72 MB 0 B 103.72 MB -100.0%
hits_84.vortex 1.0 vortex-file-compressed 145.05 MB 0 B 145.05 MB -100.0%
hits_85.vortex 1.0 vortex-file-compressed 106.37 MB 0 B 106.37 MB -100.0%
hits_86.vortex 1.0 vortex-file-compressed 81.40 MB 0 B 81.40 MB -100.0%
hits_87.vortex 1.0 vortex-file-compressed 221.68 MB 0 B 221.68 MB -100.0%
hits_88.vortex 1.0 vortex-file-compressed 137.34 MB 0 B 137.34 MB -100.0%
hits_89.vortex 1.0 vortex-file-compressed 266.01 MB 0 B 266.01 MB -100.0%
hits_9.vortex 1.0 vortex-file-compressed 124.22 MB 0 B 124.22 MB -100.0%
hits_90.vortex 1.0 vortex-file-compressed 204.12 MB 0 B 204.12 MB -100.0%
hits_91.vortex 1.0 vortex-file-compressed 116.23 MB 0 B 116.23 MB -100.0%
hits_92.vortex 1.0 vortex-file-compressed 196.47 MB 0 B 196.47 MB -100.0%
hits_93.vortex 1.0 vortex-file-compressed 107.66 MB 0 B 107.66 MB -100.0%
hits_94.vortex 1.0 vortex-file-compressed 185.12 MB 0 B 185.12 MB -100.0%
hits_95.vortex 1.0 vortex-file-compressed 114.33 MB 0 B 114.33 MB -100.0%
hits_96.vortex 1.0 vortex-file-compressed 180.76 MB 0 B 180.76 MB -100.0%
hits_97.vortex 1.0 vortex-file-compressed 130.96 MB 0 B 130.96 MB -100.0%
hits_98.vortex 1.0 vortex-file-compressed 150.55 MB 0 B 150.55 MB -100.0%
hits_99.vortex 1.0 vortex-file-compressed 158.88 MB 0 B 158.88 MB -100.0%
duckdb.db 1.0 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
sample.vortex 1.0 vortex-compact 1.23 GB 0 B 1.23 GB -100.0%
duckdb.db 1.0 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
sample.vortex 1.0 vortex-file-compressed 1.79 GB 0 B 1.79 GB -100.0%
duckdb.db 100000 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
gnomad.genomes.v3.1.2.hgdp_tgp.chr21.vortex 100000 vortex-compact 959.35 MB 0 B 959.35 MB -100.0%
duckdb.db 100000 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
gnomad.genomes.v3.1.2.hgdp_tgp.chr21.vortex 100000 vortex-file-compressed 1.97 GB 0 B 1.97 GB -100.0%
call_center.vortex 1.0 vortex-compact 50.14 KB 0 B 50.14 KB -100.0%
catalog_page.vortex 1.0 vortex-compact 362.67 KB 0 B 362.67 KB -100.0%
catalog_returns.vortex 1.0 vortex-compact 6.02 MB 0 B 6.02 MB -100.0%
catalog_sales.vortex 1.0 vortex-compact 59.31 MB 0 B 59.31 MB -100.0%
customer.vortex 1.0 vortex-compact 3.29 MB 0 B 3.29 MB -100.0%
customer_address.vortex 1.0 vortex-compact 558.62 KB 0 B 558.62 KB -100.0%
customer_demographics.vortex 1.0 vortex-compact 649.61 KB 0 B 649.61 KB -100.0%
date_dim.vortex 1.0 vortex-compact 154.00 KB 0 B 154.00 KB -100.0%
duckdb.db 1.0 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
household_demographics.vortex 1.0 vortex-compact 10.79 KB 0 B 10.79 KB -100.0%
income_band.vortex 1.0 vortex-compact 5.98 KB 0 B 5.98 KB -100.0%
inventory.vortex 1.0 vortex-compact 16.07 MB 0 B 16.07 MB -100.0%
item.vortex 1.0 vortex-compact 994.21 KB 0 B 994.21 KB -100.0%
promotion.vortex 1.0 vortex-compact 51.51 KB 0 B 51.51 KB -100.0%
reason.vortex 1.0 vortex-compact 5.97 KB 0 B 5.97 KB -100.0%
ship_mode.vortex 1.0 vortex-compact 10.95 KB 0 B 10.95 KB -100.0%
store.vortex 1.0 vortex-compact 45.76 KB 0 B 45.76 KB -100.0%
store_returns.vortex 1.0 vortex-compact 9.31 MB 0 B 9.31 MB -100.0%
store_sales.vortex 1.0 vortex-compact 77.87 MB 0 B 77.87 MB -100.0%
time_dim.vortex 1.0 vortex-compact 97.35 KB 0 B 97.35 KB -100.0%
warehouse.vortex 1.0 vortex-compact 22.23 KB 0 B 22.23 KB -100.0%
web_page.vortex 1.0 vortex-compact 27.84 KB 0 B 27.84 KB -100.0%
web_returns.vortex 1.0 vortex-compact 2.99 MB 0 B 2.99 MB -100.0%
web_sales.vortex 1.0 vortex-compact 29.35 MB 0 B 29.35 MB -100.0%
web_site.vortex 1.0 vortex-compact 45.31 KB 0 B 45.31 KB -100.0%
call_center.vortex 1.0 vortex-file-compressed 54.94 KB 0 B 54.94 KB -100.0%
catalog_page.vortex 1.0 vortex-file-compressed 611.57 KB 0 B 611.57 KB -100.0%
catalog_returns.vortex 1.0 vortex-file-compressed 7.43 MB 0 B 7.43 MB -100.0%
catalog_sales.vortex 1.0 vortex-file-compressed 70.78 MB 0 B 70.78 MB -100.0%
customer.vortex 1.0 vortex-file-compressed 4.52 MB 0 B 4.52 MB -100.0%
customer_address.vortex 1.0 vortex-file-compressed 1012.96 KB 0 B 1012.96 KB -100.0%
customer_demographics.vortex 1.0 vortex-file-compressed 1.49 MB 0 B 1.49 MB -100.0%
date_dim.vortex 1.0 vortex-file-compressed 1.03 MB 0 B 1.03 MB -100.0%
duckdb.db 1.0 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
household_demographics.vortex 1.0 vortex-file-compressed 17.05 KB 0 B 17.05 KB -100.0%
income_band.vortex 1.0 vortex-file-compressed 6.19 KB 0 B 6.19 KB -100.0%
inventory.vortex 1.0 vortex-file-compressed 36.64 MB 0 B 36.64 MB -100.0%
item.vortex 1.0 vortex-file-compressed 1.75 MB 0 B 1.75 MB -100.0%
promotion.vortex 1.0 vortex-file-compressed 60.19 KB 0 B 60.19 KB -100.0%
reason.vortex 1.0 vortex-file-compressed 7.23 KB 0 B 7.23 KB -100.0%
ship_mode.vortex 1.0 vortex-file-compressed 13.12 KB 0 B 13.12 KB -100.0%
store.vortex 1.0 vortex-file-compressed 49.49 KB 0 B 49.49 KB -100.0%
store_returns.vortex 1.0 vortex-file-compressed 11.39 MB 0 B 11.39 MB -100.0%
store_sales.vortex 1.0 vortex-file-compressed 97.04 MB 0 B 97.04 MB -100.0%
time_dim.vortex 1.0 vortex-file-compressed 687.30 KB 0 B 687.30 KB -100.0%
warehouse.vortex 1.0 vortex-file-compressed 23.83 KB 0 B 23.83 KB -100.0%
web_page.vortex 1.0 vortex-file-compressed 31.92 KB 0 B 31.92 KB -100.0%
web_returns.vortex 1.0 vortex-file-compressed 3.55 MB 0 B 3.55 MB -100.0%
web_sales.vortex 1.0 vortex-file-compressed 34.27 MB 0 B 34.27 MB -100.0%
web_site.vortex 1.0 vortex-file-compressed 54.08 KB 0 B 54.08 KB -100.0%
customer_0.vortex 1.0 vortex-compact 7.43 MB 0 B 7.43 MB -100.0%
duckdb.db 1.0 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
lineitem_0.vortex 1.0 vortex-compact 63.00 MB 0 B 63.00 MB -100.0%
lineitem_1.vortex 1.0 vortex-compact 63.03 MB 0 B 63.03 MB -100.0%
nation_0.vortex 1.0 vortex-compact 8.34 KB 0 B 8.34 KB -100.0%
orders_0.vortex 1.0 vortex-compact 31.73 MB 0 B 31.73 MB -100.0%
part_0.vortex 1.0 vortex-compact 3.64 MB 0 B 3.64 MB -100.0%
partsupp_0.vortex 1.0 vortex-compact 25.23 MB 0 B 25.23 MB -100.0%
region_0.vortex 1.0 vortex-compact 5.86 KB 0 B 5.86 KB -100.0%
supplier_0.vortex 1.0 vortex-compact 496.72 KB 0 B 496.72 KB -100.0%
customer_0.vortex 1.0 vortex-file-compressed 10.50 MB 0 B 10.50 MB -100.0%
duckdb.db 1.0 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
lineitem_0.vortex 1.0 vortex-file-compressed 85.42 MB 0 B 85.42 MB -100.0%
lineitem_1.vortex 1.0 vortex-file-compressed 84.90 MB 0 B 84.90 MB -100.0%
nation_0.vortex 1.0 vortex-file-compressed 11.00 KB 0 B 11.00 KB -100.0%
orders_0.vortex 1.0 vortex-file-compressed 43.43 MB 0 B 43.43 MB -100.0%
part_0.vortex 1.0 vortex-file-compressed 5.44 MB 0 B 5.44 MB -100.0%
partsupp_0.vortex 1.0 vortex-file-compressed 35.94 MB 0 B 35.94 MB -100.0%
region_0.vortex 1.0 vortex-file-compressed 6.16 KB 0 B 6.16 KB -100.0%
supplier_0.vortex 1.0 vortex-file-compressed 706.34 KB 0 B 706.34 KB -100.0%
customer_0.vortex 10.0 vortex-compact 74.12 MB 0 B 74.12 MB -100.0%
duckdb.db 10.0 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
lineitem_0.vortex 10.0 vortex-compact 100.59 MB 0 B 100.59 MB -100.0%
lineitem_1.vortex 10.0 vortex-compact 100.64 MB 0 B 100.64 MB -100.0%
lineitem_10.vortex 10.0 vortex-compact 100.62 MB 0 B 100.62 MB -100.0%
lineitem_11.vortex 10.0 vortex-compact 100.53 MB 0 B 100.53 MB -100.0%
lineitem_12.vortex 10.0 vortex-compact 100.62 MB 0 B 100.62 MB -100.0%
lineitem_2.vortex 10.0 vortex-compact 100.59 MB 0 B 100.59 MB -100.0%
lineitem_3.vortex 10.0 vortex-compact 100.62 MB 0 B 100.62 MB -100.0%
lineitem_4.vortex 10.0 vortex-compact 100.56 MB 0 B 100.56 MB -100.0%
lineitem_5.vortex 10.0 vortex-compact 100.70 MB 0 B 100.70 MB -100.0%
lineitem_6.vortex 10.0 vortex-compact 100.68 MB 0 B 100.68 MB -100.0%
lineitem_7.vortex 10.0 vortex-compact 100.58 MB 0 B 100.58 MB -100.0%
lineitem_8.vortex 10.0 vortex-compact 100.59 MB 0 B 100.59 MB -100.0%
lineitem_9.vortex 10.0 vortex-compact 100.46 MB 0 B 100.46 MB -100.0%
nation_0.vortex 10.0 vortex-compact 8.34 KB 0 B 8.34 KB -100.0%
orders_0.vortex 10.0 vortex-compact 114.79 MB 0 B 114.79 MB -100.0%
orders_1.vortex 10.0 vortex-compact 114.76 MB 0 B 114.76 MB -100.0%
orders_2.vortex 10.0 vortex-compact 114.78 MB 0 B 114.78 MB -100.0%
part_0.vortex 10.0 vortex-compact 18.11 MB 0 B 18.11 MB -100.0%
part_1.vortex 10.0 vortex-compact 18.11 MB 0 B 18.11 MB -100.0%
partsupp_0.vortex 10.0 vortex-compact 126.76 MB 0 B 126.76 MB -100.0%
partsupp_1.vortex 10.0 vortex-compact 126.74 MB 0 B 126.74 MB -100.0%
region_0.vortex 10.0 vortex-compact 5.86 KB 0 B 5.86 KB -100.0%
supplier_0.vortex 10.0 vortex-compact 4.73 MB 0 B 4.73 MB -100.0%
customer_0.vortex 10.0 vortex-file-compressed 104.73 MB 0 B 104.73 MB -100.0%
duckdb.db 10.0 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
lineitem_0.vortex 10.0 vortex-file-compressed 134.65 MB 0 B 134.65 MB -100.0%
lineitem_1.vortex 10.0 vortex-file-compressed 134.27 MB 0 B 134.27 MB -100.0%
lineitem_10.vortex 10.0 vortex-file-compressed 134.51 MB 0 B 134.51 MB -100.0%
lineitem_11.vortex 10.0 vortex-file-compressed 134.87 MB 0 B 134.87 MB -100.0%
lineitem_12.vortex 10.0 vortex-file-compressed 134.52 MB 0 B 134.52 MB -100.0%
lineitem_2.vortex 10.0 vortex-file-compressed 134.38 MB 0 B 134.38 MB -100.0%
lineitem_3.vortex 10.0 vortex-file-compressed 133.74 MB 0 B 133.74 MB -100.0%
lineitem_4.vortex 10.0 vortex-file-compressed 134.43 MB 0 B 134.43 MB -100.0%
lineitem_5.vortex 10.0 vortex-file-compressed 133.86 MB 0 B 133.86 MB -100.0%
lineitem_6.vortex 10.0 vortex-file-compressed 133.23 MB 0 B 133.23 MB -100.0%
lineitem_7.vortex 10.0 vortex-file-compressed 134.01 MB 0 B 134.01 MB -100.0%
lineitem_8.vortex 10.0 vortex-file-compressed 134.06 MB 0 B 134.06 MB -100.0%
lineitem_9.vortex 10.0 vortex-file-compressed 134.65 MB 0 B 134.65 MB -100.0%
nation_0.vortex 10.0 vortex-file-compressed 11.00 KB 0 B 11.00 KB -100.0%
orders_0.vortex 10.0 vortex-file-compressed 163.92 MB 0 B 163.92 MB -100.0%
orders_1.vortex 10.0 vortex-file-compressed 164.15 MB 0 B 164.15 MB -100.0%
orders_2.vortex 10.0 vortex-file-compressed 164.00 MB 0 B 164.00 MB -100.0%
part_0.vortex 10.0 vortex-file-compressed 27.02 MB 0 B 27.02 MB -100.0%
part_1.vortex 10.0 vortex-file-compressed 26.99 MB 0 B 26.99 MB -100.0%
partsupp_0.vortex 10.0 vortex-file-compressed 180.47 MB 0 B 180.47 MB -100.0%
partsupp_1.vortex 10.0 vortex-file-compressed 180.65 MB 0 B 180.65 MB -100.0%
region_0.vortex 10.0 vortex-file-compressed 6.16 KB 0 B 6.16 KB -100.0%
supplier_0.vortex 10.0 vortex-file-compressed 6.69 MB 0 B 6.69 MB -100.0%
customer_0.vortex 100 vortex-file-compressed 261.80 MB 0 B 261.80 MB -100.0%
customer_1.vortex 100 vortex-file-compressed 261.77 MB 0 B 261.77 MB -100.0%
customer_2.vortex 100 vortex-file-compressed 261.69 MB 0 B 261.69 MB -100.0%
customer_3.vortex 100 vortex-file-compressed 261.80 MB 0 B 261.80 MB -100.0%
duckdb.db 100 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
lineitem_0.vortex 100 vortex-file-compressed 148.68 MB 0 B 148.68 MB -100.0%
lineitem_1.vortex 100 vortex-file-compressed 148.56 MB 0 B 148.56 MB -100.0%
lineitem_10.vortex 100 vortex-file-compressed 148.35 MB 0 B 148.35 MB -100.0%
lineitem_100.vortex 100 vortex-file-compressed 148.11 MB 0 B 148.11 MB -100.0%
lineitem_101.vortex 100 vortex-file-compressed 148.35 MB 0 B 148.35 MB -100.0%
lineitem_102.vortex 100 vortex-file-compressed 148.14 MB 0 B 148.14 MB -100.0%
lineitem_103.vortex 100 vortex-file-compressed 148.37 MB 0 B 148.37 MB -100.0%
lineitem_104.vortex 100 vortex-file-compressed 148.59 MB 0 B 148.59 MB -100.0%
lineitem_105.vortex 100 vortex-file-compressed 147.47 MB 0 B 147.47 MB -100.0%
lineitem_106.vortex 100 vortex-file-compressed 148.07 MB 0 B 148.07 MB -100.0%
lineitem_107.vortex 100 vortex-file-compressed 148.04 MB 0 B 148.04 MB -100.0%
lineitem_108.vortex 100 vortex-file-compressed 147.29 MB 0 B 147.29 MB -100.0%
lineitem_109.vortex 100 vortex-file-compressed 148.03 MB 0 B 148.03 MB -100.0%
lineitem_11.vortex 100 vortex-file-compressed 148.62 MB 0 B 148.62 MB -100.0%
lineitem_110.vortex 100 vortex-file-compressed 148.41 MB 0 B 148.41 MB -100.0%
lineitem_111.vortex 100 vortex-file-compressed 147.77 MB 0 B 147.77 MB -100.0%
lineitem_112.vortex 100 vortex-file-compressed 147.42 MB 0 B 147.42 MB -100.0%
lineitem_113.vortex 100 vortex-file-compressed 147.56 MB 0 B 147.56 MB -100.0%
lineitem_114.vortex 100 vortex-file-compressed 147.46 MB 0 B 147.46 MB -100.0%
lineitem_115.vortex 100 vortex-file-compressed 147.64 MB 0 B 147.64 MB -100.0%
lineitem_116.vortex 100 vortex-file-compressed 148.20 MB 0 B 148.20 MB -100.0%
lineitem_117.vortex 100 vortex-file-compressed 148.24 MB 0 B 148.24 MB -100.0%
lineitem_118.vortex 100 vortex-file-compressed 147.83 MB 0 B 147.83 MB -100.0%
lineitem_119.vortex 100 vortex-file-compressed 148.33 MB 0 B 148.33 MB -100.0%
lineitem_12.vortex 100 vortex-file-compressed 148.19 MB 0 B 148.19 MB -100.0%
lineitem_120.vortex 100 vortex-file-compressed 147.10 MB 0 B 147.10 MB -100.0%
lineitem_13.vortex 100 vortex-file-compressed 148.26 MB 0 B 148.26 MB -100.0%
lineitem_14.vortex 100 vortex-file-compressed 147.79 MB 0 B 147.79 MB -100.0%
lineitem_15.vortex 100 vortex-file-compressed 147.63 MB 0 B 147.63 MB -100.0%
lineitem_16.vortex 100 vortex-file-compressed 148.03 MB 0 B 148.03 MB -100.0%
lineitem_17.vortex 100 vortex-file-compressed 148.59 MB 0 B 148.59 MB -100.0%
lineitem_18.vortex 100 vortex-file-compressed 147.55 MB 0 B 147.55 MB -100.0%
lineitem_19.vortex 100 vortex-file-compressed 148.77 MB 0 B 148.77 MB -100.0%
lineitem_2.vortex 100 vortex-file-compressed 148.59 MB 0 B 148.59 MB -100.0%
lineitem_20.vortex 100 vortex-file-compressed 148.78 MB 0 B 148.78 MB -100.0%
lineitem_21.vortex 100 vortex-file-compressed 148.33 MB 0 B 148.33 MB -100.0%
lineitem_22.vortex 100 vortex-file-compressed 147.32 MB 0 B 147.32 MB -100.0%
lineitem_23.vortex 100 vortex-file-compressed 148.19 MB 0 B 148.19 MB -100.0%
lineitem_24.vortex 100 vortex-file-compressed 147.50 MB 0 B 147.50 MB -100.0%
lineitem_25.vortex 100 vortex-file-compressed 148.52 MB 0 B 148.52 MB -100.0%
lineitem_26.vortex 100 vortex-file-compressed 148.11 MB 0 B 148.11 MB -100.0%
lineitem_27.vortex 100 vortex-file-compressed 148.45 MB 0 B 148.45 MB -100.0%
lineitem_28.vortex 100 vortex-file-compressed 148.66 MB 0 B 148.66 MB -100.0%
lineitem_29.vortex 100 vortex-file-compressed 148.75 MB 0 B 148.75 MB -100.0%
lineitem_3.vortex 100 vortex-file-compressed 148.16 MB 0 B 148.16 MB -100.0%
lineitem_30.vortex 100 vortex-file-compressed 147.46 MB 0 B 147.46 MB -100.0%
lineitem_31.vortex 100 vortex-file-compressed 148.50 MB 0 B 148.50 MB -100.0%
lineitem_32.vortex 100 vortex-file-compressed 148.90 MB 0 B 148.90 MB -100.0%
lineitem_33.vortex 100 vortex-file-compressed 147.74 MB 0 B 147.74 MB -100.0%
lineitem_34.vortex 100 vortex-file-compressed 148.93 MB 0 B 148.93 MB -100.0%
lineitem_35.vortex 100 vortex-file-compressed 148.35 MB 0 B 148.35 MB -100.0%
lineitem_36.vortex 100 vortex-file-compressed 147.64 MB 0 B 147.64 MB -100.0%
lineitem_37.vortex 100 vortex-file-compressed 147.47 MB 0 B 147.47 MB -100.0%
lineitem_38.vortex 100 vortex-file-compressed 149.09 MB 0 B 149.09 MB -100.0%
lineitem_39.vortex 100 vortex-file-compressed 147.38 MB 0 B 147.38 MB -100.0%
lineitem_4.vortex 100 vortex-file-compressed 147.27 MB 0 B 147.27 MB -100.0%
lineitem_40.vortex 100 vortex-file-compressed 147.97 MB 0 B 147.97 MB -100.0%
lineitem_41.vortex 100 vortex-file-compressed 146.66 MB 0 B 146.66 MB -100.0%
lineitem_42.vortex 100 vortex-file-compressed 148.38 MB 0 B 148.38 MB -100.0%
lineitem_43.vortex 100 vortex-file-compressed 147.84 MB 0 B 147.84 MB -100.0%
lineitem_44.vortex 100 vortex-file-compressed 147.91 MB 0 B 147.91 MB -100.0%
lineitem_45.vortex 100 vortex-file-compressed 146.88 MB 0 B 146.88 MB -100.0%
lineitem_46.vortex 100 vortex-file-compressed 147.77 MB 0 B 147.77 MB -100.0%
lineitem_47.vortex 100 vortex-file-compressed 148.26 MB 0 B 148.26 MB -100.0%
lineitem_48.vortex 100 vortex-file-compressed 148.23 MB 0 B 148.23 MB -100.0%
lineitem_49.vortex 100 vortex-file-compressed 148.47 MB 0 B 148.47 MB -100.0%
lineitem_5.vortex 100 vortex-file-compressed 148.16 MB 0 B 148.16 MB -100.0%
lineitem_50.vortex 100 vortex-file-compressed 148.88 MB 0 B 148.88 MB -100.0%
lineitem_51.vortex 100 vortex-file-compressed 148.42 MB 0 B 148.42 MB -100.0%
lineitem_52.vortex 100 vortex-file-compressed 146.97 MB 0 B 146.97 MB -100.0%
lineitem_53.vortex 100 vortex-file-compressed 148.23 MB 0 B 148.23 MB -100.0%
lineitem_54.vortex 100 vortex-file-compressed 149.12 MB 0 B 149.12 MB -100.0%
lineitem_55.vortex 100 vortex-file-compressed 148.16 MB 0 B 148.16 MB -100.0%
lineitem_56.vortex 100 vortex-file-compressed 147.73 MB 0 B 147.73 MB -100.0%
lineitem_57.vortex 100 vortex-file-compressed 148.37 MB 0 B 148.37 MB -100.0%
lineitem_58.vortex 100 vortex-file-compressed 148.72 MB 0 B 148.72 MB -100.0%
lineitem_59.vortex 100 vortex-file-compressed 148.42 MB 0 B 148.42 MB -100.0%
lineitem_6.vortex 100 vortex-file-compressed 147.90 MB 0 B 147.90 MB -100.0%
lineitem_60.vortex 100 vortex-file-compressed 148.62 MB 0 B 148.62 MB -100.0%
lineitem_61.vortex 100 vortex-file-compressed 147.73 MB 0 B 147.73 MB -100.0%
lineitem_62.vortex 100 vortex-file-compressed 146.94 MB 0 B 146.94 MB -100.0%
lineitem_63.vortex 100 vortex-file-compressed 148.65 MB 0 B 148.65 MB -100.0%
lineitem_64.vortex 100 vortex-file-compressed 147.72 MB 0 B 147.72 MB -100.0%
lineitem_65.vortex 100 vortex-file-compressed 147.57 MB 0 B 147.57 MB -100.0%
lineitem_66.vortex 100 vortex-file-compressed 148.09 MB 0 B 148.09 MB -100.0%
lineitem_67.vortex 100 vortex-file-compressed 148.84 MB 0 B 148.84 MB -100.0%
lineitem_68.vortex 100 vortex-file-compressed 148.03 MB 0 B 148.03 MB -100.0%
lineitem_69.vortex 100 vortex-file-compressed 148.10 MB 0 B 148.10 MB -100.0%
lineitem_7.vortex 100 vortex-file-compressed 147.86 MB 0 B 147.86 MB -100.0%
lineitem_70.vortex 100 vortex-file-compressed 147.89 MB 0 B 147.89 MB -100.0%
lineitem_71.vortex 100 vortex-file-compressed 147.94 MB 0 B 147.94 MB -100.0%
lineitem_72.vortex 100 vortex-file-compressed 147.99 MB 0 B 147.99 MB -100.0%
lineitem_73.vortex 100 vortex-file-compressed 148.32 MB 0 B 148.32 MB -100.0%
lineitem_74.vortex 100 vortex-file-compressed 147.55 MB 0 B 147.55 MB -100.0%
lineitem_75.vortex 100 vortex-file-compressed 147.88 MB 0 B 147.88 MB -100.0%
lineitem_76.vortex 100 vortex-file-compressed 147.35 MB 0 B 147.35 MB -100.0%
lineitem_77.vortex 100 vortex-file-compressed 148.24 MB 0 B 148.24 MB -100.0%
lineitem_78.vortex 100 vortex-file-compressed 147.35 MB 0 B 147.35 MB -100.0%
lineitem_79.vortex 100 vortex-file-compressed 148.43 MB 0 B 148.43 MB -100.0%
lineitem_8.vortex 100 vortex-file-compressed 148.56 MB 0 B 148.56 MB -100.0%
lineitem_80.vortex 100 vortex-file-compressed 147.55 MB 0 B 147.55 MB -100.0%
lineitem_81.vortex 100 vortex-file-compressed 147.76 MB 0 B 147.76 MB -100.0%
lineitem_82.vortex 100 vortex-file-compressed 148.37 MB 0 B 148.37 MB -100.0%
lineitem_83.vortex 100 vortex-file-compressed 148.68 MB 0 B 148.68 MB -100.0%
lineitem_84.vortex 100 vortex-file-compressed 147.94 MB 0 B 147.94 MB -100.0%
lineitem_85.vortex 100 vortex-file-compressed 147.92 MB 0 B 147.92 MB -100.0%
lineitem_86.vortex 100 vortex-file-compressed 147.62 MB 0 B 147.62 MB -100.0%
lineitem_87.vortex 100 vortex-file-compressed 147.46 MB 0 B 147.46 MB -100.0%
lineitem_88.vortex 100 vortex-file-compressed 148.71 MB 0 B 148.71 MB -100.0%
lineitem_89.vortex 100 vortex-file-compressed 148.03 MB 0 B 148.03 MB -100.0%
lineitem_9.vortex 100 vortex-file-compressed 148.87 MB 0 B 148.87 MB -100.0%
lineitem_90.vortex 100 vortex-file-compressed 147.82 MB 0 B 147.82 MB -100.0%
lineitem_91.vortex 100 vortex-file-compressed 148.27 MB 0 B 148.27 MB -100.0%
lineitem_92.vortex 100 vortex-file-compressed 148.08 MB 0 B 148.08 MB -100.0%
lineitem_93.vortex 100 vortex-file-compressed 147.77 MB 0 B 147.77 MB -100.0%
lineitem_94.vortex 100 vortex-file-compressed 148.40 MB 0 B 148.40 MB -100.0%
lineitem_95.vortex 100 vortex-file-compressed 147.49 MB 0 B 147.49 MB -100.0%
lineitem_96.vortex 100 vortex-file-compressed 148.03 MB 0 B 148.03 MB -100.0%
lineitem_97.vortex 100 vortex-file-compressed 148.10 MB 0 B 148.10 MB -100.0%
lineitem_98.vortex 100 vortex-file-compressed 148.59 MB 0 B 148.59 MB -100.0%
lineitem_99.vortex 100 vortex-file-compressed 147.26 MB 0 B 147.26 MB -100.0%
nation_0.vortex 100 vortex-file-compressed 11.00 KB 0 B 11.00 KB -100.0%
orders_0.vortex 100 vortex-file-compressed 180.00 MB 0 B 180.00 MB -100.0%
orders_1.vortex 100 vortex-file-compressed 179.92 MB 0 B 179.92 MB -100.0%
orders_10.vortex 100 vortex-file-compressed 180.14 MB 0 B 180.14 MB -100.0%
orders_11.vortex 100 vortex-file-compressed 180.08 MB 0 B 180.08 MB -100.0%
orders_12.vortex 100 vortex-file-compressed 180.32 MB 0 B 180.32 MB -100.0%
orders_13.vortex 100 vortex-file-compressed 179.83 MB 0 B 179.83 MB -100.0%
orders_14.vortex 100 vortex-file-compressed 180.18 MB 0 B 180.18 MB -100.0%
orders_15.vortex 100 vortex-file-compressed 180.19 MB 0 B 180.19 MB -100.0%
orders_16.vortex 100 vortex-file-compressed 179.88 MB 0 B 179.88 MB -100.0%
orders_17.vortex 100 vortex-file-compressed 180.01 MB 0 B 180.01 MB -100.0%
orders_18.vortex 100 vortex-file-compressed 180.45 MB 0 B 180.45 MB -100.0%
orders_19.vortex 100 vortex-file-compressed 180.04 MB 0 B 180.04 MB -100.0%
orders_2.vortex 100 vortex-file-compressed 180.35 MB 0 B 180.35 MB -100.0%
orders_20.vortex 100 vortex-file-compressed 179.85 MB 0 B 179.85 MB -100.0%
orders_21.vortex 100 vortex-file-compressed 179.89 MB 0 B 179.89 MB -100.0%
orders_22.vortex 100 vortex-file-compressed 180.04 MB 0 B 180.04 MB -100.0%
orders_23.vortex 100 vortex-file-compressed 179.94 MB 0 B 179.94 MB -100.0%
orders_24.vortex 100 vortex-file-compressed 179.56 MB 0 B 179.56 MB -100.0%
orders_25.vortex 100 vortex-file-compressed 179.82 MB 0 B 179.82 MB -100.0%
orders_26.vortex 100 vortex-file-compressed 179.99 MB 0 B 179.99 MB -100.0%
orders_27.vortex 100 vortex-file-compressed 179.78 MB 0 B 179.78 MB -100.0%
orders_3.vortex 100 vortex-file-compressed 180.12 MB 0 B 180.12 MB -100.0%
orders_4.vortex 100 vortex-file-compressed 180.39 MB 0 B 180.39 MB -100.0%
orders_5.vortex 100 vortex-file-compressed 180.03 MB 0 B 180.03 MB -100.0%
orders_6.vortex 100 vortex-file-compressed 179.80 MB 0 B 179.80 MB -100.0%
orders_7.vortex 100 vortex-file-compressed 180.12 MB 0 B 180.12 MB -100.0%
orders_8.vortex 100 vortex-file-compressed 180.21 MB 0 B 180.21 MB -100.0%
orders_9.vortex 100 vortex-file-compressed 180.11 MB 0 B 180.11 MB -100.0%
part_0.vortex 100 vortex-file-compressed 28.45 MB 0 B 28.45 MB -100.0%
part_1.vortex 100 vortex-file-compressed 28.49 MB 0 B 28.49 MB -100.0%
part_10.vortex 100 vortex-file-compressed 28.43 MB 0 B 28.43 MB -100.0%
part_11.vortex 100 vortex-file-compressed 28.45 MB 0 B 28.45 MB -100.0%
part_12.vortex 100 vortex-file-compressed 28.43 MB 0 B 28.43 MB -100.0%
part_13.vortex 100 vortex-file-compressed 28.44 MB 0 B 28.44 MB -100.0%
part_14.vortex 100 vortex-file-compressed 28.46 MB 0 B 28.46 MB -100.0%
part_15.vortex 100 vortex-file-compressed 28.48 MB 0 B 28.48 MB -100.0%
part_16.vortex 100 vortex-file-compressed 28.42 MB 0 B 28.42 MB -100.0%
part_17.vortex 100 vortex-file-compressed 28.41 MB 0 B 28.41 MB -100.0%
part_18.vortex 100 vortex-file-compressed 28.51 MB 0 B 28.51 MB -100.0%
part_2.vortex 100 vortex-file-compressed 28.46 MB 0 B 28.46 MB -100.0%
part_3.vortex 100 vortex-file-compressed 28.43 MB 0 B 28.43 MB -100.0%
part_4.vortex 100 vortex-file-compressed 28.42 MB 0 B 28.42 MB -100.0%
part_5.vortex 100 vortex-file-compressed 28.38 MB 0 B 28.38 MB -100.0%
part_6.vortex 100 vortex-file-compressed 28.44 MB 0 B 28.44 MB -100.0%
part_7.vortex 100 vortex-file-compressed 28.41 MB 0 B 28.41 MB -100.0%
part_8.vortex 100 vortex-file-compressed 28.43 MB 0 B 28.43 MB -100.0%
part_9.vortex 100 vortex-file-compressed 28.41 MB 0 B 28.41 MB -100.0%
partsupp_0.vortex 100 vortex-file-compressed 191.37 MB 0 B 191.37 MB -100.0%
partsupp_1.vortex 100 vortex-file-compressed 191.69 MB 0 B 191.69 MB -100.0%
partsupp_10.vortex 100 vortex-file-compressed 191.59 MB 0 B 191.59 MB -100.0%
partsupp_11.vortex 100 vortex-file-compressed 191.43 MB 0 B 191.43 MB -100.0%
partsupp_12.vortex 100 vortex-file-compressed 191.50 MB 0 B 191.50 MB -100.0%
partsupp_13.vortex 100 vortex-file-compressed 191.35 MB 0 B 191.35 MB -100.0%
partsupp_14.vortex 100 vortex-file-compressed 191.62 MB 0 B 191.62 MB -100.0%
partsupp_15.vortex 100 vortex-file-compressed 191.52 MB 0 B 191.52 MB -100.0%
partsupp_16.vortex 100 vortex-file-compressed 191.25 MB 0 B 191.25 MB -100.0%
partsupp_17.vortex 100 vortex-file-compressed 191.49 MB 0 B 191.49 MB -100.0%
partsupp_18.vortex 100 vortex-file-compressed 191.38 MB 0 B 191.38 MB -100.0%
partsupp_2.vortex 100 vortex-file-compressed 191.39 MB 0 B 191.39 MB -100.0%
partsupp_3.vortex 100 vortex-file-compressed 191.37 MB 0 B 191.37 MB -100.0%
partsupp_4.vortex 100 vortex-file-compressed 191.40 MB 0 B 191.40 MB -100.0%
partsupp_5.vortex 100 vortex-file-compressed 191.41 MB 0 B 191.41 MB -100.0%
partsupp_6.vortex 100 vortex-file-compressed 191.38 MB 0 B 191.38 MB -100.0%
partsupp_7.vortex 100 vortex-file-compressed 191.61 MB 0 B 191.61 MB -100.0%
partsupp_8.vortex 100 vortex-file-compressed 191.49 MB 0 B 191.49 MB -100.0%
partsupp_9.vortex 100 vortex-file-compressed 191.50 MB 0 B 191.50 MB -100.0%
region_0.vortex 100 vortex-file-compressed 6.16 KB 0 B 6.16 KB -100.0%
supplier_0.vortex 100 vortex-file-compressed 66.71 MB 0 B 66.71 MB -100.0%

Totals:

  • vortex-compact: 11.86 GB → 0 B (-100.0%)
  • vortex-file-compressed: 49.77 GB → 689.41 MB (-98.6%)

@codspeed-hq
Copy link
Copy Markdown

codspeed-hq Bot commented May 29, 2026

Merging this PR will improve performance by 11.42%

⚠️ Unknown Walltime execution environment detected

Using the Walltime instrument on standard Hosted Runners will lead to inconsistent data.

For the most accurate results, we recommend using CodSpeed Macro Runners: bare-metal machines fine-tuned for performance measurement consistency.

⚠️ Different runtime environments detected

Some benchmarks with significant performance changes were compared across different runtime environments,
which may affect the accuracy of the results.

Open the report in CodSpeed to investigate

⚡ 7 improved benchmarks
✅ 1268 untouched benchmarks

Performance Changes

Mode Benchmark BASE HEAD Efficiency
Simulation fsst_decompress_string 3.5 ms 3.1 ms +11.53%
Simulation chunked_canonicalize_into[(10, 10000, 16, 4)] 5.9 ms 5.3 ms +12.23%
Simulation canonicalize_compare[(10000, 16, 4)] 704.7 µs 640.5 µs +10.03%
Simulation chunked_into_canonical[(10, 10000, 16, 4)] 5.9 ms 5.3 ms +12.13%
Simulation decompress_fsst[(10000, 4, 4)] 388.3 µs 352.7 µs +10.09%
Simulation decompress_fsst[(10000, 16, 4)] 579.4 µs 514.8 µs +12.56%
Simulation decompress_fsst[(10000, 16, 8)] 631.8 µs 567.2 µs +11.39%

Tip

Curious why this is faster? Comment @codspeedbot explain why this is faster on this PR, or directly use the CodSpeed MCP with your agent.


Comparing claude/avx512-decode-benchmark-wRhkZ (fc6b839) with develop (73454db)

Open in CodSpeed

@github-actions
Copy link
Copy Markdown
Contributor

Benchmarks: FineWeb NVMe

Verdict: No clear signal (low confidence)
Attributed Vortex impact: -0.9%
Engines: DataFusion No clear signal (-0.4%, low confidence) · DuckDB No clear signal (-1.5%, low confidence)
Vortex (geomean): 1.016x ➖
Parquet (geomean): 1.026x ➖
Shifts: Parquet (control) +2.6% · Median polish +1.2%

How to read Verdict and Engines
  • Verdict: Overall PR-level signal after subtracting baseline drift estimated from Parquet control rows. It can be Likely improvement, Likely regression, or No clear signal.
  • Engines: Per-engine attribution. DataFusion is compared against DataFusion/Parquet controls; DuckDB is compared against DuckDB/Parquet controls. This answers whether each engine improved or regressed independently.
  • Confidence: Based on directional consistency, share of rows above the noise floor, and control-run noise.

datafusion / vortex-file-compressed (1.018x ➖, 0↑ 2↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
fineweb_q00/datafusion:vortex-file-compressed 🚨 5673230 5085203 1.12
fineweb_q01/datafusion:vortex-file-compressed 22226134 22222586 1.00
fineweb_q02/datafusion:vortex-file-compressed 21964238 22074664 0.99
fineweb_q03/datafusion:vortex-file-compressed 82315749 82296605 1.00
fineweb_q04/datafusion:vortex-file-compressed 229576214 234410703 0.98
fineweb_q05/datafusion:vortex-file-compressed 219308314 218820968 1.00
fineweb_q06/datafusion:vortex-file-compressed 🚨 55543275 49640330 1.12
fineweb_q07/datafusion:vortex-file-compressed 57094451 58104245 0.98
fineweb_q08/datafusion:vortex-file-compressed 20987537 21377130 0.98
datafusion / vortex-compact (1.017x ➖, 0↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
fineweb_q00/datafusion:vortex-compact 6344291 5797290 1.09
fineweb_q01/datafusion:vortex-compact 93814395 99480460 0.94
fineweb_q02/datafusion:vortex-compact 106742928 99261307 1.08
fineweb_q03/datafusion:vortex-compact 868432403 875490243 0.99
fineweb_q04/datafusion:vortex-compact 932841575 914693472 1.02
fineweb_q05/datafusion:vortex-compact 824058187 816780888 1.01
fineweb_q06/datafusion:vortex-compact 469777968 463635975 1.01
fineweb_q07/datafusion:vortex-compact 487724392 480909427 1.01
fineweb_q08/datafusion:vortex-compact 18809409 18829782 1.00
datafusion / parquet (1.021x ➖, 0↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
fineweb_q00/datafusion:parquet 6683043 6306226 1.06
fineweb_q01/datafusion:parquet 295524656 299168952 0.99
fineweb_q02/datafusion:parquet 294580387 293466172 1.00
fineweb_q03/datafusion:parquet 292417199 279619964 1.05
fineweb_q04/datafusion:parquet 316966593 300825514 1.05
fineweb_q05/datafusion:parquet 305800702 304402249 1.00
fineweb_q06/datafusion:parquet 292238031 297583115 0.98
fineweb_q07/datafusion:parquet 284948818 281894809 1.01
fineweb_q08/datafusion:parquet 291219667 277692784 1.05
duckdb / vortex-file-compressed (1.012x ➖, 1↑ 1↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
fineweb_q00/duckdb:vortex-file-compressed 🚨 4163155 3423917 1.22
fineweb_q01/duckdb:vortex-file-compressed 22662603 21140507 1.07
fineweb_q02/duckdb:vortex-file-compressed 23501333 23246164 1.01
fineweb_q03/duckdb:vortex-file-compressed 🚀 120074219 153992477 0.78
fineweb_q04/duckdb:vortex-file-compressed 228153272 225657081 1.01
fineweb_q05/duckdb:vortex-file-compressed 210317381 208818912 1.01
fineweb_q06/duckdb:vortex-file-compressed 54411191 52185054 1.04
fineweb_q07/duckdb:vortex-file-compressed 54057530 53505893 1.01
fineweb_q08/duckdb:vortex-file-compressed 22762001 22440651 1.01
duckdb / vortex-compact (1.017x ➖, 0↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
fineweb_q00/duckdb:vortex-compact 4496334 4213876 1.07
fineweb_q01/duckdb:vortex-compact 101530784 101103402 1.00
fineweb_q02/duckdb:vortex-compact 114711531 112546877 1.02
fineweb_q03/duckdb:vortex-compact 874501654 861669873 1.01
fineweb_q04/duckdb:vortex-compact 904628353 894184079 1.01
fineweb_q05/duckdb:vortex-compact 812890196 801780694 1.01
fineweb_q06/duckdb:vortex-compact 469768515 460673093 1.02
fineweb_q07/duckdb:vortex-compact 485078297 469218735 1.03
fineweb_q08/duckdb:vortex-compact 19632182 20261951 0.97
duckdb / parquet (1.030x ➖, 0↑ 1↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
fineweb_q00/duckdb:parquet 32475134 31384836 1.03
fineweb_q01/duckdb:parquet 85530101 82860039 1.03
fineweb_q02/duckdb:parquet 86784204 84651721 1.03
fineweb_q03/duckdb:parquet 324472048 317181910 1.02
fineweb_q04/duckdb:parquet 449059345 445843825 1.01
fineweb_q05/duckdb:parquet 420308399 412794292 1.02
fineweb_q06/duckdb:parquet 206055309 203902420 1.01
fineweb_q07/duckdb:parquet 219405242 215313575 1.02
fineweb_q08/duckdb:parquet 🚨 35500483 32238629 1.10

File Size Changes (542 files changed, -95.1% overall, 0↑ 542↓)
File Scale Format Base HEAD Change %
addressview.vortex 1.0 vortex-compact 24.53 MB 0 B 24.53 MB -100.0%
categoryview.vortex 1.0 vortex-compact 19.86 KB 0 B 19.86 KB -100.0%
creditcardview.vortex 1.0 vortex-compact 32.23 MB 0 B 32.23 MB -100.0%
customerview.vortex 1.0 vortex-compact 10.60 MB 0 B 10.60 MB -100.0%
duckdb.db 1.0 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
orderitemnovelty_update.vortex 1.0 vortex-compact 13.14 KB 0 B 13.14 KB -100.0%
orderitemview.vortex 1.0 vortex-compact 156.30 MB 0 B 156.30 MB -100.0%
orderview.vortex 1.0 vortex-compact 32.16 MB 0 B 32.16 MB -100.0%
productview.vortex 1.0 vortex-compact 18.77 KB 0 B 18.77 KB -100.0%
taxrecordview.vortex 1.0 vortex-compact 17.34 MB 0 B 17.34 MB -100.0%
addressview.vortex 1.0 vortex-file-compressed 34.71 MB 0 B 34.71 MB -100.0%
categoryview.vortex 1.0 vortex-file-compressed 20.74 KB 0 B 20.74 KB -100.0%
creditcardview.vortex 1.0 vortex-file-compressed 66.75 MB 0 B 66.75 MB -100.0%
customerview.vortex 1.0 vortex-file-compressed 19.91 MB 0 B 19.91 MB -100.0%
duckdb.db 1.0 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
orderitemnovelty_update.vortex 1.0 vortex-file-compressed 13.14 KB 0 B 13.14 KB -100.0%
orderitemview.vortex 1.0 vortex-file-compressed 297.21 MB 0 B 297.21 MB -100.0%
orderview.vortex 1.0 vortex-file-compressed 88.79 MB 0 B 88.79 MB -100.0%
productview.vortex 1.0 vortex-file-compressed 20.44 KB 0 B 20.44 KB -100.0%
taxrecordview.vortex 1.0 vortex-file-compressed 22.01 MB 0 B 22.01 MB -100.0%
duckdb.db 1.0 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
hits_0.vortex 1.0 vortex-compact 58.66 MB 0 B 58.66 MB -100.0%
hits_1.vortex 1.0 vortex-compact 90.34 MB 0 B 90.34 MB -100.0%
hits_10.vortex 1.0 vortex-compact 48.86 MB 0 B 48.86 MB -100.0%
hits_11.vortex 1.0 vortex-compact 54.35 MB 0 B 54.35 MB -100.0%
hits_12.vortex 1.0 vortex-compact 69.27 MB 0 B 69.27 MB -100.0%
hits_13.vortex 1.0 vortex-compact 67.96 MB 0 B 67.96 MB -100.0%
hits_14.vortex 1.0 vortex-compact 73.75 MB 0 B 73.75 MB -100.0%
hits_15.vortex 1.0 vortex-compact 48.14 MB 0 B 48.14 MB -100.0%
hits_16.vortex 1.0 vortex-compact 48.30 MB 0 B 48.30 MB -100.0%
hits_17.vortex 1.0 vortex-compact 58.32 MB 0 B 58.32 MB -100.0%
hits_18.vortex 1.0 vortex-compact 64.28 MB 0 B 64.28 MB -100.0%
hits_19.vortex 1.0 vortex-compact 44.88 MB 0 B 44.88 MB -100.0%
hits_2.vortex 1.0 vortex-compact 129.36 MB 0 B 129.36 MB -100.0%
hits_20.vortex 1.0 vortex-compact 38.14 MB 0 B 38.14 MB -100.0%
hits_21.vortex 1.0 vortex-compact 51.60 MB 0 B 51.60 MB -100.0%
hits_22.vortex 1.0 vortex-compact 44.74 MB 0 B 44.74 MB -100.0%
hits_23.vortex 1.0 vortex-compact 44.17 MB 0 B 44.17 MB -100.0%
hits_24.vortex 1.0 vortex-compact 43.63 MB 0 B 43.63 MB -100.0%
hits_25.vortex 1.0 vortex-compact 73.14 MB 0 B 73.14 MB -100.0%
hits_26.vortex 1.0 vortex-compact 70.89 MB 0 B 70.89 MB -100.0%
hits_27.vortex 1.0 vortex-compact 69.88 MB 0 B 69.88 MB -100.0%
hits_28.vortex 1.0 vortex-compact 70.27 MB 0 B 70.27 MB -100.0%
hits_29.vortex 1.0 vortex-compact 36.61 MB 0 B 36.61 MB -100.0%
hits_3.vortex 1.0 vortex-compact 94.23 MB 0 B 94.23 MB -100.0%
hits_30.vortex 1.0 vortex-compact 58.69 MB 0 B 58.69 MB -100.0%
hits_31.vortex 1.0 vortex-compact 55.56 MB 0 B 55.56 MB -100.0%
hits_32.vortex 1.0 vortex-compact 44.13 MB 0 B 44.13 MB -100.0%
hits_33.vortex 1.0 vortex-compact 35.95 MB 0 B 35.95 MB -100.0%
hits_34.vortex 1.0 vortex-compact 58.26 MB 0 B 58.26 MB -100.0%
hits_35.vortex 1.0 vortex-compact 75.11 MB 0 B 75.11 MB -100.0%
hits_36.vortex 1.0 vortex-compact 48.99 MB 0 B 48.99 MB -100.0%
hits_37.vortex 1.0 vortex-compact 53.83 MB 0 B 53.83 MB -100.0%
hits_38.vortex 1.0 vortex-compact 63.10 MB 0 B 63.10 MB -100.0%
hits_39.vortex 1.0 vortex-compact 49.82 MB 0 B 49.82 MB -100.0%
hits_4.vortex 1.0 vortex-compact 71.81 MB 0 B 71.81 MB -100.0%
hits_40.vortex 1.0 vortex-compact 75.92 MB 0 B 75.92 MB -100.0%
hits_41.vortex 1.0 vortex-compact 165.78 MB 0 B 165.78 MB -100.0%
hits_42.vortex 1.0 vortex-compact 164.22 MB 0 B 164.22 MB -100.0%
hits_43.vortex 1.0 vortex-compact 168.91 MB 0 B 168.91 MB -100.0%
hits_44.vortex 1.0 vortex-compact 132.46 MB 0 B 132.46 MB -100.0%
hits_45.vortex 1.0 vortex-compact 76.07 MB 0 B 76.07 MB -100.0%
hits_46.vortex 1.0 vortex-compact 41.92 MB 0 B 41.92 MB -100.0%
hits_47.vortex 1.0 vortex-compact 18.25 MB 0 B 18.25 MB -100.0%
hits_48.vortex 1.0 vortex-compact 17.32 MB 0 B 17.32 MB -100.0%
hits_49.vortex 1.0 vortex-compact 50.53 MB 0 B 50.53 MB -100.0%
hits_5.vortex 1.0 vortex-compact 62.90 MB 0 B 62.90 MB -100.0%
hits_50.vortex 1.0 vortex-compact 113.12 MB 0 B 113.12 MB -100.0%
hits_51.vortex 1.0 vortex-compact 167.81 MB 0 B 167.81 MB -100.0%
hits_52.vortex 1.0 vortex-compact 63.73 MB 0 B 63.73 MB -100.0%
hits_53.vortex 1.0 vortex-compact 59.09 MB 0 B 59.09 MB -100.0%
hits_54.vortex 1.0 vortex-compact 117.66 MB 0 B 117.66 MB -100.0%
hits_55.vortex 1.0 vortex-compact 93.77 MB 0 B 93.77 MB -100.0%
hits_56.vortex 1.0 vortex-compact 77.87 MB 0 B 77.87 MB -100.0%
hits_57.vortex 1.0 vortex-compact 83.54 MB 0 B 83.54 MB -100.0%
hits_58.vortex 1.0 vortex-compact 60.41 MB 0 B 60.41 MB -100.0%
hits_59.vortex 1.0 vortex-compact 66.30 MB 0 B 66.30 MB -100.0%
hits_6.vortex 1.0 vortex-compact 63.16 MB 0 B 63.16 MB -100.0%
hits_60.vortex 1.0 vortex-compact 64.33 MB 0 B 64.33 MB -100.0%
hits_61.vortex 1.0 vortex-compact 57.66 MB 0 B 57.66 MB -100.0%
hits_62.vortex 1.0 vortex-compact 74.26 MB 0 B 74.26 MB -100.0%
hits_63.vortex 1.0 vortex-compact 46.10 MB 0 B 46.10 MB -100.0%
hits_64.vortex 1.0 vortex-compact 53.91 MB 0 B 53.91 MB -100.0%
hits_65.vortex 1.0 vortex-compact 129.95 MB 0 B 129.95 MB -100.0%
hits_66.vortex 1.0 vortex-compact 53.49 MB 0 B 53.49 MB -100.0%
hits_67.vortex 1.0 vortex-compact 114.05 MB 0 B 114.05 MB -100.0%
hits_68.vortex 1.0 vortex-compact 75.99 MB 0 B 75.99 MB -100.0%
hits_69.vortex 1.0 vortex-compact 81.02 MB 0 B 81.02 MB -100.0%
hits_7.vortex 1.0 vortex-compact 63.80 MB 0 B 63.80 MB -100.0%
hits_70.vortex 1.0 vortex-compact 61.29 MB 0 B 61.29 MB -100.0%
hits_71.vortex 1.0 vortex-compact 69.29 MB 0 B 69.29 MB -100.0%
hits_72.vortex 1.0 vortex-compact 51.79 MB 0 B 51.79 MB -100.0%
hits_73.vortex 1.0 vortex-compact 70.04 MB 0 B 70.04 MB -100.0%
hits_74.vortex 1.0 vortex-compact 71.62 MB 0 B 71.62 MB -100.0%
hits_75.vortex 1.0 vortex-compact 43.63 MB 0 B 43.63 MB -100.0%
hits_76.vortex 1.0 vortex-compact 76.44 MB 0 B 76.44 MB -100.0%
hits_77.vortex 1.0 vortex-compact 118.11 MB 0 B 118.11 MB -100.0%
hits_78.vortex 1.0 vortex-compact 97.87 MB 0 B 97.87 MB -100.0%
hits_79.vortex 1.0 vortex-compact 85.70 MB 0 B 85.70 MB -100.0%
hits_8.vortex 1.0 vortex-compact 62.89 MB 0 B 62.89 MB -100.0%
hits_80.vortex 1.0 vortex-compact 68.07 MB 0 B 68.07 MB -100.0%
hits_81.vortex 1.0 vortex-compact 65.45 MB 0 B 65.45 MB -100.0%
hits_82.vortex 1.0 vortex-compact 66.89 MB 0 B 66.89 MB -100.0%
hits_83.vortex 1.0 vortex-compact 52.57 MB 0 B 52.57 MB -100.0%
hits_84.vortex 1.0 vortex-compact 73.14 MB 0 B 73.14 MB -100.0%
hits_85.vortex 1.0 vortex-compact 52.73 MB 0 B 52.73 MB -100.0%
hits_86.vortex 1.0 vortex-compact 48.25 MB 0 B 48.25 MB -100.0%
hits_87.vortex 1.0 vortex-compact 119.04 MB 0 B 119.04 MB -100.0%
hits_88.vortex 1.0 vortex-compact 73.31 MB 0 B 73.31 MB -100.0%
hits_89.vortex 1.0 vortex-compact 112.82 MB 0 B 112.82 MB -100.0%
hits_9.vortex 1.0 vortex-compact 65.67 MB 0 B 65.67 MB -100.0%
hits_90.vortex 1.0 vortex-compact 81.86 MB 0 B 81.86 MB -100.0%
hits_91.vortex 1.0 vortex-compact 60.94 MB 0 B 60.94 MB -100.0%
hits_92.vortex 1.0 vortex-compact 94.27 MB 0 B 94.27 MB -100.0%
hits_93.vortex 1.0 vortex-compact 58.90 MB 0 B 58.90 MB -100.0%
hits_94.vortex 1.0 vortex-compact 90.63 MB 0 B 90.63 MB -100.0%
hits_95.vortex 1.0 vortex-compact 57.75 MB 0 B 57.75 MB -100.0%
hits_96.vortex 1.0 vortex-compact 91.08 MB 0 B 91.08 MB -100.0%
hits_97.vortex 1.0 vortex-compact 69.16 MB 0 B 69.16 MB -100.0%
hits_98.vortex 1.0 vortex-compact 72.77 MB 0 B 72.77 MB -100.0%
hits_99.vortex 1.0 vortex-compact 77.31 MB 0 B 77.31 MB -100.0%
duckdb.db 1.0 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
hits_0.vortex 1.0 vortex-file-compressed 112.17 MB 0 B 112.17 MB -100.0%
hits_1.vortex 1.0 vortex-file-compressed 181.16 MB 0 B 181.16 MB -100.0%
hits_10.vortex 1.0 vortex-file-compressed 81.76 MB 0 B 81.76 MB -100.0%
hits_11.vortex 1.0 vortex-file-compressed 96.07 MB 0 B 96.07 MB -100.0%
hits_12.vortex 1.0 vortex-file-compressed 125.34 MB 0 B 125.34 MB -100.0%
hits_13.vortex 1.0 vortex-file-compressed 123.20 MB 0 B 123.20 MB -100.0%
hits_14.vortex 1.0 vortex-file-compressed 135.14 MB 0 B 135.14 MB -100.0%
hits_15.vortex 1.0 vortex-file-compressed 97.01 MB 0 B 97.01 MB -100.0%
hits_16.vortex 1.0 vortex-file-compressed 87.59 MB 0 B 87.59 MB -100.0%
hits_17.vortex 1.0 vortex-file-compressed 103.64 MB 0 B 103.64 MB -100.0%
hits_18.vortex 1.0 vortex-file-compressed 126.06 MB 0 B 126.06 MB -100.0%
hits_19.vortex 1.0 vortex-file-compressed 82.10 MB 0 B 82.10 MB -100.0%
hits_2.vortex 1.0 vortex-file-compressed 241.46 MB 0 B 241.46 MB -100.0%
hits_20.vortex 1.0 vortex-file-compressed 67.53 MB 0 B 67.53 MB -100.0%
hits_21.vortex 1.0 vortex-file-compressed 101.28 MB 0 B 101.28 MB -100.0%
hits_22.vortex 1.0 vortex-file-compressed 81.17 MB 0 B 81.17 MB -100.0%
hits_23.vortex 1.0 vortex-file-compressed 80.37 MB 0 B 80.37 MB -100.0%
hits_24.vortex 1.0 vortex-file-compressed 79.71 MB 0 B 79.71 MB -100.0%
hits_25.vortex 1.0 vortex-file-compressed 137.01 MB 0 B 137.01 MB -100.0%
hits_26.vortex 1.0 vortex-file-compressed 144.05 MB 0 B 144.05 MB -100.0%
hits_27.vortex 1.0 vortex-file-compressed 174.61 MB 0 B 174.61 MB -100.0%
hits_28.vortex 1.0 vortex-file-compressed 167.55 MB 0 B 167.55 MB -100.0%
hits_29.vortex 1.0 vortex-file-compressed 65.47 MB 0 B 65.47 MB -100.0%
hits_3.vortex 1.0 vortex-file-compressed 193.11 MB 0 B 193.11 MB -100.0%
hits_30.vortex 1.0 vortex-file-compressed 104.00 MB 0 B 104.00 MB -100.0%
hits_31.vortex 1.0 vortex-file-compressed 104.39 MB 0 B 104.39 MB -100.0%
hits_32.vortex 1.0 vortex-file-compressed 77.12 MB 0 B 77.12 MB -100.0%
hits_33.vortex 1.0 vortex-file-compressed 62.97 MB 0 B 62.97 MB -100.0%
hits_34.vortex 1.0 vortex-file-compressed 111.68 MB 0 B 111.68 MB -100.0%
hits_35.vortex 1.0 vortex-file-compressed 138.81 MB 0 B 138.81 MB -100.0%
hits_36.vortex 1.0 vortex-file-compressed 80.27 MB 0 B 80.27 MB -100.0%
hits_37.vortex 1.0 vortex-file-compressed 97.54 MB 0 B 97.54 MB -100.0%
hits_38.vortex 1.0 vortex-file-compressed 118.43 MB 0 B 118.43 MB -100.0%
hits_39.vortex 1.0 vortex-file-compressed 94.06 MB 0 B 94.06 MB -100.0%
hits_4.vortex 1.0 vortex-file-compressed 138.86 MB 0 B 138.86 MB -100.0%
hits_40.vortex 1.0 vortex-file-compressed 142.99 MB 0 B 142.99 MB -100.0%
hits_41.vortex 1.0 vortex-file-compressed 300.49 MB 0 B 300.49 MB -100.0%
hits_42.vortex 1.0 vortex-file-compressed 298.79 MB 0 B 298.79 MB -100.0%
hits_43.vortex 1.0 vortex-file-compressed 305.71 MB 0 B 305.71 MB -100.0%
hits_44.vortex 1.0 vortex-file-compressed 243.64 MB 0 B 243.64 MB -100.0%
hits_45.vortex 1.0 vortex-file-compressed 145.48 MB 0 B 145.48 MB -100.0%
hits_46.vortex 1.0 vortex-file-compressed 80.32 MB 0 B 80.32 MB -100.0%
hits_47.vortex 1.0 vortex-file-compressed 41.86 MB 0 B 41.86 MB -100.0%
hits_48.vortex 1.0 vortex-file-compressed 28.53 MB 0 B 28.53 MB -100.0%
hits_49.vortex 1.0 vortex-file-compressed 88.67 MB 0 B 88.67 MB -100.0%
hits_5.vortex 1.0 vortex-file-compressed 122.64 MB 0 B 122.64 MB -100.0%
hits_50.vortex 1.0 vortex-file-compressed 255.24 MB 0 B 255.24 MB -100.0%
hits_51.vortex 1.0 vortex-file-compressed 428.84 MB 0 B 428.84 MB -100.0%
hits_52.vortex 1.0 vortex-file-compressed 120.78 MB 0 B 120.78 MB -100.0%
hits_53.vortex 1.0 vortex-file-compressed 98.26 MB 0 B 98.26 MB -100.0%
hits_54.vortex 1.0 vortex-file-compressed 361.83 MB 0 B 361.83 MB -100.0%
hits_55.vortex 1.0 vortex-file-compressed 251.56 MB 0 B 251.56 MB -100.0%
hits_56.vortex 1.0 vortex-file-compressed 163.76 MB 0 B 163.76 MB -100.0%
hits_57.vortex 1.0 vortex-file-compressed 158.37 MB 0 B 158.37 MB -100.0%
hits_58.vortex 1.0 vortex-file-compressed 113.78 MB 0 B 113.78 MB -100.0%
hits_59.vortex 1.0 vortex-file-compressed 121.84 MB 0 B 121.84 MB -100.0%
hits_6.vortex 1.0 vortex-file-compressed 122.86 MB 0 B 122.86 MB -100.0%
hits_60.vortex 1.0 vortex-file-compressed 121.19 MB 0 B 121.19 MB -100.0%
hits_61.vortex 1.0 vortex-file-compressed 114.43 MB 0 B 114.43 MB -100.0%
hits_62.vortex 1.0 vortex-file-compressed 148.36 MB 0 B 148.36 MB -100.0%
hits_63.vortex 1.0 vortex-file-compressed 80.62 MB 0 B 80.62 MB -100.0%
hits_64.vortex 1.0 vortex-file-compressed 95.27 MB 0 B 95.27 MB -100.0%
hits_65.vortex 1.0 vortex-file-compressed 238.05 MB 0 B 238.05 MB -100.0%
hits_66.vortex 1.0 vortex-file-compressed 105.34 MB 0 B 105.34 MB -100.0%
hits_67.vortex 1.0 vortex-file-compressed 265.94 MB 0 B 265.94 MB -100.0%
hits_68.vortex 1.0 vortex-file-compressed 172.16 MB 0 B 172.16 MB -100.0%
hits_69.vortex 1.0 vortex-file-compressed 147.61 MB 0 B 147.61 MB -100.0%
hits_7.vortex 1.0 vortex-file-compressed 123.82 MB 0 B 123.82 MB -100.0%
hits_70.vortex 1.0 vortex-file-compressed 115.14 MB 0 B 115.14 MB -100.0%
hits_71.vortex 1.0 vortex-file-compressed 126.41 MB 0 B 126.41 MB -100.0%
hits_72.vortex 1.0 vortex-file-compressed 96.27 MB 0 B 96.27 MB -100.0%
hits_73.vortex 1.0 vortex-file-compressed 131.83 MB 0 B 131.83 MB -100.0%
hits_74.vortex 1.0 vortex-file-compressed 152.12 MB 0 B 152.12 MB -100.0%
hits_75.vortex 1.0 vortex-file-compressed 74.18 MB 0 B 74.18 MB -100.0%
hits_76.vortex 1.0 vortex-file-compressed 140.05 MB 0 B 140.05 MB -100.0%
hits_77.vortex 1.0 vortex-file-compressed 218.96 MB 0 B 218.96 MB -100.0%
hits_78.vortex 1.0 vortex-file-compressed 238.59 MB 0 B 238.59 MB -100.0%
hits_79.vortex 1.0 vortex-file-compressed 204.16 MB 0 B 204.16 MB -100.0%
hits_8.vortex 1.0 vortex-file-compressed 122.86 MB 0 B 122.86 MB -100.0%
hits_80.vortex 1.0 vortex-file-compressed 124.24 MB 0 B 124.24 MB -100.0%
hits_81.vortex 1.0 vortex-file-compressed 126.55 MB 0 B 126.55 MB -100.0%
hits_82.vortex 1.0 vortex-file-compressed 122.77 MB 0 B 122.77 MB -100.0%
hits_83.vortex 1.0 vortex-file-compressed 103.72 MB 0 B 103.72 MB -100.0%
hits_84.vortex 1.0 vortex-file-compressed 145.05 MB 0 B 145.05 MB -100.0%
hits_85.vortex 1.0 vortex-file-compressed 106.37 MB 0 B 106.37 MB -100.0%
hits_86.vortex 1.0 vortex-file-compressed 81.40 MB 0 B 81.40 MB -100.0%
hits_87.vortex 1.0 vortex-file-compressed 221.68 MB 0 B 221.68 MB -100.0%
hits_88.vortex 1.0 vortex-file-compressed 137.34 MB 0 B 137.34 MB -100.0%
hits_89.vortex 1.0 vortex-file-compressed 266.01 MB 0 B 266.01 MB -100.0%
hits_9.vortex 1.0 vortex-file-compressed 124.22 MB 0 B 124.22 MB -100.0%
hits_90.vortex 1.0 vortex-file-compressed 204.12 MB 0 B 204.12 MB -100.0%
hits_91.vortex 1.0 vortex-file-compressed 116.23 MB 0 B 116.23 MB -100.0%
hits_92.vortex 1.0 vortex-file-compressed 196.47 MB 0 B 196.47 MB -100.0%
hits_93.vortex 1.0 vortex-file-compressed 107.66 MB 0 B 107.66 MB -100.0%
hits_94.vortex 1.0 vortex-file-compressed 185.12 MB 0 B 185.12 MB -100.0%
hits_95.vortex 1.0 vortex-file-compressed 114.33 MB 0 B 114.33 MB -100.0%
hits_96.vortex 1.0 vortex-file-compressed 180.76 MB 0 B 180.76 MB -100.0%
hits_97.vortex 1.0 vortex-file-compressed 130.96 MB 0 B 130.96 MB -100.0%
hits_98.vortex 1.0 vortex-file-compressed 150.55 MB 0 B 150.55 MB -100.0%
hits_99.vortex 1.0 vortex-file-compressed 158.88 MB 0 B 158.88 MB -100.0%
stacktraces.vortex 1000000 vortex-file-compressed 689.41 MB 0 B 689.41 MB -100.0%
duckdb.db 100000 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
gnomad.genomes.v3.1.2.hgdp_tgp.chr21.vortex 100000 vortex-compact 959.35 MB 0 B 959.35 MB -100.0%
duckdb.db 100000 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
gnomad.genomes.v3.1.2.hgdp_tgp.chr21.vortex 100000 vortex-file-compressed 1.97 GB 0 B 1.97 GB -100.0%
call_center.vortex 1.0 vortex-compact 50.14 KB 0 B 50.14 KB -100.0%
catalog_page.vortex 1.0 vortex-compact 362.67 KB 0 B 362.67 KB -100.0%
catalog_returns.vortex 1.0 vortex-compact 6.02 MB 0 B 6.02 MB -100.0%
catalog_sales.vortex 1.0 vortex-compact 59.31 MB 0 B 59.31 MB -100.0%
customer.vortex 1.0 vortex-compact 3.29 MB 0 B 3.29 MB -100.0%
customer_address.vortex 1.0 vortex-compact 558.62 KB 0 B 558.62 KB -100.0%
customer_demographics.vortex 1.0 vortex-compact 649.61 KB 0 B 649.61 KB -100.0%
date_dim.vortex 1.0 vortex-compact 154.00 KB 0 B 154.00 KB -100.0%
duckdb.db 1.0 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
household_demographics.vortex 1.0 vortex-compact 10.79 KB 0 B 10.79 KB -100.0%
income_band.vortex 1.0 vortex-compact 5.98 KB 0 B 5.98 KB -100.0%
inventory.vortex 1.0 vortex-compact 16.07 MB 0 B 16.07 MB -100.0%
item.vortex 1.0 vortex-compact 994.21 KB 0 B 994.21 KB -100.0%
promotion.vortex 1.0 vortex-compact 51.51 KB 0 B 51.51 KB -100.0%
reason.vortex 1.0 vortex-compact 5.97 KB 0 B 5.97 KB -100.0%
ship_mode.vortex 1.0 vortex-compact 10.95 KB 0 B 10.95 KB -100.0%
store.vortex 1.0 vortex-compact 45.76 KB 0 B 45.76 KB -100.0%
store_returns.vortex 1.0 vortex-compact 9.31 MB 0 B 9.31 MB -100.0%
store_sales.vortex 1.0 vortex-compact 77.87 MB 0 B 77.87 MB -100.0%
time_dim.vortex 1.0 vortex-compact 97.35 KB 0 B 97.35 KB -100.0%
warehouse.vortex 1.0 vortex-compact 22.23 KB 0 B 22.23 KB -100.0%
web_page.vortex 1.0 vortex-compact 27.84 KB 0 B 27.84 KB -100.0%
web_returns.vortex 1.0 vortex-compact 2.99 MB 0 B 2.99 MB -100.0%
web_sales.vortex 1.0 vortex-compact 29.35 MB 0 B 29.35 MB -100.0%
web_site.vortex 1.0 vortex-compact 45.31 KB 0 B 45.31 KB -100.0%
call_center.vortex 1.0 vortex-file-compressed 54.94 KB 0 B 54.94 KB -100.0%
catalog_page.vortex 1.0 vortex-file-compressed 611.57 KB 0 B 611.57 KB -100.0%
catalog_returns.vortex 1.0 vortex-file-compressed 7.43 MB 0 B 7.43 MB -100.0%
catalog_sales.vortex 1.0 vortex-file-compressed 70.78 MB 0 B 70.78 MB -100.0%
customer.vortex 1.0 vortex-file-compressed 4.52 MB 0 B 4.52 MB -100.0%
customer_address.vortex 1.0 vortex-file-compressed 1012.96 KB 0 B 1012.96 KB -100.0%
customer_demographics.vortex 1.0 vortex-file-compressed 1.49 MB 0 B 1.49 MB -100.0%
date_dim.vortex 1.0 vortex-file-compressed 1.03 MB 0 B 1.03 MB -100.0%
duckdb.db 1.0 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
household_demographics.vortex 1.0 vortex-file-compressed 17.05 KB 0 B 17.05 KB -100.0%
income_band.vortex 1.0 vortex-file-compressed 6.19 KB 0 B 6.19 KB -100.0%
inventory.vortex 1.0 vortex-file-compressed 36.64 MB 0 B 36.64 MB -100.0%
item.vortex 1.0 vortex-file-compressed 1.75 MB 0 B 1.75 MB -100.0%
promotion.vortex 1.0 vortex-file-compressed 60.19 KB 0 B 60.19 KB -100.0%
reason.vortex 1.0 vortex-file-compressed 7.23 KB 0 B 7.23 KB -100.0%
ship_mode.vortex 1.0 vortex-file-compressed 13.12 KB 0 B 13.12 KB -100.0%
store.vortex 1.0 vortex-file-compressed 49.49 KB 0 B 49.49 KB -100.0%
store_returns.vortex 1.0 vortex-file-compressed 11.39 MB 0 B 11.39 MB -100.0%
store_sales.vortex 1.0 vortex-file-compressed 97.04 MB 0 B 97.04 MB -100.0%
time_dim.vortex 1.0 vortex-file-compressed 687.30 KB 0 B 687.30 KB -100.0%
warehouse.vortex 1.0 vortex-file-compressed 23.83 KB 0 B 23.83 KB -100.0%
web_page.vortex 1.0 vortex-file-compressed 31.92 KB 0 B 31.92 KB -100.0%
web_returns.vortex 1.0 vortex-file-compressed 3.55 MB 0 B 3.55 MB -100.0%
web_sales.vortex 1.0 vortex-file-compressed 34.27 MB 0 B 34.27 MB -100.0%
web_site.vortex 1.0 vortex-file-compressed 54.08 KB 0 B 54.08 KB -100.0%
customer_0.vortex 1.0 vortex-compact 7.43 MB 0 B 7.43 MB -100.0%
duckdb.db 1.0 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
lineitem_0.vortex 1.0 vortex-compact 63.00 MB 0 B 63.00 MB -100.0%
lineitem_1.vortex 1.0 vortex-compact 63.03 MB 0 B 63.03 MB -100.0%
nation_0.vortex 1.0 vortex-compact 8.34 KB 0 B 8.34 KB -100.0%
orders_0.vortex 1.0 vortex-compact 31.73 MB 0 B 31.73 MB -100.0%
part_0.vortex 1.0 vortex-compact 3.64 MB 0 B 3.64 MB -100.0%
partsupp_0.vortex 1.0 vortex-compact 25.23 MB 0 B 25.23 MB -100.0%
region_0.vortex 1.0 vortex-compact 5.86 KB 0 B 5.86 KB -100.0%
supplier_0.vortex 1.0 vortex-compact 496.72 KB 0 B 496.72 KB -100.0%
customer_0.vortex 1.0 vortex-file-compressed 10.50 MB 0 B 10.50 MB -100.0%
duckdb.db 1.0 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
lineitem_0.vortex 1.0 vortex-file-compressed 85.42 MB 0 B 85.42 MB -100.0%
lineitem_1.vortex 1.0 vortex-file-compressed 84.90 MB 0 B 84.90 MB -100.0%
nation_0.vortex 1.0 vortex-file-compressed 11.00 KB 0 B 11.00 KB -100.0%
orders_0.vortex 1.0 vortex-file-compressed 43.43 MB 0 B 43.43 MB -100.0%
part_0.vortex 1.0 vortex-file-compressed 5.44 MB 0 B 5.44 MB -100.0%
partsupp_0.vortex 1.0 vortex-file-compressed 35.94 MB 0 B 35.94 MB -100.0%
region_0.vortex 1.0 vortex-file-compressed 6.16 KB 0 B 6.16 KB -100.0%
supplier_0.vortex 1.0 vortex-file-compressed 706.34 KB 0 B 706.34 KB -100.0%
customer_0.vortex 10.0 vortex-compact 74.12 MB 0 B 74.12 MB -100.0%
duckdb.db 10.0 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
lineitem_0.vortex 10.0 vortex-compact 100.59 MB 0 B 100.59 MB -100.0%
lineitem_1.vortex 10.0 vortex-compact 100.64 MB 0 B 100.64 MB -100.0%
lineitem_10.vortex 10.0 vortex-compact 100.62 MB 0 B 100.62 MB -100.0%
lineitem_11.vortex 10.0 vortex-compact 100.53 MB 0 B 100.53 MB -100.0%
lineitem_12.vortex 10.0 vortex-compact 100.62 MB 0 B 100.62 MB -100.0%
lineitem_2.vortex 10.0 vortex-compact 100.59 MB 0 B 100.59 MB -100.0%
lineitem_3.vortex 10.0 vortex-compact 100.62 MB 0 B 100.62 MB -100.0%
lineitem_4.vortex 10.0 vortex-compact 100.56 MB 0 B 100.56 MB -100.0%
lineitem_5.vortex 10.0 vortex-compact 100.70 MB 0 B 100.70 MB -100.0%
lineitem_6.vortex 10.0 vortex-compact 100.68 MB 0 B 100.68 MB -100.0%
lineitem_7.vortex 10.0 vortex-compact 100.58 MB 0 B 100.58 MB -100.0%
lineitem_8.vortex 10.0 vortex-compact 100.59 MB 0 B 100.59 MB -100.0%
lineitem_9.vortex 10.0 vortex-compact 100.46 MB 0 B 100.46 MB -100.0%
nation_0.vortex 10.0 vortex-compact 8.34 KB 0 B 8.34 KB -100.0%
orders_0.vortex 10.0 vortex-compact 114.79 MB 0 B 114.79 MB -100.0%
orders_1.vortex 10.0 vortex-compact 114.76 MB 0 B 114.76 MB -100.0%
orders_2.vortex 10.0 vortex-compact 114.78 MB 0 B 114.78 MB -100.0%
part_0.vortex 10.0 vortex-compact 18.11 MB 0 B 18.11 MB -100.0%
part_1.vortex 10.0 vortex-compact 18.11 MB 0 B 18.11 MB -100.0%
partsupp_0.vortex 10.0 vortex-compact 126.76 MB 0 B 126.76 MB -100.0%
partsupp_1.vortex 10.0 vortex-compact 126.74 MB 0 B 126.74 MB -100.0%
region_0.vortex 10.0 vortex-compact 5.86 KB 0 B 5.86 KB -100.0%
supplier_0.vortex 10.0 vortex-compact 4.73 MB 0 B 4.73 MB -100.0%
customer_0.vortex 10.0 vortex-file-compressed 104.73 MB 0 B 104.73 MB -100.0%
duckdb.db 10.0 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
lineitem_0.vortex 10.0 vortex-file-compressed 134.65 MB 0 B 134.65 MB -100.0%
lineitem_1.vortex 10.0 vortex-file-compressed 134.27 MB 0 B 134.27 MB -100.0%
lineitem_10.vortex 10.0 vortex-file-compressed 134.51 MB 0 B 134.51 MB -100.0%
lineitem_11.vortex 10.0 vortex-file-compressed 134.87 MB 0 B 134.87 MB -100.0%
lineitem_12.vortex 10.0 vortex-file-compressed 134.52 MB 0 B 134.52 MB -100.0%
lineitem_2.vortex 10.0 vortex-file-compressed 134.38 MB 0 B 134.38 MB -100.0%
lineitem_3.vortex 10.0 vortex-file-compressed 133.74 MB 0 B 133.74 MB -100.0%
lineitem_4.vortex 10.0 vortex-file-compressed 134.43 MB 0 B 134.43 MB -100.0%
lineitem_5.vortex 10.0 vortex-file-compressed 133.86 MB 0 B 133.86 MB -100.0%
lineitem_6.vortex 10.0 vortex-file-compressed 133.23 MB 0 B 133.23 MB -100.0%
lineitem_7.vortex 10.0 vortex-file-compressed 134.01 MB 0 B 134.01 MB -100.0%
lineitem_8.vortex 10.0 vortex-file-compressed 134.06 MB 0 B 134.06 MB -100.0%
lineitem_9.vortex 10.0 vortex-file-compressed 134.65 MB 0 B 134.65 MB -100.0%
nation_0.vortex 10.0 vortex-file-compressed 11.00 KB 0 B 11.00 KB -100.0%
orders_0.vortex 10.0 vortex-file-compressed 163.92 MB 0 B 163.92 MB -100.0%
orders_1.vortex 10.0 vortex-file-compressed 164.15 MB 0 B 164.15 MB -100.0%
orders_2.vortex 10.0 vortex-file-compressed 164.00 MB 0 B 164.00 MB -100.0%
part_0.vortex 10.0 vortex-file-compressed 27.02 MB 0 B 27.02 MB -100.0%
part_1.vortex 10.0 vortex-file-compressed 26.99 MB 0 B 26.99 MB -100.0%
partsupp_0.vortex 10.0 vortex-file-compressed 180.47 MB 0 B 180.47 MB -100.0%
partsupp_1.vortex 10.0 vortex-file-compressed 180.65 MB 0 B 180.65 MB -100.0%
region_0.vortex 10.0 vortex-file-compressed 6.16 KB 0 B 6.16 KB -100.0%
supplier_0.vortex 10.0 vortex-file-compressed 6.69 MB 0 B 6.69 MB -100.0%
customer_0.vortex 100 vortex-file-compressed 261.80 MB 0 B 261.80 MB -100.0%
customer_1.vortex 100 vortex-file-compressed 261.77 MB 0 B 261.77 MB -100.0%
customer_2.vortex 100 vortex-file-compressed 261.69 MB 0 B 261.69 MB -100.0%
customer_3.vortex 100 vortex-file-compressed 261.80 MB 0 B 261.80 MB -100.0%
duckdb.db 100 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
lineitem_0.vortex 100 vortex-file-compressed 148.68 MB 0 B 148.68 MB -100.0%
lineitem_1.vortex 100 vortex-file-compressed 148.56 MB 0 B 148.56 MB -100.0%
lineitem_10.vortex 100 vortex-file-compressed 148.35 MB 0 B 148.35 MB -100.0%
lineitem_100.vortex 100 vortex-file-compressed 148.11 MB 0 B 148.11 MB -100.0%
lineitem_101.vortex 100 vortex-file-compressed 148.35 MB 0 B 148.35 MB -100.0%
lineitem_102.vortex 100 vortex-file-compressed 148.14 MB 0 B 148.14 MB -100.0%
lineitem_103.vortex 100 vortex-file-compressed 148.37 MB 0 B 148.37 MB -100.0%
lineitem_104.vortex 100 vortex-file-compressed 148.59 MB 0 B 148.59 MB -100.0%
lineitem_105.vortex 100 vortex-file-compressed 147.47 MB 0 B 147.47 MB -100.0%
lineitem_106.vortex 100 vortex-file-compressed 148.07 MB 0 B 148.07 MB -100.0%
lineitem_107.vortex 100 vortex-file-compressed 148.04 MB 0 B 148.04 MB -100.0%
lineitem_108.vortex 100 vortex-file-compressed 147.29 MB 0 B 147.29 MB -100.0%
lineitem_109.vortex 100 vortex-file-compressed 148.03 MB 0 B 148.03 MB -100.0%
lineitem_11.vortex 100 vortex-file-compressed 148.62 MB 0 B 148.62 MB -100.0%
lineitem_110.vortex 100 vortex-file-compressed 148.41 MB 0 B 148.41 MB -100.0%
lineitem_111.vortex 100 vortex-file-compressed 147.77 MB 0 B 147.77 MB -100.0%
lineitem_112.vortex 100 vortex-file-compressed 147.42 MB 0 B 147.42 MB -100.0%
lineitem_113.vortex 100 vortex-file-compressed 147.56 MB 0 B 147.56 MB -100.0%
lineitem_114.vortex 100 vortex-file-compressed 147.46 MB 0 B 147.46 MB -100.0%
lineitem_115.vortex 100 vortex-file-compressed 147.64 MB 0 B 147.64 MB -100.0%
lineitem_116.vortex 100 vortex-file-compressed 148.20 MB 0 B 148.20 MB -100.0%
lineitem_117.vortex 100 vortex-file-compressed 148.24 MB 0 B 148.24 MB -100.0%
lineitem_118.vortex 100 vortex-file-compressed 147.83 MB 0 B 147.83 MB -100.0%
lineitem_119.vortex 100 vortex-file-compressed 148.33 MB 0 B 148.33 MB -100.0%
lineitem_12.vortex 100 vortex-file-compressed 148.19 MB 0 B 148.19 MB -100.0%
lineitem_120.vortex 100 vortex-file-compressed 147.10 MB 0 B 147.10 MB -100.0%
lineitem_13.vortex 100 vortex-file-compressed 148.26 MB 0 B 148.26 MB -100.0%
lineitem_14.vortex 100 vortex-file-compressed 147.79 MB 0 B 147.79 MB -100.0%
lineitem_15.vortex 100 vortex-file-compressed 147.63 MB 0 B 147.63 MB -100.0%
lineitem_16.vortex 100 vortex-file-compressed 148.03 MB 0 B 148.03 MB -100.0%
lineitem_17.vortex 100 vortex-file-compressed 148.59 MB 0 B 148.59 MB -100.0%
lineitem_18.vortex 100 vortex-file-compressed 147.55 MB 0 B 147.55 MB -100.0%
lineitem_19.vortex 100 vortex-file-compressed 148.77 MB 0 B 148.77 MB -100.0%
lineitem_2.vortex 100 vortex-file-compressed 148.59 MB 0 B 148.59 MB -100.0%
lineitem_20.vortex 100 vortex-file-compressed 148.78 MB 0 B 148.78 MB -100.0%
lineitem_21.vortex 100 vortex-file-compressed 148.33 MB 0 B 148.33 MB -100.0%
lineitem_22.vortex 100 vortex-file-compressed 147.32 MB 0 B 147.32 MB -100.0%
lineitem_23.vortex 100 vortex-file-compressed 148.19 MB 0 B 148.19 MB -100.0%
lineitem_24.vortex 100 vortex-file-compressed 147.50 MB 0 B 147.50 MB -100.0%
lineitem_25.vortex 100 vortex-file-compressed 148.52 MB 0 B 148.52 MB -100.0%
lineitem_26.vortex 100 vortex-file-compressed 148.11 MB 0 B 148.11 MB -100.0%
lineitem_27.vortex 100 vortex-file-compressed 148.45 MB 0 B 148.45 MB -100.0%
lineitem_28.vortex 100 vortex-file-compressed 148.66 MB 0 B 148.66 MB -100.0%
lineitem_29.vortex 100 vortex-file-compressed 148.75 MB 0 B 148.75 MB -100.0%
lineitem_3.vortex 100 vortex-file-compressed 148.16 MB 0 B 148.16 MB -100.0%
lineitem_30.vortex 100 vortex-file-compressed 147.46 MB 0 B 147.46 MB -100.0%
lineitem_31.vortex 100 vortex-file-compressed 148.50 MB 0 B 148.50 MB -100.0%
lineitem_32.vortex 100 vortex-file-compressed 148.90 MB 0 B 148.90 MB -100.0%
lineitem_33.vortex 100 vortex-file-compressed 147.74 MB 0 B 147.74 MB -100.0%
lineitem_34.vortex 100 vortex-file-compressed 148.93 MB 0 B 148.93 MB -100.0%
lineitem_35.vortex 100 vortex-file-compressed 148.35 MB 0 B 148.35 MB -100.0%
lineitem_36.vortex 100 vortex-file-compressed 147.64 MB 0 B 147.64 MB -100.0%
lineitem_37.vortex 100 vortex-file-compressed 147.47 MB 0 B 147.47 MB -100.0%
lineitem_38.vortex 100 vortex-file-compressed 149.09 MB 0 B 149.09 MB -100.0%
lineitem_39.vortex 100 vortex-file-compressed 147.38 MB 0 B 147.38 MB -100.0%
lineitem_4.vortex 100 vortex-file-compressed 147.27 MB 0 B 147.27 MB -100.0%
lineitem_40.vortex 100 vortex-file-compressed 147.97 MB 0 B 147.97 MB -100.0%
lineitem_41.vortex 100 vortex-file-compressed 146.66 MB 0 B 146.66 MB -100.0%
lineitem_42.vortex 100 vortex-file-compressed 148.38 MB 0 B 148.38 MB -100.0%
lineitem_43.vortex 100 vortex-file-compressed 147.84 MB 0 B 147.84 MB -100.0%
lineitem_44.vortex 100 vortex-file-compressed 147.91 MB 0 B 147.91 MB -100.0%
lineitem_45.vortex 100 vortex-file-compressed 146.88 MB 0 B 146.88 MB -100.0%
lineitem_46.vortex 100 vortex-file-compressed 147.77 MB 0 B 147.77 MB -100.0%
lineitem_47.vortex 100 vortex-file-compressed 148.26 MB 0 B 148.26 MB -100.0%
lineitem_48.vortex 100 vortex-file-compressed 148.23 MB 0 B 148.23 MB -100.0%
lineitem_49.vortex 100 vortex-file-compressed 148.47 MB 0 B 148.47 MB -100.0%
lineitem_5.vortex 100 vortex-file-compressed 148.16 MB 0 B 148.16 MB -100.0%
lineitem_50.vortex 100 vortex-file-compressed 148.88 MB 0 B 148.88 MB -100.0%
lineitem_51.vortex 100 vortex-file-compressed 148.42 MB 0 B 148.42 MB -100.0%
lineitem_52.vortex 100 vortex-file-compressed 146.97 MB 0 B 146.97 MB -100.0%
lineitem_53.vortex 100 vortex-file-compressed 148.23 MB 0 B 148.23 MB -100.0%
lineitem_54.vortex 100 vortex-file-compressed 149.12 MB 0 B 149.12 MB -100.0%
lineitem_55.vortex 100 vortex-file-compressed 148.16 MB 0 B 148.16 MB -100.0%
lineitem_56.vortex 100 vortex-file-compressed 147.73 MB 0 B 147.73 MB -100.0%
lineitem_57.vortex 100 vortex-file-compressed 148.37 MB 0 B 148.37 MB -100.0%
lineitem_58.vortex 100 vortex-file-compressed 148.72 MB 0 B 148.72 MB -100.0%
lineitem_59.vortex 100 vortex-file-compressed 148.42 MB 0 B 148.42 MB -100.0%
lineitem_6.vortex 100 vortex-file-compressed 147.90 MB 0 B 147.90 MB -100.0%
lineitem_60.vortex 100 vortex-file-compressed 148.62 MB 0 B 148.62 MB -100.0%
lineitem_61.vortex 100 vortex-file-compressed 147.73 MB 0 B 147.73 MB -100.0%
lineitem_62.vortex 100 vortex-file-compressed 146.94 MB 0 B 146.94 MB -100.0%
lineitem_63.vortex 100 vortex-file-compressed 148.65 MB 0 B 148.65 MB -100.0%
lineitem_64.vortex 100 vortex-file-compressed 147.72 MB 0 B 147.72 MB -100.0%
lineitem_65.vortex 100 vortex-file-compressed 147.57 MB 0 B 147.57 MB -100.0%
lineitem_66.vortex 100 vortex-file-compressed 148.09 MB 0 B 148.09 MB -100.0%
lineitem_67.vortex 100 vortex-file-compressed 148.84 MB 0 B 148.84 MB -100.0%
lineitem_68.vortex 100 vortex-file-compressed 148.03 MB 0 B 148.03 MB -100.0%
lineitem_69.vortex 100 vortex-file-compressed 148.10 MB 0 B 148.10 MB -100.0%
lineitem_7.vortex 100 vortex-file-compressed 147.86 MB 0 B 147.86 MB -100.0%
lineitem_70.vortex 100 vortex-file-compressed 147.89 MB 0 B 147.89 MB -100.0%
lineitem_71.vortex 100 vortex-file-compressed 147.94 MB 0 B 147.94 MB -100.0%
lineitem_72.vortex 100 vortex-file-compressed 147.99 MB 0 B 147.99 MB -100.0%
lineitem_73.vortex 100 vortex-file-compressed 148.32 MB 0 B 148.32 MB -100.0%
lineitem_74.vortex 100 vortex-file-compressed 147.55 MB 0 B 147.55 MB -100.0%
lineitem_75.vortex 100 vortex-file-compressed 147.88 MB 0 B 147.88 MB -100.0%
lineitem_76.vortex 100 vortex-file-compressed 147.35 MB 0 B 147.35 MB -100.0%
lineitem_77.vortex 100 vortex-file-compressed 148.24 MB 0 B 148.24 MB -100.0%
lineitem_78.vortex 100 vortex-file-compressed 147.35 MB 0 B 147.35 MB -100.0%
lineitem_79.vortex 100 vortex-file-compressed 148.43 MB 0 B 148.43 MB -100.0%
lineitem_8.vortex 100 vortex-file-compressed 148.56 MB 0 B 148.56 MB -100.0%
lineitem_80.vortex 100 vortex-file-compressed 147.55 MB 0 B 147.55 MB -100.0%
lineitem_81.vortex 100 vortex-file-compressed 147.76 MB 0 B 147.76 MB -100.0%
lineitem_82.vortex 100 vortex-file-compressed 148.37 MB 0 B 148.37 MB -100.0%
lineitem_83.vortex 100 vortex-file-compressed 148.68 MB 0 B 148.68 MB -100.0%
lineitem_84.vortex 100 vortex-file-compressed 147.94 MB 0 B 147.94 MB -100.0%
lineitem_85.vortex 100 vortex-file-compressed 147.92 MB 0 B 147.92 MB -100.0%
lineitem_86.vortex 100 vortex-file-compressed 147.62 MB 0 B 147.62 MB -100.0%
lineitem_87.vortex 100 vortex-file-compressed 147.46 MB 0 B 147.46 MB -100.0%
lineitem_88.vortex 100 vortex-file-compressed 148.71 MB 0 B 148.71 MB -100.0%
lineitem_89.vortex 100 vortex-file-compressed 148.03 MB 0 B 148.03 MB -100.0%
lineitem_9.vortex 100 vortex-file-compressed 148.87 MB 0 B 148.87 MB -100.0%
lineitem_90.vortex 100 vortex-file-compressed 147.82 MB 0 B 147.82 MB -100.0%
lineitem_91.vortex 100 vortex-file-compressed 148.27 MB 0 B 148.27 MB -100.0%
lineitem_92.vortex 100 vortex-file-compressed 148.08 MB 0 B 148.08 MB -100.0%
lineitem_93.vortex 100 vortex-file-compressed 147.77 MB 0 B 147.77 MB -100.0%
lineitem_94.vortex 100 vortex-file-compressed 148.40 MB 0 B 148.40 MB -100.0%
lineitem_95.vortex 100 vortex-file-compressed 147.49 MB 0 B 147.49 MB -100.0%
lineitem_96.vortex 100 vortex-file-compressed 148.03 MB 0 B 148.03 MB -100.0%
lineitem_97.vortex 100 vortex-file-compressed 148.10 MB 0 B 148.10 MB -100.0%
lineitem_98.vortex 100 vortex-file-compressed 148.59 MB 0 B 148.59 MB -100.0%
lineitem_99.vortex 100 vortex-file-compressed 147.26 MB 0 B 147.26 MB -100.0%
nation_0.vortex 100 vortex-file-compressed 11.00 KB 0 B 11.00 KB -100.0%
orders_0.vortex 100 vortex-file-compressed 180.00 MB 0 B 180.00 MB -100.0%
orders_1.vortex 100 vortex-file-compressed 179.92 MB 0 B 179.92 MB -100.0%
orders_10.vortex 100 vortex-file-compressed 180.14 MB 0 B 180.14 MB -100.0%
orders_11.vortex 100 vortex-file-compressed 180.08 MB 0 B 180.08 MB -100.0%
orders_12.vortex 100 vortex-file-compressed 180.32 MB 0 B 180.32 MB -100.0%
orders_13.vortex 100 vortex-file-compressed 179.83 MB 0 B 179.83 MB -100.0%
orders_14.vortex 100 vortex-file-compressed 180.18 MB 0 B 180.18 MB -100.0%
orders_15.vortex 100 vortex-file-compressed 180.19 MB 0 B 180.19 MB -100.0%
orders_16.vortex 100 vortex-file-compressed 179.88 MB 0 B 179.88 MB -100.0%
orders_17.vortex 100 vortex-file-compressed 180.01 MB 0 B 180.01 MB -100.0%
orders_18.vortex 100 vortex-file-compressed 180.45 MB 0 B 180.45 MB -100.0%
orders_19.vortex 100 vortex-file-compressed 180.04 MB 0 B 180.04 MB -100.0%
orders_2.vortex 100 vortex-file-compressed 180.35 MB 0 B 180.35 MB -100.0%
orders_20.vortex 100 vortex-file-compressed 179.85 MB 0 B 179.85 MB -100.0%
orders_21.vortex 100 vortex-file-compressed 179.89 MB 0 B 179.89 MB -100.0%
orders_22.vortex 100 vortex-file-compressed 180.04 MB 0 B 180.04 MB -100.0%
orders_23.vortex 100 vortex-file-compressed 179.94 MB 0 B 179.94 MB -100.0%
orders_24.vortex 100 vortex-file-compressed 179.56 MB 0 B 179.56 MB -100.0%
orders_25.vortex 100 vortex-file-compressed 179.82 MB 0 B 179.82 MB -100.0%
orders_26.vortex 100 vortex-file-compressed 179.99 MB 0 B 179.99 MB -100.0%
orders_27.vortex 100 vortex-file-compressed 179.78 MB 0 B 179.78 MB -100.0%
orders_3.vortex 100 vortex-file-compressed 180.12 MB 0 B 180.12 MB -100.0%
orders_4.vortex 100 vortex-file-compressed 180.39 MB 0 B 180.39 MB -100.0%
orders_5.vortex 100 vortex-file-compressed 180.03 MB 0 B 180.03 MB -100.0%
orders_6.vortex 100 vortex-file-compressed 179.80 MB 0 B 179.80 MB -100.0%
orders_7.vortex 100 vortex-file-compressed 180.12 MB 0 B 180.12 MB -100.0%
orders_8.vortex 100 vortex-file-compressed 180.21 MB 0 B 180.21 MB -100.0%
orders_9.vortex 100 vortex-file-compressed 180.11 MB 0 B 180.11 MB -100.0%
part_0.vortex 100 vortex-file-compressed 28.45 MB 0 B 28.45 MB -100.0%
part_1.vortex 100 vortex-file-compressed 28.49 MB 0 B 28.49 MB -100.0%
part_10.vortex 100 vortex-file-compressed 28.43 MB 0 B 28.43 MB -100.0%
part_11.vortex 100 vortex-file-compressed 28.45 MB 0 B 28.45 MB -100.0%
part_12.vortex 100 vortex-file-compressed 28.43 MB 0 B 28.43 MB -100.0%
part_13.vortex 100 vortex-file-compressed 28.44 MB 0 B 28.44 MB -100.0%
part_14.vortex 100 vortex-file-compressed 28.46 MB 0 B 28.46 MB -100.0%
part_15.vortex 100 vortex-file-compressed 28.48 MB 0 B 28.48 MB -100.0%
part_16.vortex 100 vortex-file-compressed 28.42 MB 0 B 28.42 MB -100.0%
part_17.vortex 100 vortex-file-compressed 28.41 MB 0 B 28.41 MB -100.0%
part_18.vortex 100 vortex-file-compressed 28.51 MB 0 B 28.51 MB -100.0%
part_2.vortex 100 vortex-file-compressed 28.46 MB 0 B 28.46 MB -100.0%
part_3.vortex 100 vortex-file-compressed 28.43 MB 0 B 28.43 MB -100.0%
part_4.vortex 100 vortex-file-compressed 28.42 MB 0 B 28.42 MB -100.0%
part_5.vortex 100 vortex-file-compressed 28.38 MB 0 B 28.38 MB -100.0%
part_6.vortex 100 vortex-file-compressed 28.44 MB 0 B 28.44 MB -100.0%
part_7.vortex 100 vortex-file-compressed 28.41 MB 0 B 28.41 MB -100.0%
part_8.vortex 100 vortex-file-compressed 28.43 MB 0 B 28.43 MB -100.0%
part_9.vortex 100 vortex-file-compressed 28.41 MB 0 B 28.41 MB -100.0%
partsupp_0.vortex 100 vortex-file-compressed 191.37 MB 0 B 191.37 MB -100.0%
partsupp_1.vortex 100 vortex-file-compressed 191.69 MB 0 B 191.69 MB -100.0%
partsupp_10.vortex 100 vortex-file-compressed 191.59 MB 0 B 191.59 MB -100.0%
partsupp_11.vortex 100 vortex-file-compressed 191.43 MB 0 B 191.43 MB -100.0%
partsupp_12.vortex 100 vortex-file-compressed 191.50 MB 0 B 191.50 MB -100.0%
partsupp_13.vortex 100 vortex-file-compressed 191.35 MB 0 B 191.35 MB -100.0%
partsupp_14.vortex 100 vortex-file-compressed 191.62 MB 0 B 191.62 MB -100.0%
partsupp_15.vortex 100 vortex-file-compressed 191.52 MB 0 B 191.52 MB -100.0%
partsupp_16.vortex 100 vortex-file-compressed 191.25 MB 0 B 191.25 MB -100.0%
partsupp_17.vortex 100 vortex-file-compressed 191.49 MB 0 B 191.49 MB -100.0%
partsupp_18.vortex 100 vortex-file-compressed 191.38 MB 0 B 191.38 MB -100.0%
partsupp_2.vortex 100 vortex-file-compressed 191.39 MB 0 B 191.39 MB -100.0%
partsupp_3.vortex 100 vortex-file-compressed 191.37 MB 0 B 191.37 MB -100.0%
partsupp_4.vortex 100 vortex-file-compressed 191.40 MB 0 B 191.40 MB -100.0%
partsupp_5.vortex 100 vortex-file-compressed 191.41 MB 0 B 191.41 MB -100.0%
partsupp_6.vortex 100 vortex-file-compressed 191.38 MB 0 B 191.38 MB -100.0%
partsupp_7.vortex 100 vortex-file-compressed 191.61 MB 0 B 191.61 MB -100.0%
partsupp_8.vortex 100 vortex-file-compressed 191.49 MB 0 B 191.49 MB -100.0%
partsupp_9.vortex 100 vortex-file-compressed 191.50 MB 0 B 191.50 MB -100.0%
region_0.vortex 100 vortex-file-compressed 6.16 KB 0 B 6.16 KB -100.0%
supplier_0.vortex 100 vortex-file-compressed 66.71 MB 0 B 66.71 MB -100.0%

Totals:

  • vortex-compact: 11.86 GB → 1.23 GB (-89.6%)
  • vortex-file-compressed: 49.77 GB → 1.79 GB (-96.4%)
Full attributed analysis
Query Config Raw Δ Control Δ Attributed α Noise floor Significant?
0 datafusion:vortex-compact +9.4% +4.7% +4.5% +47.4% ➖ noise
0 datafusion:vortex-file-compressed +11.6% +4.7% +6.5% +49.0% ➖ noise
0 duckdb:vortex-compact +6.7% +4.7% +1.9% +120.7% ➖ noise
0 duckdb:vortex-file-compressed +21.6% +4.7% +16.1% +77.0% ➖ noise
1 datafusion:vortex-compact -5.7% +1.0% -6.6% +13.8% ➖ noise
1 datafusion:vortex-file-compressed +0.0% +1.0% -1.0% +26.9% ➖ noise
1 duckdb:vortex-compact +0.4% +1.0% -0.5% +22.8% ➖ noise
1 duckdb:vortex-file-compressed +7.2% +1.0% +6.2% +65.2% ➖ noise
2 datafusion:vortex-compact +7.5% +1.4% +6.0% +15.1% ➖ noise
2 datafusion:vortex-file-compressed -0.5% +1.4% -1.9% +10.0% ➖ noise
2 duckdb:vortex-compact +1.9% +1.4% +0.5% +15.8% ➖ noise
2 duckdb:vortex-file-compressed +1.1% +1.4% -0.3% +10.0% ➖ noise
3 datafusion:vortex-compact -0.8% +3.4% -4.1% +10.0% ➖ noise
3 datafusion:vortex-file-compressed +0.0% +3.4% -3.3% +36.8% ➖ noise
3 duckdb:vortex-compact +1.5% +3.4% -1.9% +10.0% ➖ noise
3 duckdb:vortex-file-compressed -22.0% +3.4% -24.6% +30.8% ✅ faster
4 datafusion:vortex-compact +2.0% +3.0% -1.0% +10.0% ➖ noise
4 datafusion:vortex-file-compressed -2.1% +3.0% -4.9% +10.0% ➖ noise
4 duckdb:vortex-compact +1.2% +3.0% -1.8% +10.0% ➖ noise
4 duckdb:vortex-file-compressed +1.1% +3.0% -1.9% +10.0% ➖ noise
5 datafusion:vortex-compact +0.9% +1.1% -0.2% +10.0% ➖ noise
5 datafusion:vortex-file-compressed +0.2% +1.1% -0.9% +10.0% ➖ noise
5 duckdb:vortex-compact +1.4% +1.1% +0.2% +10.0% ➖ noise
5 duckdb:vortex-file-compressed +0.7% +1.1% -0.4% +10.0% ➖ noise
6 datafusion:vortex-compact +1.3% -0.4% +1.7% +10.0% ➖ noise
6 datafusion:vortex-file-compressed +11.9% -0.4% +12.3% +10.0% 🚨 regression
6 duckdb:vortex-compact +2.0% -0.4% +2.4% +10.0% ➖ noise
6 duckdb:vortex-file-compressed +4.3% -0.4% +4.7% +10.0% ➖ noise
7 datafusion:vortex-compact +1.4% +1.5% -0.1% +10.0% ➖ noise
7 datafusion:vortex-file-compressed -1.7% +1.5% -3.2% +21.3% ➖ noise
7 duckdb:vortex-compact +3.4% +1.5% +1.9% +10.0% ➖ noise
7 duckdb:vortex-file-compressed +1.0% +1.5% -0.5% +13.4% ➖ noise
8 datafusion:vortex-compact -0.1% +7.5% -7.0% +24.7% ➖ noise
8 datafusion:vortex-file-compressed -1.8% +7.5% -8.6% +11.6% ➖ noise
8 duckdb:vortex-compact -3.1% +7.5% -9.8% +11.1% ➖ noise
8 duckdb:vortex-file-compressed +1.4% +7.5% -5.6% +33.6% ➖ noise

@joseph-isaacs joseph-isaacs force-pushed the claude/avx512-decode-benchmark-wRhkZ branch from 2042c37 to 50b0e93 Compare May 29, 2026 10:20
@github-actions
Copy link
Copy Markdown
Contributor

Benchmarks: TPC-H SF=1 on NVME

Verdict: No clear signal (low confidence)
Attributed Vortex impact: -0.8%
Engines: DataFusion No clear signal (-0.5%, environment too noisy confidence) · DuckDB No clear signal (-1.1%, low confidence)
Vortex (geomean): 1.008x ➖
Parquet (geomean): 1.015x ➖
Shifts: Parquet (control) +1.5% · Median polish +0.6%

How to read Verdict and Engines
  • Verdict: Overall PR-level signal after subtracting baseline drift estimated from Parquet control rows. It can be Likely improvement, Likely regression, or No clear signal.
  • Engines: Per-engine attribution. DataFusion is compared against DataFusion/Parquet controls; DuckDB is compared against DuckDB/Parquet controls. This answers whether each engine improved or regressed independently.
  • Confidence: Based on directional consistency, share of rows above the noise floor, and control-run noise.

datafusion / vortex-file-compressed (1.010x ➖, 0↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/datafusion:vortex-file-compressed 52392863 49623489 1.06
tpch_q02/datafusion:vortex-file-compressed 22181011 22238055 1.00
tpch_q03/datafusion:vortex-file-compressed 28519243 27371425 1.04
tpch_q04/datafusion:vortex-file-compressed 19746887 20439433 0.97
tpch_q05/datafusion:vortex-file-compressed 48194023 47908826 1.01
tpch_q06/datafusion:vortex-file-compressed 10612176 10794789 0.98
tpch_q07/datafusion:vortex-file-compressed 55192795 53226454 1.04
tpch_q08/datafusion:vortex-file-compressed 39631263 38556184 1.03
tpch_q09/datafusion:vortex-file-compressed 50950044 53458230 0.95
tpch_q10/datafusion:vortex-file-compressed 39781213 38043681 1.05
tpch_q11/datafusion:vortex-file-compressed 16635978 16146633 1.03
tpch_q12/datafusion:vortex-file-compressed 23925494 24134942 0.99
tpch_q13/datafusion:vortex-file-compressed 24351659 24855247 0.98
tpch_q14/datafusion:vortex-file-compressed 16444702 15501160 1.06
tpch_q15/datafusion:vortex-file-compressed 24157060 25141869 0.96
tpch_q16/datafusion:vortex-file-compressed 19510475 19956297 0.98
tpch_q17/datafusion:vortex-file-compressed 65819671 68025353 0.97
tpch_q18/datafusion:vortex-file-compressed 84956451 80770892 1.05
tpch_q19/datafusion:vortex-file-compressed 20220684 20009466 1.01
tpch_q20/datafusion:vortex-file-compressed 29277011 29524594 0.99
tpch_q21/datafusion:vortex-file-compressed 72340985 71573717 1.01
tpch_q22/datafusion:vortex-file-compressed 13073448 12114189 1.08
datafusion / vortex-compact (1.001x ➖, 0↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/datafusion:vortex-compact 58181306 56847153 1.02
tpch_q02/datafusion:vortex-compact 25704050 25722901 1.00
tpch_q03/datafusion:vortex-compact 28669228 28601021 1.00
tpch_q04/datafusion:vortex-compact 22312865 23199179 0.96
tpch_q05/datafusion:vortex-compact 51813636 51039201 1.02
tpch_q06/datafusion:vortex-compact 12503511 12760276 0.98
tpch_q07/datafusion:vortex-compact 58748458 58183703 1.01
tpch_q08/datafusion:vortex-compact 42340864 43250566 0.98
tpch_q09/datafusion:vortex-compact 57543863 54845764 1.05
tpch_q10/datafusion:vortex-compact 45552423 45306445 1.01
tpch_q11/datafusion:vortex-compact 16456136 17008071 0.97
tpch_q12/datafusion:vortex-compact 31270634 30481390 1.03
tpch_q13/datafusion:vortex-compact 32307329 31601758 1.02
tpch_q14/datafusion:vortex-compact 18972368 19870946 0.95
tpch_q15/datafusion:vortex-compact 30862684 31219266 0.99
tpch_q16/datafusion:vortex-compact 23202234 23907125 0.97
tpch_q17/datafusion:vortex-compact 70082415 70085367 1.00
tpch_q18/datafusion:vortex-compact 83772942 83220644 1.01
tpch_q19/datafusion:vortex-compact 30183591 29767862 1.01
tpch_q20/datafusion:vortex-compact 34485649 34211896 1.01
tpch_q21/datafusion:vortex-compact 75640804 74242167 1.02
tpch_q22/datafusion:vortex-compact 12784856 12417106 1.03
datafusion / parquet (1.010x ➖, 1↑ 1↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/datafusion:parquet 🚨 133884338 119717375 1.12
tpch_q02/datafusion:parquet 62446854 60943531 1.02
tpch_q03/datafusion:parquet 70415251 67178309 1.05
tpch_q04/datafusion:parquet 42917361 43003256 1.00
tpch_q05/datafusion:parquet 94474219 93788314 1.01
tpch_q06/datafusion:parquet 41426820 40793179 1.02
tpch_q07/datafusion:parquet 105318951 104952609 1.00
tpch_q08/datafusion:parquet 93253374 91733425 1.02
tpch_q09/datafusion:parquet 127998850 127864099 1.00
tpch_q10/datafusion:parquet 111781479 109045295 1.03
tpch_q11/datafusion:parquet 40816803 40036452 1.02
tpch_q12/datafusion:parquet 76903451 75722480 1.02
tpch_q13/datafusion:parquet 201197153 200734606 1.00
tpch_q14/datafusion:parquet 46441270 46414043 1.00
tpch_q15/datafusion:parquet 59763827 57247929 1.04
tpch_q16/datafusion:parquet 40063950 40277344 0.99
tpch_q17/datafusion:parquet 132343372 123495882 1.07
tpch_q18/datafusion:parquet 162721873 161428729 1.01
tpch_q19/datafusion:parquet 🚀 60730880 80759365 0.75
tpch_q20/datafusion:parquet 69582516 69060096 1.01
tpch_q21/datafusion:parquet 134038264 129025320 1.04
tpch_q22/datafusion:parquet 31599018 30169885 1.05
datafusion / arrow (1.004x ➖, 1↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/datafusion:arrow 🚀 49887896 59131711 0.84
tpch_q02/datafusion:arrow 18599374 18933899 0.98
tpch_q03/datafusion:arrow 29354388 29063362 1.01
tpch_q04/datafusion:arrow 25150205 24953362 1.01
tpch_q05/datafusion:arrow 81289063 74017311 1.10
tpch_q06/datafusion:arrow 20374301 19133529 1.06
tpch_q07/datafusion:arrow 104518877 100097115 1.04
tpch_q08/datafusion:arrow 43164658 39809339 1.08
tpch_q09/datafusion:arrow 64436843 63978679 1.01
tpch_q10/datafusion:arrow 44913036 49110527 0.91
tpch_q11/datafusion:arrow 8959455 9216689 0.97
tpch_q12/datafusion:arrow 51136193 50870996 1.01
tpch_q13/datafusion:arrow 46801490 47220080 0.99
tpch_q14/datafusion:arrow 21238071 21150450 1.00
tpch_q15/datafusion:arrow 40573846 41327720 0.98
tpch_q16/datafusion:arrow 18913262 18548901 1.02
tpch_q17/datafusion:arrow 67154969 66515954 1.01
tpch_q18/datafusion:arrow 135703499 134454282 1.01
tpch_q19/datafusion:arrow 35756814 34724480 1.03
tpch_q20/datafusion:arrow 34423506 33621978 1.02
tpch_q21/datafusion:arrow 159467509 155438498 1.03
tpch_q22/datafusion:arrow 17545068 17917864 0.98
duckdb / vortex-file-compressed (1.008x ➖, 0↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/duckdb:vortex-file-compressed 31190018 31317713 1.00
tpch_q02/duckdb:vortex-file-compressed 24477814 24622680 0.99
tpch_q03/duckdb:vortex-file-compressed 32820657 32008254 1.03
tpch_q04/duckdb:vortex-file-compressed 28875977 28288475 1.02
tpch_q05/duckdb:vortex-file-compressed 37382578 36895804 1.01
tpch_q06/duckdb:vortex-file-compressed 8315763 8514857 0.98
tpch_q07/duckdb:vortex-file-compressed 34640626 34441168 1.01
tpch_q08/duckdb:vortex-file-compressed 37100952 37511014 0.99
tpch_q09/duckdb:vortex-file-compressed 57665728 56415916 1.02
tpch_q10/duckdb:vortex-file-compressed 40804629 41224969 0.99
tpch_q11/duckdb:vortex-file-compressed 14777148 14265625 1.04
tpch_q12/duckdb:vortex-file-compressed 22363484 21917033 1.02
tpch_q13/duckdb:vortex-file-compressed 40949348 40416163 1.01
tpch_q14/duckdb:vortex-file-compressed 21748618 21769139 1.00
tpch_q15/duckdb:vortex-file-compressed 17011823 17454944 0.97
tpch_q16/duckdb:vortex-file-compressed 29515847 28621088 1.03
tpch_q17/duckdb:vortex-file-compressed 25110721 23568365 1.07
tpch_q18/duckdb:vortex-file-compressed 52594162 53030491 0.99
tpch_q19/duckdb:vortex-file-compressed 28846769 28918939 1.00
tpch_q20/duckdb:vortex-file-compressed 32789881 32493867 1.01
tpch_q21/duckdb:vortex-file-compressed 100752683 99340670 1.01
tpch_q22/duckdb:vortex-file-compressed 16984221 16882825 1.01
duckdb / vortex-compact (1.013x ➖, 0↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/duckdb:vortex-compact 38422163 38391584 1.00
tpch_q02/duckdb:vortex-compact 34361309 34326846 1.00
tpch_q03/duckdb:vortex-compact 33951289 33982403 1.00
tpch_q04/duckdb:vortex-compact 30991961 31577779 0.98
tpch_q05/duckdb:vortex-compact 40341989 39989205 1.01
tpch_q06/duckdb:vortex-compact 11631550 11076129 1.05
tpch_q07/duckdb:vortex-compact 39993731 40144584 1.00
tpch_q08/duckdb:vortex-compact 42219261 41201735 1.02
tpch_q09/duckdb:vortex-compact 65765700 64864022 1.01
tpch_q10/duckdb:vortex-compact 45076404 44449088 1.01
tpch_q11/duckdb:vortex-compact 18679133 18023776 1.04
tpch_q12/duckdb:vortex-compact 29341693 29548278 0.99
tpch_q13/duckdb:vortex-compact 46639981 46022579 1.01
tpch_q14/duckdb:vortex-compact 26140378 25755183 1.01
tpch_q15/duckdb:vortex-compact 19777355 19636902 1.01
tpch_q16/duckdb:vortex-compact 33274505 32746163 1.02
tpch_q17/duckdb:vortex-compact 29348081 29010520 1.01
tpch_q18/duckdb:vortex-compact 54064503 53098844 1.02
tpch_q19/duckdb:vortex-compact 33057790 32461516 1.02
tpch_q20/duckdb:vortex-compact 40403226 39920341 1.01
tpch_q21/duckdb:vortex-compact 103700044 101637455 1.02
tpch_q22/duckdb:vortex-compact 18653813 17861259 1.04
duckdb / parquet (1.021x ➖, 0↑ 3↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/duckdb:parquet 78784866 75902030 1.04
tpch_q02/duckdb:parquet 39159069 38815844 1.01
tpch_q03/duckdb:parquet 70152514 70377051 1.00
tpch_q04/duckdb:parquet 49454013 49745630 0.99
tpch_q05/duckdb:parquet 67824991 67745913 1.00
tpch_q06/duckdb:parquet 22098032 22216255 0.99
tpch_q07/duckdb:parquet 69258577 71033363 0.98
tpch_q08/duckdb:parquet 🚨 92314988 82080706 1.12
tpch_q09/duckdb:parquet 🚨 152650671 134675072 1.13
tpch_q10/duckdb:parquet 124796081 127334629 0.98
tpch_q11/duckdb:parquet 22505028 22029737 1.02
tpch_q12/duckdb:parquet 🚨 52363745 46688440 1.12
tpch_q13/duckdb:parquet 254431076 251525082 1.01
tpch_q14/duckdb:parquet 51285862 50239749 1.02
tpch_q15/duckdb:parquet 27300080 26853037 1.02
tpch_q16/duckdb:parquet 57536041 57745408 1.00
tpch_q17/duckdb:parquet 55931747 56691726 0.99
tpch_q18/duckdb:parquet 119057598 118635338 1.00
tpch_q19/duckdb:parquet 69999592 68253893 1.03
tpch_q20/duckdb:parquet 65435520 64909734 1.01
tpch_q21/duckdb:parquet 180018633 174603897 1.03
tpch_q22/duckdb:parquet 53143873 53865607 0.99
duckdb / duckdb (1.007x ➖, 0↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/duckdb:duckdb 17459380 17389806 1.00
tpch_q02/duckdb:duckdb 14417797 13944877 1.03
tpch_q03/duckdb:duckdb 22484543 22038553 1.02
tpch_q04/duckdb:duckdb 21764938 22434276 0.97
tpch_q05/duckdb:duckdb 23372845 22594379 1.03
tpch_q06/duckdb:duckdb 7029904 6950162 1.01
tpch_q07/duckdb:duckdb 25215194 25231890 1.00
tpch_q08/duckdb:duckdb 23918150 23751257 1.01
tpch_q09/duckdb:duckdb 58704094 56433186 1.04
tpch_q10/duckdb:duckdb 51254965 50886961 1.01
tpch_q11/duckdb:duckdb 7087805 7093870 1.00
tpch_q12/duckdb:duckdb 17967547 18049638 1.00
tpch_q13/duckdb:duckdb 38452603 39659959 0.97
tpch_q14/duckdb:duckdb 21484379 21388819 1.00
tpch_q15/duckdb:duckdb 13767689 13776365 1.00
tpch_q16/duckdb:duckdb 26202956 25860692 1.01
tpch_q17/duckdb:duckdb 15905042 15951862 1.00
tpch_q18/duckdb:duckdb 40476837 40916719 0.99
tpch_q19/duckdb:duckdb 31438198 30564610 1.03
tpch_q20/duckdb:duckdb 25161267 25228254 1.00
tpch_q21/duckdb:duckdb 61433220 61226406 1.00
tpch_q22/duckdb:duckdb 25678901 24793583 1.04

File Size Changes (526 files changed, -99.3% overall, 0↑ 526↓)
File Scale Format Base HEAD Change %
addressview.vortex 1.0 vortex-compact 24.53 MB 0 B 24.53 MB -100.0%
categoryview.vortex 1.0 vortex-compact 19.86 KB 0 B 19.86 KB -100.0%
creditcardview.vortex 1.0 vortex-compact 32.23 MB 0 B 32.23 MB -100.0%
customerview.vortex 1.0 vortex-compact 10.60 MB 0 B 10.60 MB -100.0%
duckdb.db 1.0 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
orderitemnovelty_update.vortex 1.0 vortex-compact 13.14 KB 0 B 13.14 KB -100.0%
orderitemview.vortex 1.0 vortex-compact 156.30 MB 0 B 156.30 MB -100.0%
orderview.vortex 1.0 vortex-compact 32.16 MB 0 B 32.16 MB -100.0%
productview.vortex 1.0 vortex-compact 18.77 KB 0 B 18.77 KB -100.0%
taxrecordview.vortex 1.0 vortex-compact 17.34 MB 0 B 17.34 MB -100.0%
addressview.vortex 1.0 vortex-file-compressed 34.71 MB 0 B 34.71 MB -100.0%
categoryview.vortex 1.0 vortex-file-compressed 20.74 KB 0 B 20.74 KB -100.0%
creditcardview.vortex 1.0 vortex-file-compressed 66.75 MB 0 B 66.75 MB -100.0%
customerview.vortex 1.0 vortex-file-compressed 19.91 MB 0 B 19.91 MB -100.0%
duckdb.db 1.0 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
orderitemnovelty_update.vortex 1.0 vortex-file-compressed 13.14 KB 0 B 13.14 KB -100.0%
orderitemview.vortex 1.0 vortex-file-compressed 297.21 MB 0 B 297.21 MB -100.0%
orderview.vortex 1.0 vortex-file-compressed 88.79 MB 0 B 88.79 MB -100.0%
productview.vortex 1.0 vortex-file-compressed 20.44 KB 0 B 20.44 KB -100.0%
taxrecordview.vortex 1.0 vortex-file-compressed 22.01 MB 0 B 22.01 MB -100.0%
duckdb.db 1.0 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
hits_0.vortex 1.0 vortex-compact 58.66 MB 0 B 58.66 MB -100.0%
hits_1.vortex 1.0 vortex-compact 90.34 MB 0 B 90.34 MB -100.0%
hits_10.vortex 1.0 vortex-compact 48.86 MB 0 B 48.86 MB -100.0%
hits_11.vortex 1.0 vortex-compact 54.35 MB 0 B 54.35 MB -100.0%
hits_12.vortex 1.0 vortex-compact 69.27 MB 0 B 69.27 MB -100.0%
hits_13.vortex 1.0 vortex-compact 67.96 MB 0 B 67.96 MB -100.0%
hits_14.vortex 1.0 vortex-compact 73.75 MB 0 B 73.75 MB -100.0%
hits_15.vortex 1.0 vortex-compact 48.14 MB 0 B 48.14 MB -100.0%
hits_16.vortex 1.0 vortex-compact 48.30 MB 0 B 48.30 MB -100.0%
hits_17.vortex 1.0 vortex-compact 58.32 MB 0 B 58.32 MB -100.0%
hits_18.vortex 1.0 vortex-compact 64.28 MB 0 B 64.28 MB -100.0%
hits_19.vortex 1.0 vortex-compact 44.88 MB 0 B 44.88 MB -100.0%
hits_2.vortex 1.0 vortex-compact 129.36 MB 0 B 129.36 MB -100.0%
hits_20.vortex 1.0 vortex-compact 38.14 MB 0 B 38.14 MB -100.0%
hits_21.vortex 1.0 vortex-compact 51.60 MB 0 B 51.60 MB -100.0%
hits_22.vortex 1.0 vortex-compact 44.74 MB 0 B 44.74 MB -100.0%
hits_23.vortex 1.0 vortex-compact 44.17 MB 0 B 44.17 MB -100.0%
hits_24.vortex 1.0 vortex-compact 43.63 MB 0 B 43.63 MB -100.0%
hits_25.vortex 1.0 vortex-compact 73.14 MB 0 B 73.14 MB -100.0%
hits_26.vortex 1.0 vortex-compact 70.89 MB 0 B 70.89 MB -100.0%
hits_27.vortex 1.0 vortex-compact 69.88 MB 0 B 69.88 MB -100.0%
hits_28.vortex 1.0 vortex-compact 70.27 MB 0 B 70.27 MB -100.0%
hits_29.vortex 1.0 vortex-compact 36.61 MB 0 B 36.61 MB -100.0%
hits_3.vortex 1.0 vortex-compact 94.23 MB 0 B 94.23 MB -100.0%
hits_30.vortex 1.0 vortex-compact 58.69 MB 0 B 58.69 MB -100.0%
hits_31.vortex 1.0 vortex-compact 55.56 MB 0 B 55.56 MB -100.0%
hits_32.vortex 1.0 vortex-compact 44.13 MB 0 B 44.13 MB -100.0%
hits_33.vortex 1.0 vortex-compact 35.95 MB 0 B 35.95 MB -100.0%
hits_34.vortex 1.0 vortex-compact 58.26 MB 0 B 58.26 MB -100.0%
hits_35.vortex 1.0 vortex-compact 75.11 MB 0 B 75.11 MB -100.0%
hits_36.vortex 1.0 vortex-compact 48.99 MB 0 B 48.99 MB -100.0%
hits_37.vortex 1.0 vortex-compact 53.83 MB 0 B 53.83 MB -100.0%
hits_38.vortex 1.0 vortex-compact 63.10 MB 0 B 63.10 MB -100.0%
hits_39.vortex 1.0 vortex-compact 49.82 MB 0 B 49.82 MB -100.0%
hits_4.vortex 1.0 vortex-compact 71.81 MB 0 B 71.81 MB -100.0%
hits_40.vortex 1.0 vortex-compact 75.92 MB 0 B 75.92 MB -100.0%
hits_41.vortex 1.0 vortex-compact 165.78 MB 0 B 165.78 MB -100.0%
hits_42.vortex 1.0 vortex-compact 164.22 MB 0 B 164.22 MB -100.0%
hits_43.vortex 1.0 vortex-compact 168.91 MB 0 B 168.91 MB -100.0%
hits_44.vortex 1.0 vortex-compact 132.46 MB 0 B 132.46 MB -100.0%
hits_45.vortex 1.0 vortex-compact 76.07 MB 0 B 76.07 MB -100.0%
hits_46.vortex 1.0 vortex-compact 41.92 MB 0 B 41.92 MB -100.0%
hits_47.vortex 1.0 vortex-compact 18.25 MB 0 B 18.25 MB -100.0%
hits_48.vortex 1.0 vortex-compact 17.32 MB 0 B 17.32 MB -100.0%
hits_49.vortex 1.0 vortex-compact 50.53 MB 0 B 50.53 MB -100.0%
hits_5.vortex 1.0 vortex-compact 62.90 MB 0 B 62.90 MB -100.0%
hits_50.vortex 1.0 vortex-compact 113.12 MB 0 B 113.12 MB -100.0%
hits_51.vortex 1.0 vortex-compact 167.81 MB 0 B 167.81 MB -100.0%
hits_52.vortex 1.0 vortex-compact 63.73 MB 0 B 63.73 MB -100.0%
hits_53.vortex 1.0 vortex-compact 59.09 MB 0 B 59.09 MB -100.0%
hits_54.vortex 1.0 vortex-compact 117.66 MB 0 B 117.66 MB -100.0%
hits_55.vortex 1.0 vortex-compact 93.77 MB 0 B 93.77 MB -100.0%
hits_56.vortex 1.0 vortex-compact 77.87 MB 0 B 77.87 MB -100.0%
hits_57.vortex 1.0 vortex-compact 83.54 MB 0 B 83.54 MB -100.0%
hits_58.vortex 1.0 vortex-compact 60.41 MB 0 B 60.41 MB -100.0%
hits_59.vortex 1.0 vortex-compact 66.30 MB 0 B 66.30 MB -100.0%
hits_6.vortex 1.0 vortex-compact 63.16 MB 0 B 63.16 MB -100.0%
hits_60.vortex 1.0 vortex-compact 64.33 MB 0 B 64.33 MB -100.0%
hits_61.vortex 1.0 vortex-compact 57.66 MB 0 B 57.66 MB -100.0%
hits_62.vortex 1.0 vortex-compact 74.26 MB 0 B 74.26 MB -100.0%
hits_63.vortex 1.0 vortex-compact 46.10 MB 0 B 46.10 MB -100.0%
hits_64.vortex 1.0 vortex-compact 53.91 MB 0 B 53.91 MB -100.0%
hits_65.vortex 1.0 vortex-compact 129.95 MB 0 B 129.95 MB -100.0%
hits_66.vortex 1.0 vortex-compact 53.49 MB 0 B 53.49 MB -100.0%
hits_67.vortex 1.0 vortex-compact 114.05 MB 0 B 114.05 MB -100.0%
hits_68.vortex 1.0 vortex-compact 75.99 MB 0 B 75.99 MB -100.0%
hits_69.vortex 1.0 vortex-compact 81.02 MB 0 B 81.02 MB -100.0%
hits_7.vortex 1.0 vortex-compact 63.80 MB 0 B 63.80 MB -100.0%
hits_70.vortex 1.0 vortex-compact 61.29 MB 0 B 61.29 MB -100.0%
hits_71.vortex 1.0 vortex-compact 69.29 MB 0 B 69.29 MB -100.0%
hits_72.vortex 1.0 vortex-compact 51.79 MB 0 B 51.79 MB -100.0%
hits_73.vortex 1.0 vortex-compact 70.04 MB 0 B 70.04 MB -100.0%
hits_74.vortex 1.0 vortex-compact 71.62 MB 0 B 71.62 MB -100.0%
hits_75.vortex 1.0 vortex-compact 43.63 MB 0 B 43.63 MB -100.0%
hits_76.vortex 1.0 vortex-compact 76.44 MB 0 B 76.44 MB -100.0%
hits_77.vortex 1.0 vortex-compact 118.11 MB 0 B 118.11 MB -100.0%
hits_78.vortex 1.0 vortex-compact 97.87 MB 0 B 97.87 MB -100.0%
hits_79.vortex 1.0 vortex-compact 85.70 MB 0 B 85.70 MB -100.0%
hits_8.vortex 1.0 vortex-compact 62.89 MB 0 B 62.89 MB -100.0%
hits_80.vortex 1.0 vortex-compact 68.07 MB 0 B 68.07 MB -100.0%
hits_81.vortex 1.0 vortex-compact 65.45 MB 0 B 65.45 MB -100.0%
hits_82.vortex 1.0 vortex-compact 66.89 MB 0 B 66.89 MB -100.0%
hits_83.vortex 1.0 vortex-compact 52.57 MB 0 B 52.57 MB -100.0%
hits_84.vortex 1.0 vortex-compact 73.14 MB 0 B 73.14 MB -100.0%
hits_85.vortex 1.0 vortex-compact 52.73 MB 0 B 52.73 MB -100.0%
hits_86.vortex 1.0 vortex-compact 48.25 MB 0 B 48.25 MB -100.0%
hits_87.vortex 1.0 vortex-compact 119.04 MB 0 B 119.04 MB -100.0%
hits_88.vortex 1.0 vortex-compact 73.31 MB 0 B 73.31 MB -100.0%
hits_89.vortex 1.0 vortex-compact 112.82 MB 0 B 112.82 MB -100.0%
hits_9.vortex 1.0 vortex-compact 65.67 MB 0 B 65.67 MB -100.0%
hits_90.vortex 1.0 vortex-compact 81.86 MB 0 B 81.86 MB -100.0%
hits_91.vortex 1.0 vortex-compact 60.94 MB 0 B 60.94 MB -100.0%
hits_92.vortex 1.0 vortex-compact 94.27 MB 0 B 94.27 MB -100.0%
hits_93.vortex 1.0 vortex-compact 58.90 MB 0 B 58.90 MB -100.0%
hits_94.vortex 1.0 vortex-compact 90.63 MB 0 B 90.63 MB -100.0%
hits_95.vortex 1.0 vortex-compact 57.75 MB 0 B 57.75 MB -100.0%
hits_96.vortex 1.0 vortex-compact 91.08 MB 0 B 91.08 MB -100.0%
hits_97.vortex 1.0 vortex-compact 69.16 MB 0 B 69.16 MB -100.0%
hits_98.vortex 1.0 vortex-compact 72.77 MB 0 B 72.77 MB -100.0%
hits_99.vortex 1.0 vortex-compact 77.31 MB 0 B 77.31 MB -100.0%
duckdb.db 1.0 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
hits_0.vortex 1.0 vortex-file-compressed 112.17 MB 0 B 112.17 MB -100.0%
hits_1.vortex 1.0 vortex-file-compressed 181.16 MB 0 B 181.16 MB -100.0%
hits_10.vortex 1.0 vortex-file-compressed 81.76 MB 0 B 81.76 MB -100.0%
hits_11.vortex 1.0 vortex-file-compressed 96.07 MB 0 B 96.07 MB -100.0%
hits_12.vortex 1.0 vortex-file-compressed 125.34 MB 0 B 125.34 MB -100.0%
hits_13.vortex 1.0 vortex-file-compressed 123.20 MB 0 B 123.20 MB -100.0%
hits_14.vortex 1.0 vortex-file-compressed 135.14 MB 0 B 135.14 MB -100.0%
hits_15.vortex 1.0 vortex-file-compressed 97.01 MB 0 B 97.01 MB -100.0%
hits_16.vortex 1.0 vortex-file-compressed 87.59 MB 0 B 87.59 MB -100.0%
hits_17.vortex 1.0 vortex-file-compressed 103.64 MB 0 B 103.64 MB -100.0%
hits_18.vortex 1.0 vortex-file-compressed 126.06 MB 0 B 126.06 MB -100.0%
hits_19.vortex 1.0 vortex-file-compressed 82.10 MB 0 B 82.10 MB -100.0%
hits_2.vortex 1.0 vortex-file-compressed 241.46 MB 0 B 241.46 MB -100.0%
hits_20.vortex 1.0 vortex-file-compressed 67.53 MB 0 B 67.53 MB -100.0%
hits_21.vortex 1.0 vortex-file-compressed 101.28 MB 0 B 101.28 MB -100.0%
hits_22.vortex 1.0 vortex-file-compressed 81.17 MB 0 B 81.17 MB -100.0%
hits_23.vortex 1.0 vortex-file-compressed 80.37 MB 0 B 80.37 MB -100.0%
hits_24.vortex 1.0 vortex-file-compressed 79.71 MB 0 B 79.71 MB -100.0%
hits_25.vortex 1.0 vortex-file-compressed 137.01 MB 0 B 137.01 MB -100.0%
hits_26.vortex 1.0 vortex-file-compressed 144.05 MB 0 B 144.05 MB -100.0%
hits_27.vortex 1.0 vortex-file-compressed 174.61 MB 0 B 174.61 MB -100.0%
hits_28.vortex 1.0 vortex-file-compressed 167.55 MB 0 B 167.55 MB -100.0%
hits_29.vortex 1.0 vortex-file-compressed 65.47 MB 0 B 65.47 MB -100.0%
hits_3.vortex 1.0 vortex-file-compressed 193.11 MB 0 B 193.11 MB -100.0%
hits_30.vortex 1.0 vortex-file-compressed 104.00 MB 0 B 104.00 MB -100.0%
hits_31.vortex 1.0 vortex-file-compressed 104.39 MB 0 B 104.39 MB -100.0%
hits_32.vortex 1.0 vortex-file-compressed 77.12 MB 0 B 77.12 MB -100.0%
hits_33.vortex 1.0 vortex-file-compressed 62.97 MB 0 B 62.97 MB -100.0%
hits_34.vortex 1.0 vortex-file-compressed 111.68 MB 0 B 111.68 MB -100.0%
hits_35.vortex 1.0 vortex-file-compressed 138.81 MB 0 B 138.81 MB -100.0%
hits_36.vortex 1.0 vortex-file-compressed 80.27 MB 0 B 80.27 MB -100.0%
hits_37.vortex 1.0 vortex-file-compressed 97.54 MB 0 B 97.54 MB -100.0%
hits_38.vortex 1.0 vortex-file-compressed 118.43 MB 0 B 118.43 MB -100.0%
hits_39.vortex 1.0 vortex-file-compressed 94.06 MB 0 B 94.06 MB -100.0%
hits_4.vortex 1.0 vortex-file-compressed 138.86 MB 0 B 138.86 MB -100.0%
hits_40.vortex 1.0 vortex-file-compressed 142.99 MB 0 B 142.99 MB -100.0%
hits_41.vortex 1.0 vortex-file-compressed 300.49 MB 0 B 300.49 MB -100.0%
hits_42.vortex 1.0 vortex-file-compressed 298.79 MB 0 B 298.79 MB -100.0%
hits_43.vortex 1.0 vortex-file-compressed 305.71 MB 0 B 305.71 MB -100.0%
hits_44.vortex 1.0 vortex-file-compressed 243.64 MB 0 B 243.64 MB -100.0%
hits_45.vortex 1.0 vortex-file-compressed 145.48 MB 0 B 145.48 MB -100.0%
hits_46.vortex 1.0 vortex-file-compressed 80.32 MB 0 B 80.32 MB -100.0%
hits_47.vortex 1.0 vortex-file-compressed 41.86 MB 0 B 41.86 MB -100.0%
hits_48.vortex 1.0 vortex-file-compressed 28.53 MB 0 B 28.53 MB -100.0%
hits_49.vortex 1.0 vortex-file-compressed 88.67 MB 0 B 88.67 MB -100.0%
hits_5.vortex 1.0 vortex-file-compressed 122.64 MB 0 B 122.64 MB -100.0%
hits_50.vortex 1.0 vortex-file-compressed 255.24 MB 0 B 255.24 MB -100.0%
hits_51.vortex 1.0 vortex-file-compressed 428.84 MB 0 B 428.84 MB -100.0%
hits_52.vortex 1.0 vortex-file-compressed 120.78 MB 0 B 120.78 MB -100.0%
hits_53.vortex 1.0 vortex-file-compressed 98.26 MB 0 B 98.26 MB -100.0%
hits_54.vortex 1.0 vortex-file-compressed 361.83 MB 0 B 361.83 MB -100.0%
hits_55.vortex 1.0 vortex-file-compressed 251.56 MB 0 B 251.56 MB -100.0%
hits_56.vortex 1.0 vortex-file-compressed 163.76 MB 0 B 163.76 MB -100.0%
hits_57.vortex 1.0 vortex-file-compressed 158.37 MB 0 B 158.37 MB -100.0%
hits_58.vortex 1.0 vortex-file-compressed 113.78 MB 0 B 113.78 MB -100.0%
hits_59.vortex 1.0 vortex-file-compressed 121.84 MB 0 B 121.84 MB -100.0%
hits_6.vortex 1.0 vortex-file-compressed 122.86 MB 0 B 122.86 MB -100.0%
hits_60.vortex 1.0 vortex-file-compressed 121.19 MB 0 B 121.19 MB -100.0%
hits_61.vortex 1.0 vortex-file-compressed 114.43 MB 0 B 114.43 MB -100.0%
hits_62.vortex 1.0 vortex-file-compressed 148.36 MB 0 B 148.36 MB -100.0%
hits_63.vortex 1.0 vortex-file-compressed 80.62 MB 0 B 80.62 MB -100.0%
hits_64.vortex 1.0 vortex-file-compressed 95.27 MB 0 B 95.27 MB -100.0%
hits_65.vortex 1.0 vortex-file-compressed 238.05 MB 0 B 238.05 MB -100.0%
hits_66.vortex 1.0 vortex-file-compressed 105.34 MB 0 B 105.34 MB -100.0%
hits_67.vortex 1.0 vortex-file-compressed 265.94 MB 0 B 265.94 MB -100.0%
hits_68.vortex 1.0 vortex-file-compressed 172.16 MB 0 B 172.16 MB -100.0%
hits_69.vortex 1.0 vortex-file-compressed 147.61 MB 0 B 147.61 MB -100.0%
hits_7.vortex 1.0 vortex-file-compressed 123.82 MB 0 B 123.82 MB -100.0%
hits_70.vortex 1.0 vortex-file-compressed 115.14 MB 0 B 115.14 MB -100.0%
hits_71.vortex 1.0 vortex-file-compressed 126.41 MB 0 B 126.41 MB -100.0%
hits_72.vortex 1.0 vortex-file-compressed 96.27 MB 0 B 96.27 MB -100.0%
hits_73.vortex 1.0 vortex-file-compressed 131.83 MB 0 B 131.83 MB -100.0%
hits_74.vortex 1.0 vortex-file-compressed 152.12 MB 0 B 152.12 MB -100.0%
hits_75.vortex 1.0 vortex-file-compressed 74.18 MB 0 B 74.18 MB -100.0%
hits_76.vortex 1.0 vortex-file-compressed 140.05 MB 0 B 140.05 MB -100.0%
hits_77.vortex 1.0 vortex-file-compressed 218.96 MB 0 B 218.96 MB -100.0%
hits_78.vortex 1.0 vortex-file-compressed 238.59 MB 0 B 238.59 MB -100.0%
hits_79.vortex 1.0 vortex-file-compressed 204.16 MB 0 B 204.16 MB -100.0%
hits_8.vortex 1.0 vortex-file-compressed 122.86 MB 0 B 122.86 MB -100.0%
hits_80.vortex 1.0 vortex-file-compressed 124.24 MB 0 B 124.24 MB -100.0%
hits_81.vortex 1.0 vortex-file-compressed 126.55 MB 0 B 126.55 MB -100.0%
hits_82.vortex 1.0 vortex-file-compressed 122.77 MB 0 B 122.77 MB -100.0%
hits_83.vortex 1.0 vortex-file-compressed 103.72 MB 0 B 103.72 MB -100.0%
hits_84.vortex 1.0 vortex-file-compressed 145.05 MB 0 B 145.05 MB -100.0%
hits_85.vortex 1.0 vortex-file-compressed 106.37 MB 0 B 106.37 MB -100.0%
hits_86.vortex 1.0 vortex-file-compressed 81.40 MB 0 B 81.40 MB -100.0%
hits_87.vortex 1.0 vortex-file-compressed 221.68 MB 0 B 221.68 MB -100.0%
hits_88.vortex 1.0 vortex-file-compressed 137.34 MB 0 B 137.34 MB -100.0%
hits_89.vortex 1.0 vortex-file-compressed 266.01 MB 0 B 266.01 MB -100.0%
hits_9.vortex 1.0 vortex-file-compressed 124.22 MB 0 B 124.22 MB -100.0%
hits_90.vortex 1.0 vortex-file-compressed 204.12 MB 0 B 204.12 MB -100.0%
hits_91.vortex 1.0 vortex-file-compressed 116.23 MB 0 B 116.23 MB -100.0%
hits_92.vortex 1.0 vortex-file-compressed 196.47 MB 0 B 196.47 MB -100.0%
hits_93.vortex 1.0 vortex-file-compressed 107.66 MB 0 B 107.66 MB -100.0%
hits_94.vortex 1.0 vortex-file-compressed 185.12 MB 0 B 185.12 MB -100.0%
hits_95.vortex 1.0 vortex-file-compressed 114.33 MB 0 B 114.33 MB -100.0%
hits_96.vortex 1.0 vortex-file-compressed 180.76 MB 0 B 180.76 MB -100.0%
hits_97.vortex 1.0 vortex-file-compressed 130.96 MB 0 B 130.96 MB -100.0%
hits_98.vortex 1.0 vortex-file-compressed 150.55 MB 0 B 150.55 MB -100.0%
hits_99.vortex 1.0 vortex-file-compressed 158.88 MB 0 B 158.88 MB -100.0%
duckdb.db 1.0 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
sample.vortex 1.0 vortex-compact 1.23 GB 0 B 1.23 GB -100.0%
duckdb.db 1.0 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
sample.vortex 1.0 vortex-file-compressed 1.79 GB 0 B 1.79 GB -100.0%
stacktraces.vortex 1000000 vortex-file-compressed 689.41 MB 0 B 689.41 MB -100.0%
duckdb.db 100000 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
gnomad.genomes.v3.1.2.hgdp_tgp.chr21.vortex 100000 vortex-compact 959.35 MB 0 B 959.35 MB -100.0%
duckdb.db 100000 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
gnomad.genomes.v3.1.2.hgdp_tgp.chr21.vortex 100000 vortex-file-compressed 1.97 GB 0 B 1.97 GB -100.0%
call_center.vortex 1.0 vortex-compact 50.14 KB 0 B 50.14 KB -100.0%
catalog_page.vortex 1.0 vortex-compact 362.67 KB 0 B 362.67 KB -100.0%
catalog_returns.vortex 1.0 vortex-compact 6.02 MB 0 B 6.02 MB -100.0%
catalog_sales.vortex 1.0 vortex-compact 59.31 MB 0 B 59.31 MB -100.0%
customer.vortex 1.0 vortex-compact 3.29 MB 0 B 3.29 MB -100.0%
customer_address.vortex 1.0 vortex-compact 558.62 KB 0 B 558.62 KB -100.0%
customer_demographics.vortex 1.0 vortex-compact 649.61 KB 0 B 649.61 KB -100.0%
date_dim.vortex 1.0 vortex-compact 154.00 KB 0 B 154.00 KB -100.0%
duckdb.db 1.0 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
household_demographics.vortex 1.0 vortex-compact 10.79 KB 0 B 10.79 KB -100.0%
income_band.vortex 1.0 vortex-compact 5.98 KB 0 B 5.98 KB -100.0%
inventory.vortex 1.0 vortex-compact 16.07 MB 0 B 16.07 MB -100.0%
item.vortex 1.0 vortex-compact 994.21 KB 0 B 994.21 KB -100.0%
promotion.vortex 1.0 vortex-compact 51.51 KB 0 B 51.51 KB -100.0%
reason.vortex 1.0 vortex-compact 5.97 KB 0 B 5.97 KB -100.0%
ship_mode.vortex 1.0 vortex-compact 10.95 KB 0 B 10.95 KB -100.0%
store.vortex 1.0 vortex-compact 45.76 KB 0 B 45.76 KB -100.0%
store_returns.vortex 1.0 vortex-compact 9.31 MB 0 B 9.31 MB -100.0%
store_sales.vortex 1.0 vortex-compact 77.87 MB 0 B 77.87 MB -100.0%
time_dim.vortex 1.0 vortex-compact 97.35 KB 0 B 97.35 KB -100.0%
warehouse.vortex 1.0 vortex-compact 22.23 KB 0 B 22.23 KB -100.0%
web_page.vortex 1.0 vortex-compact 27.84 KB 0 B 27.84 KB -100.0%
web_returns.vortex 1.0 vortex-compact 2.99 MB 0 B 2.99 MB -100.0%
web_sales.vortex 1.0 vortex-compact 29.35 MB 0 B 29.35 MB -100.0%
web_site.vortex 1.0 vortex-compact 45.31 KB 0 B 45.31 KB -100.0%
call_center.vortex 1.0 vortex-file-compressed 54.94 KB 0 B 54.94 KB -100.0%
catalog_page.vortex 1.0 vortex-file-compressed 611.57 KB 0 B 611.57 KB -100.0%
catalog_returns.vortex 1.0 vortex-file-compressed 7.43 MB 0 B 7.43 MB -100.0%
catalog_sales.vortex 1.0 vortex-file-compressed 70.78 MB 0 B 70.78 MB -100.0%
customer.vortex 1.0 vortex-file-compressed 4.52 MB 0 B 4.52 MB -100.0%
customer_address.vortex 1.0 vortex-file-compressed 1012.96 KB 0 B 1012.96 KB -100.0%
customer_demographics.vortex 1.0 vortex-file-compressed 1.49 MB 0 B 1.49 MB -100.0%
date_dim.vortex 1.0 vortex-file-compressed 1.03 MB 0 B 1.03 MB -100.0%
duckdb.db 1.0 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
household_demographics.vortex 1.0 vortex-file-compressed 17.05 KB 0 B 17.05 KB -100.0%
income_band.vortex 1.0 vortex-file-compressed 6.19 KB 0 B 6.19 KB -100.0%
inventory.vortex 1.0 vortex-file-compressed 36.64 MB 0 B 36.64 MB -100.0%
item.vortex 1.0 vortex-file-compressed 1.75 MB 0 B 1.75 MB -100.0%
promotion.vortex 1.0 vortex-file-compressed 60.19 KB 0 B 60.19 KB -100.0%
reason.vortex 1.0 vortex-file-compressed 7.23 KB 0 B 7.23 KB -100.0%
ship_mode.vortex 1.0 vortex-file-compressed 13.12 KB 0 B 13.12 KB -100.0%
store.vortex 1.0 vortex-file-compressed 49.49 KB 0 B 49.49 KB -100.0%
store_returns.vortex 1.0 vortex-file-compressed 11.39 MB 0 B 11.39 MB -100.0%
store_sales.vortex 1.0 vortex-file-compressed 97.04 MB 0 B 97.04 MB -100.0%
time_dim.vortex 1.0 vortex-file-compressed 687.30 KB 0 B 687.30 KB -100.0%
warehouse.vortex 1.0 vortex-file-compressed 23.83 KB 0 B 23.83 KB -100.0%
web_page.vortex 1.0 vortex-file-compressed 31.92 KB 0 B 31.92 KB -100.0%
web_returns.vortex 1.0 vortex-file-compressed 3.55 MB 0 B 3.55 MB -100.0%
web_sales.vortex 1.0 vortex-file-compressed 34.27 MB 0 B 34.27 MB -100.0%
web_site.vortex 1.0 vortex-file-compressed 54.08 KB 0 B 54.08 KB -100.0%
customer_0.vortex 10.0 vortex-compact 74.12 MB 0 B 74.12 MB -100.0%
duckdb.db 10.0 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
lineitem_0.vortex 10.0 vortex-compact 100.59 MB 0 B 100.59 MB -100.0%
lineitem_1.vortex 10.0 vortex-compact 100.64 MB 0 B 100.64 MB -100.0%
lineitem_10.vortex 10.0 vortex-compact 100.62 MB 0 B 100.62 MB -100.0%
lineitem_11.vortex 10.0 vortex-compact 100.53 MB 0 B 100.53 MB -100.0%
lineitem_12.vortex 10.0 vortex-compact 100.62 MB 0 B 100.62 MB -100.0%
lineitem_2.vortex 10.0 vortex-compact 100.59 MB 0 B 100.59 MB -100.0%
lineitem_3.vortex 10.0 vortex-compact 100.62 MB 0 B 100.62 MB -100.0%
lineitem_4.vortex 10.0 vortex-compact 100.56 MB 0 B 100.56 MB -100.0%
lineitem_5.vortex 10.0 vortex-compact 100.70 MB 0 B 100.70 MB -100.0%
lineitem_6.vortex 10.0 vortex-compact 100.68 MB 0 B 100.68 MB -100.0%
lineitem_7.vortex 10.0 vortex-compact 100.58 MB 0 B 100.58 MB -100.0%
lineitem_8.vortex 10.0 vortex-compact 100.59 MB 0 B 100.59 MB -100.0%
lineitem_9.vortex 10.0 vortex-compact 100.46 MB 0 B 100.46 MB -100.0%
nation_0.vortex 10.0 vortex-compact 8.34 KB 0 B 8.34 KB -100.0%
orders_0.vortex 10.0 vortex-compact 114.79 MB 0 B 114.79 MB -100.0%
orders_1.vortex 10.0 vortex-compact 114.76 MB 0 B 114.76 MB -100.0%
orders_2.vortex 10.0 vortex-compact 114.78 MB 0 B 114.78 MB -100.0%
part_0.vortex 10.0 vortex-compact 18.11 MB 0 B 18.11 MB -100.0%
part_1.vortex 10.0 vortex-compact 18.11 MB 0 B 18.11 MB -100.0%
partsupp_0.vortex 10.0 vortex-compact 126.76 MB 0 B 126.76 MB -100.0%
partsupp_1.vortex 10.0 vortex-compact 126.74 MB 0 B 126.74 MB -100.0%
region_0.vortex 10.0 vortex-compact 5.86 KB 0 B 5.86 KB -100.0%
supplier_0.vortex 10.0 vortex-compact 4.73 MB 0 B 4.73 MB -100.0%
customer_0.vortex 10.0 vortex-file-compressed 104.73 MB 0 B 104.73 MB -100.0%
duckdb.db 10.0 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
lineitem_0.vortex 10.0 vortex-file-compressed 134.65 MB 0 B 134.65 MB -100.0%
lineitem_1.vortex 10.0 vortex-file-compressed 134.27 MB 0 B 134.27 MB -100.0%
lineitem_10.vortex 10.0 vortex-file-compressed 134.51 MB 0 B 134.51 MB -100.0%
lineitem_11.vortex 10.0 vortex-file-compressed 134.87 MB 0 B 134.87 MB -100.0%
lineitem_12.vortex 10.0 vortex-file-compressed 134.52 MB 0 B 134.52 MB -100.0%
lineitem_2.vortex 10.0 vortex-file-compressed 134.38 MB 0 B 134.38 MB -100.0%
lineitem_3.vortex 10.0 vortex-file-compressed 133.74 MB 0 B 133.74 MB -100.0%
lineitem_4.vortex 10.0 vortex-file-compressed 134.43 MB 0 B 134.43 MB -100.0%
lineitem_5.vortex 10.0 vortex-file-compressed 133.86 MB 0 B 133.86 MB -100.0%
lineitem_6.vortex 10.0 vortex-file-compressed 133.23 MB 0 B 133.23 MB -100.0%
lineitem_7.vortex 10.0 vortex-file-compressed 134.01 MB 0 B 134.01 MB -100.0%
lineitem_8.vortex 10.0 vortex-file-compressed 134.06 MB 0 B 134.06 MB -100.0%
lineitem_9.vortex 10.0 vortex-file-compressed 134.65 MB 0 B 134.65 MB -100.0%
nation_0.vortex 10.0 vortex-file-compressed 11.00 KB 0 B 11.00 KB -100.0%
orders_0.vortex 10.0 vortex-file-compressed 163.92 MB 0 B 163.92 MB -100.0%
orders_1.vortex 10.0 vortex-file-compressed 164.15 MB 0 B 164.15 MB -100.0%
orders_2.vortex 10.0 vortex-file-compressed 164.00 MB 0 B 164.00 MB -100.0%
part_0.vortex 10.0 vortex-file-compressed 27.02 MB 0 B 27.02 MB -100.0%
part_1.vortex 10.0 vortex-file-compressed 26.99 MB 0 B 26.99 MB -100.0%
partsupp_0.vortex 10.0 vortex-file-compressed 180.47 MB 0 B 180.47 MB -100.0%
partsupp_1.vortex 10.0 vortex-file-compressed 180.65 MB 0 B 180.65 MB -100.0%
region_0.vortex 10.0 vortex-file-compressed 6.16 KB 0 B 6.16 KB -100.0%
supplier_0.vortex 10.0 vortex-file-compressed 6.69 MB 0 B 6.69 MB -100.0%
customer_0.vortex 100 vortex-file-compressed 261.80 MB 0 B 261.80 MB -100.0%
customer_1.vortex 100 vortex-file-compressed 261.77 MB 0 B 261.77 MB -100.0%
customer_2.vortex 100 vortex-file-compressed 261.69 MB 0 B 261.69 MB -100.0%
customer_3.vortex 100 vortex-file-compressed 261.80 MB 0 B 261.80 MB -100.0%
duckdb.db 100 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
lineitem_0.vortex 100 vortex-file-compressed 148.68 MB 0 B 148.68 MB -100.0%
lineitem_1.vortex 100 vortex-file-compressed 148.56 MB 0 B 148.56 MB -100.0%
lineitem_10.vortex 100 vortex-file-compressed 148.35 MB 0 B 148.35 MB -100.0%
lineitem_100.vortex 100 vortex-file-compressed 148.11 MB 0 B 148.11 MB -100.0%
lineitem_101.vortex 100 vortex-file-compressed 148.35 MB 0 B 148.35 MB -100.0%
lineitem_102.vortex 100 vortex-file-compressed 148.14 MB 0 B 148.14 MB -100.0%
lineitem_103.vortex 100 vortex-file-compressed 148.37 MB 0 B 148.37 MB -100.0%
lineitem_104.vortex 100 vortex-file-compressed 148.59 MB 0 B 148.59 MB -100.0%
lineitem_105.vortex 100 vortex-file-compressed 147.47 MB 0 B 147.47 MB -100.0%
lineitem_106.vortex 100 vortex-file-compressed 148.07 MB 0 B 148.07 MB -100.0%
lineitem_107.vortex 100 vortex-file-compressed 148.04 MB 0 B 148.04 MB -100.0%
lineitem_108.vortex 100 vortex-file-compressed 147.29 MB 0 B 147.29 MB -100.0%
lineitem_109.vortex 100 vortex-file-compressed 148.03 MB 0 B 148.03 MB -100.0%
lineitem_11.vortex 100 vortex-file-compressed 148.62 MB 0 B 148.62 MB -100.0%
lineitem_110.vortex 100 vortex-file-compressed 148.41 MB 0 B 148.41 MB -100.0%
lineitem_111.vortex 100 vortex-file-compressed 147.77 MB 0 B 147.77 MB -100.0%
lineitem_112.vortex 100 vortex-file-compressed 147.42 MB 0 B 147.42 MB -100.0%
lineitem_113.vortex 100 vortex-file-compressed 147.56 MB 0 B 147.56 MB -100.0%
lineitem_114.vortex 100 vortex-file-compressed 147.46 MB 0 B 147.46 MB -100.0%
lineitem_115.vortex 100 vortex-file-compressed 147.64 MB 0 B 147.64 MB -100.0%
lineitem_116.vortex 100 vortex-file-compressed 148.20 MB 0 B 148.20 MB -100.0%
lineitem_117.vortex 100 vortex-file-compressed 148.24 MB 0 B 148.24 MB -100.0%
lineitem_118.vortex 100 vortex-file-compressed 147.83 MB 0 B 147.83 MB -100.0%
lineitem_119.vortex 100 vortex-file-compressed 148.33 MB 0 B 148.33 MB -100.0%
lineitem_12.vortex 100 vortex-file-compressed 148.19 MB 0 B 148.19 MB -100.0%
lineitem_120.vortex 100 vortex-file-compressed 147.10 MB 0 B 147.10 MB -100.0%
lineitem_13.vortex 100 vortex-file-compressed 148.26 MB 0 B 148.26 MB -100.0%
lineitem_14.vortex 100 vortex-file-compressed 147.79 MB 0 B 147.79 MB -100.0%
lineitem_15.vortex 100 vortex-file-compressed 147.63 MB 0 B 147.63 MB -100.0%
lineitem_16.vortex 100 vortex-file-compressed 148.03 MB 0 B 148.03 MB -100.0%
lineitem_17.vortex 100 vortex-file-compressed 148.59 MB 0 B 148.59 MB -100.0%
lineitem_18.vortex 100 vortex-file-compressed 147.55 MB 0 B 147.55 MB -100.0%
lineitem_19.vortex 100 vortex-file-compressed 148.77 MB 0 B 148.77 MB -100.0%
lineitem_2.vortex 100 vortex-file-compressed 148.59 MB 0 B 148.59 MB -100.0%
lineitem_20.vortex 100 vortex-file-compressed 148.78 MB 0 B 148.78 MB -100.0%
lineitem_21.vortex 100 vortex-file-compressed 148.33 MB 0 B 148.33 MB -100.0%
lineitem_22.vortex 100 vortex-file-compressed 147.32 MB 0 B 147.32 MB -100.0%
lineitem_23.vortex 100 vortex-file-compressed 148.19 MB 0 B 148.19 MB -100.0%
lineitem_24.vortex 100 vortex-file-compressed 147.50 MB 0 B 147.50 MB -100.0%
lineitem_25.vortex 100 vortex-file-compressed 148.52 MB 0 B 148.52 MB -100.0%
lineitem_26.vortex 100 vortex-file-compressed 148.11 MB 0 B 148.11 MB -100.0%
lineitem_27.vortex 100 vortex-file-compressed 148.45 MB 0 B 148.45 MB -100.0%
lineitem_28.vortex 100 vortex-file-compressed 148.66 MB 0 B 148.66 MB -100.0%
lineitem_29.vortex 100 vortex-file-compressed 148.75 MB 0 B 148.75 MB -100.0%
lineitem_3.vortex 100 vortex-file-compressed 148.16 MB 0 B 148.16 MB -100.0%
lineitem_30.vortex 100 vortex-file-compressed 147.46 MB 0 B 147.46 MB -100.0%
lineitem_31.vortex 100 vortex-file-compressed 148.50 MB 0 B 148.50 MB -100.0%
lineitem_32.vortex 100 vortex-file-compressed 148.90 MB 0 B 148.90 MB -100.0%
lineitem_33.vortex 100 vortex-file-compressed 147.74 MB 0 B 147.74 MB -100.0%
lineitem_34.vortex 100 vortex-file-compressed 148.93 MB 0 B 148.93 MB -100.0%
lineitem_35.vortex 100 vortex-file-compressed 148.35 MB 0 B 148.35 MB -100.0%
lineitem_36.vortex 100 vortex-file-compressed 147.64 MB 0 B 147.64 MB -100.0%
lineitem_37.vortex 100 vortex-file-compressed 147.47 MB 0 B 147.47 MB -100.0%
lineitem_38.vortex 100 vortex-file-compressed 149.09 MB 0 B 149.09 MB -100.0%
lineitem_39.vortex 100 vortex-file-compressed 147.38 MB 0 B 147.38 MB -100.0%
lineitem_4.vortex 100 vortex-file-compressed 147.27 MB 0 B 147.27 MB -100.0%
lineitem_40.vortex 100 vortex-file-compressed 147.97 MB 0 B 147.97 MB -100.0%
lineitem_41.vortex 100 vortex-file-compressed 146.66 MB 0 B 146.66 MB -100.0%
lineitem_42.vortex 100 vortex-file-compressed 148.38 MB 0 B 148.38 MB -100.0%
lineitem_43.vortex 100 vortex-file-compressed 147.84 MB 0 B 147.84 MB -100.0%
lineitem_44.vortex 100 vortex-file-compressed 147.91 MB 0 B 147.91 MB -100.0%
lineitem_45.vortex 100 vortex-file-compressed 146.88 MB 0 B 146.88 MB -100.0%
lineitem_46.vortex 100 vortex-file-compressed 147.77 MB 0 B 147.77 MB -100.0%
lineitem_47.vortex 100 vortex-file-compressed 148.26 MB 0 B 148.26 MB -100.0%
lineitem_48.vortex 100 vortex-file-compressed 148.23 MB 0 B 148.23 MB -100.0%
lineitem_49.vortex 100 vortex-file-compressed 148.47 MB 0 B 148.47 MB -100.0%
lineitem_5.vortex 100 vortex-file-compressed 148.16 MB 0 B 148.16 MB -100.0%
lineitem_50.vortex 100 vortex-file-compressed 148.88 MB 0 B 148.88 MB -100.0%
lineitem_51.vortex 100 vortex-file-compressed 148.42 MB 0 B 148.42 MB -100.0%
lineitem_52.vortex 100 vortex-file-compressed 146.97 MB 0 B 146.97 MB -100.0%
lineitem_53.vortex 100 vortex-file-compressed 148.23 MB 0 B 148.23 MB -100.0%
lineitem_54.vortex 100 vortex-file-compressed 149.12 MB 0 B 149.12 MB -100.0%
lineitem_55.vortex 100 vortex-file-compressed 148.16 MB 0 B 148.16 MB -100.0%
lineitem_56.vortex 100 vortex-file-compressed 147.73 MB 0 B 147.73 MB -100.0%
lineitem_57.vortex 100 vortex-file-compressed 148.37 MB 0 B 148.37 MB -100.0%
lineitem_58.vortex 100 vortex-file-compressed 148.72 MB 0 B 148.72 MB -100.0%
lineitem_59.vortex 100 vortex-file-compressed 148.42 MB 0 B 148.42 MB -100.0%
lineitem_6.vortex 100 vortex-file-compressed 147.90 MB 0 B 147.90 MB -100.0%
lineitem_60.vortex 100 vortex-file-compressed 148.62 MB 0 B 148.62 MB -100.0%
lineitem_61.vortex 100 vortex-file-compressed 147.73 MB 0 B 147.73 MB -100.0%
lineitem_62.vortex 100 vortex-file-compressed 146.94 MB 0 B 146.94 MB -100.0%
lineitem_63.vortex 100 vortex-file-compressed 148.65 MB 0 B 148.65 MB -100.0%
lineitem_64.vortex 100 vortex-file-compressed 147.72 MB 0 B 147.72 MB -100.0%
lineitem_65.vortex 100 vortex-file-compressed 147.57 MB 0 B 147.57 MB -100.0%
lineitem_66.vortex 100 vortex-file-compressed 148.09 MB 0 B 148.09 MB -100.0%
lineitem_67.vortex 100 vortex-file-compressed 148.84 MB 0 B 148.84 MB -100.0%
lineitem_68.vortex 100 vortex-file-compressed 148.03 MB 0 B 148.03 MB -100.0%
lineitem_69.vortex 100 vortex-file-compressed 148.10 MB 0 B 148.10 MB -100.0%
lineitem_7.vortex 100 vortex-file-compressed 147.86 MB 0 B 147.86 MB -100.0%
lineitem_70.vortex 100 vortex-file-compressed 147.89 MB 0 B 147.89 MB -100.0%
lineitem_71.vortex 100 vortex-file-compressed 147.94 MB 0 B 147.94 MB -100.0%
lineitem_72.vortex 100 vortex-file-compressed 147.99 MB 0 B 147.99 MB -100.0%
lineitem_73.vortex 100 vortex-file-compressed 148.32 MB 0 B 148.32 MB -100.0%
lineitem_74.vortex 100 vortex-file-compressed 147.55 MB 0 B 147.55 MB -100.0%
lineitem_75.vortex 100 vortex-file-compressed 147.88 MB 0 B 147.88 MB -100.0%
lineitem_76.vortex 100 vortex-file-compressed 147.35 MB 0 B 147.35 MB -100.0%
lineitem_77.vortex 100 vortex-file-compressed 148.24 MB 0 B 148.24 MB -100.0%
lineitem_78.vortex 100 vortex-file-compressed 147.35 MB 0 B 147.35 MB -100.0%
lineitem_79.vortex 100 vortex-file-compressed 148.43 MB 0 B 148.43 MB -100.0%
lineitem_8.vortex 100 vortex-file-compressed 148.56 MB 0 B 148.56 MB -100.0%
lineitem_80.vortex 100 vortex-file-compressed 147.55 MB 0 B 147.55 MB -100.0%
lineitem_81.vortex 100 vortex-file-compressed 147.76 MB 0 B 147.76 MB -100.0%
lineitem_82.vortex 100 vortex-file-compressed 148.37 MB 0 B 148.37 MB -100.0%
lineitem_83.vortex 100 vortex-file-compressed 148.68 MB 0 B 148.68 MB -100.0%
lineitem_84.vortex 100 vortex-file-compressed 147.94 MB 0 B 147.94 MB -100.0%
lineitem_85.vortex 100 vortex-file-compressed 147.92 MB 0 B 147.92 MB -100.0%
lineitem_86.vortex 100 vortex-file-compressed 147.62 MB 0 B 147.62 MB -100.0%
lineitem_87.vortex 100 vortex-file-compressed 147.46 MB 0 B 147.46 MB -100.0%
lineitem_88.vortex 100 vortex-file-compressed 148.71 MB 0 B 148.71 MB -100.0%
lineitem_89.vortex 100 vortex-file-compressed 148.03 MB 0 B 148.03 MB -100.0%
lineitem_9.vortex 100 vortex-file-compressed 148.87 MB 0 B 148.87 MB -100.0%
lineitem_90.vortex 100 vortex-file-compressed 147.82 MB 0 B 147.82 MB -100.0%
lineitem_91.vortex 100 vortex-file-compressed 148.27 MB 0 B 148.27 MB -100.0%
lineitem_92.vortex 100 vortex-file-compressed 148.08 MB 0 B 148.08 MB -100.0%
lineitem_93.vortex 100 vortex-file-compressed 147.77 MB 0 B 147.77 MB -100.0%
lineitem_94.vortex 100 vortex-file-compressed 148.40 MB 0 B 148.40 MB -100.0%
lineitem_95.vortex 100 vortex-file-compressed 147.49 MB 0 B 147.49 MB -100.0%
lineitem_96.vortex 100 vortex-file-compressed 148.03 MB 0 B 148.03 MB -100.0%
lineitem_97.vortex 100 vortex-file-compressed 148.10 MB 0 B 148.10 MB -100.0%
lineitem_98.vortex 100 vortex-file-compressed 148.59 MB 0 B 148.59 MB -100.0%
lineitem_99.vortex 100 vortex-file-compressed 147.26 MB 0 B 147.26 MB -100.0%
nation_0.vortex 100 vortex-file-compressed 11.00 KB 0 B 11.00 KB -100.0%
orders_0.vortex 100 vortex-file-compressed 180.00 MB 0 B 180.00 MB -100.0%
orders_1.vortex 100 vortex-file-compressed 179.92 MB 0 B 179.92 MB -100.0%
orders_10.vortex 100 vortex-file-compressed 180.14 MB 0 B 180.14 MB -100.0%
orders_11.vortex 100 vortex-file-compressed 180.08 MB 0 B 180.08 MB -100.0%
orders_12.vortex 100 vortex-file-compressed 180.32 MB 0 B 180.32 MB -100.0%
orders_13.vortex 100 vortex-file-compressed 179.83 MB 0 B 179.83 MB -100.0%
orders_14.vortex 100 vortex-file-compressed 180.18 MB 0 B 180.18 MB -100.0%
orders_15.vortex 100 vortex-file-compressed 180.19 MB 0 B 180.19 MB -100.0%
orders_16.vortex 100 vortex-file-compressed 179.88 MB 0 B 179.88 MB -100.0%
orders_17.vortex 100 vortex-file-compressed 180.01 MB 0 B 180.01 MB -100.0%
orders_18.vortex 100 vortex-file-compressed 180.45 MB 0 B 180.45 MB -100.0%
orders_19.vortex 100 vortex-file-compressed 180.04 MB 0 B 180.04 MB -100.0%
orders_2.vortex 100 vortex-file-compressed 180.35 MB 0 B 180.35 MB -100.0%
orders_20.vortex 100 vortex-file-compressed 179.85 MB 0 B 179.85 MB -100.0%
orders_21.vortex 100 vortex-file-compressed 179.89 MB 0 B 179.89 MB -100.0%
orders_22.vortex 100 vortex-file-compressed 180.04 MB 0 B 180.04 MB -100.0%
orders_23.vortex 100 vortex-file-compressed 179.94 MB 0 B 179.94 MB -100.0%
orders_24.vortex 100 vortex-file-compressed 179.56 MB 0 B 179.56 MB -100.0%
orders_25.vortex 100 vortex-file-compressed 179.82 MB 0 B 179.82 MB -100.0%
orders_26.vortex 100 vortex-file-compressed 179.99 MB 0 B 179.99 MB -100.0%
orders_27.vortex 100 vortex-file-compressed 179.78 MB 0 B 179.78 MB -100.0%
orders_3.vortex 100 vortex-file-compressed 180.12 MB 0 B 180.12 MB -100.0%
orders_4.vortex 100 vortex-file-compressed 180.39 MB 0 B 180.39 MB -100.0%
orders_5.vortex 100 vortex-file-compressed 180.03 MB 0 B 180.03 MB -100.0%
orders_6.vortex 100 vortex-file-compressed 179.80 MB 0 B 179.80 MB -100.0%
orders_7.vortex 100 vortex-file-compressed 180.12 MB 0 B 180.12 MB -100.0%
orders_8.vortex 100 vortex-file-compressed 180.21 MB 0 B 180.21 MB -100.0%
orders_9.vortex 100 vortex-file-compressed 180.11 MB 0 B 180.11 MB -100.0%
part_0.vortex 100 vortex-file-compressed 28.45 MB 0 B 28.45 MB -100.0%
part_1.vortex 100 vortex-file-compressed 28.49 MB 0 B 28.49 MB -100.0%
part_10.vortex 100 vortex-file-compressed 28.43 MB 0 B 28.43 MB -100.0%
part_11.vortex 100 vortex-file-compressed 28.45 MB 0 B 28.45 MB -100.0%
part_12.vortex 100 vortex-file-compressed 28.43 MB 0 B 28.43 MB -100.0%
part_13.vortex 100 vortex-file-compressed 28.44 MB 0 B 28.44 MB -100.0%
part_14.vortex 100 vortex-file-compressed 28.46 MB 0 B 28.46 MB -100.0%
part_15.vortex 100 vortex-file-compressed 28.48 MB 0 B 28.48 MB -100.0%
part_16.vortex 100 vortex-file-compressed 28.42 MB 0 B 28.42 MB -100.0%
part_17.vortex 100 vortex-file-compressed 28.41 MB 0 B 28.41 MB -100.0%
part_18.vortex 100 vortex-file-compressed 28.51 MB 0 B 28.51 MB -100.0%
part_2.vortex 100 vortex-file-compressed 28.46 MB 0 B 28.46 MB -100.0%
part_3.vortex 100 vortex-file-compressed 28.43 MB 0 B 28.43 MB -100.0%
part_4.vortex 100 vortex-file-compressed 28.42 MB 0 B 28.42 MB -100.0%
part_5.vortex 100 vortex-file-compressed 28.38 MB 0 B 28.38 MB -100.0%
part_6.vortex 100 vortex-file-compressed 28.44 MB 0 B 28.44 MB -100.0%
part_7.vortex 100 vortex-file-compressed 28.41 MB 0 B 28.41 MB -100.0%
part_8.vortex 100 vortex-file-compressed 28.43 MB 0 B 28.43 MB -100.0%
part_9.vortex 100 vortex-file-compressed 28.41 MB 0 B 28.41 MB -100.0%
partsupp_0.vortex 100 vortex-file-compressed 191.37 MB 0 B 191.37 MB -100.0%
partsupp_1.vortex 100 vortex-file-compressed 191.69 MB 0 B 191.69 MB -100.0%
partsupp_10.vortex 100 vortex-file-compressed 191.59 MB 0 B 191.59 MB -100.0%
partsupp_11.vortex 100 vortex-file-compressed 191.43 MB 0 B 191.43 MB -100.0%
partsupp_12.vortex 100 vortex-file-compressed 191.50 MB 0 B 191.50 MB -100.0%
partsupp_13.vortex 100 vortex-file-compressed 191.35 MB 0 B 191.35 MB -100.0%
partsupp_14.vortex 100 vortex-file-compressed 191.62 MB 0 B 191.62 MB -100.0%
partsupp_15.vortex 100 vortex-file-compressed 191.52 MB 0 B 191.52 MB -100.0%
partsupp_16.vortex 100 vortex-file-compressed 191.25 MB 0 B 191.25 MB -100.0%
partsupp_17.vortex 100 vortex-file-compressed 191.49 MB 0 B 191.49 MB -100.0%
partsupp_18.vortex 100 vortex-file-compressed 191.38 MB 0 B 191.38 MB -100.0%
partsupp_2.vortex 100 vortex-file-compressed 191.39 MB 0 B 191.39 MB -100.0%
partsupp_3.vortex 100 vortex-file-compressed 191.37 MB 0 B 191.37 MB -100.0%
partsupp_4.vortex 100 vortex-file-compressed 191.40 MB 0 B 191.40 MB -100.0%
partsupp_5.vortex 100 vortex-file-compressed 191.41 MB 0 B 191.41 MB -100.0%
partsupp_6.vortex 100 vortex-file-compressed 191.38 MB 0 B 191.38 MB -100.0%
partsupp_7.vortex 100 vortex-file-compressed 191.61 MB 0 B 191.61 MB -100.0%
partsupp_8.vortex 100 vortex-file-compressed 191.49 MB 0 B 191.49 MB -100.0%
partsupp_9.vortex 100 vortex-file-compressed 191.50 MB 0 B 191.50 MB -100.0%
region_0.vortex 100 vortex-file-compressed 6.16 KB 0 B 6.16 KB -100.0%
supplier_0.vortex 100 vortex-file-compressed 66.71 MB 0 B 66.71 MB -100.0%

Totals:

  • vortex-compact: 11.86 GB → 194.82 MB (-98.4%)
  • vortex-file-compressed: 49.77 GB → 266.61 MB (-99.5%)
Full attributed analysis
Query Config Raw Δ Control Δ Attributed α Noise floor Significant?
1 datafusion:arrow -15.6% +7.7% -21.7% +20.4% ✅ faster
1 datafusion:vortex-compact +2.3% +7.7% -5.0% +18.6% ➖ noise
1 datafusion:vortex-file-compressed +5.6% +7.7% -2.0% +20.5% ➖ noise
1 duckdb:duckdb +0.4% +7.7% -6.8% +16.9% ➖ noise
1 duckdb:vortex-compact +0.1% +7.7% -7.1% +16.5% ➖ noise
1 duckdb:vortex-file-compressed -0.4% +7.7% -7.6% +19.2% ➖ noise
2 datafusion:arrow -1.8% +1.7% -3.4% +11.1% ➖ noise
2 datafusion:vortex-compact -0.1% +1.7% -1.7% +11.1% ➖ noise
2 datafusion:vortex-file-compressed -0.3% +1.7% -1.9% +11.1% ➖ noise
2 duckdb:duckdb +3.4% +1.7% +1.7% +11.1% ➖ noise
2 duckdb:vortex-compact +0.1% +1.7% -1.5% +11.1% ➖ noise
2 duckdb:vortex-file-compressed -0.6% +1.7% -2.2% +11.1% ➖ noise
3 datafusion:arrow +1.0% +2.2% -1.2% +11.1% ➖ noise
3 datafusion:vortex-compact +0.2% +2.2% -1.9% +12.3% ➖ noise
3 datafusion:vortex-file-compressed +4.2% +2.2% +1.9% +11.9% ➖ noise
3 duckdb:duckdb +2.0% +2.2% -0.2% +11.1% ➖ noise
3 duckdb:vortex-compact -0.1% +2.2% -2.3% +11.1% ➖ noise
3 duckdb:vortex-file-compressed +2.5% +2.2% +0.3% +11.1% ➖ noise
4 datafusion:arrow +0.8% -0.4% +1.2% +11.1% ➖ noise
4 datafusion:vortex-compact -3.8% -0.4% -3.4% +13.4% ➖ noise
4 datafusion:vortex-file-compressed -3.4% -0.4% -3.0% +11.1% ➖ noise
4 duckdb:duckdb -3.0% -0.4% -2.6% +11.1% ➖ noise
4 duckdb:vortex-compact -1.9% -0.4% -1.5% +13.5% ➖ noise
4 duckdb:vortex-file-compressed +2.1% -0.4% +2.5% +11.1% ➖ noise
5 datafusion:arrow +9.8% +0.4% +9.4% +11.1% ➖ noise
5 datafusion:vortex-compact +1.5% +0.4% +1.1% +11.1% ➖ noise
5 datafusion:vortex-file-compressed +0.6% +0.4% +0.2% +11.1% ➖ noise
5 duckdb:duckdb +3.4% +0.4% +3.0% +11.1% ➖ noise
5 duckdb:vortex-compact +0.9% +0.4% +0.5% +11.1% ➖ noise
5 duckdb:vortex-file-compressed +1.3% +0.4% +0.9% +11.1% ➖ noise
6 datafusion:arrow +6.5% +0.5% +5.9% +13.2% ➖ noise
6 datafusion:vortex-compact -2.0% +0.5% -2.5% +20.9% ➖ noise
6 datafusion:vortex-file-compressed -1.7% +0.5% -2.2% +21.9% ➖ noise
6 duckdb:duckdb +1.1% +0.5% +0.6% +12.2% ➖ noise
6 duckdb:vortex-compact +5.0% +0.5% +4.5% +24.4% ➖ noise
6 duckdb:vortex-file-compressed -2.3% +0.5% -2.8% +14.0% ➖ noise
7 datafusion:arrow +4.4% -1.1% +5.6% +11.1% ➖ noise
7 datafusion:vortex-compact +1.0% -1.1% +2.1% +11.1% ➖ noise
7 datafusion:vortex-file-compressed +3.7% -1.1% +4.8% +11.1% ➖ noise
7 duckdb:duckdb -0.1% -1.1% +1.0% +11.1% ➖ noise
7 duckdb:vortex-compact -0.4% -1.1% +0.7% +11.1% ➖ noise
7 duckdb:vortex-file-compressed +0.6% -1.1% +1.7% +11.1% ➖ noise
8 datafusion:arrow +8.4% +6.9% +1.4% +11.1% ➖ noise
8 datafusion:vortex-compact -2.1% +6.9% -8.4% +11.8% ➖ noise
8 datafusion:vortex-file-compressed +2.8% +6.9% -3.9% +11.1% ➖ noise
8 duckdb:duckdb +0.7% +6.9% -5.8% +11.1% ➖ noise
8 duckdb:vortex-compact +2.5% +6.9% -4.2% +15.6% ➖ noise
8 duckdb:vortex-file-compressed -1.1% +6.9% -7.5% +11.9% ➖ noise
9 datafusion:arrow +0.7% +6.5% -5.4% +11.1% ➖ noise
9 datafusion:vortex-compact +4.9% +6.5% -1.5% +11.1% ➖ noise
9 datafusion:vortex-file-compressed -4.7% +6.5% -10.5% +11.1% ✅ faster
9 duckdb:duckdb +4.0% +6.5% -2.3% +11.1% ➖ noise
9 duckdb:vortex-compact +1.4% +6.5% -4.8% +11.1% ➖ noise
9 duckdb:vortex-file-compressed +2.2% +6.5% -4.0% +12.3% ➖ noise
10 datafusion:arrow -8.5% +0.2% -8.8% +11.1% ➖ noise
10 datafusion:vortex-compact +0.5% +0.2% +0.3% +11.1% ➖ noise
10 datafusion:vortex-file-compressed +4.6% +0.2% +4.3% +11.1% ➖ noise
10 duckdb:duckdb +0.7% +0.2% +0.5% +11.1% ➖ noise
10 duckdb:vortex-compact +1.4% +0.2% +1.2% +11.1% ➖ noise
10 duckdb:vortex-file-compressed -1.0% +0.2% -1.2% +11.1% ➖ noise
11 datafusion:arrow -2.8% +2.1% -4.7% +11.1% ➖ noise
11 datafusion:vortex-compact -3.2% +2.1% -5.2% +11.1% ➖ noise
11 datafusion:vortex-file-compressed +3.0% +2.1% +1.0% +11.1% ➖ noise
11 duckdb:duckdb -0.1% +2.1% -2.1% +11.1% ➖ noise
11 duckdb:vortex-compact +3.6% +2.1% +1.6% +11.1% ➖ noise
11 duckdb:vortex-file-compressed +3.6% +2.1% +1.5% +11.1% ➖ noise
12 datafusion:arrow +0.5% +6.7% -5.8% +20.6% ➖ noise
12 datafusion:vortex-compact +2.6% +6.7% -3.9% +11.5% ➖ noise
12 datafusion:vortex-file-compressed -0.9% +6.7% -7.1% +11.5% ➖ noise
12 duckdb:duckdb -0.5% +6.7% -6.7% +11.2% ➖ noise
12 duckdb:vortex-compact -0.7% +6.7% -7.0% +13.2% ➖ noise
12 duckdb:vortex-file-compressed +2.0% +6.7% -4.4% +14.4% ➖ noise
13 datafusion:arrow -0.9% +0.7% -1.6% +18.2% ➖ noise
13 datafusion:vortex-compact +2.2% +0.7% +1.5% +11.1% ➖ noise
13 datafusion:vortex-file-compressed -2.0% +0.7% -2.7% +11.1% ➖ noise
13 duckdb:duckdb -3.0% +0.7% -3.7% +11.1% ➖ noise
13 duckdb:vortex-compact +1.3% +0.7% +0.6% +11.1% ➖ noise
13 duckdb:vortex-file-compressed +1.3% +0.7% +0.6% +11.1% ➖ noise
14 datafusion:arrow +0.4% +1.1% -0.6% +14.2% ➖ noise
14 datafusion:vortex-compact -4.5% +1.1% -5.5% +11.1% ➖ noise
14 datafusion:vortex-file-compressed +6.1% +1.1% +5.0% +11.1% ➖ noise
14 duckdb:duckdb +0.4% +1.1% -0.6% +11.1% ➖ noise
14 duckdb:vortex-compact +1.5% +1.1% +0.4% +11.1% ➖ noise
14 duckdb:vortex-file-compressed -0.1% +1.1% -1.1% +15.6% ➖ noise
15 datafusion:arrow -1.8% +3.0% -4.7% +11.8% ➖ noise
15 datafusion:vortex-compact -1.1% +3.0% -4.0% +14.0% ➖ noise
15 datafusion:vortex-file-compressed -3.9% +3.0% -6.7% +13.8% ➖ noise
15 duckdb:duckdb -0.1% +3.0% -3.0% +13.1% ➖ noise
15 duckdb:vortex-compact +0.7% +3.0% -2.2% +11.6% ➖ noise
15 duckdb:vortex-file-compressed -2.5% +3.0% -5.4% +12.5% ➖ noise
16 datafusion:arrow +2.0% -0.4% +2.4% +11.1% ➖ noise
16 datafusion:vortex-compact -2.9% -0.4% -2.5% +11.1% ➖ noise
16 datafusion:vortex-file-compressed -2.2% -0.4% -1.8% +11.1% ➖ noise
16 duckdb:duckdb +1.3% -0.4% +1.8% +11.1% ➖ noise
16 duckdb:vortex-compact +1.6% -0.4% +2.1% +11.1% ➖ noise
16 duckdb:vortex-file-compressed +3.1% -0.4% +3.6% +11.1% ➖ noise
17 datafusion:arrow +1.0% +2.8% -1.8% +11.1% ➖ noise
17 datafusion:vortex-compact -0.0% +2.8% -2.8% +12.4% ➖ noise
17 datafusion:vortex-file-compressed -3.2% +2.8% -5.9% +12.3% ➖ noise
17 duckdb:duckdb -0.3% +2.8% -3.0% +11.1% ➖ noise
17 duckdb:vortex-compact +1.2% +2.8% -1.6% +11.1% ➖ noise
17 duckdb:vortex-file-compressed +6.5% +2.8% +3.6% +13.6% ➖ noise
18 datafusion:arrow +0.9% +0.6% +0.3% +11.1% ➖ noise
18 datafusion:vortex-compact +0.7% +0.6% +0.1% +11.1% ➖ noise
18 datafusion:vortex-file-compressed +5.2% +0.6% +4.6% +11.1% ➖ noise
18 duckdb:duckdb -1.1% +0.6% -1.6% +11.1% ➖ noise
18 duckdb:vortex-compact +1.8% +0.6% +1.2% +11.1% ➖ noise
18 duckdb:vortex-file-compressed -0.8% +0.6% -1.4% +11.1% ➖ noise
19 datafusion:arrow +3.0% -12.2% +17.3% +24.3% ➖ noise
19 datafusion:vortex-compact +1.4% -12.2% +15.5% +14.0% 🚨 regression
19 datafusion:vortex-file-compressed +1.1% -12.2% +15.1% +17.8% ➖ noise
19 duckdb:duckdb +2.9% -12.2% +17.1% +13.2% 🚨 regression
19 duckdb:vortex-compact +1.8% -12.2% +16.0% +13.1% 🚨 regression
19 duckdb:vortex-file-compressed -0.2% -12.2% +13.6% +13.1% 🚨 regression
20 datafusion:arrow +2.4% +0.8% +1.6% +11.2% ➖ noise
20 datafusion:vortex-compact +0.8% +0.8% +0.0% +11.1% ➖ noise
20 datafusion:vortex-file-compressed -0.8% +0.8% -1.6% +11.1% ➖ noise
20 duckdb:duckdb -0.3% +0.8% -1.0% +11.1% ➖ noise
20 duckdb:vortex-compact +1.2% +0.8% +0.4% +11.1% ➖ noise
20 duckdb:vortex-file-compressed +0.9% +0.8% +0.1% +11.1% ➖ noise
21 datafusion:arrow +2.6% +3.5% -0.9% +11.1% ➖ noise
21 datafusion:vortex-compact +1.9% +3.5% -1.6% +11.1% ➖ noise
21 datafusion:vortex-file-compressed +1.1% +3.5% -2.3% +11.1% ➖ noise
21 duckdb:duckdb +0.3% +3.5% -3.0% +11.1% ➖ noise
21 duckdb:vortex-compact +2.0% +3.5% -1.4% +11.1% ➖ noise
21 duckdb:vortex-file-compressed +1.4% +3.5% -2.0% +11.1% ➖ noise
22 datafusion:arrow -2.1% +1.7% -3.7% +11.1% ➖ noise
22 datafusion:vortex-compact +3.0% +1.7% +1.3% +11.1% ➖ noise
22 datafusion:vortex-file-compressed +7.9% +1.7% +6.2% +16.5% ➖ noise
22 duckdb:duckdb +3.6% +1.7% +1.9% +11.1% ➖ noise
22 duckdb:vortex-compact +4.4% +1.7% +2.7% +11.1% ➖ noise
22 duckdb:vortex-file-compressed +0.6% +1.7% -1.0% +11.1% ➖ noise

@github-actions
Copy link
Copy Markdown
Contributor

Benchmarks: TPC-DS SF=1 on NVME

Verdict: No clear signal (low confidence)
Attributed Vortex impact: -1.6%
Engines: DataFusion No clear signal (-1.3%, environment too noisy confidence) · DuckDB No clear signal (-1.9%, low confidence)
Vortex (geomean): 0.927x ➖
Parquet (geomean): 0.940x ➖
Shifts: Parquet (control) -6.0% · Median polish -7.4%

How to read Verdict and Engines
  • Verdict: Overall PR-level signal after subtracting baseline drift estimated from Parquet control rows. It can be Likely improvement, Likely regression, or No clear signal.
  • Engines: Per-engine attribution. DataFusion is compared against DataFusion/Parquet controls; DuckDB is compared against DuckDB/Parquet controls. This answers whether each engine improved or regressed independently.
  • Confidence: Based on directional consistency, share of rows above the noise floor, and control-run noise.

datafusion / vortex-file-compressed (0.921x ➖, 28↑ 1↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
tpcds_q01/datafusion:vortex-file-compressed 27758049 28083645 0.99
tpcds_q02/datafusion:vortex-file-compressed 50720049 51622725 0.98
tpcds_q03/datafusion:vortex-file-compressed 16395258 17001972 0.96
tpcds_q04/datafusion:vortex-file-compressed 279062166 293668485 0.95
tpcds_q05/datafusion:vortex-file-compressed 44845144 48875626 0.92
tpcds_q06/datafusion:vortex-file-compressed 59651039 63992697 0.93
tpcds_q07/datafusion:vortex-file-compressed 🚀 42554431 48677189 0.87
tpcds_q08/datafusion:vortex-file-compressed 🚀 29199414 32497326 0.90
tpcds_q09/datafusion:vortex-file-compressed 39980934 43522247 0.92
tpcds_q10/datafusion:vortex-file-compressed 🚀 37880478 42354853 0.89
tpcds_q11/datafusion:vortex-file-compressed 🚀 128974296 147510343 0.87
tpcds_q12/datafusion:vortex-file-compressed 22365037 22559786 0.99
tpcds_q13/datafusion:vortex-file-compressed 50633122 49261649 1.03
tpcds_q14/datafusion:vortex-file-compressed 183020291 187741016 0.97
tpcds_q15/datafusion:vortex-file-compressed 29399684 31824900 0.92
tpcds_q16/datafusion:vortex-file-compressed 28962801 31907872 0.91
tpcds_q17/datafusion:vortex-file-compressed 🚀 61392327 69050207 0.89
tpcds_q18/datafusion:vortex-file-compressed 72469198 73741866 0.98
tpcds_q19/datafusion:vortex-file-compressed 22109841 24549081 0.90
tpcds_q20/datafusion:vortex-file-compressed 🚀 21132809 24328206 0.87
tpcds_q21/datafusion:vortex-file-compressed 36140357 40092273 0.90
tpcds_q22/datafusion:vortex-file-compressed 🚨 152379960 131876221 1.16
tpcds_q23/datafusion:vortex-file-compressed 155065091 164876403 0.94
tpcds_q24/datafusion:vortex-file-compressed 85098269 89360465 0.95
tpcds_q25/datafusion:vortex-file-compressed 65744432 71298940 0.92
tpcds_q26/datafusion:vortex-file-compressed 33386991 36621049 0.91
tpcds_q27/datafusion:vortex-file-compressed 110549516 117519328 0.94
tpcds_q28/datafusion:vortex-file-compressed 33088520 35099323 0.94
tpcds_q29/datafusion:vortex-file-compressed 62191304 67462901 0.92
tpcds_q30/datafusion:vortex-file-compressed 🚀 23986089 27999635 0.86
tpcds_q31/datafusion:vortex-file-compressed 🚀 72948931 81646705 0.89
tpcds_q32/datafusion:vortex-file-compressed 20061644 21973229 0.91
tpcds_q33/datafusion:vortex-file-compressed 32426114 31450793 1.03
tpcds_q34/datafusion:vortex-file-compressed 24228574 26091258 0.93
tpcds_q35/datafusion:vortex-file-compressed 🚀 44396892 50465224 0.88
tpcds_q36/datafusion:vortex-file-compressed 🚀 55756104 62222553 0.90
tpcds_q37/datafusion:vortex-file-compressed 24434035 26444206 0.92
tpcds_q38/datafusion:vortex-file-compressed 🚀 43635887 50800123 0.86
tpcds_q39/datafusion:vortex-file-compressed 108971825 121078446 0.90
tpcds_q40/datafusion:vortex-file-compressed 32547785 35966210 0.90
tpcds_q41/datafusion:vortex-file-compressed 🚀 14754612 17133619 0.86
tpcds_q42/datafusion:vortex-file-compressed 🚀 13587441 16332592 0.83
tpcds_q43/datafusion:vortex-file-compressed 🚀 18693118 21133547 0.88
tpcds_q44/datafusion:vortex-file-compressed 31243045 33808648 0.92
tpcds_q45/datafusion:vortex-file-compressed 27863571 29891859 0.93
tpcds_q46/datafusion:vortex-file-compressed 37085182 36834497 1.01
tpcds_q47/datafusion:vortex-file-compressed 135783885 142368963 0.95
tpcds_q48/datafusion:vortex-file-compressed 35425418 36958515 0.96
tpcds_q49/datafusion:vortex-file-compressed 58241134 60982535 0.96
tpcds_q50/datafusion:vortex-file-compressed 39844755 42193934 0.94
tpcds_q51/datafusion:vortex-file-compressed 92586539 94707586 0.98
tpcds_q52/datafusion:vortex-file-compressed 14947914 16319214 0.92
tpcds_q53/datafusion:vortex-file-compressed 21472828 23580833 0.91
tpcds_q54/datafusion:vortex-file-compressed 35189658 38507461 0.91
tpcds_q55/datafusion:vortex-file-compressed 14487349 15773428 0.92
tpcds_q56/datafusion:vortex-file-compressed 29512084 31511453 0.94
tpcds_q57/datafusion:vortex-file-compressed 109947276 119532175 0.92
tpcds_q58/datafusion:vortex-file-compressed 54408085 56755488 0.96
tpcds_q59/datafusion:vortex-file-compressed 56866954 60289325 0.94
tpcds_q60/datafusion:vortex-file-compressed 29517315 32345875 0.91
tpcds_q61/datafusion:vortex-file-compressed 41850578 45596395 0.92
tpcds_q62/datafusion:vortex-file-compressed 26758529 28823066 0.93
tpcds_q63/datafusion:vortex-file-compressed 🚀 20959203 23809223 0.88
tpcds_q64/datafusion:vortex-file-compressed 420375164 463695405 0.91
tpcds_q65/datafusion:vortex-file-compressed 39406721 42691907 0.92
tpcds_q66/datafusion:vortex-file-compressed 75592114 76043158 0.99
tpcds_q67/datafusion:vortex-file-compressed 144343646 152641214 0.95
tpcds_q68/datafusion:vortex-file-compressed 🚀 32836745 37716036 0.87
tpcds_q69/datafusion:vortex-file-compressed 36347974 39767333 0.91
tpcds_q70/datafusion:vortex-file-compressed 🚀 85676760 95847587 0.89
tpcds_q71/datafusion:vortex-file-compressed 24096009 25266725 0.95
tpcds_q72/datafusion:vortex-file-compressed 🚀 2177035600 2622297915 0.83
tpcds_q73/datafusion:vortex-file-compressed 🚀 22310529 25469757 0.88
tpcds_q74/datafusion:vortex-file-compressed 84630536 86775713 0.98
tpcds_q75/datafusion:vortex-file-compressed 🚀 107053221 121422214 0.88
tpcds_q76/datafusion:vortex-file-compressed 31766228 34508507 0.92
tpcds_q77/datafusion:vortex-file-compressed 40606556 42321981 0.96
tpcds_q78/datafusion:vortex-file-compressed 125946464 139022913 0.91
tpcds_q79/datafusion:vortex-file-compressed 30660566 30809185 1.00
tpcds_q80/datafusion:vortex-file-compressed 96509142 104289032 0.93
tpcds_q81/datafusion:vortex-file-compressed 🚀 25067562 28522397 0.88
tpcds_q82/datafusion:vortex-file-compressed 25999884 28147814 0.92
tpcds_q83/datafusion:vortex-file-compressed 34637439 37106085 0.93
tpcds_q84/datafusion:vortex-file-compressed 13602055 14280771 0.95
tpcds_q85/datafusion:vortex-file-compressed 93547869 100896621 0.93
tpcds_q86/datafusion:vortex-file-compressed 🚀 16023086 18874750 0.85
tpcds_q87/datafusion:vortex-file-compressed 44679665 48050254 0.93
tpcds_q88/datafusion:vortex-file-compressed 57610316 62461013 0.92
tpcds_q89/datafusion:vortex-file-compressed 🚀 24382587 28768672 0.85
tpcds_q90/datafusion:vortex-file-compressed 🚀 14446052 17456880 0.83
tpcds_q91/datafusion:vortex-file-compressed 🚀 18287895 21627227 0.85
tpcds_q92/datafusion:vortex-file-compressed 🚀 18253897 21001571 0.87
tpcds_q93/datafusion:vortex-file-compressed 🚀 33845131 39731823 0.85
tpcds_q94/datafusion:vortex-file-compressed 24265320 26018535 0.93
tpcds_q95/datafusion:vortex-file-compressed 64343839 69884295 0.92
tpcds_q96/datafusion:vortex-file-compressed 13483801 14406890 0.94
tpcds_q97/datafusion:vortex-file-compressed 🚀 31417573 35874533 0.88
tpcds_q98/datafusion:vortex-file-compressed 24359141 26354840 0.92
tpcds_q99/datafusion:vortex-file-compressed 29840769 32143193 0.93
datafusion / vortex-compact (0.932x ➖, 17↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
tpcds_q01/datafusion:vortex-compact 26326678 28613860 0.92
tpcds_q02/datafusion:vortex-compact 54385178 57704889 0.94
tpcds_q03/datafusion:vortex-compact 19547998 21174611 0.92
tpcds_q04/datafusion:vortex-compact 300470691 308634840 0.97
tpcds_q05/datafusion:vortex-compact 🚀 49670067 60523732 0.82
tpcds_q06/datafusion:vortex-compact 59694340 62775657 0.95
tpcds_q07/datafusion:vortex-compact 53634435 57603569 0.93
tpcds_q08/datafusion:vortex-compact 36134103 39811765 0.91
tpcds_q09/datafusion:vortex-compact 🚀 51244482 58663994 0.87
tpcds_q10/datafusion:vortex-compact 48925313 53852840 0.91
tpcds_q11/datafusion:vortex-compact 159036752 165466072 0.96
tpcds_q12/datafusion:vortex-compact 25629054 24001209 1.07
tpcds_q13/datafusion:vortex-compact 123108886 135102093 0.91
tpcds_q14/datafusion:vortex-compact 200345733 208901324 0.96
tpcds_q15/datafusion:vortex-compact 31601473 32304511 0.98
tpcds_q16/datafusion:vortex-compact 32736758 35979325 0.91
tpcds_q17/datafusion:vortex-compact 🚀 73295649 84940667 0.86
tpcds_q18/datafusion:vortex-compact 77377772 83645400 0.93
tpcds_q19/datafusion:vortex-compact 29753771 31001436 0.96
tpcds_q20/datafusion:vortex-compact 25835521 27577367 0.94
tpcds_q21/datafusion:vortex-compact 🚀 39004998 46466609 0.84
tpcds_q22/datafusion:vortex-compact 125584417 132336682 0.95
tpcds_q23/datafusion:vortex-compact 175375139 192152655 0.91
tpcds_q24/datafusion:vortex-compact 🚀 99818528 111040759 0.90
tpcds_q25/datafusion:vortex-compact 81386465 87364304 0.93
tpcds_q26/datafusion:vortex-compact 44660966 47038236 0.95
tpcds_q27/datafusion:vortex-compact 127275947 139880634 0.91
tpcds_q28/datafusion:vortex-compact 98097969 107339605 0.91
tpcds_q29/datafusion:vortex-compact 74347574 80302017 0.93
tpcds_q30/datafusion:vortex-compact 🚀 26977667 30833840 0.87
tpcds_q31/datafusion:vortex-compact 97847023 104189807 0.94
tpcds_q32/datafusion:vortex-compact 26128837 27520644 0.95
tpcds_q33/datafusion:vortex-compact 38840546 38516215 1.01
tpcds_q34/datafusion:vortex-compact 33118804 35949927 0.92
tpcds_q35/datafusion:vortex-compact 52676791 55936719 0.94
tpcds_q36/datafusion:vortex-compact 🚀 74684552 86886643 0.86
tpcds_q37/datafusion:vortex-compact 33696831 37015632 0.91
tpcds_q38/datafusion:vortex-compact 51864868 57221189 0.91
tpcds_q39/datafusion:vortex-compact 115906039 124260064 0.93
tpcds_q40/datafusion:vortex-compact 37319124 40276597 0.93
tpcds_q41/datafusion:vortex-compact 🚀 17274895 19452015 0.89
tpcds_q42/datafusion:vortex-compact 18110938 19533033 0.93
tpcds_q43/datafusion:vortex-compact 25696274 25919729 0.99
tpcds_q44/datafusion:vortex-compact 48623766 49311559 0.99
tpcds_q45/datafusion:vortex-compact 31981269 32429477 0.99
tpcds_q46/datafusion:vortex-compact 🚀 44496366 49692999 0.90
tpcds_q47/datafusion:vortex-compact 152192143 163518634 0.93
tpcds_q48/datafusion:vortex-compact 81200913 87188637 0.93
tpcds_q49/datafusion:vortex-compact 75651010 78022191 0.97
tpcds_q50/datafusion:vortex-compact 47564691 52615383 0.90
tpcds_q51/datafusion:vortex-compact 97015068 106405029 0.91
tpcds_q52/datafusion:vortex-compact 18471023 19712992 0.94
tpcds_q53/datafusion:vortex-compact 28182406 30007073 0.94
tpcds_q54/datafusion:vortex-compact 🚀 41486287 49092156 0.85
tpcds_q55/datafusion:vortex-compact 18293838 19120144 0.96
tpcds_q56/datafusion:vortex-compact 37763579 39106456 0.97
tpcds_q57/datafusion:vortex-compact 119832556 128401605 0.93
tpcds_q58/datafusion:vortex-compact 61157563 66609007 0.92
tpcds_q59/datafusion:vortex-compact 70557317 72835973 0.97
tpcds_q60/datafusion:vortex-compact 35195421 39088286 0.90
tpcds_q61/datafusion:vortex-compact 54732486 59605849 0.92
tpcds_q62/datafusion:vortex-compact 28420122 29627055 0.96
tpcds_q63/datafusion:vortex-compact 27986483 29373944 0.95
tpcds_q64/datafusion:vortex-compact 465601412 503110928 0.93
tpcds_q65/datafusion:vortex-compact 54188467 55696823 0.97
tpcds_q66/datafusion:vortex-compact 77715866 82357812 0.94
tpcds_q67/datafusion:vortex-compact 🚀 150128129 170968585 0.88
tpcds_q68/datafusion:vortex-compact 🚀 44351719 55410097 0.80
tpcds_q69/datafusion:vortex-compact 46112466 49693733 0.93
tpcds_q70/datafusion:vortex-compact 96381610 103167246 0.93
tpcds_q71/datafusion:vortex-compact 🚀 30270865 33637173 0.90
tpcds_q72/datafusion:vortex-compact 🚀 2226969253 2598161052 0.86
tpcds_q73/datafusion:vortex-compact 30828676 33068205 0.93
tpcds_q74/datafusion:vortex-compact 94875455 105091504 0.90
tpcds_q75/datafusion:vortex-compact 135461310 138734159 0.98
tpcds_q76/datafusion:vortex-compact 33589298 34623057 0.97
tpcds_q77/datafusion:vortex-compact 🚀 49050551 55778696 0.88
tpcds_q78/datafusion:vortex-compact 142776814 151994586 0.94
tpcds_q79/datafusion:vortex-compact 39269246 43415152 0.90
tpcds_q80/datafusion:vortex-compact 114688131 117084867 0.98
tpcds_q81/datafusion:vortex-compact 29435115 29990572 0.98
tpcds_q82/datafusion:vortex-compact 36413363 38069171 0.96
tpcds_q83/datafusion:vortex-compact 35701727 36026708 0.99
tpcds_q84/datafusion:vortex-compact 15547384 16696224 0.93
tpcds_q85/datafusion:vortex-compact 172332385 175634869 0.98
tpcds_q86/datafusion:vortex-compact 22018319 20252443 1.09
tpcds_q87/datafusion:vortex-compact 56829102 55829437 1.02
tpcds_q88/datafusion:vortex-compact 80181212 83938736 0.96
tpcds_q89/datafusion:vortex-compact 34055797 34224583 1.00
tpcds_q90/datafusion:vortex-compact 14824006 16348205 0.91
tpcds_q91/datafusion:vortex-compact 31675108 34101067 0.93
tpcds_q92/datafusion:vortex-compact 25495754 26154528 0.97
tpcds_q93/datafusion:vortex-compact 40983869 42002022 0.98
tpcds_q94/datafusion:vortex-compact 🚀 26435706 30392774 0.87
tpcds_q95/datafusion:vortex-compact 🚀 67774061 76012465 0.89
tpcds_q96/datafusion:vortex-compact 17956515 19437221 0.92
tpcds_q97/datafusion:vortex-compact 39590987 42958561 0.92
tpcds_q98/datafusion:vortex-compact 34459069 34962969 0.99
tpcds_q99/datafusion:vortex-compact 35410197 37932334 0.93
datafusion / parquet (0.939x ➖, 19↑ 1↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
tpcds_q01/datafusion:parquet 🚀 29601913 33021182 0.90
tpcds_q02/datafusion:parquet 🚀 41131464 45743268 0.90
tpcds_q03/datafusion:parquet 13232907 14522547 0.91
tpcds_q04/datafusion:parquet 🚀 274515691 307416561 0.89
tpcds_q05/datafusion:parquet 🚀 41800873 50314404 0.83
tpcds_q06/datafusion:parquet 62927646 60199484 1.05
tpcds_q07/datafusion:parquet 78834369 86456549 0.91
tpcds_q08/datafusion:parquet 27218007 27171143 1.00
tpcds_q09/datafusion:parquet 🚀 44397651 50863639 0.87
tpcds_q10/datafusion:parquet 70378256 74802450 0.94
tpcds_q11/datafusion:parquet 153294849 162437932 0.94
tpcds_q12/datafusion:parquet 17769361 18834168 0.94
tpcds_q13/datafusion:parquet 76174398 79113537 0.96
tpcds_q14/datafusion:parquet 169339284 182746766 0.93
tpcds_q15/datafusion:parquet 22271690 24184014 0.92
tpcds_q16/datafusion:parquet 25097395 25574809 0.98
tpcds_q17/datafusion:parquet 67347912 67407985 1.00
tpcds_q18/datafusion:parquet 117540571 123610529 0.95
tpcds_q19/datafusion:parquet 22449326 23781959 0.94
tpcds_q20/datafusion:parquet 16864712 18490359 0.91
tpcds_q21/datafusion:parquet 18515452 20112421 0.92
tpcds_q22/datafusion:parquet 156125449 162737675 0.96
tpcds_q23/datafusion:parquet 🚀 144004049 172293148 0.84
tpcds_q24/datafusion:parquet 95458003 97603390 0.98
tpcds_q25/datafusion:parquet 68797555 68837988 1.00
tpcds_q26/datafusion:parquet 69739838 70649950 0.99
tpcds_q27/datafusion:parquet 🚀 144651891 163690310 0.88
tpcds_q28/datafusion:parquet 46785881 49567216 0.94
tpcds_q29/datafusion:parquet 66711633 68960053 0.97
tpcds_q30/datafusion:parquet 35625933 37352668 0.95
tpcds_q31/datafusion:parquet 65197272 70090418 0.93
tpcds_q32/datafusion:parquet 18875260 19812835 0.95
tpcds_q33/datafusion:parquet 27317078 29148337 0.94
tpcds_q34/datafusion:parquet 21756103 23302224 0.93
tpcds_q35/datafusion:parquet 73470929 80829966 0.91
tpcds_q36/datafusion:parquet 61679392 61648492 1.00
tpcds_q37/datafusion:parquet 20354378 20777597 0.98
tpcds_q38/datafusion:parquet 44045242 44226980 1.00
tpcds_q39/datafusion:parquet 77618702 84193117 0.92
tpcds_q40/datafusion:parquet 23813306 24399606 0.98
tpcds_q41/datafusion:parquet 🚀 13420584 15212470 0.88
tpcds_q42/datafusion:parquet 11753004 12527195 0.94
tpcds_q43/datafusion:parquet 17029458 18369732 0.93
tpcds_q44/datafusion:parquet 34764659 34909722 1.00
tpcds_q45/datafusion:parquet 🚀 28014696 32564730 0.86
tpcds_q46/datafusion:parquet 32539634 33742784 0.96
tpcds_q47/datafusion:parquet 126420981 135427989 0.93
tpcds_q48/datafusion:parquet 68525826 73859762 0.93
tpcds_q49/datafusion:parquet 55292850 60958193 0.91
tpcds_q50/datafusion:parquet 45015134 47331179 0.95
tpcds_q51/datafusion:parquet 92014689 99510884 0.92
tpcds_q52/datafusion:parquet 12691600 13015971 0.98
tpcds_q53/datafusion:parquet 🚨 21949853 18606106 1.18
tpcds_q54/datafusion:parquet 36845805 37953349 0.97
tpcds_q55/datafusion:parquet 12075912 13112118 0.92
tpcds_q56/datafusion:parquet 28804757 29762373 0.97
tpcds_q57/datafusion:parquet 100978171 104341772 0.97
tpcds_q58/datafusion:parquet 49879744 53820005 0.93
tpcds_q59/datafusion:parquet 58600009 63066667 0.93
tpcds_q60/datafusion:parquet 27384876 29573737 0.93
tpcds_q61/datafusion:parquet 44331503 46842192 0.95
tpcds_q62/datafusion:parquet 26041447 28523479 0.91
tpcds_q63/datafusion:parquet 19595324 20147200 0.97
tpcds_q64/datafusion:parquet 526927143 557085103 0.95
tpcds_q65/datafusion:parquet 38179120 40869893 0.93
tpcds_q66/datafusion:parquet 70778343 77827672 0.91
tpcds_q67/datafusion:parquet 🚀 149907677 167986703 0.89
tpcds_q68/datafusion:parquet 33557597 34870589 0.96
tpcds_q69/datafusion:parquet 71748940 72899693 0.98
tpcds_q70/datafusion:parquet 🚀 89056095 101486171 0.88
tpcds_q71/datafusion:parquet 24307008 23921492 1.02
tpcds_q72/datafusion:parquet 🚀 610195465 737755964 0.83
tpcds_q73/datafusion:parquet 23509709 22134347 1.06
tpcds_q74/datafusion:parquet 89088968 94798537 0.94
tpcds_q75/datafusion:parquet 🚀 100992366 112233205 0.90
tpcds_q76/datafusion:parquet 🚀 30081460 33731427 0.89
tpcds_q77/datafusion:parquet 39985997 43226667 0.93
tpcds_q78/datafusion:parquet 113779120 126291046 0.90
tpcds_q79/datafusion:parquet 26252641 28466633 0.92
tpcds_q80/datafusion:parquet 79965882 86833741 0.92
tpcds_q81/datafusion:parquet 32034034 34851016 0.92
tpcds_q82/datafusion:parquet 18963427 20811266 0.91
tpcds_q83/datafusion:parquet 37768797 39875709 0.95
tpcds_q84/datafusion:parquet 42638195 42459933 1.00
tpcds_q85/datafusion:parquet 160026240 161709456 0.99
tpcds_q86/datafusion:parquet 🚀 15903910 18216033 0.87
tpcds_q87/datafusion:parquet 43062226 45910530 0.94
tpcds_q88/datafusion:parquet 59940552 64972758 0.92
tpcds_q89/datafusion:parquet 🚀 21638195 24111762 0.90
tpcds_q90/datafusion:parquet 🚀 14388057 16387623 0.88
tpcds_q91/datafusion:parquet 58207661 63523503 0.92
tpcds_q92/datafusion:parquet 18771446 20426527 0.92
tpcds_q93/datafusion:parquet 33196121 35481010 0.94
tpcds_q94/datafusion:parquet 🚀 19988448 22454531 0.89
tpcds_q95/datafusion:parquet 60530330 64249996 0.94
tpcds_q96/datafusion:parquet 🚀 11653031 13087012 0.89
tpcds_q97/datafusion:parquet 31187136 31401539 0.99
tpcds_q98/datafusion:parquet 21376291 22241187 0.96
tpcds_q99/datafusion:parquet 34025969 31393451 1.08
duckdb / vortex-file-compressed (0.927x ➖, 27↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
tpcds_q01/duckdb:vortex-file-compressed 24211214 25002812 0.97
tpcds_q02/duckdb:vortex-file-compressed 33417687 33514665 1.00
tpcds_q03/duckdb:vortex-file-compressed 21893230 22370920 0.98
tpcds_q04/duckdb:vortex-file-compressed 91597872 100604476 0.91
tpcds_q05/duckdb:vortex-file-compressed 34625557 37427942 0.93
tpcds_q06/duckdb:vortex-file-compressed 🚀 32741783 36395558 0.90
tpcds_q07/duckdb:vortex-file-compressed 21703190 22666591 0.96
tpcds_q08/duckdb:vortex-file-compressed 27216919 29632039 0.92
tpcds_q09/duckdb:vortex-file-compressed 🚀 15172074 17137246 0.89
tpcds_q10/duckdb:vortex-file-compressed 36177698 40098055 0.90
tpcds_q11/duckdb:vortex-file-compressed 63436295 68932897 0.92
tpcds_q12/duckdb:vortex-file-compressed 15593514 16622272 0.94
tpcds_q13/duckdb:vortex-file-compressed 33801273 34089645 0.99
tpcds_q14/duckdb:vortex-file-compressed 96206228 104856890 0.92
tpcds_q15/duckdb:vortex-file-compressed 🚀 26420801 30123800 0.88
tpcds_q16/duckdb:vortex-file-compressed 🚀 26479650 29881533 0.89
tpcds_q17/duckdb:vortex-file-compressed 43584180 47389188 0.92
tpcds_q18/duckdb:vortex-file-compressed 36679484 40750419 0.90
tpcds_q19/duckdb:vortex-file-compressed 🚀 31075876 35450421 0.88
tpcds_q20/duckdb:vortex-file-compressed 18503817 18507544 1.00
tpcds_q21/duckdb:vortex-file-compressed 17006489 17558330 0.97
tpcds_q22/duckdb:vortex-file-compressed 🚀 72797985 86338929 0.84
tpcds_q23/duckdb:vortex-file-compressed 97804601 97110277 1.01
tpcds_q24/duckdb:vortex-file-compressed 🚀 47990707 53572028 0.90
tpcds_q25/duckdb:vortex-file-compressed 40528596 43698092 0.93
tpcds_q26/duckdb:vortex-file-compressed 20830933 20318875 1.03
tpcds_q27/duckdb:vortex-file-compressed 24663030 24655380 1.00
tpcds_q28/duckdb:vortex-file-compressed 12299825 13520025 0.91
tpcds_q29/duckdb:vortex-file-compressed 🚀 39914839 44421809 0.90
tpcds_q30/duckdb:vortex-file-compressed 25226055 26427746 0.95
tpcds_q31/duckdb:vortex-file-compressed 29547675 30936327 0.96
tpcds_q32/duckdb:vortex-file-compressed 13823880 14323441 0.97
tpcds_q33/duckdb:vortex-file-compressed 🚀 23548111 27009969 0.87
tpcds_q34/duckdb:vortex-file-compressed 25370416 27080269 0.94
tpcds_q35/duckdb:vortex-file-compressed 64651751 69145867 0.94
tpcds_q36/duckdb:vortex-file-compressed 🚀 24849662 28399544 0.88
tpcds_q37/duckdb:vortex-file-compressed 19477547 21011436 0.93
tpcds_q38/duckdb:vortex-file-compressed 35998870 39199612 0.92
tpcds_q39/duckdb:vortex-file-compressed 35815961 36229082 0.99
tpcds_q40/duckdb:vortex-file-compressed 20439934 20965895 0.97
tpcds_q41/duckdb:vortex-file-compressed 10383983 10913426 0.95
tpcds_q42/duckdb:vortex-file-compressed 🚀 13286159 15008627 0.89
tpcds_q43/duckdb:vortex-file-compressed 21833997 23261347 0.94
tpcds_q44/duckdb:vortex-file-compressed 20941087 23174581 0.90
tpcds_q45/duckdb:vortex-file-compressed 29487399 32734815 0.90
tpcds_q46/duckdb:vortex-file-compressed 29575016 32013857 0.92
tpcds_q47/duckdb:vortex-file-compressed 51878691 55925228 0.93
tpcds_q48/duckdb:vortex-file-compressed 28528720 29717216 0.96
tpcds_q49/duckdb:vortex-file-compressed 34052505 34584823 0.98
tpcds_q50/duckdb:vortex-file-compressed 25798876 27923346 0.92
tpcds_q51/duckdb:vortex-file-compressed 105029297 106796523 0.98
tpcds_q52/duckdb:vortex-file-compressed 🚀 12768895 14541675 0.88
tpcds_q53/duckdb:vortex-file-compressed 21948679 24163198 0.91
tpcds_q54/duckdb:vortex-file-compressed 28559145 29631321 0.96
tpcds_q55/duckdb:vortex-file-compressed 12472491 13364401 0.93
tpcds_q56/duckdb:vortex-file-compressed 24984067 26631593 0.94
tpcds_q57/duckdb:vortex-file-compressed 41607629 44376314 0.94
tpcds_q58/duckdb:vortex-file-compressed 🚀 29473362 33003723 0.89
tpcds_q59/duckdb:vortex-file-compressed 56510159 58371101 0.97
tpcds_q60/duckdb:vortex-file-compressed 🚀 24943264 28617539 0.87
tpcds_q61/duckdb:vortex-file-compressed 🚀 29899892 33257549 0.90
tpcds_q62/duckdb:vortex-file-compressed 15882513 16208847 0.98
tpcds_q63/duckdb:vortex-file-compressed 🚀 19663291 21890823 0.90
tpcds_q64/duckdb:vortex-file-compressed 97363502 101807714 0.96
tpcds_q65/duckdb:vortex-file-compressed 22499969 23778499 0.95
tpcds_q66/duckdb:vortex-file-compressed 29665010 31808473 0.93
tpcds_q67/duckdb:vortex-file-compressed 138981129 150987633 0.92
tpcds_q68/duckdb:vortex-file-compressed 30499254 32347954 0.94
tpcds_q69/duckdb:vortex-file-compressed 🚀 39035815 43892206 0.89
tpcds_q70/duckdb:vortex-file-compressed 37347453 38962216 0.96
tpcds_q71/duckdb:vortex-file-compressed 20831196 22561947 0.92
tpcds_q72/duckdb:vortex-file-compressed 167866475 179433971 0.94
tpcds_q73/duckdb:vortex-file-compressed 🚀 24850405 28899579 0.86
tpcds_q74/duckdb:vortex-file-compressed 🚀 41391179 47056983 0.88
tpcds_q75/duckdb:vortex-file-compressed 🚀 47154615 53937664 0.87
tpcds_q76/duckdb:vortex-file-compressed 🚀 21371090 24727737 0.86
tpcds_q77/duckdb:vortex-file-compressed 🚀 24095790 27535634 0.88
tpcds_q78/duckdb:vortex-file-compressed 76337954 83230999 0.92
tpcds_q79/duckdb:vortex-file-compressed 24534517 24802739 0.99
tpcds_q80/duckdb:vortex-file-compressed 🚀 47394795 53566021 0.88
tpcds_q81/duckdb:vortex-file-compressed 29071650 31660351 0.92
tpcds_q82/duckdb:vortex-file-compressed 45613831 49741725 0.92
tpcds_q83/duckdb:vortex-file-compressed 26979965 28318640 0.95
tpcds_q84/duckdb:vortex-file-compressed 16747979 17628808 0.95
tpcds_q85/duckdb:vortex-file-compressed 39979858 43826502 0.91
tpcds_q86/duckdb:vortex-file-compressed 🚀 16294725 18171598 0.90
tpcds_q87/duckdb:vortex-file-compressed 40845523 44668855 0.91
tpcds_q88/duckdb:vortex-file-compressed 53635826 54967027 0.98
tpcds_q89/duckdb:vortex-file-compressed 21711327 23029183 0.94
tpcds_q90/duckdb:vortex-file-compressed 10355727 11087942 0.93
tpcds_q91/duckdb:vortex-file-compressed 🚀 22494908 26082438 0.86
tpcds_q92/duckdb:vortex-file-compressed 20167840 20799420 0.97
tpcds_q93/duckdb:vortex-file-compressed 30731713 31489584 0.98
tpcds_q94/duckdb:vortex-file-compressed 22566486 23431951 0.96
tpcds_q95/duckdb:vortex-file-compressed 159022259 164687693 0.97
tpcds_q96/duckdb:vortex-file-compressed 🚀 11921164 13448740 0.89
tpcds_q97/duckdb:vortex-file-compressed 🚀 37753446 44215063 0.85
tpcds_q98/duckdb:vortex-file-compressed 19024623 20769427 0.92
tpcds_q99/duckdb:vortex-file-compressed 22533636 24234832 0.93
duckdb / vortex-compact (0.927x ➖, 32↑ 1↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
tpcds_q01/duckdb:vortex-compact 25111055 26917309 0.93
tpcds_q02/duckdb:vortex-compact 🚀 39478931 43959757 0.90
tpcds_q03/duckdb:vortex-compact 48341326 51575911 0.94
tpcds_q04/duckdb:vortex-compact 🚀 101917413 115379991 0.88
tpcds_q05/duckdb:vortex-compact 40958275 42951360 0.95
tpcds_q06/duckdb:vortex-compact 38667697 42103009 0.92
tpcds_q07/duckdb:vortex-compact 34723528 36564183 0.95
tpcds_q08/duckdb:vortex-compact 39845486 41387509 0.96
tpcds_q09/duckdb:vortex-compact 19521579 21015879 0.93
tpcds_q10/duckdb:vortex-compact 51957527 56221737 0.92
tpcds_q11/duckdb:vortex-compact 74377697 81881561 0.91
tpcds_q12/duckdb:vortex-compact 🚀 21940586 24695455 0.89
tpcds_q13/duckdb:vortex-compact 53517245 55315486 0.97
tpcds_q14/duckdb:vortex-compact 117323182 121943424 0.96
tpcds_q15/duckdb:vortex-compact 🚀 29527721 33180000 0.89
tpcds_q16/duckdb:vortex-compact 🚀 26511854 31521170 0.84
tpcds_q17/duckdb:vortex-compact 🚀 54587207 62245424 0.88
tpcds_q18/duckdb:vortex-compact 🚀 50410696 56824601 0.89
tpcds_q19/duckdb:vortex-compact 44124918 46248882 0.95
tpcds_q20/duckdb:vortex-compact 🚀 20705942 23050951 0.90
tpcds_q21/duckdb:vortex-compact 17461707 19269999 0.91
tpcds_q22/duckdb:vortex-compact 79986582 82629216 0.97
tpcds_q23/duckdb:vortex-compact 102279617 106153859 0.96
tpcds_q24/duckdb:vortex-compact 57611745 61308821 0.94
tpcds_q25/duckdb:vortex-compact 54515122 55497443 0.98
tpcds_q26/duckdb:vortex-compact 🚀 29575606 36624025 0.81
tpcds_q27/duckdb:vortex-compact 37342792 38713723 0.96
tpcds_q28/duckdb:vortex-compact 🚨 34368593 26721156 1.29
tpcds_q29/duckdb:vortex-compact 52618153 56119667 0.94
tpcds_q30/duckdb:vortex-compact 29691421 32441377 0.92
tpcds_q31/duckdb:vortex-compact 36745681 39078359 0.94
tpcds_q32/duckdb:vortex-compact 21102810 22916969 0.92
tpcds_q33/duckdb:vortex-compact 🚀 31468820 37665897 0.84
tpcds_q34/duckdb:vortex-compact 30892816 33318934 0.93
tpcds_q35/duckdb:vortex-compact 74501615 80269751 0.93
tpcds_q36/duckdb:vortex-compact 36270112 38035701 0.95
tpcds_q37/duckdb:vortex-compact 24219772 25601059 0.95
tpcds_q38/duckdb:vortex-compact 44143439 45509726 0.97
tpcds_q39/duckdb:vortex-compact 39528860 41997461 0.94
tpcds_q40/duckdb:vortex-compact 🚀 24549322 28483840 0.86
tpcds_q41/duckdb:vortex-compact 12162527 12790220 0.95
tpcds_q42/duckdb:vortex-compact 🚀 19095904 21238484 0.90
tpcds_q43/duckdb:vortex-compact 🚀 31054148 34558350 0.90
tpcds_q44/duckdb:vortex-compact 29559587 31241482 0.95
tpcds_q45/duckdb:vortex-compact 36580533 39242570 0.93
tpcds_q46/duckdb:vortex-compact 48151168 46591287 1.03
tpcds_q47/duckdb:vortex-compact 62251641 65214052 0.95
tpcds_q48/duckdb:vortex-compact 45728231 47795490 0.96
tpcds_q49/duckdb:vortex-compact 48003613 48737802 0.98
tpcds_q50/duckdb:vortex-compact 37183069 41261558 0.90
tpcds_q51/duckdb:vortex-compact 111020708 117430441 0.95
tpcds_q52/duckdb:vortex-compact 🚀 18785468 21950884 0.86
tpcds_q53/duckdb:vortex-compact 32549445 34000190 0.96
tpcds_q54/duckdb:vortex-compact 36394926 39478819 0.92
tpcds_q55/duckdb:vortex-compact 18509975 20068683 0.92
tpcds_q56/duckdb:vortex-compact 🚀 32896337 37233731 0.88
tpcds_q57/duckdb:vortex-compact 45465460 49248190 0.92
tpcds_q58/duckdb:vortex-compact 36249154 36502927 0.99
tpcds_q59/duckdb:vortex-compact 65955191 67946394 0.97
tpcds_q60/duckdb:vortex-compact 🚀 34231926 40362066 0.85
tpcds_q61/duckdb:vortex-compact 53213217 57036652 0.93
tpcds_q62/duckdb:vortex-compact 24720208 23742563 1.04
tpcds_q63/duckdb:vortex-compact 32051404 33000608 0.97
tpcds_q64/duckdb:vortex-compact 130928389 135151845 0.97
tpcds_q65/duckdb:vortex-compact 30257941 31183472 0.97
tpcds_q66/duckdb:vortex-compact 36700507 38570795 0.95
tpcds_q67/duckdb:vortex-compact 158049431 166524005 0.95
tpcds_q68/duckdb:vortex-compact 🚀 43775998 48787453 0.90
tpcds_q69/duckdb:vortex-compact 54243964 59130071 0.92
tpcds_q70/duckdb:vortex-compact 60006435 59852545 1.00
tpcds_q71/duckdb:vortex-compact 🚀 29159436 33644065 0.87
tpcds_q72/duckdb:vortex-compact 184659625 193373835 0.95
tpcds_q73/duckdb:vortex-compact 28602551 31607402 0.90
tpcds_q74/duckdb:vortex-compact 50354864 54843759 0.92
tpcds_q75/duckdb:vortex-compact 🚀 60511880 67895687 0.89
tpcds_q76/duckdb:vortex-compact 🚀 28526852 32617429 0.87
tpcds_q77/duckdb:vortex-compact 37051254 40320733 0.92
tpcds_q78/duckdb:vortex-compact 86604899 93284045 0.93
tpcds_q79/duckdb:vortex-compact 41159297 43765202 0.94
tpcds_q80/duckdb:vortex-compact 74572951 76572655 0.97
tpcds_q81/duckdb:vortex-compact 🚀 33576893 37631650 0.89
tpcds_q82/duckdb:vortex-compact 50079623 54681285 0.92
tpcds_q83/duckdb:vortex-compact 37262467 38482065 0.97
tpcds_q84/duckdb:vortex-compact 🚀 20454797 24770100 0.83
tpcds_q85/duckdb:vortex-compact 🚀 52647203 58746367 0.90
tpcds_q86/duckdb:vortex-compact 🚀 20674614 24435849 0.85
tpcds_q87/duckdb:vortex-compact 🚀 45097929 50320570 0.90
tpcds_q88/duckdb:vortex-compact 🚀 75940747 84613958 0.90
tpcds_q89/duckdb:vortex-compact 33905128 34966731 0.97
tpcds_q90/duckdb:vortex-compact 11640642 12014580 0.97
tpcds_q91/duckdb:vortex-compact 43443123 44173623 0.98
tpcds_q92/duckdb:vortex-compact 🚀 41304581 48451996 0.85
tpcds_q93/duckdb:vortex-compact 🚀 32697337 37085563 0.88
tpcds_q94/duckdb:vortex-compact 🚀 27605947 30839512 0.90
tpcds_q95/duckdb:vortex-compact 154669671 164396023 0.94
tpcds_q96/duckdb:vortex-compact 🚀 15935348 17907806 0.89
tpcds_q97/duckdb:vortex-compact 🚀 41160802 47137443 0.87
tpcds_q98/duckdb:vortex-compact 🚀 26802883 30853582 0.87
tpcds_q99/duckdb:vortex-compact 25988939 28129651 0.92
duckdb / parquet (0.942x ➖, 8↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
tpcds_q01/duckdb:parquet 30421816 31679670 0.96
tpcds_q02/duckdb:parquet 24993905 25884800 0.97
tpcds_q03/duckdb:parquet 12871037 13741447 0.94
tpcds_q04/duckdb:parquet 173407713 178223385 0.97
tpcds_q05/duckdb:parquet 31452029 33243730 0.95
tpcds_q06/duckdb:parquet 33999143 34087598 1.00
tpcds_q07/duckdb:parquet 23801581 25191365 0.94
tpcds_q08/duckdb:parquet 29922889 30678092 0.98
tpcds_q09/duckdb:parquet 44662452 47694347 0.94
tpcds_q10/duckdb:parquet 🚀 37539231 42152328 0.89
tpcds_q11/duckdb:parquet 89313357 97623658 0.91
tpcds_q12/duckdb:parquet 17486036 17866771 0.98
tpcds_q13/duckdb:parquet 35043897 36892477 0.95
tpcds_q14/duckdb:parquet 103821445 111051031 0.93
tpcds_q15/duckdb:parquet 🚀 30002902 34093942 0.88
tpcds_q16/duckdb:parquet 22684813 23632378 0.96
tpcds_q17/duckdb:parquet 40326404 40316983 1.00
tpcds_q18/duckdb:parquet 48750423 50463548 0.97
tpcds_q19/duckdb:parquet 32494959 33282579 0.98
tpcds_q20/duckdb:parquet 18614587 19700752 0.94
tpcds_q21/duckdb:parquet 11514676 12287235 0.94
tpcds_q22/duckdb:parquet 🚀 71089394 80652777 0.88
tpcds_q23/duckdb:parquet 🚀 81293498 91694301 0.89
tpcds_q24/duckdb:parquet 46973671 51736928 0.91
tpcds_q25/duckdb:parquet 35735761 38376518 0.93
tpcds_q26/duckdb:parquet 39306268 41946351 0.94
tpcds_q27/duckdb:parquet 52765601 55424224 0.95
tpcds_q28/duckdb:parquet 43022703 46433083 0.93
tpcds_q29/duckdb:parquet 36622513 38153382 0.96
tpcds_q30/duckdb:parquet 37802831 39809688 0.95
tpcds_q31/duckdb:parquet 27417373 30457621 0.90
tpcds_q32/duckdb:parquet 12636652 13836601 0.91
tpcds_q33/duckdb:parquet 23776645 25645321 0.93
tpcds_q34/duckdb:parquet 23312779 24782844 0.94
tpcds_q35/duckdb:parquet 61060844 65907421 0.93
tpcds_q36/duckdb:parquet 22322357 23880878 0.93
tpcds_q37/duckdb:parquet 14669748 15997697 0.92
tpcds_q38/duckdb:parquet 36639361 40046500 0.91
tpcds_q39/duckdb:parquet 31842754 33821861 0.94
tpcds_q40/duckdb:parquet 🚀 19488953 21704664 0.90
tpcds_q41/duckdb:parquet 8893741 9512881 0.93
tpcds_q42/duckdb:parquet 13024754 12972285 1.00
tpcds_q43/duckdb:parquet 17875211 19255235 0.93
tpcds_q44/duckdb:parquet 27159551 28670630 0.95
tpcds_q45/duckdb:parquet 28609035 31416764 0.91
tpcds_q46/duckdb:parquet 47974095 51151391 0.94
tpcds_q47/duckdb:parquet 51997229 53593050 0.97
tpcds_q48/duckdb:parquet 32273025 34665138 0.93
tpcds_q49/duckdb:parquet 28771851 30892126 0.93
tpcds_q50/duckdb:parquet 26049903 27537888 0.95
tpcds_q51/duckdb:parquet 104098518 108940148 0.96
tpcds_q52/duckdb:parquet 12567930 13892136 0.90
tpcds_q53/duckdb:parquet 19051257 19657013 0.97
tpcds_q54/duckdb:parquet 29146775 30598296 0.95
tpcds_q55/duckdb:parquet 13083313 13911292 0.94
tpcds_q56/duckdb:parquet 24330887 25795330 0.94
tpcds_q57/duckdb:parquet 37873526 40760205 0.93
tpcds_q58/duckdb:parquet 25160053 27080150 0.93
tpcds_q59/duckdb:parquet 37021002 37957809 0.98
tpcds_q60/duckdb:parquet 24548427 26467685 0.93
tpcds_q61/duckdb:parquet 33979822 35901704 0.95
tpcds_q62/duckdb:parquet 12584571 13094449 0.96
tpcds_q63/duckdb:parquet 17703001 19199729 0.92
tpcds_q64/duckdb:parquet 80330991 80108745 1.00
tpcds_q65/duckdb:parquet 23173653 23452674 0.99
tpcds_q66/duckdb:parquet 29231736 30440085 0.96
tpcds_q67/duckdb:parquet 138830464 148508881 0.93
tpcds_q68/duckdb:parquet 39564823 40168827 0.98
tpcds_q69/duckdb:parquet 39027263 39154865 1.00
tpcds_q70/duckdb:parquet 23075559 24731064 0.93
tpcds_q71/duckdb:parquet 24218099 25378236 0.95
tpcds_q72/duckdb:parquet 174006669 174348171 1.00
tpcds_q73/duckdb:parquet 20506260 21176545 0.97
tpcds_q74/duckdb:parquet 127425796 134444156 0.95
tpcds_q75/duckdb:parquet 58066336 63626595 0.91
tpcds_q76/duckdb:parquet 22053916 23697314 0.93
tpcds_q77/duckdb:parquet 25606364 27481847 0.93
tpcds_q78/duckdb:parquet 🚀 77277507 87054314 0.89
tpcds_q79/duckdb:parquet 30156754 31255940 0.96
tpcds_q80/duckdb:parquet 🚀 43344085 48519718 0.89
tpcds_q81/duckdb:parquet 35597449 36896037 0.96
tpcds_q82/duckdb:parquet 16967426 18021224 0.94
tpcds_q83/duckdb:parquet 18424897 19544853 0.94
tpcds_q84/duckdb:parquet 21122340 21595843 0.98
tpcds_q85/duckdb:parquet 41774643 44733772 0.93
tpcds_q86/duckdb:parquet 13675397 14870660 0.92
tpcds_q87/duckdb:parquet 39465758 41934201 0.94
tpcds_q88/duckdb:parquet 53436307 54985839 0.97
tpcds_q89/duckdb:parquet 21752047 23120486 0.94
tpcds_q90/duckdb:parquet 8453272 9374083 0.90
tpcds_q91/duckdb:parquet 25917218 27247581 0.95
tpcds_q92/duckdb:parquet 13213372 13999581 0.94
tpcds_q93/duckdb:parquet 31731013 34652709 0.92
tpcds_q94/duckdb:parquet 18156070 19216894 0.94
tpcds_q95/duckdb:parquet 🚀 122783830 139411077 0.88
tpcds_q96/duckdb:parquet 10604847 11249047 0.94
tpcds_q97/duckdb:parquet 37849900 40316356 0.94
tpcds_q98/duckdb:parquet 23996857 25450588 0.94
tpcds_q99/duckdb:parquet 20233330 21136516 0.96
duckdb / duckdb (0.917x ➖, 22↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
tpcds_q01/duckdb:duckdb 23323025 23531703 0.99
tpcds_q02/duckdb:duckdb 20319215 21194653 0.96
tpcds_q03/duckdb:duckdb 10465036 11278653 0.93
tpcds_q04/duckdb:duckdb 176881860 191267586 0.92
tpcds_q05/duckdb:duckdb 23409664 22338391 1.05
tpcds_q06/duckdb:duckdb 27791492 30507719 0.91
tpcds_q07/duckdb:duckdb 40098294 42954647 0.93
tpcds_q08/duckdb:duckdb 120623724 122936119 0.98
tpcds_q09/duckdb:duckdb 20542935 21800253 0.94
tpcds_q10/duckdb:duckdb 27627860 30144209 0.92
tpcds_q11/duckdb:duckdb 89745143 97795632 0.92
tpcds_q12/duckdb:duckdb 14754555 15194146 0.97
tpcds_q13/duckdb:duckdb 25879410 28323469 0.91
tpcds_q14/duckdb:duckdb 93358097 99839973 0.94
tpcds_q15/duckdb:duckdb 🚀 24488547 28033331 0.87
tpcds_q16/duckdb:duckdb 20589001 21618280 0.95
tpcds_q17/duckdb:duckdb 🚀 24061363 26771823 0.90
tpcds_q18/duckdb:duckdb 47413031 51009960 0.93
tpcds_q19/duckdb:duckdb 19994997 21331644 0.94
tpcds_q20/duckdb:duckdb 14380864 15202954 0.95
tpcds_q21/duckdb:duckdb 7551684 8271373 0.91
tpcds_q22/duckdb:duckdb 67932734 74631190 0.91
tpcds_q23/duckdb:duckdb 🚀 79627197 93638576 0.85
tpcds_q24/duckdb:duckdb 25575623 27840559 0.92
tpcds_q25/duckdb:duckdb 🚀 18596444 20869065 0.89
tpcds_q26/duckdb:duckdb 🚀 28405198 32038376 0.89
tpcds_q27/duckdb:duckdb 41122331 45635071 0.90
tpcds_q28/duckdb:duckdb 🚀 24961920 29983792 0.83
tpcds_q29/duckdb:duckdb 22841230 25195916 0.91
tpcds_q30/duckdb:duckdb 30883254 33386405 0.93
tpcds_q31/duckdb:duckdb 🚀 51635068 58677653 0.88
tpcds_q32/duckdb:duckdb 8915772 9451219 0.94
tpcds_q33/duckdb:duckdb 🚀 15504070 17515299 0.89
tpcds_q34/duckdb:duckdb 18877206 20545030 0.92
tpcds_q35/duckdb:duckdb 38152737 42175599 0.90
tpcds_q36/duckdb:duckdb 🚀 72745383 81293916 0.89
tpcds_q37/duckdb:duckdb 9451734 9684577 0.98
tpcds_q38/duckdb:duckdb 33361271 36033068 0.93
tpcds_q39/duckdb:duckdb 28388530 30832685 0.92
tpcds_q40/duckdb:duckdb 15424300 16788774 0.92
tpcds_q41/duckdb:duckdb 9548552 10402729 0.92
tpcds_q42/duckdb:duckdb 🚀 8792808 10550787 0.83
tpcds_q43/duckdb:duckdb 14939369 15687130 0.95
tpcds_q44/duckdb:duckdb 15176729 16683922 0.91
tpcds_q45/duckdb:duckdb 19452523 20118649 0.97
tpcds_q46/duckdb:duckdb 39085269 42852541 0.91
tpcds_q47/duckdb:duckdb 🚀 45376252 53466482 0.85
tpcds_q48/duckdb:duckdb 25160841 26745424 0.94
tpcds_q49/duckdb:duckdb 🚀 20182087 23434269 0.86
tpcds_q50/duckdb:duckdb 16275506 17611319 0.92
tpcds_q51/duckdb:duckdb 98401409 107651585 0.91
tpcds_q52/duckdb:duckdb 9422484 10388430 0.91
tpcds_q53/duckdb:duckdb 17380811 18928450 0.92
tpcds_q54/duckdb:duckdb 19033797 20124676 0.95
tpcds_q55/duckdb:duckdb 9323536 10117411 0.92
tpcds_q56/duckdb:duckdb 16369700 17854167 0.92
tpcds_q57/duckdb:duckdb 36593020 38458134 0.95
tpcds_q58/duckdb:duckdb 16447739 17902725 0.92
tpcds_q59/duckdb:duckdb 36781942 39113671 0.94
tpcds_q60/duckdb:duckdb 17532886 19404575 0.90
tpcds_q61/duckdb:duckdb 🚀 16057531 18059071 0.89
tpcds_q62/duckdb:duckdb 9858251 10673535 0.92
tpcds_q63/duckdb:duckdb 16088498 17737295 0.91
tpcds_q64/duckdb:duckdb 58624602 62923536 0.93
tpcds_q65/duckdb:duckdb 36334096 40265644 0.90
tpcds_q66/duckdb:duckdb 26037251 28124156 0.93
tpcds_q67/duckdb:duckdb 134813081 149290690 0.90
tpcds_q68/duckdb:duckdb 26953425 28544864 0.94
tpcds_q69/duckdb:duckdb 27687605 29422885 0.94
tpcds_q70/duckdb:duckdb 16687598 18159876 0.92
tpcds_q71/duckdb:duckdb 16545543 18299315 0.90
tpcds_q72/duckdb:duckdb 45697429 49502724 0.92
tpcds_q73/duckdb:duckdb 14192796 15510053 0.92
tpcds_q74/duckdb:duckdb 145932901 153571616 0.95
tpcds_q75/duckdb:duckdb 🚀 45911791 51181361 0.90
tpcds_q76/duckdb:duckdb 🚀 14081529 16976521 0.83
tpcds_q77/duckdb:duckdb 15122816 16743719 0.90
tpcds_q78/duckdb:duckdb 65780234 70726707 0.93
tpcds_q79/duckdb:duckdb 20193488 21228590 0.95
tpcds_q80/duckdb:duckdb 🚀 30742833 35298371 0.87
tpcds_q81/duckdb:duckdb 41010313 43063629 0.95
tpcds_q82/duckdb:duckdb 10227384 11338324 0.90
tpcds_q83/duckdb:duckdb 🚀 10739551 12137100 0.88
tpcds_q84/duckdb:duckdb 14502292 15645687 0.93
tpcds_q85/duckdb:duckdb 25572600 27883540 0.92
tpcds_q86/duckdb:duckdb 11981236 13073720 0.92
tpcds_q87/duckdb:duckdb 38112551 38086652 1.00
tpcds_q88/duckdb:duckdb 🚀 28805776 33631048 0.86
tpcds_q89/duckdb:duckdb 🚀 21294954 24324745 0.88
tpcds_q90/duckdb:duckdb 🚀 6181378 7182960 0.86
tpcds_q91/duckdb:duckdb 🚀 14547438 16394691 0.89
tpcds_q92/duckdb:duckdb 10175545 10715931 0.95
tpcds_q93/duckdb:duckdb 23456578 25464563 0.92
tpcds_q94/duckdb:duckdb 14351794 15239341 0.94
tpcds_q95/duckdb:duckdb 🚀 112024077 140457964 0.80
tpcds_q96/duckdb:duckdb 6050671 6494712 0.93
tpcds_q97/duckdb:duckdb 32198245 34058172 0.95
tpcds_q98/duckdb:duckdb 21368995 21127401 1.01
tpcds_q99/duckdb:duckdb 17175268 18258679 0.94

File Size Changes (496 files changed, -99.2% overall, 0↑ 496↓)
File Scale Format Base HEAD Change %
addressview.vortex 1.0 vortex-compact 24.53 MB 0 B 24.53 MB -100.0%
categoryview.vortex 1.0 vortex-compact 19.86 KB 0 B 19.86 KB -100.0%
creditcardview.vortex 1.0 vortex-compact 32.23 MB 0 B 32.23 MB -100.0%
customerview.vortex 1.0 vortex-compact 10.60 MB 0 B 10.60 MB -100.0%
duckdb.db 1.0 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
orderitemnovelty_update.vortex 1.0 vortex-compact 13.14 KB 0 B 13.14 KB -100.0%
orderitemview.vortex 1.0 vortex-compact 156.30 MB 0 B 156.30 MB -100.0%
orderview.vortex 1.0 vortex-compact 32.16 MB 0 B 32.16 MB -100.0%
productview.vortex 1.0 vortex-compact 18.77 KB 0 B 18.77 KB -100.0%
taxrecordview.vortex 1.0 vortex-compact 17.34 MB 0 B 17.34 MB -100.0%
addressview.vortex 1.0 vortex-file-compressed 34.71 MB 0 B 34.71 MB -100.0%
categoryview.vortex 1.0 vortex-file-compressed 20.74 KB 0 B 20.74 KB -100.0%
creditcardview.vortex 1.0 vortex-file-compressed 66.75 MB 0 B 66.75 MB -100.0%
customerview.vortex 1.0 vortex-file-compressed 19.91 MB 0 B 19.91 MB -100.0%
duckdb.db 1.0 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
orderitemnovelty_update.vortex 1.0 vortex-file-compressed 13.14 KB 0 B 13.14 KB -100.0%
orderitemview.vortex 1.0 vortex-file-compressed 297.21 MB 0 B 297.21 MB -100.0%
orderview.vortex 1.0 vortex-file-compressed 88.79 MB 0 B 88.79 MB -100.0%
productview.vortex 1.0 vortex-file-compressed 20.44 KB 0 B 20.44 KB -100.0%
taxrecordview.vortex 1.0 vortex-file-compressed 22.01 MB 0 B 22.01 MB -100.0%
duckdb.db 1.0 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
hits_0.vortex 1.0 vortex-compact 58.66 MB 0 B 58.66 MB -100.0%
hits_1.vortex 1.0 vortex-compact 90.34 MB 0 B 90.34 MB -100.0%
hits_10.vortex 1.0 vortex-compact 48.86 MB 0 B 48.86 MB -100.0%
hits_11.vortex 1.0 vortex-compact 54.35 MB 0 B 54.35 MB -100.0%
hits_12.vortex 1.0 vortex-compact 69.27 MB 0 B 69.27 MB -100.0%
hits_13.vortex 1.0 vortex-compact 67.96 MB 0 B 67.96 MB -100.0%
hits_14.vortex 1.0 vortex-compact 73.75 MB 0 B 73.75 MB -100.0%
hits_15.vortex 1.0 vortex-compact 48.14 MB 0 B 48.14 MB -100.0%
hits_16.vortex 1.0 vortex-compact 48.30 MB 0 B 48.30 MB -100.0%
hits_17.vortex 1.0 vortex-compact 58.32 MB 0 B 58.32 MB -100.0%
hits_18.vortex 1.0 vortex-compact 64.28 MB 0 B 64.28 MB -100.0%
hits_19.vortex 1.0 vortex-compact 44.88 MB 0 B 44.88 MB -100.0%
hits_2.vortex 1.0 vortex-compact 129.36 MB 0 B 129.36 MB -100.0%
hits_20.vortex 1.0 vortex-compact 38.14 MB 0 B 38.14 MB -100.0%
hits_21.vortex 1.0 vortex-compact 51.60 MB 0 B 51.60 MB -100.0%
hits_22.vortex 1.0 vortex-compact 44.74 MB 0 B 44.74 MB -100.0%
hits_23.vortex 1.0 vortex-compact 44.17 MB 0 B 44.17 MB -100.0%
hits_24.vortex 1.0 vortex-compact 43.63 MB 0 B 43.63 MB -100.0%
hits_25.vortex 1.0 vortex-compact 73.14 MB 0 B 73.14 MB -100.0%
hits_26.vortex 1.0 vortex-compact 70.89 MB 0 B 70.89 MB -100.0%
hits_27.vortex 1.0 vortex-compact 69.88 MB 0 B 69.88 MB -100.0%
hits_28.vortex 1.0 vortex-compact 70.27 MB 0 B 70.27 MB -100.0%
hits_29.vortex 1.0 vortex-compact 36.61 MB 0 B 36.61 MB -100.0%
hits_3.vortex 1.0 vortex-compact 94.23 MB 0 B 94.23 MB -100.0%
hits_30.vortex 1.0 vortex-compact 58.69 MB 0 B 58.69 MB -100.0%
hits_31.vortex 1.0 vortex-compact 55.56 MB 0 B 55.56 MB -100.0%
hits_32.vortex 1.0 vortex-compact 44.13 MB 0 B 44.13 MB -100.0%
hits_33.vortex 1.0 vortex-compact 35.95 MB 0 B 35.95 MB -100.0%
hits_34.vortex 1.0 vortex-compact 58.26 MB 0 B 58.26 MB -100.0%
hits_35.vortex 1.0 vortex-compact 75.11 MB 0 B 75.11 MB -100.0%
hits_36.vortex 1.0 vortex-compact 48.99 MB 0 B 48.99 MB -100.0%
hits_37.vortex 1.0 vortex-compact 53.83 MB 0 B 53.83 MB -100.0%
hits_38.vortex 1.0 vortex-compact 63.10 MB 0 B 63.10 MB -100.0%
hits_39.vortex 1.0 vortex-compact 49.82 MB 0 B 49.82 MB -100.0%
hits_4.vortex 1.0 vortex-compact 71.81 MB 0 B 71.81 MB -100.0%
hits_40.vortex 1.0 vortex-compact 75.92 MB 0 B 75.92 MB -100.0%
hits_41.vortex 1.0 vortex-compact 165.78 MB 0 B 165.78 MB -100.0%
hits_42.vortex 1.0 vortex-compact 164.22 MB 0 B 164.22 MB -100.0%
hits_43.vortex 1.0 vortex-compact 168.91 MB 0 B 168.91 MB -100.0%
hits_44.vortex 1.0 vortex-compact 132.46 MB 0 B 132.46 MB -100.0%
hits_45.vortex 1.0 vortex-compact 76.07 MB 0 B 76.07 MB -100.0%
hits_46.vortex 1.0 vortex-compact 41.92 MB 0 B 41.92 MB -100.0%
hits_47.vortex 1.0 vortex-compact 18.25 MB 0 B 18.25 MB -100.0%
hits_48.vortex 1.0 vortex-compact 17.32 MB 0 B 17.32 MB -100.0%
hits_49.vortex 1.0 vortex-compact 50.53 MB 0 B 50.53 MB -100.0%
hits_5.vortex 1.0 vortex-compact 62.90 MB 0 B 62.90 MB -100.0%
hits_50.vortex 1.0 vortex-compact 113.12 MB 0 B 113.12 MB -100.0%
hits_51.vortex 1.0 vortex-compact 167.81 MB 0 B 167.81 MB -100.0%
hits_52.vortex 1.0 vortex-compact 63.73 MB 0 B 63.73 MB -100.0%
hits_53.vortex 1.0 vortex-compact 59.09 MB 0 B 59.09 MB -100.0%
hits_54.vortex 1.0 vortex-compact 117.66 MB 0 B 117.66 MB -100.0%
hits_55.vortex 1.0 vortex-compact 93.77 MB 0 B 93.77 MB -100.0%
hits_56.vortex 1.0 vortex-compact 77.87 MB 0 B 77.87 MB -100.0%
hits_57.vortex 1.0 vortex-compact 83.54 MB 0 B 83.54 MB -100.0%
hits_58.vortex 1.0 vortex-compact 60.41 MB 0 B 60.41 MB -100.0%
hits_59.vortex 1.0 vortex-compact 66.30 MB 0 B 66.30 MB -100.0%
hits_6.vortex 1.0 vortex-compact 63.16 MB 0 B 63.16 MB -100.0%
hits_60.vortex 1.0 vortex-compact 64.33 MB 0 B 64.33 MB -100.0%
hits_61.vortex 1.0 vortex-compact 57.66 MB 0 B 57.66 MB -100.0%
hits_62.vortex 1.0 vortex-compact 74.26 MB 0 B 74.26 MB -100.0%
hits_63.vortex 1.0 vortex-compact 46.10 MB 0 B 46.10 MB -100.0%
hits_64.vortex 1.0 vortex-compact 53.91 MB 0 B 53.91 MB -100.0%
hits_65.vortex 1.0 vortex-compact 129.95 MB 0 B 129.95 MB -100.0%
hits_66.vortex 1.0 vortex-compact 53.49 MB 0 B 53.49 MB -100.0%
hits_67.vortex 1.0 vortex-compact 114.05 MB 0 B 114.05 MB -100.0%
hits_68.vortex 1.0 vortex-compact 75.99 MB 0 B 75.99 MB -100.0%
hits_69.vortex 1.0 vortex-compact 81.02 MB 0 B 81.02 MB -100.0%
hits_7.vortex 1.0 vortex-compact 63.80 MB 0 B 63.80 MB -100.0%
hits_70.vortex 1.0 vortex-compact 61.29 MB 0 B 61.29 MB -100.0%
hits_71.vortex 1.0 vortex-compact 69.29 MB 0 B 69.29 MB -100.0%
hits_72.vortex 1.0 vortex-compact 51.79 MB 0 B 51.79 MB -100.0%
hits_73.vortex 1.0 vortex-compact 70.04 MB 0 B 70.04 MB -100.0%
hits_74.vortex 1.0 vortex-compact 71.62 MB 0 B 71.62 MB -100.0%
hits_75.vortex 1.0 vortex-compact 43.63 MB 0 B 43.63 MB -100.0%
hits_76.vortex 1.0 vortex-compact 76.44 MB 0 B 76.44 MB -100.0%
hits_77.vortex 1.0 vortex-compact 118.11 MB 0 B 118.11 MB -100.0%
hits_78.vortex 1.0 vortex-compact 97.87 MB 0 B 97.87 MB -100.0%
hits_79.vortex 1.0 vortex-compact 85.70 MB 0 B 85.70 MB -100.0%
hits_8.vortex 1.0 vortex-compact 62.89 MB 0 B 62.89 MB -100.0%
hits_80.vortex 1.0 vortex-compact 68.07 MB 0 B 68.07 MB -100.0%
hits_81.vortex 1.0 vortex-compact 65.45 MB 0 B 65.45 MB -100.0%
hits_82.vortex 1.0 vortex-compact 66.89 MB 0 B 66.89 MB -100.0%
hits_83.vortex 1.0 vortex-compact 52.57 MB 0 B 52.57 MB -100.0%
hits_84.vortex 1.0 vortex-compact 73.14 MB 0 B 73.14 MB -100.0%
hits_85.vortex 1.0 vortex-compact 52.73 MB 0 B 52.73 MB -100.0%
hits_86.vortex 1.0 vortex-compact 48.25 MB 0 B 48.25 MB -100.0%
hits_87.vortex 1.0 vortex-compact 119.04 MB 0 B 119.04 MB -100.0%
hits_88.vortex 1.0 vortex-compact 73.31 MB 0 B 73.31 MB -100.0%
hits_89.vortex 1.0 vortex-compact 112.82 MB 0 B 112.82 MB -100.0%
hits_9.vortex 1.0 vortex-compact 65.67 MB 0 B 65.67 MB -100.0%
hits_90.vortex 1.0 vortex-compact 81.86 MB 0 B 81.86 MB -100.0%
hits_91.vortex 1.0 vortex-compact 60.94 MB 0 B 60.94 MB -100.0%
hits_92.vortex 1.0 vortex-compact 94.27 MB 0 B 94.27 MB -100.0%
hits_93.vortex 1.0 vortex-compact 58.90 MB 0 B 58.90 MB -100.0%
hits_94.vortex 1.0 vortex-compact 90.63 MB 0 B 90.63 MB -100.0%
hits_95.vortex 1.0 vortex-compact 57.75 MB 0 B 57.75 MB -100.0%
hits_96.vortex 1.0 vortex-compact 91.08 MB 0 B 91.08 MB -100.0%
hits_97.vortex 1.0 vortex-compact 69.16 MB 0 B 69.16 MB -100.0%
hits_98.vortex 1.0 vortex-compact 72.77 MB 0 B 72.77 MB -100.0%
hits_99.vortex 1.0 vortex-compact 77.31 MB 0 B 77.31 MB -100.0%
duckdb.db 1.0 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
hits_0.vortex 1.0 vortex-file-compressed 112.17 MB 0 B 112.17 MB -100.0%
hits_1.vortex 1.0 vortex-file-compressed 181.16 MB 0 B 181.16 MB -100.0%
hits_10.vortex 1.0 vortex-file-compressed 81.76 MB 0 B 81.76 MB -100.0%
hits_11.vortex 1.0 vortex-file-compressed 96.07 MB 0 B 96.07 MB -100.0%
hits_12.vortex 1.0 vortex-file-compressed 125.34 MB 0 B 125.34 MB -100.0%
hits_13.vortex 1.0 vortex-file-compressed 123.20 MB 0 B 123.20 MB -100.0%
hits_14.vortex 1.0 vortex-file-compressed 135.14 MB 0 B 135.14 MB -100.0%
hits_15.vortex 1.0 vortex-file-compressed 97.01 MB 0 B 97.01 MB -100.0%
hits_16.vortex 1.0 vortex-file-compressed 87.59 MB 0 B 87.59 MB -100.0%
hits_17.vortex 1.0 vortex-file-compressed 103.64 MB 0 B 103.64 MB -100.0%
hits_18.vortex 1.0 vortex-file-compressed 126.06 MB 0 B 126.06 MB -100.0%
hits_19.vortex 1.0 vortex-file-compressed 82.10 MB 0 B 82.10 MB -100.0%
hits_2.vortex 1.0 vortex-file-compressed 241.46 MB 0 B 241.46 MB -100.0%
hits_20.vortex 1.0 vortex-file-compressed 67.53 MB 0 B 67.53 MB -100.0%
hits_21.vortex 1.0 vortex-file-compressed 101.28 MB 0 B 101.28 MB -100.0%
hits_22.vortex 1.0 vortex-file-compressed 81.17 MB 0 B 81.17 MB -100.0%
hits_23.vortex 1.0 vortex-file-compressed 80.37 MB 0 B 80.37 MB -100.0%
hits_24.vortex 1.0 vortex-file-compressed 79.71 MB 0 B 79.71 MB -100.0%
hits_25.vortex 1.0 vortex-file-compressed 137.01 MB 0 B 137.01 MB -100.0%
hits_26.vortex 1.0 vortex-file-compressed 144.05 MB 0 B 144.05 MB -100.0%
hits_27.vortex 1.0 vortex-file-compressed 174.61 MB 0 B 174.61 MB -100.0%
hits_28.vortex 1.0 vortex-file-compressed 167.55 MB 0 B 167.55 MB -100.0%
hits_29.vortex 1.0 vortex-file-compressed 65.47 MB 0 B 65.47 MB -100.0%
hits_3.vortex 1.0 vortex-file-compressed 193.11 MB 0 B 193.11 MB -100.0%
hits_30.vortex 1.0 vortex-file-compressed 104.00 MB 0 B 104.00 MB -100.0%
hits_31.vortex 1.0 vortex-file-compressed 104.39 MB 0 B 104.39 MB -100.0%
hits_32.vortex 1.0 vortex-file-compressed 77.12 MB 0 B 77.12 MB -100.0%
hits_33.vortex 1.0 vortex-file-compressed 62.97 MB 0 B 62.97 MB -100.0%
hits_34.vortex 1.0 vortex-file-compressed 111.68 MB 0 B 111.68 MB -100.0%
hits_35.vortex 1.0 vortex-file-compressed 138.81 MB 0 B 138.81 MB -100.0%
hits_36.vortex 1.0 vortex-file-compressed 80.27 MB 0 B 80.27 MB -100.0%
hits_37.vortex 1.0 vortex-file-compressed 97.54 MB 0 B 97.54 MB -100.0%
hits_38.vortex 1.0 vortex-file-compressed 118.43 MB 0 B 118.43 MB -100.0%
hits_39.vortex 1.0 vortex-file-compressed 94.06 MB 0 B 94.06 MB -100.0%
hits_4.vortex 1.0 vortex-file-compressed 138.86 MB 0 B 138.86 MB -100.0%
hits_40.vortex 1.0 vortex-file-compressed 142.99 MB 0 B 142.99 MB -100.0%
hits_41.vortex 1.0 vortex-file-compressed 300.49 MB 0 B 300.49 MB -100.0%
hits_42.vortex 1.0 vortex-file-compressed 298.79 MB 0 B 298.79 MB -100.0%
hits_43.vortex 1.0 vortex-file-compressed 305.71 MB 0 B 305.71 MB -100.0%
hits_44.vortex 1.0 vortex-file-compressed 243.64 MB 0 B 243.64 MB -100.0%
hits_45.vortex 1.0 vortex-file-compressed 145.48 MB 0 B 145.48 MB -100.0%
hits_46.vortex 1.0 vortex-file-compressed 80.32 MB 0 B 80.32 MB -100.0%
hits_47.vortex 1.0 vortex-file-compressed 41.86 MB 0 B 41.86 MB -100.0%
hits_48.vortex 1.0 vortex-file-compressed 28.53 MB 0 B 28.53 MB -100.0%
hits_49.vortex 1.0 vortex-file-compressed 88.67 MB 0 B 88.67 MB -100.0%
hits_5.vortex 1.0 vortex-file-compressed 122.64 MB 0 B 122.64 MB -100.0%
hits_50.vortex 1.0 vortex-file-compressed 255.24 MB 0 B 255.24 MB -100.0%
hits_51.vortex 1.0 vortex-file-compressed 428.84 MB 0 B 428.84 MB -100.0%
hits_52.vortex 1.0 vortex-file-compressed 120.78 MB 0 B 120.78 MB -100.0%
hits_53.vortex 1.0 vortex-file-compressed 98.26 MB 0 B 98.26 MB -100.0%
hits_54.vortex 1.0 vortex-file-compressed 361.83 MB 0 B 361.83 MB -100.0%
hits_55.vortex 1.0 vortex-file-compressed 251.56 MB 0 B 251.56 MB -100.0%
hits_56.vortex 1.0 vortex-file-compressed 163.76 MB 0 B 163.76 MB -100.0%
hits_57.vortex 1.0 vortex-file-compressed 158.37 MB 0 B 158.37 MB -100.0%
hits_58.vortex 1.0 vortex-file-compressed 113.78 MB 0 B 113.78 MB -100.0%
hits_59.vortex 1.0 vortex-file-compressed 121.84 MB 0 B 121.84 MB -100.0%
hits_6.vortex 1.0 vortex-file-compressed 122.86 MB 0 B 122.86 MB -100.0%
hits_60.vortex 1.0 vortex-file-compressed 121.19 MB 0 B 121.19 MB -100.0%
hits_61.vortex 1.0 vortex-file-compressed 114.43 MB 0 B 114.43 MB -100.0%
hits_62.vortex 1.0 vortex-file-compressed 148.36 MB 0 B 148.36 MB -100.0%
hits_63.vortex 1.0 vortex-file-compressed 80.62 MB 0 B 80.62 MB -100.0%
hits_64.vortex 1.0 vortex-file-compressed 95.27 MB 0 B 95.27 MB -100.0%
hits_65.vortex 1.0 vortex-file-compressed 238.05 MB 0 B 238.05 MB -100.0%
hits_66.vortex 1.0 vortex-file-compressed 105.34 MB 0 B 105.34 MB -100.0%
hits_67.vortex 1.0 vortex-file-compressed 265.94 MB 0 B 265.94 MB -100.0%
hits_68.vortex 1.0 vortex-file-compressed 172.16 MB 0 B 172.16 MB -100.0%
hits_69.vortex 1.0 vortex-file-compressed 147.61 MB 0 B 147.61 MB -100.0%
hits_7.vortex 1.0 vortex-file-compressed 123.82 MB 0 B 123.82 MB -100.0%
hits_70.vortex 1.0 vortex-file-compressed 115.14 MB 0 B 115.14 MB -100.0%
hits_71.vortex 1.0 vortex-file-compressed 126.41 MB 0 B 126.41 MB -100.0%
hits_72.vortex 1.0 vortex-file-compressed 96.27 MB 0 B 96.27 MB -100.0%
hits_73.vortex 1.0 vortex-file-compressed 131.83 MB 0 B 131.83 MB -100.0%
hits_74.vortex 1.0 vortex-file-compressed 152.12 MB 0 B 152.12 MB -100.0%
hits_75.vortex 1.0 vortex-file-compressed 74.18 MB 0 B 74.18 MB -100.0%
hits_76.vortex 1.0 vortex-file-compressed 140.05 MB 0 B 140.05 MB -100.0%
hits_77.vortex 1.0 vortex-file-compressed 218.96 MB 0 B 218.96 MB -100.0%
hits_78.vortex 1.0 vortex-file-compressed 238.59 MB 0 B 238.59 MB -100.0%
hits_79.vortex 1.0 vortex-file-compressed 204.16 MB 0 B 204.16 MB -100.0%
hits_8.vortex 1.0 vortex-file-compressed 122.86 MB 0 B 122.86 MB -100.0%
hits_80.vortex 1.0 vortex-file-compressed 124.24 MB 0 B 124.24 MB -100.0%
hits_81.vortex 1.0 vortex-file-compressed 126.55 MB 0 B 126.55 MB -100.0%
hits_82.vortex 1.0 vortex-file-compressed 122.77 MB 0 B 122.77 MB -100.0%
hits_83.vortex 1.0 vortex-file-compressed 103.72 MB 0 B 103.72 MB -100.0%
hits_84.vortex 1.0 vortex-file-compressed 145.05 MB 0 B 145.05 MB -100.0%
hits_85.vortex 1.0 vortex-file-compressed 106.37 MB 0 B 106.37 MB -100.0%
hits_86.vortex 1.0 vortex-file-compressed 81.40 MB 0 B 81.40 MB -100.0%
hits_87.vortex 1.0 vortex-file-compressed 221.68 MB 0 B 221.68 MB -100.0%
hits_88.vortex 1.0 vortex-file-compressed 137.34 MB 0 B 137.34 MB -100.0%
hits_89.vortex 1.0 vortex-file-compressed 266.01 MB 0 B 266.01 MB -100.0%
hits_9.vortex 1.0 vortex-file-compressed 124.22 MB 0 B 124.22 MB -100.0%
hits_90.vortex 1.0 vortex-file-compressed 204.12 MB 0 B 204.12 MB -100.0%
hits_91.vortex 1.0 vortex-file-compressed 116.23 MB 0 B 116.23 MB -100.0%
hits_92.vortex 1.0 vortex-file-compressed 196.47 MB 0 B 196.47 MB -100.0%
hits_93.vortex 1.0 vortex-file-compressed 107.66 MB 0 B 107.66 MB -100.0%
hits_94.vortex 1.0 vortex-file-compressed 185.12 MB 0 B 185.12 MB -100.0%
hits_95.vortex 1.0 vortex-file-compressed 114.33 MB 0 B 114.33 MB -100.0%
hits_96.vortex 1.0 vortex-file-compressed 180.76 MB 0 B 180.76 MB -100.0%
hits_97.vortex 1.0 vortex-file-compressed 130.96 MB 0 B 130.96 MB -100.0%
hits_98.vortex 1.0 vortex-file-compressed 150.55 MB 0 B 150.55 MB -100.0%
hits_99.vortex 1.0 vortex-file-compressed 158.88 MB 0 B 158.88 MB -100.0%
duckdb.db 1.0 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
sample.vortex 1.0 vortex-compact 1.23 GB 0 B 1.23 GB -100.0%
duckdb.db 1.0 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
sample.vortex 1.0 vortex-file-compressed 1.79 GB 0 B 1.79 GB -100.0%
stacktraces.vortex 1000000 vortex-file-compressed 689.41 MB 0 B 689.41 MB -100.0%
duckdb.db 100000 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
gnomad.genomes.v3.1.2.hgdp_tgp.chr21.vortex 100000 vortex-compact 959.35 MB 0 B 959.35 MB -100.0%
duckdb.db 100000 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
gnomad.genomes.v3.1.2.hgdp_tgp.chr21.vortex 100000 vortex-file-compressed 1.97 GB 0 B 1.97 GB -100.0%
customer_0.vortex 1.0 vortex-compact 7.43 MB 0 B 7.43 MB -100.0%
duckdb.db 1.0 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
lineitem_0.vortex 1.0 vortex-compact 63.00 MB 0 B 63.00 MB -100.0%
lineitem_1.vortex 1.0 vortex-compact 63.03 MB 0 B 63.03 MB -100.0%
nation_0.vortex 1.0 vortex-compact 8.34 KB 0 B 8.34 KB -100.0%
orders_0.vortex 1.0 vortex-compact 31.73 MB 0 B 31.73 MB -100.0%
part_0.vortex 1.0 vortex-compact 3.64 MB 0 B 3.64 MB -100.0%
partsupp_0.vortex 1.0 vortex-compact 25.23 MB 0 B 25.23 MB -100.0%
region_0.vortex 1.0 vortex-compact 5.86 KB 0 B 5.86 KB -100.0%
supplier_0.vortex 1.0 vortex-compact 496.72 KB 0 B 496.72 KB -100.0%
customer_0.vortex 1.0 vortex-file-compressed 10.50 MB 0 B 10.50 MB -100.0%
duckdb.db 1.0 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
lineitem_0.vortex 1.0 vortex-file-compressed 85.42 MB 0 B 85.42 MB -100.0%
lineitem_1.vortex 1.0 vortex-file-compressed 84.90 MB 0 B 84.90 MB -100.0%
nation_0.vortex 1.0 vortex-file-compressed 11.00 KB 0 B 11.00 KB -100.0%
orders_0.vortex 1.0 vortex-file-compressed 43.43 MB 0 B 43.43 MB -100.0%
part_0.vortex 1.0 vortex-file-compressed 5.44 MB 0 B 5.44 MB -100.0%
partsupp_0.vortex 1.0 vortex-file-compressed 35.94 MB 0 B 35.94 MB -100.0%
region_0.vortex 1.0 vortex-file-compressed 6.16 KB 0 B 6.16 KB -100.0%
supplier_0.vortex 1.0 vortex-file-compressed 706.34 KB 0 B 706.34 KB -100.0%
customer_0.vortex 10.0 vortex-compact 74.12 MB 0 B 74.12 MB -100.0%
duckdb.db 10.0 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
lineitem_0.vortex 10.0 vortex-compact 100.59 MB 0 B 100.59 MB -100.0%
lineitem_1.vortex 10.0 vortex-compact 100.64 MB 0 B 100.64 MB -100.0%
lineitem_10.vortex 10.0 vortex-compact 100.62 MB 0 B 100.62 MB -100.0%
lineitem_11.vortex 10.0 vortex-compact 100.53 MB 0 B 100.53 MB -100.0%
lineitem_12.vortex 10.0 vortex-compact 100.62 MB 0 B 100.62 MB -100.0%
lineitem_2.vortex 10.0 vortex-compact 100.59 MB 0 B 100.59 MB -100.0%
lineitem_3.vortex 10.0 vortex-compact 100.62 MB 0 B 100.62 MB -100.0%
lineitem_4.vortex 10.0 vortex-compact 100.56 MB 0 B 100.56 MB -100.0%
lineitem_5.vortex 10.0 vortex-compact 100.70 MB 0 B 100.70 MB -100.0%
lineitem_6.vortex 10.0 vortex-compact 100.68 MB 0 B 100.68 MB -100.0%
lineitem_7.vortex 10.0 vortex-compact 100.58 MB 0 B 100.58 MB -100.0%
lineitem_8.vortex 10.0 vortex-compact 100.59 MB 0 B 100.59 MB -100.0%
lineitem_9.vortex 10.0 vortex-compact 100.46 MB 0 B 100.46 MB -100.0%
nation_0.vortex 10.0 vortex-compact 8.34 KB 0 B 8.34 KB -100.0%
orders_0.vortex 10.0 vortex-compact 114.79 MB 0 B 114.79 MB -100.0%
orders_1.vortex 10.0 vortex-compact 114.76 MB 0 B 114.76 MB -100.0%
orders_2.vortex 10.0 vortex-compact 114.78 MB 0 B 114.78 MB -100.0%
part_0.vortex 10.0 vortex-compact 18.11 MB 0 B 18.11 MB -100.0%
part_1.vortex 10.0 vortex-compact 18.11 MB 0 B 18.11 MB -100.0%
partsupp_0.vortex 10.0 vortex-compact 126.76 MB 0 B 126.76 MB -100.0%
partsupp_1.vortex 10.0 vortex-compact 126.74 MB 0 B 126.74 MB -100.0%
region_0.vortex 10.0 vortex-compact 5.86 KB 0 B 5.86 KB -100.0%
supplier_0.vortex 10.0 vortex-compact 4.73 MB 0 B 4.73 MB -100.0%
customer_0.vortex 10.0 vortex-file-compressed 104.73 MB 0 B 104.73 MB -100.0%
duckdb.db 10.0 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
lineitem_0.vortex 10.0 vortex-file-compressed 134.65 MB 0 B 134.65 MB -100.0%
lineitem_1.vortex 10.0 vortex-file-compressed 134.27 MB 0 B 134.27 MB -100.0%
lineitem_10.vortex 10.0 vortex-file-compressed 134.51 MB 0 B 134.51 MB -100.0%
lineitem_11.vortex 10.0 vortex-file-compressed 134.87 MB 0 B 134.87 MB -100.0%
lineitem_12.vortex 10.0 vortex-file-compressed 134.52 MB 0 B 134.52 MB -100.0%
lineitem_2.vortex 10.0 vortex-file-compressed 134.38 MB 0 B 134.38 MB -100.0%
lineitem_3.vortex 10.0 vortex-file-compressed 133.74 MB 0 B 133.74 MB -100.0%
lineitem_4.vortex 10.0 vortex-file-compressed 134.43 MB 0 B 134.43 MB -100.0%
lineitem_5.vortex 10.0 vortex-file-compressed 133.86 MB 0 B 133.86 MB -100.0%
lineitem_6.vortex 10.0 vortex-file-compressed 133.23 MB 0 B 133.23 MB -100.0%
lineitem_7.vortex 10.0 vortex-file-compressed 134.01 MB 0 B 134.01 MB -100.0%
lineitem_8.vortex 10.0 vortex-file-compressed 134.06 MB 0 B 134.06 MB -100.0%
lineitem_9.vortex 10.0 vortex-file-compressed 134.65 MB 0 B 134.65 MB -100.0%
nation_0.vortex 10.0 vortex-file-compressed 11.00 KB 0 B 11.00 KB -100.0%
orders_0.vortex 10.0 vortex-file-compressed 163.92 MB 0 B 163.92 MB -100.0%
orders_1.vortex 10.0 vortex-file-compressed 164.15 MB 0 B 164.15 MB -100.0%
orders_2.vortex 10.0 vortex-file-compressed 164.00 MB 0 B 164.00 MB -100.0%
part_0.vortex 10.0 vortex-file-compressed 27.02 MB 0 B 27.02 MB -100.0%
part_1.vortex 10.0 vortex-file-compressed 26.99 MB 0 B 26.99 MB -100.0%
partsupp_0.vortex 10.0 vortex-file-compressed 180.47 MB 0 B 180.47 MB -100.0%
partsupp_1.vortex 10.0 vortex-file-compressed 180.65 MB 0 B 180.65 MB -100.0%
region_0.vortex 10.0 vortex-file-compressed 6.16 KB 0 B 6.16 KB -100.0%
supplier_0.vortex 10.0 vortex-file-compressed 6.69 MB 0 B 6.69 MB -100.0%
customer_0.vortex 100 vortex-file-compressed 261.80 MB 0 B 261.80 MB -100.0%
customer_1.vortex 100 vortex-file-compressed 261.77 MB 0 B 261.77 MB -100.0%
customer_2.vortex 100 vortex-file-compressed 261.69 MB 0 B 261.69 MB -100.0%
customer_3.vortex 100 vortex-file-compressed 261.80 MB 0 B 261.80 MB -100.0%
duckdb.db 100 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
lineitem_0.vortex 100 vortex-file-compressed 148.68 MB 0 B 148.68 MB -100.0%
lineitem_1.vortex 100 vortex-file-compressed 148.56 MB 0 B 148.56 MB -100.0%
lineitem_10.vortex 100 vortex-file-compressed 148.35 MB 0 B 148.35 MB -100.0%
lineitem_100.vortex 100 vortex-file-compressed 148.11 MB 0 B 148.11 MB -100.0%
lineitem_101.vortex 100 vortex-file-compressed 148.35 MB 0 B 148.35 MB -100.0%
lineitem_102.vortex 100 vortex-file-compressed 148.14 MB 0 B 148.14 MB -100.0%
lineitem_103.vortex 100 vortex-file-compressed 148.37 MB 0 B 148.37 MB -100.0%
lineitem_104.vortex 100 vortex-file-compressed 148.59 MB 0 B 148.59 MB -100.0%
lineitem_105.vortex 100 vortex-file-compressed 147.47 MB 0 B 147.47 MB -100.0%
lineitem_106.vortex 100 vortex-file-compressed 148.07 MB 0 B 148.07 MB -100.0%
lineitem_107.vortex 100 vortex-file-compressed 148.04 MB 0 B 148.04 MB -100.0%
lineitem_108.vortex 100 vortex-file-compressed 147.29 MB 0 B 147.29 MB -100.0%
lineitem_109.vortex 100 vortex-file-compressed 148.03 MB 0 B 148.03 MB -100.0%
lineitem_11.vortex 100 vortex-file-compressed 148.62 MB 0 B 148.62 MB -100.0%
lineitem_110.vortex 100 vortex-file-compressed 148.41 MB 0 B 148.41 MB -100.0%
lineitem_111.vortex 100 vortex-file-compressed 147.77 MB 0 B 147.77 MB -100.0%
lineitem_112.vortex 100 vortex-file-compressed 147.42 MB 0 B 147.42 MB -100.0%
lineitem_113.vortex 100 vortex-file-compressed 147.56 MB 0 B 147.56 MB -100.0%
lineitem_114.vortex 100 vortex-file-compressed 147.46 MB 0 B 147.46 MB -100.0%
lineitem_115.vortex 100 vortex-file-compressed 147.64 MB 0 B 147.64 MB -100.0%
lineitem_116.vortex 100 vortex-file-compressed 148.20 MB 0 B 148.20 MB -100.0%
lineitem_117.vortex 100 vortex-file-compressed 148.24 MB 0 B 148.24 MB -100.0%
lineitem_118.vortex 100 vortex-file-compressed 147.83 MB 0 B 147.83 MB -100.0%
lineitem_119.vortex 100 vortex-file-compressed 148.33 MB 0 B 148.33 MB -100.0%
lineitem_12.vortex 100 vortex-file-compressed 148.19 MB 0 B 148.19 MB -100.0%
lineitem_120.vortex 100 vortex-file-compressed 147.10 MB 0 B 147.10 MB -100.0%
lineitem_13.vortex 100 vortex-file-compressed 148.26 MB 0 B 148.26 MB -100.0%
lineitem_14.vortex 100 vortex-file-compressed 147.79 MB 0 B 147.79 MB -100.0%
lineitem_15.vortex 100 vortex-file-compressed 147.63 MB 0 B 147.63 MB -100.0%
lineitem_16.vortex 100 vortex-file-compressed 148.03 MB 0 B 148.03 MB -100.0%
lineitem_17.vortex 100 vortex-file-compressed 148.59 MB 0 B 148.59 MB -100.0%
lineitem_18.vortex 100 vortex-file-compressed 147.55 MB 0 B 147.55 MB -100.0%
lineitem_19.vortex 100 vortex-file-compressed 148.77 MB 0 B 148.77 MB -100.0%
lineitem_2.vortex 100 vortex-file-compressed 148.59 MB 0 B 148.59 MB -100.0%
lineitem_20.vortex 100 vortex-file-compressed 148.78 MB 0 B 148.78 MB -100.0%
lineitem_21.vortex 100 vortex-file-compressed 148.33 MB 0 B 148.33 MB -100.0%
lineitem_22.vortex 100 vortex-file-compressed 147.32 MB 0 B 147.32 MB -100.0%
lineitem_23.vortex 100 vortex-file-compressed 148.19 MB 0 B 148.19 MB -100.0%
lineitem_24.vortex 100 vortex-file-compressed 147.50 MB 0 B 147.50 MB -100.0%
lineitem_25.vortex 100 vortex-file-compressed 148.52 MB 0 B 148.52 MB -100.0%
lineitem_26.vortex 100 vortex-file-compressed 148.11 MB 0 B 148.11 MB -100.0%
lineitem_27.vortex 100 vortex-file-compressed 148.45 MB 0 B 148.45 MB -100.0%
lineitem_28.vortex 100 vortex-file-compressed 148.66 MB 0 B 148.66 MB -100.0%
lineitem_29.vortex 100 vortex-file-compressed 148.75 MB 0 B 148.75 MB -100.0%
lineitem_3.vortex 100 vortex-file-compressed 148.16 MB 0 B 148.16 MB -100.0%
lineitem_30.vortex 100 vortex-file-compressed 147.46 MB 0 B 147.46 MB -100.0%
lineitem_31.vortex 100 vortex-file-compressed 148.50 MB 0 B 148.50 MB -100.0%
lineitem_32.vortex 100 vortex-file-compressed 148.90 MB 0 B 148.90 MB -100.0%
lineitem_33.vortex 100 vortex-file-compressed 147.74 MB 0 B 147.74 MB -100.0%
lineitem_34.vortex 100 vortex-file-compressed 148.93 MB 0 B 148.93 MB -100.0%
lineitem_35.vortex 100 vortex-file-compressed 148.35 MB 0 B 148.35 MB -100.0%
lineitem_36.vortex 100 vortex-file-compressed 147.64 MB 0 B 147.64 MB -100.0%
lineitem_37.vortex 100 vortex-file-compressed 147.47 MB 0 B 147.47 MB -100.0%
lineitem_38.vortex 100 vortex-file-compressed 149.09 MB 0 B 149.09 MB -100.0%
lineitem_39.vortex 100 vortex-file-compressed 147.38 MB 0 B 147.38 MB -100.0%
lineitem_4.vortex 100 vortex-file-compressed 147.27 MB 0 B 147.27 MB -100.0%
lineitem_40.vortex 100 vortex-file-compressed 147.97 MB 0 B 147.97 MB -100.0%
lineitem_41.vortex 100 vortex-file-compressed 146.66 MB 0 B 146.66 MB -100.0%
lineitem_42.vortex 100 vortex-file-compressed 148.38 MB 0 B 148.38 MB -100.0%
lineitem_43.vortex 100 vortex-file-compressed 147.84 MB 0 B 147.84 MB -100.0%
lineitem_44.vortex 100 vortex-file-compressed 147.91 MB 0 B 147.91 MB -100.0%
lineitem_45.vortex 100 vortex-file-compressed 146.88 MB 0 B 146.88 MB -100.0%
lineitem_46.vortex 100 vortex-file-compressed 147.77 MB 0 B 147.77 MB -100.0%
lineitem_47.vortex 100 vortex-file-compressed 148.26 MB 0 B 148.26 MB -100.0%
lineitem_48.vortex 100 vortex-file-compressed 148.23 MB 0 B 148.23 MB -100.0%
lineitem_49.vortex 100 vortex-file-compressed 148.47 MB 0 B 148.47 MB -100.0%
lineitem_5.vortex 100 vortex-file-compressed 148.16 MB 0 B 148.16 MB -100.0%
lineitem_50.vortex 100 vortex-file-compressed 148.88 MB 0 B 148.88 MB -100.0%
lineitem_51.vortex 100 vortex-file-compressed 148.42 MB 0 B 148.42 MB -100.0%
lineitem_52.vortex 100 vortex-file-compressed 146.97 MB 0 B 146.97 MB -100.0%
lineitem_53.vortex 100 vortex-file-compressed 148.23 MB 0 B 148.23 MB -100.0%
lineitem_54.vortex 100 vortex-file-compressed 149.12 MB 0 B 149.12 MB -100.0%
lineitem_55.vortex 100 vortex-file-compressed 148.16 MB 0 B 148.16 MB -100.0%
lineitem_56.vortex 100 vortex-file-compressed 147.73 MB 0 B 147.73 MB -100.0%
lineitem_57.vortex 100 vortex-file-compressed 148.37 MB 0 B 148.37 MB -100.0%
lineitem_58.vortex 100 vortex-file-compressed 148.72 MB 0 B 148.72 MB -100.0%
lineitem_59.vortex 100 vortex-file-compressed 148.42 MB 0 B 148.42 MB -100.0%
lineitem_6.vortex 100 vortex-file-compressed 147.90 MB 0 B 147.90 MB -100.0%
lineitem_60.vortex 100 vortex-file-compressed 148.62 MB 0 B 148.62 MB -100.0%
lineitem_61.vortex 100 vortex-file-compressed 147.73 MB 0 B 147.73 MB -100.0%
lineitem_62.vortex 100 vortex-file-compressed 146.94 MB 0 B 146.94 MB -100.0%
lineitem_63.vortex 100 vortex-file-compressed 148.65 MB 0 B 148.65 MB -100.0%
lineitem_64.vortex 100 vortex-file-compressed 147.72 MB 0 B 147.72 MB -100.0%
lineitem_65.vortex 100 vortex-file-compressed 147.57 MB 0 B 147.57 MB -100.0%
lineitem_66.vortex 100 vortex-file-compressed 148.09 MB 0 B 148.09 MB -100.0%
lineitem_67.vortex 100 vortex-file-compressed 148.84 MB 0 B 148.84 MB -100.0%
lineitem_68.vortex 100 vortex-file-compressed 148.03 MB 0 B 148.03 MB -100.0%
lineitem_69.vortex 100 vortex-file-compressed 148.10 MB 0 B 148.10 MB -100.0%
lineitem_7.vortex 100 vortex-file-compressed 147.86 MB 0 B 147.86 MB -100.0%
lineitem_70.vortex 100 vortex-file-compressed 147.89 MB 0 B 147.89 MB -100.0%
lineitem_71.vortex 100 vortex-file-compressed 147.94 MB 0 B 147.94 MB -100.0%
lineitem_72.vortex 100 vortex-file-compressed 147.99 MB 0 B 147.99 MB -100.0%
lineitem_73.vortex 100 vortex-file-compressed 148.32 MB 0 B 148.32 MB -100.0%
lineitem_74.vortex 100 vortex-file-compressed 147.55 MB 0 B 147.55 MB -100.0%
lineitem_75.vortex 100 vortex-file-compressed 147.88 MB 0 B 147.88 MB -100.0%
lineitem_76.vortex 100 vortex-file-compressed 147.35 MB 0 B 147.35 MB -100.0%
lineitem_77.vortex 100 vortex-file-compressed 148.24 MB 0 B 148.24 MB -100.0%
lineitem_78.vortex 100 vortex-file-compressed 147.35 MB 0 B 147.35 MB -100.0%
lineitem_79.vortex 100 vortex-file-compressed 148.43 MB 0 B 148.43 MB -100.0%
lineitem_8.vortex 100 vortex-file-compressed 148.56 MB 0 B 148.56 MB -100.0%
lineitem_80.vortex 100 vortex-file-compressed 147.55 MB 0 B 147.55 MB -100.0%
lineitem_81.vortex 100 vortex-file-compressed 147.76 MB 0 B 147.76 MB -100.0%
lineitem_82.vortex 100 vortex-file-compressed 148.37 MB 0 B 148.37 MB -100.0%
lineitem_83.vortex 100 vortex-file-compressed 148.68 MB 0 B 148.68 MB -100.0%
lineitem_84.vortex 100 vortex-file-compressed 147.94 MB 0 B 147.94 MB -100.0%
lineitem_85.vortex 100 vortex-file-compressed 147.92 MB 0 B 147.92 MB -100.0%
lineitem_86.vortex 100 vortex-file-compressed 147.62 MB 0 B 147.62 MB -100.0%
lineitem_87.vortex 100 vortex-file-compressed 147.46 MB 0 B 147.46 MB -100.0%
lineitem_88.vortex 100 vortex-file-compressed 148.71 MB 0 B 148.71 MB -100.0%
lineitem_89.vortex 100 vortex-file-compressed 148.03 MB 0 B 148.03 MB -100.0%
lineitem_9.vortex 100 vortex-file-compressed 148.87 MB 0 B 148.87 MB -100.0%
lineitem_90.vortex 100 vortex-file-compressed 147.82 MB 0 B 147.82 MB -100.0%
lineitem_91.vortex 100 vortex-file-compressed 148.27 MB 0 B 148.27 MB -100.0%
lineitem_92.vortex 100 vortex-file-compressed 148.08 MB 0 B 148.08 MB -100.0%
lineitem_93.vortex 100 vortex-file-compressed 147.77 MB 0 B 147.77 MB -100.0%
lineitem_94.vortex 100 vortex-file-compressed 148.40 MB 0 B 148.40 MB -100.0%
lineitem_95.vortex 100 vortex-file-compressed 147.49 MB 0 B 147.49 MB -100.0%
lineitem_96.vortex 100 vortex-file-compressed 148.03 MB 0 B 148.03 MB -100.0%
lineitem_97.vortex 100 vortex-file-compressed 148.10 MB 0 B 148.10 MB -100.0%
lineitem_98.vortex 100 vortex-file-compressed 148.59 MB 0 B 148.59 MB -100.0%
lineitem_99.vortex 100 vortex-file-compressed 147.26 MB 0 B 147.26 MB -100.0%
nation_0.vortex 100 vortex-file-compressed 11.00 KB 0 B 11.00 KB -100.0%
orders_0.vortex 100 vortex-file-compressed 180.00 MB 0 B 180.00 MB -100.0%
orders_1.vortex 100 vortex-file-compressed 179.92 MB 0 B 179.92 MB -100.0%
orders_10.vortex 100 vortex-file-compressed 180.14 MB 0 B 180.14 MB -100.0%
orders_11.vortex 100 vortex-file-compressed 180.08 MB 0 B 180.08 MB -100.0%
orders_12.vortex 100 vortex-file-compressed 180.32 MB 0 B 180.32 MB -100.0%
orders_13.vortex 100 vortex-file-compressed 179.83 MB 0 B 179.83 MB -100.0%
orders_14.vortex 100 vortex-file-compressed 180.18 MB 0 B 180.18 MB -100.0%
orders_15.vortex 100 vortex-file-compressed 180.19 MB 0 B 180.19 MB -100.0%
orders_16.vortex 100 vortex-file-compressed 179.88 MB 0 B 179.88 MB -100.0%
orders_17.vortex 100 vortex-file-compressed 180.01 MB 0 B 180.01 MB -100.0%
orders_18.vortex 100 vortex-file-compressed 180.45 MB 0 B 180.45 MB -100.0%
orders_19.vortex 100 vortex-file-compressed 180.04 MB 0 B 180.04 MB -100.0%
orders_2.vortex 100 vortex-file-compressed 180.35 MB 0 B 180.35 MB -100.0%
orders_20.vortex 100 vortex-file-compressed 179.85 MB 0 B 179.85 MB -100.0%
orders_21.vortex 100 vortex-file-compressed 179.89 MB 0 B 179.89 MB -100.0%
orders_22.vortex 100 vortex-file-compressed 180.04 MB 0 B 180.04 MB -100.0%
orders_23.vortex 100 vortex-file-compressed 179.94 MB 0 B 179.94 MB -100.0%
orders_24.vortex 100 vortex-file-compressed 179.56 MB 0 B 179.56 MB -100.0%
orders_25.vortex 100 vortex-file-compressed 179.82 MB 0 B 179.82 MB -100.0%
orders_26.vortex 100 vortex-file-compressed 179.99 MB 0 B 179.99 MB -100.0%
orders_27.vortex 100 vortex-file-compressed 179.78 MB 0 B 179.78 MB -100.0%
orders_3.vortex 100 vortex-file-compressed 180.12 MB 0 B 180.12 MB -100.0%
orders_4.vortex 100 vortex-file-compressed 180.39 MB 0 B 180.39 MB -100.0%
orders_5.vortex 100 vortex-file-compressed 180.03 MB 0 B 180.03 MB -100.0%
orders_6.vortex 100 vortex-file-compressed 179.80 MB 0 B 179.80 MB -100.0%
orders_7.vortex 100 vortex-file-compressed 180.12 MB 0 B 180.12 MB -100.0%
orders_8.vortex 100 vortex-file-compressed 180.21 MB 0 B 180.21 MB -100.0%
orders_9.vortex 100 vortex-file-compressed 180.11 MB 0 B 180.11 MB -100.0%
part_0.vortex 100 vortex-file-compressed 28.45 MB 0 B 28.45 MB -100.0%
part_1.vortex 100 vortex-file-compressed 28.49 MB 0 B 28.49 MB -100.0%
part_10.vortex 100 vortex-file-compressed 28.43 MB 0 B 28.43 MB -100.0%
part_11.vortex 100 vortex-file-compressed 28.45 MB 0 B 28.45 MB -100.0%
part_12.vortex 100 vortex-file-compressed 28.43 MB 0 B 28.43 MB -100.0%
part_13.vortex 100 vortex-file-compressed 28.44 MB 0 B 28.44 MB -100.0%
part_14.vortex 100 vortex-file-compressed 28.46 MB 0 B 28.46 MB -100.0%
part_15.vortex 100 vortex-file-compressed 28.48 MB 0 B 28.48 MB -100.0%
part_16.vortex 100 vortex-file-compressed 28.42 MB 0 B 28.42 MB -100.0%
part_17.vortex 100 vortex-file-compressed 28.41 MB 0 B 28.41 MB -100.0%
part_18.vortex 100 vortex-file-compressed 28.51 MB 0 B 28.51 MB -100.0%
part_2.vortex 100 vortex-file-compressed 28.46 MB 0 B 28.46 MB -100.0%
part_3.vortex 100 vortex-file-compressed 28.43 MB 0 B 28.43 MB -100.0%
part_4.vortex 100 vortex-file-compressed 28.42 MB 0 B 28.42 MB -100.0%
part_5.vortex 100 vortex-file-compressed 28.38 MB 0 B 28.38 MB -100.0%
part_6.vortex 100 vortex-file-compressed 28.44 MB 0 B 28.44 MB -100.0%
part_7.vortex 100 vortex-file-compressed 28.41 MB 0 B 28.41 MB -100.0%
part_8.vortex 100 vortex-file-compressed 28.43 MB 0 B 28.43 MB -100.0%
part_9.vortex 100 vortex-file-compressed 28.41 MB 0 B 28.41 MB -100.0%
partsupp_0.vortex 100 vortex-file-compressed 191.37 MB 0 B 191.37 MB -100.0%
partsupp_1.vortex 100 vortex-file-compressed 191.69 MB 0 B 191.69 MB -100.0%
partsupp_10.vortex 100 vortex-file-compressed 191.59 MB 0 B 191.59 MB -100.0%
partsupp_11.vortex 100 vortex-file-compressed 191.43 MB 0 B 191.43 MB -100.0%
partsupp_12.vortex 100 vortex-file-compressed 191.50 MB 0 B 191.50 MB -100.0%
partsupp_13.vortex 100 vortex-file-compressed 191.35 MB 0 B 191.35 MB -100.0%
partsupp_14.vortex 100 vortex-file-compressed 191.62 MB 0 B 191.62 MB -100.0%
partsupp_15.vortex 100 vortex-file-compressed 191.52 MB 0 B 191.52 MB -100.0%
partsupp_16.vortex 100 vortex-file-compressed 191.25 MB 0 B 191.25 MB -100.0%
partsupp_17.vortex 100 vortex-file-compressed 191.49 MB 0 B 191.49 MB -100.0%
partsupp_18.vortex 100 vortex-file-compressed 191.38 MB 0 B 191.38 MB -100.0%
partsupp_2.vortex 100 vortex-file-compressed 191.39 MB 0 B 191.39 MB -100.0%
partsupp_3.vortex 100 vortex-file-compressed 191.37 MB 0 B 191.37 MB -100.0%
partsupp_4.vortex 100 vortex-file-compressed 191.40 MB 0 B 191.40 MB -100.0%
partsupp_5.vortex 100 vortex-file-compressed 191.41 MB 0 B 191.41 MB -100.0%
partsupp_6.vortex 100 vortex-file-compressed 191.38 MB 0 B 191.38 MB -100.0%
partsupp_7.vortex 100 vortex-file-compressed 191.61 MB 0 B 191.61 MB -100.0%
partsupp_8.vortex 100 vortex-file-compressed 191.49 MB 0 B 191.49 MB -100.0%
partsupp_9.vortex 100 vortex-file-compressed 191.50 MB 0 B 191.50 MB -100.0%
region_0.vortex 100 vortex-file-compressed 6.16 KB 0 B 6.16 KB -100.0%
supplier_0.vortex 100 vortex-file-compressed 66.71 MB 0 B 66.71 MB -100.0%

Totals:

  • vortex-compact: 11.86 GB → 207.50 MB (-98.3%)
  • vortex-file-compressed: 49.77 GB → 272.70 MB (-99.5%)
Full attributed analysis
Query Config Raw Δ Control Δ Attributed α Noise floor Significant?
1 datafusion:vortex-compact -8.0% -7.2% -0.8% +20.5% ➖ noise
1 datafusion:vortex-file-compressed -1.2% -7.2% +6.5% +19.7% ➖ noise
1 duckdb:duckdb -0.9% -7.2% +6.8% +22.8% ➖ noise
1 duckdb:vortex-compact -6.7% -7.2% +0.5% +19.9% ➖ noise
1 duckdb:vortex-file-compressed -3.2% -7.2% +4.4% +27.2% ➖ noise
2 datafusion:vortex-compact -5.8% -6.8% +1.1% +12.7% ➖ noise
2 datafusion:vortex-file-compressed -1.7% -6.8% +5.4% +10.1% ➖ noise
2 duckdb:duckdb -4.1% -6.8% +2.9% +11.9% ➖ noise
2 duckdb:vortex-compact -10.2% -6.8% -3.6% +17.3% ➖ noise
2 duckdb:vortex-file-compressed -0.3% -6.8% +7.0% +29.5% ➖ noise
3 datafusion:vortex-compact -7.7% -7.6% -0.1% +10.0% ➖ noise
3 datafusion:vortex-file-compressed -3.6% -7.6% +4.4% +10.0% ➖ noise
3 duckdb:duckdb -7.2% -7.6% +0.4% +10.0% ➖ noise
3 duckdb:vortex-compact -6.3% -7.6% +1.5% +10.4% ➖ noise
3 duckdb:vortex-file-compressed -2.1% -7.6% +5.9% +10.0% ➖ noise
4 datafusion:vortex-compact -2.6% -6.8% +4.4% +10.0% ➖ noise
4 datafusion:vortex-file-compressed -5.0% -6.8% +1.9% +14.5% ➖ noise
4 duckdb:duckdb -7.5% -6.8% -0.8% +10.0% ➖ noise
4 duckdb:vortex-compact -11.7% -6.8% -5.2% +10.5% ➖ noise
4 duckdb:vortex-file-compressed -9.0% -6.8% -2.3% +10.5% ➖ noise
5 datafusion:vortex-compact -17.9% -11.3% -7.4% +24.6% ➖ noise
5 datafusion:vortex-file-compressed -8.2% -11.3% +3.5% +10.0% ➖ noise
5 duckdb:duckdb +4.8% -11.3% +18.2% +13.0% 🚨 regression
5 duckdb:vortex-compact -4.6% -11.3% +7.6% +12.9% ➖ noise
5 duckdb:vortex-file-compressed -7.5% -11.3% +4.3% +10.0% ➖ noise
6 datafusion:vortex-compact -4.9% +2.1% -6.9% +11.7% ➖ noise
6 datafusion:vortex-file-compressed -6.8% +2.1% -8.7% +13.6% ➖ noise
6 duckdb:duckdb -8.9% +2.1% -10.8% +10.0% ✅ faster
6 duckdb:vortex-compact -8.2% +2.1% -10.1% +10.0% ✅ faster
6 duckdb:vortex-file-compressed -10.0% +2.1% -11.9% +10.0% ✅ faster
7 datafusion:vortex-compact -6.9% -7.2% +0.3% +10.0% ➖ noise
7 datafusion:vortex-file-compressed -12.6% -7.2% -5.8% +10.0% ➖ noise
7 duckdb:duckdb -6.6% -7.2% +0.6% +10.0% ➖ noise
7 duckdb:vortex-compact -5.0% -7.2% +2.3% +14.4% ➖ noise
7 duckdb:vortex-file-compressed -4.3% -7.2% +3.2% +10.0% ➖ noise
8 datafusion:vortex-compact -9.2% -1.2% -8.2% +15.8% ➖ noise
8 datafusion:vortex-file-compressed -10.1% -1.2% -9.1% +17.5% ➖ noise
8 duckdb:duckdb -1.9% -1.2% -0.7% +10.0% ➖ noise
8 duckdb:vortex-compact -3.7% -1.2% -2.6% +10.0% ➖ noise
8 duckdb:vortex-file-compressed -8.2% -1.2% -7.1% +25.4% ➖ noise
9 datafusion:vortex-compact -12.6% -9.6% -3.4% +19.4% ➖ noise
9 datafusion:vortex-file-compressed -8.1% -9.6% +1.6% +13.3% ➖ noise
9 duckdb:duckdb -5.8% -9.6% +4.2% +10.0% ➖ noise
9 duckdb:vortex-compact -7.1% -9.6% +2.7% +35.7% ➖ noise
9 duckdb:vortex-file-compressed -11.5% -9.6% -2.1% +21.0% ➖ noise
10 datafusion:vortex-compact -9.1% -8.5% -0.7% +10.0% ➖ noise
10 datafusion:vortex-file-compressed -10.6% -8.5% -2.3% +10.0% ➖ noise
10 duckdb:duckdb -8.3% -8.5% +0.1% +10.0% ➖ noise
10 duckdb:vortex-compact -7.6% -8.5% +1.0% +10.0% ➖ noise
10 duckdb:vortex-file-compressed -9.8% -8.5% -1.4% +10.0% ➖ noise
11 datafusion:vortex-compact -3.9% -7.1% +3.4% +10.4% ➖ noise
11 datafusion:vortex-file-compressed -12.6% -7.1% -5.9% +10.5% ➖ noise
11 duckdb:duckdb -8.2% -7.1% -1.2% +10.0% ➖ noise
11 duckdb:vortex-compact -9.2% -7.1% -2.2% +10.0% ➖ noise
11 duckdb:vortex-file-compressed -8.0% -7.1% -1.0% +10.6% ➖ noise
12 datafusion:vortex-compact +6.8% -3.9% +11.1% +14.6% ➖ noise
12 datafusion:vortex-file-compressed -0.9% -3.9% +3.2% +10.0% ➖ noise
12 duckdb:duckdb -2.9% -3.9% +1.1% +10.0% ➖ noise
12 duckdb:vortex-compact -11.2% -3.9% -7.5% +10.7% ➖ noise
12 duckdb:vortex-file-compressed -6.2% -3.9% -2.4% +10.0% ➖ noise
13 datafusion:vortex-compact -8.9% -4.4% -4.7% +18.6% ➖ noise
13 datafusion:vortex-file-compressed +2.8% -4.4% +7.5% +10.0% ➖ noise
13 duckdb:duckdb -8.6% -4.4% -4.5% +10.0% ➖ noise
13 duckdb:vortex-compact -3.3% -4.4% +1.2% +10.0% ➖ noise
13 duckdb:vortex-file-compressed -0.8% -4.4% +3.7% +22.1% ➖ noise
14 datafusion:vortex-compact -4.1% -6.9% +3.0% +12.0% ➖ noise
14 datafusion:vortex-file-compressed -2.5% -6.9% +4.7% +10.0% ➖ noise
14 duckdb:duckdb -6.5% -6.9% +0.5% +10.0% ➖ noise
14 duckdb:vortex-compact -3.8% -6.9% +3.4% +10.0% ➖ noise
14 duckdb:vortex-file-compressed -8.2% -6.9% -1.4% +10.2% ➖ noise
15 datafusion:vortex-compact -2.2% -10.0% +8.7% +15.6% ➖ noise
15 datafusion:vortex-file-compressed -7.6% -10.0% +2.6% +15.4% ➖ noise
15 duckdb:duckdb -12.6% -10.0% -3.0% +11.0% ➖ noise
15 duckdb:vortex-compact -11.0% -10.0% -1.1% +16.2% ➖ noise
15 duckdb:vortex-file-compressed -12.3% -10.0% -2.6% +14.9% ➖ noise
16 datafusion:vortex-compact -9.0% -2.9% -6.3% +12.5% ➖ noise
16 datafusion:vortex-file-compressed -9.2% -2.9% -6.5% +19.2% ➖ noise
16 duckdb:duckdb -4.8% -2.9% -1.9% +12.0% ➖ noise
16 duckdb:vortex-compact -15.9% -2.9% -13.3% +10.0% ✅ faster
16 duckdb:vortex-file-compressed -11.4% -2.9% -8.7% +10.2% ➖ noise
17 datafusion:vortex-compact -13.7% -0.0% -13.7% +14.8% ✅ faster
17 datafusion:vortex-file-compressed -11.1% -0.0% -11.1% +10.0% ✅ faster
17 duckdb:duckdb -10.1% -0.0% -10.1% +10.3% ✅ faster
17 duckdb:vortex-compact -12.3% -0.0% -12.3% +10.0% ✅ faster
17 duckdb:vortex-file-compressed -8.0% -0.0% -8.0% +13.4% ➖ noise
18 datafusion:vortex-compact -7.5% -4.2% -3.5% +13.4% ➖ noise
18 datafusion:vortex-file-compressed -1.7% -4.2% +2.5% +13.2% ➖ noise
18 duckdb:duckdb -7.1% -4.2% -3.0% +10.0% ➖ noise
18 duckdb:vortex-compact -11.3% -4.2% -7.4% +19.5% ➖ noise
18 duckdb:vortex-file-compressed -10.0% -4.2% -6.1% +11.8% ➖ noise
19 datafusion:vortex-compact -4.0% -4.0% -0.0% +10.0% ➖ noise
19 datafusion:vortex-file-compressed -9.9% -4.0% -6.2% +10.0% ➖ noise
19 duckdb:duckdb -6.3% -4.0% -2.4% +10.0% ➖ noise
19 duckdb:vortex-compact -4.6% -4.0% -0.6% +10.0% ➖ noise
19 duckdb:vortex-file-compressed -12.3% -4.0% -8.7% +10.0% ➖ noise
20 datafusion:vortex-compact -6.3% -7.2% +0.9% +10.0% ➖ noise
20 datafusion:vortex-file-compressed -13.1% -7.2% -6.4% +23.1% ➖ noise
20 duckdb:duckdb -5.4% -7.2% +1.9% +10.0% ➖ noise
20 duckdb:vortex-compact -10.2% -7.2% -3.2% +10.0% ➖ noise
20 duckdb:vortex-file-compressed -0.0% -7.2% +7.7% +27.3% ➖ noise
21 datafusion:vortex-compact -16.1% -7.1% -9.6% +23.5% ➖ noise
21 datafusion:vortex-file-compressed -9.9% -7.1% -2.9% +14.2% ➖ noise
21 duckdb:duckdb -8.7% -7.1% -1.7% +14.8% ➖ noise
21 duckdb:vortex-compact -9.4% -7.1% -2.4% +11.8% ➖ noise
21 duckdb:vortex-file-compressed -3.1% -7.1% +4.3% +11.7% ➖ noise
22 datafusion:vortex-compact -5.1% -8.0% +3.2% +22.4% ➖ noise
22 datafusion:vortex-file-compressed +15.5% -8.0% +25.7% +23.9% 🚨 regression
22 duckdb:duckdb -9.0% -8.0% -1.0% +12.8% ➖ noise
22 duckdb:vortex-compact -3.2% -8.0% +5.3% +13.0% ➖ noise
22 duckdb:vortex-file-compressed -15.7% -8.0% -8.3% +16.8% ➖ noise
23 datafusion:vortex-compact -8.7% -13.9% +6.0% +13.0% ➖ noise
23 datafusion:vortex-file-compressed -6.0% -13.9% +9.3% +10.0% ➖ noise
23 duckdb:duckdb -15.0% -13.9% -1.2% +14.2% ➖ noise
23 duckdb:vortex-compact -3.6% -13.9% +11.9% +14.2% ➖ noise
23 duckdb:vortex-file-compressed +0.7% -13.9% +17.0% +15.1% 🚨 regression
24 datafusion:vortex-compact -10.1% -5.8% -4.6% +10.0% ➖ noise
24 datafusion:vortex-file-compressed -4.8% -5.8% +1.1% +10.8% ➖ noise
24 duckdb:duckdb -8.1% -5.8% -2.5% +10.0% ➖ noise
24 duckdb:vortex-compact -6.0% -5.8% -0.3% +12.6% ➖ noise
24 duckdb:vortex-file-compressed -10.4% -5.8% -4.9% +10.0% ➖ noise
25 datafusion:vortex-compact -6.8% -3.5% -3.4% +11.2% ➖ noise
25 datafusion:vortex-file-compressed -7.8% -3.5% -4.4% +10.0% ➖ noise
25 duckdb:duckdb -10.9% -3.5% -7.6% +10.0% ➖ noise
25 duckdb:vortex-compact -1.8% -3.5% +1.8% +10.0% ➖ noise
25 duckdb:vortex-file-compressed -7.3% -3.5% -3.9% +10.0% ➖ noise
26 datafusion:vortex-compact -5.1% -3.8% -1.3% +25.5% ➖ noise
26 datafusion:vortex-file-compressed -8.8% -3.8% -5.2% +19.0% ➖ noise
26 duckdb:duckdb -11.3% -3.8% -7.8% +10.0% ➖ noise
26 duckdb:vortex-compact -19.2% -3.8% -16.0% +23.9% ➖ noise
26 duckdb:vortex-file-compressed +2.5% -3.8% +6.6% +19.6% ➖ noise
27 datafusion:vortex-compact -9.0% -8.3% -0.8% +11.4% ➖ noise
27 datafusion:vortex-file-compressed -5.9% -8.3% +2.6% +14.2% ➖ noise
27 duckdb:duckdb -9.9% -8.3% -1.8% +10.0% ➖ noise
27 duckdb:vortex-compact -3.5% -8.3% +5.2% +21.0% ➖ noise
27 duckdb:vortex-file-compressed +0.0% -8.3% +9.1% +10.2% ➖ noise
28 datafusion:vortex-compact -8.6% -6.5% -2.3% +13.3% ➖ noise
28 datafusion:vortex-file-compressed -5.7% -6.5% +0.8% +10.0% ➖ noise
28 duckdb:duckdb -16.7% -6.5% -11.0% +10.0% ✅ faster
28 duckdb:vortex-compact +28.6% -6.5% +37.5% +28.9% 🚨 regression
28 duckdb:vortex-file-compressed -9.0% -6.5% -2.7% +34.7% ➖ noise
29 datafusion:vortex-compact -7.4% -3.6% -3.9% +10.0% ➖ noise
29 datafusion:vortex-file-compressed -7.8% -3.6% -4.3% +13.4% ➖ noise
29 duckdb:duckdb -9.3% -3.6% -5.9% +10.0% ➖ noise
29 duckdb:vortex-compact -6.2% -3.6% -2.7% +11.6% ➖ noise
29 duckdb:vortex-file-compressed -10.1% -3.6% -6.8% +11.2% ➖ noise
30 datafusion:vortex-compact -12.5% -4.8% -8.1% +10.0% ➖ noise
30 datafusion:vortex-file-compressed -14.3% -4.8% -10.0% +33.7% ➖ noise
30 duckdb:duckdb -7.5% -4.8% -2.8% +10.0% ➖ noise
30 duckdb:vortex-compact -8.5% -4.8% -3.8% +22.7% ➖ noise
30 duckdb:vortex-file-compressed -4.5% -4.8% +0.3% +10.0% ➖ noise
31 datafusion:vortex-compact -6.1% -8.5% +2.6% +14.0% ➖ noise
31 datafusion:vortex-file-compressed -10.7% -8.5% -2.4% +10.0% ➖ noise
31 duckdb:duckdb -12.0% -8.5% -3.8% +10.0% ➖ noise
31 duckdb:vortex-compact -6.0% -8.5% +2.8% +14.2% ➖ noise
31 duckdb:vortex-file-compressed -4.5% -8.5% +4.4% +29.3% ➖ noise
32 datafusion:vortex-compact -5.1% -6.7% +1.8% +10.0% ➖ noise
32 datafusion:vortex-file-compressed -8.7% -6.7% -2.1% +10.0% ➖ noise
32 duckdb:duckdb -5.7% -6.7% +1.1% +15.8% ➖ noise
32 duckdb:vortex-compact -7.9% -6.7% -1.3% +10.0% ➖ noise
32 duckdb:vortex-file-compressed -3.5% -6.7% +3.5% +14.3% ➖ noise
33 datafusion:vortex-compact +0.8% -6.8% +8.2% +13.4% ➖ noise
33 datafusion:vortex-file-compressed +3.1% -6.8% +10.6% +15.6% ➖ noise
33 duckdb:duckdb -11.5% -6.8% -5.0% +10.0% ➖ noise
33 duckdb:vortex-compact -16.5% -6.8% -10.4% +10.0% ✅ faster
33 duckdb:vortex-file-compressed -12.8% -6.8% -6.5% +10.0% ➖ noise
34 datafusion:vortex-compact -7.9% -6.3% -1.7% +10.0% ➖ noise
34 datafusion:vortex-file-compressed -7.1% -6.3% -0.9% +10.7% ➖ noise
34 duckdb:duckdb -8.1% -6.3% -2.0% +10.0% ➖ noise
34 duckdb:vortex-compact -7.3% -6.3% -1.1% +10.0% ➖ noise
34 duckdb:vortex-file-compressed -6.3% -6.3% -0.0% +10.0% ➖ noise
35 datafusion:vortex-compact -5.8% -8.2% +2.6% +24.0% ➖ noise
35 datafusion:vortex-file-compressed -12.0% -8.2% -4.1% +14.1% ➖ noise
35 duckdb:duckdb -9.5% -8.2% -1.4% +10.0% ➖ noise
35 duckdb:vortex-compact -7.2% -8.2% +1.1% +10.7% ➖ noise
35 duckdb:vortex-file-compressed -6.5% -8.2% +1.9% +12.9% ➖ noise
36 datafusion:vortex-compact -14.0% -3.3% -11.1% +10.0% ✅ faster
36 datafusion:vortex-file-compressed -10.4% -3.3% -7.3% +10.0% ➖ noise
36 duckdb:duckdb -10.5% -3.3% -7.5% +10.0% ➖ noise
36 duckdb:vortex-compact -4.6% -3.3% -1.4% +10.0% ➖ noise
36 duckdb:vortex-file-compressed -12.5% -3.3% -9.5% +20.7% ➖ noise
37 datafusion:vortex-compact -9.0% -5.2% -4.0% +21.2% ➖ noise
37 datafusion:vortex-file-compressed -7.6% -5.2% -2.5% +11.8% ➖ noise
37 duckdb:duckdb -2.4% -5.2% +3.0% +10.3% ➖ noise
37 duckdb:vortex-compact -5.4% -5.2% -0.2% +11.4% ➖ noise
37 duckdb:vortex-file-compressed -7.3% -5.2% -2.2% +11.3% ➖ noise
38 datafusion:vortex-compact -9.4% -4.5% -5.0% +16.6% ➖ noise
38 datafusion:vortex-file-compressed -14.1% -4.5% -10.0% +11.5% ➖ noise
38 duckdb:duckdb -7.4% -4.5% -3.0% +10.0% ➖ noise
38 duckdb:vortex-compact -3.0% -4.5% +1.6% +15.6% ➖ noise
38 duckdb:vortex-file-compressed -8.2% -4.5% -3.8% +10.0% ➖ noise
39 datafusion:vortex-compact -6.7% -6.8% +0.1% +10.3% ➖ noise
39 datafusion:vortex-file-compressed -10.0% -6.8% -3.4% +10.0% ➖ noise
39 duckdb:duckdb -7.9% -6.8% -1.2% +19.6% ➖ noise
39 duckdb:vortex-compact -5.9% -6.8% +1.0% +23.7% ➖ noise
39 duckdb:vortex-file-compressed -1.1% -6.8% +6.1% +14.9% ➖ noise
40 datafusion:vortex-compact -7.3% -6.4% -1.0% +18.7% ➖ noise
40 datafusion:vortex-file-compressed -9.5% -6.4% -3.3% +10.0% ➖ noise
40 duckdb:duckdb -8.1% -6.4% -1.9% +10.0% ➖ noise
40 duckdb:vortex-compact -13.8% -6.4% -7.9% +10.0% ➖ noise
40 duckdb:vortex-file-compressed -2.5% -6.4% +4.1% +15.4% ➖ noise
41 datafusion:vortex-compact -11.2% -9.2% -2.2% +10.2% ➖ noise
41 datafusion:vortex-file-compressed -13.9% -9.2% -5.2% +29.4% ➖ noise
41 duckdb:duckdb -8.2% -9.2% +1.1% +10.0% ➖ noise
41 duckdb:vortex-compact -4.9% -9.2% +4.7% +12.7% ➖ noise
41 duckdb:vortex-file-compressed -4.9% -9.2% +4.8% +10.0% ➖ noise
42 datafusion:vortex-compact -7.3% -2.9% -4.5% +13.3% ➖ noise
42 datafusion:vortex-file-compressed -16.8% -2.9% -14.3% +11.3% ✅ faster
42 duckdb:duckdb -16.7% -2.9% -14.1% +16.1% ✅ faster
42 duckdb:vortex-compact -10.1% -2.9% -7.4% +24.1% ➖ noise
42 duckdb:vortex-file-compressed -11.5% -2.9% -8.8% +11.4% ➖ noise
43 datafusion:vortex-compact -0.9% -7.2% +6.9% +12.2% ➖ noise
43 datafusion:vortex-file-compressed -11.5% -7.2% -4.7% +17.4% ➖ noise
43 duckdb:duckdb -4.8% -7.2% +2.7% +10.0% ➖ noise
43 duckdb:vortex-compact -10.1% -7.2% -3.1% +21.1% ➖ noise
43 duckdb:vortex-file-compressed -6.1% -7.2% +1.2% +19.7% ➖ noise
44 datafusion:vortex-compact -1.4% -2.9% +1.5% +10.0% ➖ noise
44 datafusion:vortex-file-compressed -7.6% -2.9% -4.9% +10.0% ➖ noise
44 duckdb:duckdb -9.0% -2.9% -6.3% +16.5% ➖ noise
44 duckdb:vortex-compact -5.4% -2.9% -2.6% +13.2% ➖ noise
44 duckdb:vortex-file-compressed -9.6% -2.9% -7.0% +14.0% ➖ noise
45 datafusion:vortex-compact -1.4% -11.5% +11.4% +10.0% 🚨 regression
45 datafusion:vortex-file-compressed -6.8% -11.5% +5.3% +11.5% ➖ noise
45 duckdb:duckdb -3.3% -11.5% +9.2% +10.0% ➖ noise
45 duckdb:vortex-compact -6.8% -11.5% +5.3% +11.0% ➖ noise
45 duckdb:vortex-file-compressed -9.9% -11.5% +1.8% +13.9% ➖ noise
46 datafusion:vortex-compact -10.5% -4.9% -5.8% +21.1% ➖ noise
46 datafusion:vortex-file-compressed +0.7% -4.9% +5.9% +10.0% ➖ noise
46 duckdb:duckdb -8.8% -4.9% -4.1% +10.0% ➖ noise
46 duckdb:vortex-compact +3.3% -4.9% +8.7% +10.0% ➖ noise
46 duckdb:vortex-file-compressed -7.6% -4.9% -2.9% +21.0% ➖ noise
47 datafusion:vortex-compact -6.9% -4.8% -2.2% +10.0% ➖ noise
47 datafusion:vortex-file-compressed -4.6% -4.8% +0.2% +10.0% ➖ noise
47 duckdb:duckdb -15.1% -4.8% -10.8% +10.0% ✅ faster
47 duckdb:vortex-compact -4.5% -4.8% +0.3% +10.0% ➖ noise
47 duckdb:vortex-file-compressed -7.2% -4.8% -2.5% +10.0% ➖ noise
48 datafusion:vortex-compact -6.9% -7.1% +0.2% +16.3% ➖ noise
48 datafusion:vortex-file-compressed -4.1% -7.1% +3.1% +12.9% ➖ noise
48 duckdb:duckdb -5.9% -7.1% +1.2% +10.0% ➖ noise
48 duckdb:vortex-compact -4.3% -7.1% +2.9% +10.0% ➖ noise
48 duckdb:vortex-file-compressed -4.0% -7.1% +3.3% +10.0% ➖ noise
49 datafusion:vortex-compact -3.0% -8.1% +5.5% +10.0% ➖ noise
49 datafusion:vortex-file-compressed -4.5% -8.1% +3.9% +10.2% ➖ noise
49 duckdb:duckdb -13.9% -8.1% -6.3% +10.0% ➖ noise
49 duckdb:vortex-compact -1.5% -8.1% +7.2% +22.4% ➖ noise
49 duckdb:vortex-file-compressed -1.5% -8.1% +7.1% +24.0% ➖ noise
50 datafusion:vortex-compact -9.6% -5.1% -4.7% +17.1% ➖ noise
50 datafusion:vortex-file-compressed -5.6% -5.1% -0.4% +14.3% ➖ noise
50 duckdb:duckdb -7.6% -5.1% -2.6% +10.0% ➖ noise
50 duckdb:vortex-compact -9.9% -5.1% -5.0% +10.4% ➖ noise
50 duckdb:vortex-file-compressed -7.6% -5.1% -2.6% +13.2% ➖ noise
51 datafusion:vortex-compact -8.8% -6.0% -3.0% +10.5% ➖ noise
51 datafusion:vortex-file-compressed -2.2% -6.0% +4.0% +10.9% ➖ noise
51 duckdb:duckdb -8.6% -6.0% -2.8% +10.0% ➖ noise
51 duckdb:vortex-compact -5.5% -6.0% +0.6% +10.0% ➖ noise
51 duckdb:vortex-file-compressed -1.7% -6.0% +4.6% +10.0% ➖ noise
52 datafusion:vortex-compact -6.3% -6.1% -0.2% +10.4% ➖ noise
52 datafusion:vortex-file-compressed -8.4% -6.1% -2.5% +11.7% ➖ noise
52 duckdb:duckdb -9.3% -6.1% -3.4% +11.0% ➖ noise
52 duckdb:vortex-compact -14.4% -6.1% -8.9% +10.0% ➖ noise
52 duckdb:vortex-file-compressed -12.2% -6.1% -6.5% +46.8% ➖ noise
53 datafusion:vortex-compact -6.1% +6.9% -12.2% +10.0% ✅ faster
53 datafusion:vortex-file-compressed -8.9% +6.9% -14.8% +11.9% ✅ faster
53 duckdb:duckdb -8.2% +6.9% -14.1% +10.0% ✅ faster
53 duckdb:vortex-compact -4.3% +6.9% -10.5% +14.4% ➖ noise
53 duckdb:vortex-file-compressed -9.2% +6.9% -15.1% +10.0% ✅ faster
54 datafusion:vortex-compact -15.5% -3.8% -12.1% +23.2% ➖ noise
54 datafusion:vortex-file-compressed -8.6% -3.8% -5.0% +19.8% ➖ noise
54 duckdb:duckdb -5.4% -3.8% -1.6% +22.5% ➖ noise
54 duckdb:vortex-compact -7.8% -3.8% -4.1% +11.7% ➖ noise
54 duckdb:vortex-file-compressed -3.6% -3.8% +0.2% +10.3% ➖ noise
55 datafusion:vortex-compact -4.3% -6.9% +2.8% +13.7% ➖ noise
55 datafusion:vortex-file-compressed -8.2% -6.9% -1.3% +18.9% ➖ noise
55 duckdb:duckdb -7.8% -6.9% -1.0% +13.0% ➖ noise
55 duckdb:vortex-compact -7.8% -6.9% -0.9% +30.3% ➖ noise
55 duckdb:vortex-file-compressed -6.7% -6.9% +0.3% +10.0% ➖ noise
56 datafusion:vortex-compact -3.4% -4.5% +1.1% +11.6% ➖ noise
56 datafusion:vortex-file-compressed -6.3% -4.5% -2.0% +10.0% ➖ noise
56 duckdb:duckdb -8.3% -4.5% -4.0% +29.0% ➖ noise
56 duckdb:vortex-compact -11.6% -4.5% -7.5% +21.1% ➖ noise
56 duckdb:vortex-file-compressed -6.2% -4.5% -1.8% +10.0% ➖ noise
57 datafusion:vortex-compact -6.7% -5.2% -1.6% +10.0% ➖ noise
57 datafusion:vortex-file-compressed -8.0% -5.2% -3.0% +10.0% ➖ noise
57 duckdb:duckdb -4.8% -5.2% +0.3% +13.4% ➖ noise
57 duckdb:vortex-compact -7.7% -5.2% -2.6% +10.1% ➖ noise
57 duckdb:vortex-file-compressed -6.2% -5.2% -1.1% +15.2% ➖ noise
58 datafusion:vortex-compact -8.2% -7.2% -1.1% +10.3% ➖ noise
58 datafusion:vortex-file-compressed -4.1% -7.2% +3.3% +11.0% ➖ noise
58 duckdb:duckdb -8.1% -7.2% -1.0% +10.0% ➖ noise
58 duckdb:vortex-compact -0.7% -7.2% +7.0% +17.3% ➖ noise
58 duckdb:vortex-file-compressed -10.7% -7.2% -3.8% +11.3% ➖ noise
59 datafusion:vortex-compact -3.1% -4.8% +1.8% +15.5% ➖ noise
59 datafusion:vortex-file-compressed -5.7% -4.8% -0.9% +10.0% ➖ noise
59 duckdb:duckdb -6.0% -4.8% -1.2% +10.0% ➖ noise
59 duckdb:vortex-compact -2.9% -4.8% +2.0% +32.3% ➖ noise
59 duckdb:vortex-file-compressed -3.2% -4.8% +1.7% +23.6% ➖ noise
60 datafusion:vortex-compact -10.0% -7.3% -2.8% +17.0% ➖ noise
60 datafusion:vortex-file-compressed -8.7% -7.3% -1.5% +10.0% ➖ noise
60 duckdb:duckdb -9.6% -7.3% -2.5% +10.0% ➖ noise
60 duckdb:vortex-compact -15.2% -7.3% -8.5% +10.0% ➖ noise
60 duckdb:vortex-file-compressed -12.8% -7.3% -5.9% +18.6% ➖ noise
61 datafusion:vortex-compact -8.2% -5.4% -3.0% +10.0% ➖ noise
61 datafusion:vortex-file-compressed -8.2% -5.4% -3.0% +15.6% ➖ noise
61 duckdb:duckdb -11.1% -5.4% -6.1% +10.0% ➖ noise
61 duckdb:vortex-compact -6.7% -5.4% -1.4% +10.0% ➖ noise
61 duckdb:vortex-file-compressed -10.1% -5.4% -5.0% +11.9% ➖ noise
62 datafusion:vortex-compact -4.1% -6.3% +2.4% +29.3% ➖ noise
62 datafusion:vortex-file-compressed -7.2% -6.3% -0.9% +24.1% ➖ noise
62 duckdb:duckdb -7.6% -6.3% -1.4% +20.1% ➖ noise
62 duckdb:vortex-compact +4.1% -6.3% +11.2% +20.3% ➖ noise
62 duckdb:vortex-file-compressed -2.0% -6.3% +4.6% +29.4% ➖ noise
63 datafusion:vortex-compact -4.7% -5.3% +0.6% +10.4% ➖ noise
63 datafusion:vortex-file-compressed -12.0% -5.3% -7.0% +16.7% ➖ noise
63 duckdb:duckdb -9.3% -5.3% -4.2% +10.0% ➖ noise
63 duckdb:vortex-compact -2.9% -5.3% +2.6% +11.7% ➖ noise
63 duckdb:vortex-file-compressed -10.2% -5.3% -5.1% +10.0% ➖ noise
64 datafusion:vortex-compact -7.5% -2.6% -5.0% +10.0% ➖ noise
64 datafusion:vortex-file-compressed -9.3% -2.6% -6.9% +10.0% ➖ noise
64 duckdb:duckdb -6.8% -2.6% -4.3% +10.0% ➖ noise
64 duckdb:vortex-compact -3.1% -2.6% -0.5% +10.0% ➖ noise
64 duckdb:vortex-file-compressed -4.4% -2.6% -1.8% +10.0% ➖ noise
65 datafusion:vortex-compact -2.7% -3.9% +1.3% +10.0% ➖ noise
65 datafusion:vortex-file-compressed -7.7% -3.9% -3.9% +16.9% ➖ noise
65 duckdb:duckdb -9.8% -3.9% -6.1% +10.0% ➖ noise
65 duckdb:vortex-compact -3.0% -3.9% +1.0% +10.0% ➖ noise
65 duckdb:vortex-file-compressed -5.4% -3.9% -1.5% +10.0% ➖ noise
66 datafusion:vortex-compact -5.6% -6.5% +1.0% +12.3% ➖ noise
66 datafusion:vortex-file-compressed -0.6% -6.5% +6.4% +18.4% ➖ noise
66 duckdb:duckdb -7.4% -6.5% -0.9% +10.7% ➖ noise
66 duckdb:vortex-compact -4.8% -6.5% +1.8% +20.1% ➖ noise
66 duckdb:vortex-file-compressed -6.7% -6.5% -0.2% +10.5% ➖ noise
67 datafusion:vortex-compact -12.2% -8.7% -3.9% +11.7% ➖ noise
67 datafusion:vortex-file-compressed -5.4% -8.7% +3.5% +10.3% ➖ noise
67 duckdb:duckdb -9.7% -8.7% -1.1% +10.0% ➖ noise
67 duckdb:vortex-compact -5.1% -8.7% +3.9% +10.0% ➖ noise
67 duckdb:vortex-file-compressed -8.0% -8.7% +0.8% +10.0% ➖ noise
68 datafusion:vortex-compact -20.0% -2.6% -17.8% +21.8% ➖ noise
68 datafusion:vortex-file-compressed -12.9% -2.6% -10.6% +23.3% ➖ noise
68 duckdb:duckdb -5.6% -2.6% -3.0% +10.0% ➖ noise
68 duckdb:vortex-compact -10.3% -2.6% -7.8% +10.0% ➖ noise
68 duckdb:vortex-file-compressed -5.7% -2.6% -3.2% +18.8% ➖ noise
69 datafusion:vortex-compact -7.2% -1.0% -6.3% +20.5% ➖ noise
69 datafusion:vortex-file-compressed -8.6% -1.0% -7.7% +10.0% ➖ noise
69 duckdb:duckdb -5.9% -1.0% -5.0% +10.0% ➖ noise
69 duckdb:vortex-compact -8.3% -1.0% -7.4% +17.0% ➖ noise
69 duckdb:vortex-file-compressed -11.1% -1.0% -10.2% +10.0% ✅ faster
70 datafusion:vortex-compact -6.6% -9.5% +3.2% +13.0% ➖ noise
70 datafusion:vortex-file-compressed -10.6% -9.5% -1.2% +11.0% ➖ noise
70 duckdb:duckdb -8.1% -9.5% +1.6% +14.2% ➖ noise
70 duckdb:vortex-compact +0.3% -9.5% +10.8% +11.4% ➖ noise
70 duckdb:vortex-file-compressed -4.1% -9.5% +5.9% +17.8% ➖ noise
71 datafusion:vortex-compact -10.0% -1.5% -8.6% +17.6% ➖ noise
71 datafusion:vortex-file-compressed -4.6% -1.5% -3.2% +20.8% ➖ noise
71 duckdb:duckdb -9.6% -1.5% -8.2% +13.0% ➖ noise
71 duckdb:vortex-compact -13.3% -1.5% -12.0% +16.4% ➖ noise
71 duckdb:vortex-file-compressed -7.7% -1.5% -6.2% +10.0% ➖ noise
72 datafusion:vortex-compact -14.3% -9.1% -5.7% +10.0% ➖ noise
72 datafusion:vortex-file-compressed -17.0% -9.1% -8.6% +10.0% ➖ noise
72 duckdb:duckdb -7.7% -9.1% +1.6% +10.0% ➖ noise
72 duckdb:vortex-compact -4.5% -9.1% +5.1% +10.0% ➖ noise
72 duckdb:vortex-file-compressed -6.4% -9.1% +3.0% +10.0% ➖ noise
73 datafusion:vortex-compact -6.8% +1.4% -8.1% +51.4% ➖ noise
73 datafusion:vortex-file-compressed -12.4% +1.4% -13.6% +16.3% ➖ noise
73 duckdb:duckdb -8.5% +1.4% -9.8% +10.2% ✅ faster
73 duckdb:vortex-compact -9.5% +1.4% -10.8% +16.2% ➖ noise
73 duckdb:vortex-file-compressed -14.0% +1.4% -15.2% +14.2% ✅ faster
74 datafusion:vortex-compact -9.7% -5.6% -4.3% +10.0% ➖ noise
74 datafusion:vortex-file-compressed -2.5% -5.6% +3.3% +12.4% ➖ noise
74 duckdb:duckdb -5.0% -5.6% +0.7% +10.0% ➖ noise
74 duckdb:vortex-compact -8.2% -5.6% -2.7% +10.2% ➖ noise
74 duckdb:vortex-file-compressed -12.0% -5.6% -6.8% +10.0% ➖ noise
75 datafusion:vortex-compact -2.4% -9.4% +7.7% +15.2% ➖ noise
75 datafusion:vortex-file-compressed -11.8% -9.4% -2.7% +15.4% ➖ noise
75 duckdb:duckdb -10.3% -9.4% -1.0% +10.0% ➖ noise
75 duckdb:vortex-compact -10.9% -9.4% -1.7% +14.4% ➖ noise
75 duckdb:vortex-file-compressed -12.6% -9.4% -3.5% +14.8% ➖ noise
76 datafusion:vortex-compact -3.0% -8.9% +6.5% +10.0% ➖ noise
76 datafusion:vortex-file-compressed -7.9% -8.9% +1.0% +26.7% ➖ noise
76 duckdb:duckdb -17.1% -8.9% -9.0% +12.9% ➖ noise
76 duckdb:vortex-compact -12.5% -8.9% -4.0% +10.0% ➖ noise
76 duckdb:vortex-file-compressed -13.6% -8.9% -5.1% +14.3% ➖ noise
77 datafusion:vortex-compact -12.1% -7.2% -5.3% +14.0% ➖ noise
77 datafusion:vortex-file-compressed -4.1% -7.2% +3.3% +10.0% ➖ noise
77 duckdb:duckdb -9.7% -7.2% -2.7% +10.0% ➖ noise
77 duckdb:vortex-compact -8.1% -7.2% -1.0% +13.0% ➖ noise
77 duckdb:vortex-file-compressed -12.5% -7.2% -5.7% +14.4% ➖ noise
78 datafusion:vortex-compact -6.1% -10.6% +5.0% +10.0% ➖ noise
78 datafusion:vortex-file-compressed -9.4% -10.6% +1.3% +10.0% ➖ noise
78 duckdb:duckdb -7.0% -10.6% +4.0% +10.0% ➖ noise
78 duckdb:vortex-compact -7.2% -10.6% +3.8% +10.0% ➖ noise
78 duckdb:vortex-file-compressed -8.3% -10.6% +2.6% +10.0% ➖ noise
79 datafusion:vortex-compact -9.5% -5.7% -4.1% +18.7% ➖ noise
79 datafusion:vortex-file-compressed -0.5% -5.7% +5.5% +22.3% ➖ noise
79 duckdb:duckdb -4.9% -5.7% +0.8% +12.4% ➖ noise
79 duckdb:vortex-compact -6.0% -5.7% -0.3% +10.0% ➖ noise
79 duckdb:vortex-file-compressed -1.1% -5.7% +4.9% +11.7% ➖ noise
80 datafusion:vortex-compact -2.0% -9.3% +8.0% +18.2% ➖ noise
80 datafusion:vortex-file-compressed -7.5% -9.3% +2.0% +10.5% ➖ noise
80 duckdb:duckdb -12.9% -9.3% -4.0% +11.8% ➖ noise
80 duckdb:vortex-compact -2.6% -9.3% +7.4% +13.9% ➖ noise
80 duckdb:vortex-file-compressed -11.5% -9.3% -2.4% +11.4% ➖ noise
81 datafusion:vortex-compact -1.9% -5.8% +4.2% +10.0% ➖ noise
81 datafusion:vortex-file-compressed -12.1% -5.8% -6.7% +20.4% ➖ noise
81 duckdb:duckdb -4.8% -5.8% +1.1% +10.0% ➖ noise
81 duckdb:vortex-compact -10.8% -5.8% -5.3% +10.0% ➖ noise
81 duckdb:vortex-file-compressed -8.2% -5.8% -2.5% +10.0% ➖ noise
82 datafusion:vortex-compact -4.3% -7.4% +3.3% +10.0% ➖ noise
82 datafusion:vortex-file-compressed -7.6% -7.4% -0.3% +10.4% ➖ noise
82 duckdb:duckdb -9.8% -7.4% -2.6% +10.0% ➖ noise
82 duckdb:vortex-compact -8.4% -7.4% -1.1% +16.4% ➖ noise
82 duckdb:vortex-file-compressed -8.3% -7.4% -1.0% +14.6% ➖ noise
83 datafusion:vortex-compact -0.9% -5.5% +4.9% +29.2% ➖ noise
83 datafusion:vortex-file-compressed -6.7% -5.5% -1.2% +15.8% ➖ noise
83 duckdb:duckdb -11.5% -5.5% -6.4% +10.0% ➖ noise
83 duckdb:vortex-compact -3.2% -5.5% +2.5% +17.4% ➖ noise
83 duckdb:vortex-file-compressed -4.7% -5.5% +0.8% +10.0% ➖ noise
84 datafusion:vortex-compact -6.9% -0.9% -6.0% +10.0% ➖ noise
84 datafusion:vortex-file-compressed -4.8% -0.9% -3.9% +18.8% ➖ noise
84 duckdb:duckdb -7.3% -0.9% -6.5% +23.1% ➖ noise
84 duckdb:vortex-compact -17.4% -0.9% -16.7% +10.0% ✅ faster
84 duckdb:vortex-file-compressed -5.0% -0.9% -4.1% +10.0% ➖ noise
85 datafusion:vortex-compact -1.9% -3.9% +2.1% +17.4% ➖ noise
85 datafusion:vortex-file-compressed -7.3% -3.9% -3.6% +10.0% ➖ noise
85 duckdb:duckdb -8.3% -3.9% -4.6% +10.0% ➖ noise
85 duckdb:vortex-compact -10.4% -3.9% -6.8% +10.0% ➖ noise
85 duckdb:vortex-file-compressed -8.8% -3.9% -5.1% +10.0% ➖ noise
86 datafusion:vortex-compact +8.7% -10.4% +21.3% +21.1% 🚨 regression
86 datafusion:vortex-file-compressed -15.1% -10.4% -5.3% +22.8% ➖ noise
86 duckdb:duckdb -8.4% -10.4% +2.3% +10.7% ➖ noise
86 duckdb:vortex-compact -15.4% -10.4% -5.6% +22.7% ➖ noise
86 duckdb:vortex-file-compressed -10.3% -10.4% +0.1% +16.1% ➖ noise
87 datafusion:vortex-compact +1.8% -6.0% +8.3% +16.9% ➖ noise
87 datafusion:vortex-file-compressed -7.0% -6.0% -1.0% +10.0% ➖ noise
87 duckdb:duckdb +0.1% -6.0% +6.5% +13.1% ➖ noise
87 duckdb:vortex-compact -10.4% -6.0% -4.6% +12.1% ➖ noise
87 duckdb:vortex-file-compressed -8.6% -6.0% -2.7% +13.8% ➖ noise
88 datafusion:vortex-compact -4.5% -5.3% +0.9% +10.0% ➖ noise
88 datafusion:vortex-file-compressed -7.8% -5.3% -2.6% +10.0% ➖ noise
88 duckdb:duckdb -14.3% -5.3% -9.5% +10.0% ✅ faster
88 duckdb:vortex-compact -10.3% -5.3% -5.2% +10.0% ➖ noise
88 duckdb:vortex-file-compressed -2.4% -5.3% +3.1% +10.9% ➖ noise
89 datafusion:vortex-compact -0.5% -8.1% +8.3% +30.4% ➖ noise
89 datafusion:vortex-file-compressed -15.2% -8.1% -7.8% +18.0% ➖ noise
89 duckdb:duckdb -12.5% -8.1% -4.7% +10.0% ➖ noise
89 duckdb:vortex-compact -3.0% -8.1% +5.5% +18.1% ➖ noise
89 duckdb:vortex-file-compressed -5.7% -8.1% +2.6% +10.0% ➖ noise
90 datafusion:vortex-compact -9.3% -11.0% +1.9% +11.3% ➖ noise
90 datafusion:vortex-file-compressed -17.2% -11.0% -7.0% +24.3% ➖ noise
90 duckdb:duckdb -13.9% -11.0% -3.3% +12.8% ➖ noise
90 duckdb:vortex-compact -3.1% -11.0% +8.9% +13.3% ➖ noise
90 duckdb:vortex-file-compressed -6.6% -11.0% +5.0% +12.4% ➖ noise
91 datafusion:vortex-compact -7.1% -6.6% -0.5% +10.0% ➖ noise
91 datafusion:vortex-file-compressed -15.4% -6.6% -9.4% +10.0% ✅ faster
91 duckdb:duckdb -11.3% -6.6% -5.0% +10.0% ➖ noise
91 duckdb:vortex-compact -1.7% -6.6% +5.3% +10.0% ➖ noise
91 duckdb:vortex-file-compressed -13.8% -6.6% -7.6% +10.0% ➖ noise
92 datafusion:vortex-compact -2.5% -6.9% +4.7% +24.0% ➖ noise
92 datafusion:vortex-file-compressed -13.1% -6.9% -6.7% +11.5% ➖ noise
92 duckdb:duckdb -5.0% -6.9% +2.0% +10.0% ➖ noise
92 duckdb:vortex-compact -14.8% -6.9% -8.5% +20.9% ➖ noise
92 duckdb:vortex-file-compressed -3.0% -6.9% +4.1% +11.4% ➖ noise
93 datafusion:vortex-compact -2.4% -7.4% +5.4% +10.0% ➖ noise
93 datafusion:vortex-file-compressed -14.8% -7.4% -8.0% +12.3% ➖ noise
93 duckdb:duckdb -7.9% -7.4% -0.5% +10.3% ➖ noise
93 duckdb:vortex-compact -11.8% -7.4% -4.7% +19.4% ➖ noise
93 duckdb:vortex-file-compressed -2.4% -7.4% +5.4% +10.8% ➖ noise
94 datafusion:vortex-compact -13.0% -8.3% -5.2% +12.3% ➖ noise
94 datafusion:vortex-file-compressed -6.7% -8.3% +1.7% +10.0% ➖ noise
94 duckdb:duckdb -5.8% -8.3% +2.7% +10.0% ➖ noise
94 duckdb:vortex-compact -10.5% -8.3% -2.4% +10.0% ➖ noise
94 duckdb:vortex-file-compressed -3.7% -8.3% +5.0% +10.0% ➖ noise
95 datafusion:vortex-compact -10.8% -8.9% -2.1% +10.4% ➖ noise
95 datafusion:vortex-file-compressed -7.9% -8.9% +1.1% +11.3% ➖ noise
95 duckdb:duckdb -20.2% -8.9% -12.4% +19.9% ➖ noise
95 duckdb:vortex-compact -5.9% -8.9% +3.3% +15.6% ➖ noise
95 duckdb:vortex-file-compressed -3.4% -8.9% +6.0% +20.5% ➖ noise
96 datafusion:vortex-compact -7.6% -8.4% +0.8% +14.8% ➖ noise
96 datafusion:vortex-file-compressed -6.4% -8.4% +2.2% +22.5% ➖ noise
96 duckdb:duckdb -6.8% -8.4% +1.7% +17.9% ➖ noise
96 duckdb:vortex-compact -11.0% -8.4% -2.9% +11.7% ➖ noise
96 duckdb:vortex-file-compressed -11.4% -8.4% -3.3% +10.0% ➖ noise
97 datafusion:vortex-compact -7.8% -3.4% -4.6% +11.4% ➖ noise
97 datafusion:vortex-file-compressed -12.4% -3.4% -9.3% +10.0% ✅ faster
97 duckdb:duckdb -5.5% -3.4% -2.1% +10.0% ➖ noise
97 duckdb:vortex-compact -12.7% -3.4% -9.6% +17.3% ➖ noise
97 duckdb:vortex-file-compressed -14.6% -3.4% -11.6% +10.0% ✅ faster
98 datafusion:vortex-compact -1.4% -4.8% +3.5% +11.4% ➖ noise
98 datafusion:vortex-file-compressed -7.6% -4.8% -2.9% +10.0% ➖ noise
98 duckdb:duckdb +1.1% -4.8% +6.2% +11.3% ➖ noise
98 duckdb:vortex-compact -13.1% -4.8% -8.7% +10.0% ➖ noise
98 duckdb:vortex-file-compressed -8.4% -4.8% -3.8% +27.4% ➖ noise
99 datafusion:vortex-compact -6.6% +1.9% -8.4% +23.7% ➖ noise
99 datafusion:vortex-file-compressed -7.2% +1.9% -8.9% +23.9% ➖ noise
99 duckdb:duckdb -5.9% +1.9% -7.7% +32.5% ➖ noise
99 duckdb:vortex-compact -7.6% +1.9% -9.3% +29.9% ➖ noise
99 duckdb:vortex-file-compressed -7.0% +1.9% -8.7% +22.6% ➖ noise

@github-actions
Copy link
Copy Markdown
Contributor

Benchmarks: FineWeb S3

Verdict: No clear signal (environment too noisy confidence)
Attributed Vortex impact: +2.0%
Engines: DataFusion No clear signal (+3.5%, environment too noisy confidence) · DuckDB No clear signal (+0.6%, low confidence)
Vortex (geomean): 0.959x ➖
Parquet (geomean): 0.939x ➖
Shifts: Parquet (control) -6.1% · Median polish -4.6%

How to read Verdict and Engines
  • Verdict: Overall PR-level signal after subtracting baseline drift estimated from Parquet control rows. It can be Likely improvement, Likely regression, or No clear signal.
  • Engines: Per-engine attribution. DataFusion is compared against DataFusion/Parquet controls; DuckDB is compared against DuckDB/Parquet controls. This answers whether each engine improved or regressed independently.
  • Confidence: Based on directional consistency, share of rows above the noise floor, and control-run noise.

datafusion / vortex-file-compressed (1.123x ➖, 0↑ 2↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
fineweb_q00/datafusion:vortex-file-compressed 37498759 32090924 1.17
fineweb_q01/datafusion:vortex-file-compressed 🚨 1046079948 704408215 1.49
fineweb_q02/datafusion:vortex-file-compressed 🚨 896965873 528434231 1.70
fineweb_q03/datafusion:vortex-file-compressed 1425035057 1319990729 1.08
fineweb_q04/datafusion:vortex-file-compressed 1378242650 1366887726 1.01
fineweb_q05/datafusion:vortex-file-compressed 1387991941 1357868760 1.02
fineweb_q06/datafusion:vortex-file-compressed 1549079545 1613372578 0.96
fineweb_q07/datafusion:vortex-file-compressed 1397541978 1618012197 0.86
fineweb_q08/datafusion:vortex-file-compressed 551875530 528916179 1.04
datafusion / vortex-compact (0.817x ➖, 2↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
fineweb_q00/datafusion:vortex-compact 🚀 38371010 82004547 0.47
fineweb_q01/datafusion:vortex-compact 684043528 795676796 0.86
fineweb_q02/datafusion:vortex-compact 🚀 528240454 1164494842 0.45
fineweb_q03/datafusion:vortex-compact 1391850062 1491681925 0.93
fineweb_q04/datafusion:vortex-compact 1627499201 1616032401 1.01
fineweb_q05/datafusion:vortex-compact 1406951514 1378137651 1.02
fineweb_q06/datafusion:vortex-compact 1323870098 1337891586 0.99
fineweb_q07/datafusion:vortex-compact 1151315006 1176694596 0.98
fineweb_q08/datafusion:vortex-compact 366103464 382848123 0.96
datafusion / parquet (0.926x ➖, 0↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
fineweb_q00/datafusion:parquet 1175798569 1641101219 0.72
fineweb_q01/datafusion:parquet 1854198330 2175274132 0.85
fineweb_q02/datafusion:parquet 2071944114 2191060284 0.95
fineweb_q03/datafusion:parquet 2261340763 2009068877 1.13
fineweb_q04/datafusion:parquet 1907920637 2317531861 0.82
fineweb_q05/datafusion:parquet 1900597181 1985360048 0.96
fineweb_q06/datafusion:parquet 2137234533 2240089204 0.95
fineweb_q07/datafusion:parquet 1977619395 1845567041 1.07
fineweb_q08/datafusion:parquet 2077319195 2182192547 0.95
duckdb / vortex-file-compressed (0.913x ➖, 1↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
fineweb_q00/duckdb:vortex-file-compressed 🚀 72225459 108427814 0.67
fineweb_q01/duckdb:vortex-file-compressed 603498968 702841018 0.86
fineweb_q02/duckdb:vortex-file-compressed 444070268 500452350 0.89
fineweb_q03/duckdb:vortex-file-compressed 1681157430 1582794906 1.06
fineweb_q04/duckdb:vortex-file-compressed 1691975472 1673963202 1.01
fineweb_q05/duckdb:vortex-file-compressed 1714910347 1788174265 0.96
fineweb_q06/duckdb:vortex-file-compressed 1709303832 1876594283 0.91
fineweb_q07/duckdb:vortex-file-compressed 1614554019 1631533976 0.99
fineweb_q08/duckdb:vortex-file-compressed 628869362 670215392 0.94
duckdb / vortex-compact (1.008x ➖, 0↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
fineweb_q00/duckdb:vortex-compact 78441901 71322186 1.10
fineweb_q01/duckdb:vortex-compact 640028437 649234980 0.99
fineweb_q02/duckdb:vortex-compact 641265479 727944092 0.88
fineweb_q03/duckdb:vortex-compact 1742877403 1690169485 1.03
fineweb_q04/duckdb:vortex-compact 1853061035 1822903734 1.02
fineweb_q05/duckdb:vortex-compact 1736661933 1569987693 1.11
fineweb_q06/duckdb:vortex-compact 1574495439 1614303888 0.98
fineweb_q07/duckdb:vortex-compact 1461667926 1428352017 1.02
fineweb_q08/duckdb:vortex-compact 447871827 462525257 0.97
duckdb / parquet (0.953x ➖, 0↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
fineweb_q00/duckdb:parquet 1173955430 1265083827 0.93
fineweb_q01/duckdb:parquet 1470315643 1545055049 0.95
fineweb_q02/duckdb:parquet 1396310524 1474943557 0.95
fineweb_q03/duckdb:parquet 3813054848 3851799017 0.99
fineweb_q04/duckdb:parquet 2001384430 2137156827 0.94
fineweb_q05/duckdb:parquet 2271185851 2470498348 0.92
fineweb_q06/duckdb:parquet 4575000450 4896337382 0.93
fineweb_q07/duckdb:parquet 2876165708 2969373929 0.97
fineweb_q08/duckdb:parquet 1164808096 1156214498 1.01
Full attributed analysis
Query Config Raw Δ Control Δ Attributed α Noise floor Significant?
0 datafusion:vortex-compact -53.2% -18.5% -42.6% +181.4% ➖ noise
0 datafusion:vortex-file-compressed +16.9% -18.5% +43.3% +215.2% ➖ noise
0 duckdb:vortex-compact +10.0% -18.5% +34.9% +56.2% ➖ noise
0 duckdb:vortex-file-compressed -33.4% -18.5% -18.3% +79.4% ➖ noise
1 datafusion:vortex-compact -14.0% -9.9% -4.5% +65.4% ➖ noise
1 datafusion:vortex-file-compressed +48.5% -9.9% +64.9% +56.5% 🚨 regression
1 duckdb:vortex-compact -1.4% -9.9% +9.5% +30.0% ➖ noise
1 duckdb:vortex-file-compressed -14.1% -9.9% -4.7% +30.0% ➖ noise
2 datafusion:vortex-compact -54.6% -5.4% -52.1% +43.8% ✅ faster
2 datafusion:vortex-file-compressed +69.7% -5.4% +79.4% +30.0% 🚨 regression
2 duckdb:vortex-compact -11.9% -5.4% -6.9% +30.0% ➖ noise
2 duckdb:vortex-file-compressed -11.3% -5.4% -6.2% +30.0% ➖ noise
3 datafusion:vortex-compact -6.7% +5.6% -11.6% +184.3% ➖ noise
3 datafusion:vortex-file-compressed +8.0% +5.6% +2.3% +32.6% ➖ noise
3 duckdb:vortex-compact +3.1% +5.6% -2.3% +30.0% ➖ noise
3 duckdb:vortex-file-compressed +6.2% +5.6% +0.6% +30.0% ➖ noise
4 datafusion:vortex-compact +0.7% -12.2% +14.7% +30.0% ➖ noise
4 datafusion:vortex-file-compressed +0.8% -12.2% +14.8% +30.0% ➖ noise
4 duckdb:vortex-compact +1.7% -12.2% +15.8% +30.0% ➖ noise
4 duckdb:vortex-file-compressed +1.1% -12.2% +15.1% +30.0% ➖ noise
5 datafusion:vortex-compact +2.1% -6.2% +8.8% +30.0% ➖ noise
5 datafusion:vortex-file-compressed +2.2% -6.2% +9.0% +30.0% ➖ noise
5 duckdb:vortex-compact +10.6% -6.2% +17.9% +30.0% ➖ noise
5 duckdb:vortex-file-compressed -4.1% -6.2% +2.2% +30.0% ➖ noise
6 datafusion:vortex-compact -1.0% -5.6% +4.8% +30.0% ➖ noise
6 datafusion:vortex-file-compressed -4.0% -5.6% +1.7% +30.0% ➖ noise
6 duckdb:vortex-compact -2.5% -5.6% +3.3% +30.0% ➖ noise
6 duckdb:vortex-file-compressed -8.9% -5.6% -3.5% +30.0% ➖ noise
7 datafusion:vortex-compact -2.2% +1.9% -4.0% +160.0% ➖ noise
7 datafusion:vortex-file-compressed -13.6% +1.9% -15.2% +127.8% ➖ noise
7 duckdb:vortex-compact +2.3% +1.9% +0.4% +30.0% ➖ noise
7 duckdb:vortex-file-compressed -1.0% +1.9% -2.9% +30.0% ➖ noise
8 datafusion:vortex-compact -4.4% -2.1% -2.4% +30.0% ➖ noise
8 datafusion:vortex-file-compressed +4.3% -2.1% +6.5% +30.0% ➖ noise
8 duckdb:vortex-compact -3.2% -2.1% -1.1% +30.0% ➖ noise
8 duckdb:vortex-file-compressed -6.2% -2.1% -4.2% +30.0% ➖ noise

@github-actions
Copy link
Copy Markdown
Contributor

Benchmarks: Statistical and Population Genetics

Verdict: No clear signal (low confidence)
Attributed Vortex impact: +0.8%
Engines: DuckDB No clear signal (+0.8%, low confidence)
Vortex (geomean): 0.986x ➖
Parquet (geomean): 0.978x ➖
Shifts: Parquet (control) -2.2% · Median polish -2.1%

How to read Verdict and Engines
  • Verdict: Overall PR-level signal after subtracting baseline drift estimated from Parquet control rows. It can be Likely improvement, Likely regression, or No clear signal.
  • Engines: Per-engine attribution. DataFusion is compared against DataFusion/Parquet controls; DuckDB is compared against DuckDB/Parquet controls. This answers whether each engine improved or regressed independently.
  • Confidence: Based on directional consistency, share of rows above the noise floor, and control-run noise.

duckdb / vortex-file-compressed (0.978x ➖, 0↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
statpopgen_q00/duckdb:vortex-file-compressed 11998620 12556517 0.96
statpopgen_q01/duckdb:vortex-file-compressed 26164899 27113935 0.96
statpopgen_q02/duckdb:vortex-file-compressed 523973128 557820675 0.94
statpopgen_q03/duckdb:vortex-file-compressed 1046138869 1077215472 0.97
statpopgen_q04/duckdb:vortex-file-compressed 1063909633 1068971353 1.00
statpopgen_q05/duckdb:vortex-file-compressed 498327456 482522507 1.03
statpopgen_q06/duckdb:vortex-file-compressed 1540348389 1548789060 0.99
statpopgen_q07/duckdb:vortex-file-compressed 199193669 212519901 0.94
statpopgen_q08/duckdb:vortex-file-compressed 233288006 236115685 0.99
statpopgen_q09/duckdb:vortex-file-compressed 836032654 842166113 0.99
statpopgen_q10/duckdb:vortex-file-compressed 2547654768 2571880670 0.99
duckdb / vortex-compact (0.994x ➖, 0↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
statpopgen_q00/duckdb:vortex-compact 11777463 11509954 1.02
statpopgen_q01/duckdb:vortex-compact 224369210 217972843 1.03
statpopgen_q02/duckdb:vortex-compact 557463231 554575928 1.01
statpopgen_q03/duckdb:vortex-compact 1163475807 1148561533 1.01
statpopgen_q04/duckdb:vortex-compact 1162229906 1159474720 1.00
statpopgen_q05/duckdb:vortex-compact 555598001 573347395 0.97
statpopgen_q06/duckdb:vortex-compact 1491388658 1497687509 1.00
statpopgen_q07/duckdb:vortex-compact 881923021 907607440 0.97
statpopgen_q08/duckdb:vortex-compact 918394746 930188166 0.99
statpopgen_q09/duckdb:vortex-compact 927260657 965468273 0.96
statpopgen_q10/duckdb:vortex-compact 2582565717 2627200674 0.98
duckdb / parquet (0.978x ➖, 0↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
statpopgen_q00/duckdb:parquet 297339754 311952908 0.95
statpopgen_q01/duckdb:parquet 375269014 383250719 0.98
statpopgen_q02/duckdb:parquet 752393459 773508140 0.97
statpopgen_q03/duckdb:parquet 1171477653 1218382862 0.96
statpopgen_q04/duckdb:parquet 1186977057 1195653581 0.99
statpopgen_q05/duckdb:parquet 805964072 817837877 0.99
statpopgen_q06/duckdb:parquet 1408545112 1432191548 0.98
statpopgen_q07/duckdb:parquet 864194516 867783526 1.00
statpopgen_q08/duckdb:parquet 866737797 886217334 0.98
statpopgen_q09/duckdb:parquet 1011619190 1043015473 0.97
statpopgen_q10/duckdb:parquet 2195820843 2214483452 0.99

File Size Changes (542 files changed, -95.3% overall, 0↑ 542↓)
File Scale Format Base HEAD Change %
addressview.vortex 1.0 vortex-compact 24.53 MB 0 B 24.53 MB -100.0%
categoryview.vortex 1.0 vortex-compact 19.86 KB 0 B 19.86 KB -100.0%
creditcardview.vortex 1.0 vortex-compact 32.23 MB 0 B 32.23 MB -100.0%
customerview.vortex 1.0 vortex-compact 10.60 MB 0 B 10.60 MB -100.0%
duckdb.db 1.0 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
orderitemnovelty_update.vortex 1.0 vortex-compact 13.14 KB 0 B 13.14 KB -100.0%
orderitemview.vortex 1.0 vortex-compact 156.30 MB 0 B 156.30 MB -100.0%
orderview.vortex 1.0 vortex-compact 32.16 MB 0 B 32.16 MB -100.0%
productview.vortex 1.0 vortex-compact 18.77 KB 0 B 18.77 KB -100.0%
taxrecordview.vortex 1.0 vortex-compact 17.34 MB 0 B 17.34 MB -100.0%
addressview.vortex 1.0 vortex-file-compressed 34.71 MB 0 B 34.71 MB -100.0%
categoryview.vortex 1.0 vortex-file-compressed 20.74 KB 0 B 20.74 KB -100.0%
creditcardview.vortex 1.0 vortex-file-compressed 66.75 MB 0 B 66.75 MB -100.0%
customerview.vortex 1.0 vortex-file-compressed 19.91 MB 0 B 19.91 MB -100.0%
duckdb.db 1.0 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
orderitemnovelty_update.vortex 1.0 vortex-file-compressed 13.14 KB 0 B 13.14 KB -100.0%
orderitemview.vortex 1.0 vortex-file-compressed 297.21 MB 0 B 297.21 MB -100.0%
orderview.vortex 1.0 vortex-file-compressed 88.79 MB 0 B 88.79 MB -100.0%
productview.vortex 1.0 vortex-file-compressed 20.44 KB 0 B 20.44 KB -100.0%
taxrecordview.vortex 1.0 vortex-file-compressed 22.01 MB 0 B 22.01 MB -100.0%
duckdb.db 1.0 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
hits_0.vortex 1.0 vortex-compact 58.66 MB 0 B 58.66 MB -100.0%
hits_1.vortex 1.0 vortex-compact 90.34 MB 0 B 90.34 MB -100.0%
hits_10.vortex 1.0 vortex-compact 48.86 MB 0 B 48.86 MB -100.0%
hits_11.vortex 1.0 vortex-compact 54.35 MB 0 B 54.35 MB -100.0%
hits_12.vortex 1.0 vortex-compact 69.27 MB 0 B 69.27 MB -100.0%
hits_13.vortex 1.0 vortex-compact 67.96 MB 0 B 67.96 MB -100.0%
hits_14.vortex 1.0 vortex-compact 73.75 MB 0 B 73.75 MB -100.0%
hits_15.vortex 1.0 vortex-compact 48.14 MB 0 B 48.14 MB -100.0%
hits_16.vortex 1.0 vortex-compact 48.30 MB 0 B 48.30 MB -100.0%
hits_17.vortex 1.0 vortex-compact 58.32 MB 0 B 58.32 MB -100.0%
hits_18.vortex 1.0 vortex-compact 64.28 MB 0 B 64.28 MB -100.0%
hits_19.vortex 1.0 vortex-compact 44.88 MB 0 B 44.88 MB -100.0%
hits_2.vortex 1.0 vortex-compact 129.36 MB 0 B 129.36 MB -100.0%
hits_20.vortex 1.0 vortex-compact 38.14 MB 0 B 38.14 MB -100.0%
hits_21.vortex 1.0 vortex-compact 51.60 MB 0 B 51.60 MB -100.0%
hits_22.vortex 1.0 vortex-compact 44.74 MB 0 B 44.74 MB -100.0%
hits_23.vortex 1.0 vortex-compact 44.17 MB 0 B 44.17 MB -100.0%
hits_24.vortex 1.0 vortex-compact 43.63 MB 0 B 43.63 MB -100.0%
hits_25.vortex 1.0 vortex-compact 73.14 MB 0 B 73.14 MB -100.0%
hits_26.vortex 1.0 vortex-compact 70.89 MB 0 B 70.89 MB -100.0%
hits_27.vortex 1.0 vortex-compact 69.88 MB 0 B 69.88 MB -100.0%
hits_28.vortex 1.0 vortex-compact 70.27 MB 0 B 70.27 MB -100.0%
hits_29.vortex 1.0 vortex-compact 36.61 MB 0 B 36.61 MB -100.0%
hits_3.vortex 1.0 vortex-compact 94.23 MB 0 B 94.23 MB -100.0%
hits_30.vortex 1.0 vortex-compact 58.69 MB 0 B 58.69 MB -100.0%
hits_31.vortex 1.0 vortex-compact 55.56 MB 0 B 55.56 MB -100.0%
hits_32.vortex 1.0 vortex-compact 44.13 MB 0 B 44.13 MB -100.0%
hits_33.vortex 1.0 vortex-compact 35.95 MB 0 B 35.95 MB -100.0%
hits_34.vortex 1.0 vortex-compact 58.26 MB 0 B 58.26 MB -100.0%
hits_35.vortex 1.0 vortex-compact 75.11 MB 0 B 75.11 MB -100.0%
hits_36.vortex 1.0 vortex-compact 48.99 MB 0 B 48.99 MB -100.0%
hits_37.vortex 1.0 vortex-compact 53.83 MB 0 B 53.83 MB -100.0%
hits_38.vortex 1.0 vortex-compact 63.10 MB 0 B 63.10 MB -100.0%
hits_39.vortex 1.0 vortex-compact 49.82 MB 0 B 49.82 MB -100.0%
hits_4.vortex 1.0 vortex-compact 71.81 MB 0 B 71.81 MB -100.0%
hits_40.vortex 1.0 vortex-compact 75.92 MB 0 B 75.92 MB -100.0%
hits_41.vortex 1.0 vortex-compact 165.78 MB 0 B 165.78 MB -100.0%
hits_42.vortex 1.0 vortex-compact 164.22 MB 0 B 164.22 MB -100.0%
hits_43.vortex 1.0 vortex-compact 168.91 MB 0 B 168.91 MB -100.0%
hits_44.vortex 1.0 vortex-compact 132.46 MB 0 B 132.46 MB -100.0%
hits_45.vortex 1.0 vortex-compact 76.07 MB 0 B 76.07 MB -100.0%
hits_46.vortex 1.0 vortex-compact 41.92 MB 0 B 41.92 MB -100.0%
hits_47.vortex 1.0 vortex-compact 18.25 MB 0 B 18.25 MB -100.0%
hits_48.vortex 1.0 vortex-compact 17.32 MB 0 B 17.32 MB -100.0%
hits_49.vortex 1.0 vortex-compact 50.53 MB 0 B 50.53 MB -100.0%
hits_5.vortex 1.0 vortex-compact 62.90 MB 0 B 62.90 MB -100.0%
hits_50.vortex 1.0 vortex-compact 113.12 MB 0 B 113.12 MB -100.0%
hits_51.vortex 1.0 vortex-compact 167.81 MB 0 B 167.81 MB -100.0%
hits_52.vortex 1.0 vortex-compact 63.73 MB 0 B 63.73 MB -100.0%
hits_53.vortex 1.0 vortex-compact 59.09 MB 0 B 59.09 MB -100.0%
hits_54.vortex 1.0 vortex-compact 117.66 MB 0 B 117.66 MB -100.0%
hits_55.vortex 1.0 vortex-compact 93.77 MB 0 B 93.77 MB -100.0%
hits_56.vortex 1.0 vortex-compact 77.87 MB 0 B 77.87 MB -100.0%
hits_57.vortex 1.0 vortex-compact 83.54 MB 0 B 83.54 MB -100.0%
hits_58.vortex 1.0 vortex-compact 60.41 MB 0 B 60.41 MB -100.0%
hits_59.vortex 1.0 vortex-compact 66.30 MB 0 B 66.30 MB -100.0%
hits_6.vortex 1.0 vortex-compact 63.16 MB 0 B 63.16 MB -100.0%
hits_60.vortex 1.0 vortex-compact 64.33 MB 0 B 64.33 MB -100.0%
hits_61.vortex 1.0 vortex-compact 57.66 MB 0 B 57.66 MB -100.0%
hits_62.vortex 1.0 vortex-compact 74.26 MB 0 B 74.26 MB -100.0%
hits_63.vortex 1.0 vortex-compact 46.10 MB 0 B 46.10 MB -100.0%
hits_64.vortex 1.0 vortex-compact 53.91 MB 0 B 53.91 MB -100.0%
hits_65.vortex 1.0 vortex-compact 129.95 MB 0 B 129.95 MB -100.0%
hits_66.vortex 1.0 vortex-compact 53.49 MB 0 B 53.49 MB -100.0%
hits_67.vortex 1.0 vortex-compact 114.05 MB 0 B 114.05 MB -100.0%
hits_68.vortex 1.0 vortex-compact 75.99 MB 0 B 75.99 MB -100.0%
hits_69.vortex 1.0 vortex-compact 81.02 MB 0 B 81.02 MB -100.0%
hits_7.vortex 1.0 vortex-compact 63.80 MB 0 B 63.80 MB -100.0%
hits_70.vortex 1.0 vortex-compact 61.29 MB 0 B 61.29 MB -100.0%
hits_71.vortex 1.0 vortex-compact 69.29 MB 0 B 69.29 MB -100.0%
hits_72.vortex 1.0 vortex-compact 51.79 MB 0 B 51.79 MB -100.0%
hits_73.vortex 1.0 vortex-compact 70.04 MB 0 B 70.04 MB -100.0%
hits_74.vortex 1.0 vortex-compact 71.62 MB 0 B 71.62 MB -100.0%
hits_75.vortex 1.0 vortex-compact 43.63 MB 0 B 43.63 MB -100.0%
hits_76.vortex 1.0 vortex-compact 76.44 MB 0 B 76.44 MB -100.0%
hits_77.vortex 1.0 vortex-compact 118.11 MB 0 B 118.11 MB -100.0%
hits_78.vortex 1.0 vortex-compact 97.87 MB 0 B 97.87 MB -100.0%
hits_79.vortex 1.0 vortex-compact 85.70 MB 0 B 85.70 MB -100.0%
hits_8.vortex 1.0 vortex-compact 62.89 MB 0 B 62.89 MB -100.0%
hits_80.vortex 1.0 vortex-compact 68.07 MB 0 B 68.07 MB -100.0%
hits_81.vortex 1.0 vortex-compact 65.45 MB 0 B 65.45 MB -100.0%
hits_82.vortex 1.0 vortex-compact 66.89 MB 0 B 66.89 MB -100.0%
hits_83.vortex 1.0 vortex-compact 52.57 MB 0 B 52.57 MB -100.0%
hits_84.vortex 1.0 vortex-compact 73.14 MB 0 B 73.14 MB -100.0%
hits_85.vortex 1.0 vortex-compact 52.73 MB 0 B 52.73 MB -100.0%
hits_86.vortex 1.0 vortex-compact 48.25 MB 0 B 48.25 MB -100.0%
hits_87.vortex 1.0 vortex-compact 119.04 MB 0 B 119.04 MB -100.0%
hits_88.vortex 1.0 vortex-compact 73.31 MB 0 B 73.31 MB -100.0%
hits_89.vortex 1.0 vortex-compact 112.82 MB 0 B 112.82 MB -100.0%
hits_9.vortex 1.0 vortex-compact 65.67 MB 0 B 65.67 MB -100.0%
hits_90.vortex 1.0 vortex-compact 81.86 MB 0 B 81.86 MB -100.0%
hits_91.vortex 1.0 vortex-compact 60.94 MB 0 B 60.94 MB -100.0%
hits_92.vortex 1.0 vortex-compact 94.27 MB 0 B 94.27 MB -100.0%
hits_93.vortex 1.0 vortex-compact 58.90 MB 0 B 58.90 MB -100.0%
hits_94.vortex 1.0 vortex-compact 90.63 MB 0 B 90.63 MB -100.0%
hits_95.vortex 1.0 vortex-compact 57.75 MB 0 B 57.75 MB -100.0%
hits_96.vortex 1.0 vortex-compact 91.08 MB 0 B 91.08 MB -100.0%
hits_97.vortex 1.0 vortex-compact 69.16 MB 0 B 69.16 MB -100.0%
hits_98.vortex 1.0 vortex-compact 72.77 MB 0 B 72.77 MB -100.0%
hits_99.vortex 1.0 vortex-compact 77.31 MB 0 B 77.31 MB -100.0%
duckdb.db 1.0 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
hits_0.vortex 1.0 vortex-file-compressed 112.17 MB 0 B 112.17 MB -100.0%
hits_1.vortex 1.0 vortex-file-compressed 181.16 MB 0 B 181.16 MB -100.0%
hits_10.vortex 1.0 vortex-file-compressed 81.76 MB 0 B 81.76 MB -100.0%
hits_11.vortex 1.0 vortex-file-compressed 96.07 MB 0 B 96.07 MB -100.0%
hits_12.vortex 1.0 vortex-file-compressed 125.34 MB 0 B 125.34 MB -100.0%
hits_13.vortex 1.0 vortex-file-compressed 123.20 MB 0 B 123.20 MB -100.0%
hits_14.vortex 1.0 vortex-file-compressed 135.14 MB 0 B 135.14 MB -100.0%
hits_15.vortex 1.0 vortex-file-compressed 97.01 MB 0 B 97.01 MB -100.0%
hits_16.vortex 1.0 vortex-file-compressed 87.59 MB 0 B 87.59 MB -100.0%
hits_17.vortex 1.0 vortex-file-compressed 103.64 MB 0 B 103.64 MB -100.0%
hits_18.vortex 1.0 vortex-file-compressed 126.06 MB 0 B 126.06 MB -100.0%
hits_19.vortex 1.0 vortex-file-compressed 82.10 MB 0 B 82.10 MB -100.0%
hits_2.vortex 1.0 vortex-file-compressed 241.46 MB 0 B 241.46 MB -100.0%
hits_20.vortex 1.0 vortex-file-compressed 67.53 MB 0 B 67.53 MB -100.0%
hits_21.vortex 1.0 vortex-file-compressed 101.28 MB 0 B 101.28 MB -100.0%
hits_22.vortex 1.0 vortex-file-compressed 81.17 MB 0 B 81.17 MB -100.0%
hits_23.vortex 1.0 vortex-file-compressed 80.37 MB 0 B 80.37 MB -100.0%
hits_24.vortex 1.0 vortex-file-compressed 79.71 MB 0 B 79.71 MB -100.0%
hits_25.vortex 1.0 vortex-file-compressed 137.01 MB 0 B 137.01 MB -100.0%
hits_26.vortex 1.0 vortex-file-compressed 144.05 MB 0 B 144.05 MB -100.0%
hits_27.vortex 1.0 vortex-file-compressed 174.61 MB 0 B 174.61 MB -100.0%
hits_28.vortex 1.0 vortex-file-compressed 167.55 MB 0 B 167.55 MB -100.0%
hits_29.vortex 1.0 vortex-file-compressed 65.47 MB 0 B 65.47 MB -100.0%
hits_3.vortex 1.0 vortex-file-compressed 193.11 MB 0 B 193.11 MB -100.0%
hits_30.vortex 1.0 vortex-file-compressed 104.00 MB 0 B 104.00 MB -100.0%
hits_31.vortex 1.0 vortex-file-compressed 104.39 MB 0 B 104.39 MB -100.0%
hits_32.vortex 1.0 vortex-file-compressed 77.12 MB 0 B 77.12 MB -100.0%
hits_33.vortex 1.0 vortex-file-compressed 62.97 MB 0 B 62.97 MB -100.0%
hits_34.vortex 1.0 vortex-file-compressed 111.68 MB 0 B 111.68 MB -100.0%
hits_35.vortex 1.0 vortex-file-compressed 138.81 MB 0 B 138.81 MB -100.0%
hits_36.vortex 1.0 vortex-file-compressed 80.27 MB 0 B 80.27 MB -100.0%
hits_37.vortex 1.0 vortex-file-compressed 97.54 MB 0 B 97.54 MB -100.0%
hits_38.vortex 1.0 vortex-file-compressed 118.43 MB 0 B 118.43 MB -100.0%
hits_39.vortex 1.0 vortex-file-compressed 94.06 MB 0 B 94.06 MB -100.0%
hits_4.vortex 1.0 vortex-file-compressed 138.86 MB 0 B 138.86 MB -100.0%
hits_40.vortex 1.0 vortex-file-compressed 142.99 MB 0 B 142.99 MB -100.0%
hits_41.vortex 1.0 vortex-file-compressed 300.49 MB 0 B 300.49 MB -100.0%
hits_42.vortex 1.0 vortex-file-compressed 298.79 MB 0 B 298.79 MB -100.0%
hits_43.vortex 1.0 vortex-file-compressed 305.71 MB 0 B 305.71 MB -100.0%
hits_44.vortex 1.0 vortex-file-compressed 243.64 MB 0 B 243.64 MB -100.0%
hits_45.vortex 1.0 vortex-file-compressed 145.48 MB 0 B 145.48 MB -100.0%
hits_46.vortex 1.0 vortex-file-compressed 80.32 MB 0 B 80.32 MB -100.0%
hits_47.vortex 1.0 vortex-file-compressed 41.86 MB 0 B 41.86 MB -100.0%
hits_48.vortex 1.0 vortex-file-compressed 28.53 MB 0 B 28.53 MB -100.0%
hits_49.vortex 1.0 vortex-file-compressed 88.67 MB 0 B 88.67 MB -100.0%
hits_5.vortex 1.0 vortex-file-compressed 122.64 MB 0 B 122.64 MB -100.0%
hits_50.vortex 1.0 vortex-file-compressed 255.24 MB 0 B 255.24 MB -100.0%
hits_51.vortex 1.0 vortex-file-compressed 428.84 MB 0 B 428.84 MB -100.0%
hits_52.vortex 1.0 vortex-file-compressed 120.78 MB 0 B 120.78 MB -100.0%
hits_53.vortex 1.0 vortex-file-compressed 98.26 MB 0 B 98.26 MB -100.0%
hits_54.vortex 1.0 vortex-file-compressed 361.83 MB 0 B 361.83 MB -100.0%
hits_55.vortex 1.0 vortex-file-compressed 251.56 MB 0 B 251.56 MB -100.0%
hits_56.vortex 1.0 vortex-file-compressed 163.76 MB 0 B 163.76 MB -100.0%
hits_57.vortex 1.0 vortex-file-compressed 158.37 MB 0 B 158.37 MB -100.0%
hits_58.vortex 1.0 vortex-file-compressed 113.78 MB 0 B 113.78 MB -100.0%
hits_59.vortex 1.0 vortex-file-compressed 121.84 MB 0 B 121.84 MB -100.0%
hits_6.vortex 1.0 vortex-file-compressed 122.86 MB 0 B 122.86 MB -100.0%
hits_60.vortex 1.0 vortex-file-compressed 121.19 MB 0 B 121.19 MB -100.0%
hits_61.vortex 1.0 vortex-file-compressed 114.43 MB 0 B 114.43 MB -100.0%
hits_62.vortex 1.0 vortex-file-compressed 148.36 MB 0 B 148.36 MB -100.0%
hits_63.vortex 1.0 vortex-file-compressed 80.62 MB 0 B 80.62 MB -100.0%
hits_64.vortex 1.0 vortex-file-compressed 95.27 MB 0 B 95.27 MB -100.0%
hits_65.vortex 1.0 vortex-file-compressed 238.05 MB 0 B 238.05 MB -100.0%
hits_66.vortex 1.0 vortex-file-compressed 105.34 MB 0 B 105.34 MB -100.0%
hits_67.vortex 1.0 vortex-file-compressed 265.94 MB 0 B 265.94 MB -100.0%
hits_68.vortex 1.0 vortex-file-compressed 172.16 MB 0 B 172.16 MB -100.0%
hits_69.vortex 1.0 vortex-file-compressed 147.61 MB 0 B 147.61 MB -100.0%
hits_7.vortex 1.0 vortex-file-compressed 123.82 MB 0 B 123.82 MB -100.0%
hits_70.vortex 1.0 vortex-file-compressed 115.14 MB 0 B 115.14 MB -100.0%
hits_71.vortex 1.0 vortex-file-compressed 126.41 MB 0 B 126.41 MB -100.0%
hits_72.vortex 1.0 vortex-file-compressed 96.27 MB 0 B 96.27 MB -100.0%
hits_73.vortex 1.0 vortex-file-compressed 131.83 MB 0 B 131.83 MB -100.0%
hits_74.vortex 1.0 vortex-file-compressed 152.12 MB 0 B 152.12 MB -100.0%
hits_75.vortex 1.0 vortex-file-compressed 74.18 MB 0 B 74.18 MB -100.0%
hits_76.vortex 1.0 vortex-file-compressed 140.05 MB 0 B 140.05 MB -100.0%
hits_77.vortex 1.0 vortex-file-compressed 218.96 MB 0 B 218.96 MB -100.0%
hits_78.vortex 1.0 vortex-file-compressed 238.59 MB 0 B 238.59 MB -100.0%
hits_79.vortex 1.0 vortex-file-compressed 204.16 MB 0 B 204.16 MB -100.0%
hits_8.vortex 1.0 vortex-file-compressed 122.86 MB 0 B 122.86 MB -100.0%
hits_80.vortex 1.0 vortex-file-compressed 124.24 MB 0 B 124.24 MB -100.0%
hits_81.vortex 1.0 vortex-file-compressed 126.55 MB 0 B 126.55 MB -100.0%
hits_82.vortex 1.0 vortex-file-compressed 122.77 MB 0 B 122.77 MB -100.0%
hits_83.vortex 1.0 vortex-file-compressed 103.72 MB 0 B 103.72 MB -100.0%
hits_84.vortex 1.0 vortex-file-compressed 145.05 MB 0 B 145.05 MB -100.0%
hits_85.vortex 1.0 vortex-file-compressed 106.37 MB 0 B 106.37 MB -100.0%
hits_86.vortex 1.0 vortex-file-compressed 81.40 MB 0 B 81.40 MB -100.0%
hits_87.vortex 1.0 vortex-file-compressed 221.68 MB 0 B 221.68 MB -100.0%
hits_88.vortex 1.0 vortex-file-compressed 137.34 MB 0 B 137.34 MB -100.0%
hits_89.vortex 1.0 vortex-file-compressed 266.01 MB 0 B 266.01 MB -100.0%
hits_9.vortex 1.0 vortex-file-compressed 124.22 MB 0 B 124.22 MB -100.0%
hits_90.vortex 1.0 vortex-file-compressed 204.12 MB 0 B 204.12 MB -100.0%
hits_91.vortex 1.0 vortex-file-compressed 116.23 MB 0 B 116.23 MB -100.0%
hits_92.vortex 1.0 vortex-file-compressed 196.47 MB 0 B 196.47 MB -100.0%
hits_93.vortex 1.0 vortex-file-compressed 107.66 MB 0 B 107.66 MB -100.0%
hits_94.vortex 1.0 vortex-file-compressed 185.12 MB 0 B 185.12 MB -100.0%
hits_95.vortex 1.0 vortex-file-compressed 114.33 MB 0 B 114.33 MB -100.0%
hits_96.vortex 1.0 vortex-file-compressed 180.76 MB 0 B 180.76 MB -100.0%
hits_97.vortex 1.0 vortex-file-compressed 130.96 MB 0 B 130.96 MB -100.0%
hits_98.vortex 1.0 vortex-file-compressed 150.55 MB 0 B 150.55 MB -100.0%
hits_99.vortex 1.0 vortex-file-compressed 158.88 MB 0 B 158.88 MB -100.0%
duckdb.db 1.0 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
sample.vortex 1.0 vortex-compact 1.23 GB 0 B 1.23 GB -100.0%
duckdb.db 1.0 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
sample.vortex 1.0 vortex-file-compressed 1.79 GB 0 B 1.79 GB -100.0%
stacktraces.vortex 1000000 vortex-file-compressed 689.41 MB 0 B 689.41 MB -100.0%
call_center.vortex 1.0 vortex-compact 50.14 KB 0 B 50.14 KB -100.0%
catalog_page.vortex 1.0 vortex-compact 362.67 KB 0 B 362.67 KB -100.0%
catalog_returns.vortex 1.0 vortex-compact 6.02 MB 0 B 6.02 MB -100.0%
catalog_sales.vortex 1.0 vortex-compact 59.31 MB 0 B 59.31 MB -100.0%
customer.vortex 1.0 vortex-compact 3.29 MB 0 B 3.29 MB -100.0%
customer_address.vortex 1.0 vortex-compact 558.62 KB 0 B 558.62 KB -100.0%
customer_demographics.vortex 1.0 vortex-compact 649.61 KB 0 B 649.61 KB -100.0%
date_dim.vortex 1.0 vortex-compact 154.00 KB 0 B 154.00 KB -100.0%
duckdb.db 1.0 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
household_demographics.vortex 1.0 vortex-compact 10.79 KB 0 B 10.79 KB -100.0%
income_band.vortex 1.0 vortex-compact 5.98 KB 0 B 5.98 KB -100.0%
inventory.vortex 1.0 vortex-compact 16.07 MB 0 B 16.07 MB -100.0%
item.vortex 1.0 vortex-compact 994.21 KB 0 B 994.21 KB -100.0%
promotion.vortex 1.0 vortex-compact 51.51 KB 0 B 51.51 KB -100.0%
reason.vortex 1.0 vortex-compact 5.97 KB 0 B 5.97 KB -100.0%
ship_mode.vortex 1.0 vortex-compact 10.95 KB 0 B 10.95 KB -100.0%
store.vortex 1.0 vortex-compact 45.76 KB 0 B 45.76 KB -100.0%
store_returns.vortex 1.0 vortex-compact 9.31 MB 0 B 9.31 MB -100.0%
store_sales.vortex 1.0 vortex-compact 77.87 MB 0 B 77.87 MB -100.0%
time_dim.vortex 1.0 vortex-compact 97.35 KB 0 B 97.35 KB -100.0%
warehouse.vortex 1.0 vortex-compact 22.23 KB 0 B 22.23 KB -100.0%
web_page.vortex 1.0 vortex-compact 27.84 KB 0 B 27.84 KB -100.0%
web_returns.vortex 1.0 vortex-compact 2.99 MB 0 B 2.99 MB -100.0%
web_sales.vortex 1.0 vortex-compact 29.35 MB 0 B 29.35 MB -100.0%
web_site.vortex 1.0 vortex-compact 45.31 KB 0 B 45.31 KB -100.0%
call_center.vortex 1.0 vortex-file-compressed 54.94 KB 0 B 54.94 KB -100.0%
catalog_page.vortex 1.0 vortex-file-compressed 611.57 KB 0 B 611.57 KB -100.0%
catalog_returns.vortex 1.0 vortex-file-compressed 7.43 MB 0 B 7.43 MB -100.0%
catalog_sales.vortex 1.0 vortex-file-compressed 70.78 MB 0 B 70.78 MB -100.0%
customer.vortex 1.0 vortex-file-compressed 4.52 MB 0 B 4.52 MB -100.0%
customer_address.vortex 1.0 vortex-file-compressed 1012.96 KB 0 B 1012.96 KB -100.0%
customer_demographics.vortex 1.0 vortex-file-compressed 1.49 MB 0 B 1.49 MB -100.0%
date_dim.vortex 1.0 vortex-file-compressed 1.03 MB 0 B 1.03 MB -100.0%
duckdb.db 1.0 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
household_demographics.vortex 1.0 vortex-file-compressed 17.05 KB 0 B 17.05 KB -100.0%
income_band.vortex 1.0 vortex-file-compressed 6.19 KB 0 B 6.19 KB -100.0%
inventory.vortex 1.0 vortex-file-compressed 36.64 MB 0 B 36.64 MB -100.0%
item.vortex 1.0 vortex-file-compressed 1.75 MB 0 B 1.75 MB -100.0%
promotion.vortex 1.0 vortex-file-compressed 60.19 KB 0 B 60.19 KB -100.0%
reason.vortex 1.0 vortex-file-compressed 7.23 KB 0 B 7.23 KB -100.0%
ship_mode.vortex 1.0 vortex-file-compressed 13.12 KB 0 B 13.12 KB -100.0%
store.vortex 1.0 vortex-file-compressed 49.49 KB 0 B 49.49 KB -100.0%
store_returns.vortex 1.0 vortex-file-compressed 11.39 MB 0 B 11.39 MB -100.0%
store_sales.vortex 1.0 vortex-file-compressed 97.04 MB 0 B 97.04 MB -100.0%
time_dim.vortex 1.0 vortex-file-compressed 687.30 KB 0 B 687.30 KB -100.0%
warehouse.vortex 1.0 vortex-file-compressed 23.83 KB 0 B 23.83 KB -100.0%
web_page.vortex 1.0 vortex-file-compressed 31.92 KB 0 B 31.92 KB -100.0%
web_returns.vortex 1.0 vortex-file-compressed 3.55 MB 0 B 3.55 MB -100.0%
web_sales.vortex 1.0 vortex-file-compressed 34.27 MB 0 B 34.27 MB -100.0%
web_site.vortex 1.0 vortex-file-compressed 54.08 KB 0 B 54.08 KB -100.0%
customer_0.vortex 1.0 vortex-compact 7.43 MB 0 B 7.43 MB -100.0%
duckdb.db 1.0 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
lineitem_0.vortex 1.0 vortex-compact 63.00 MB 0 B 63.00 MB -100.0%
lineitem_1.vortex 1.0 vortex-compact 63.03 MB 0 B 63.03 MB -100.0%
nation_0.vortex 1.0 vortex-compact 8.34 KB 0 B 8.34 KB -100.0%
orders_0.vortex 1.0 vortex-compact 31.73 MB 0 B 31.73 MB -100.0%
part_0.vortex 1.0 vortex-compact 3.64 MB 0 B 3.64 MB -100.0%
partsupp_0.vortex 1.0 vortex-compact 25.23 MB 0 B 25.23 MB -100.0%
region_0.vortex 1.0 vortex-compact 5.86 KB 0 B 5.86 KB -100.0%
supplier_0.vortex 1.0 vortex-compact 496.72 KB 0 B 496.72 KB -100.0%
customer_0.vortex 1.0 vortex-file-compressed 10.50 MB 0 B 10.50 MB -100.0%
duckdb.db 1.0 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
lineitem_0.vortex 1.0 vortex-file-compressed 85.42 MB 0 B 85.42 MB -100.0%
lineitem_1.vortex 1.0 vortex-file-compressed 84.90 MB 0 B 84.90 MB -100.0%
nation_0.vortex 1.0 vortex-file-compressed 11.00 KB 0 B 11.00 KB -100.0%
orders_0.vortex 1.0 vortex-file-compressed 43.43 MB 0 B 43.43 MB -100.0%
part_0.vortex 1.0 vortex-file-compressed 5.44 MB 0 B 5.44 MB -100.0%
partsupp_0.vortex 1.0 vortex-file-compressed 35.94 MB 0 B 35.94 MB -100.0%
region_0.vortex 1.0 vortex-file-compressed 6.16 KB 0 B 6.16 KB -100.0%
supplier_0.vortex 1.0 vortex-file-compressed 706.34 KB 0 B 706.34 KB -100.0%
customer_0.vortex 10.0 vortex-compact 74.12 MB 0 B 74.12 MB -100.0%
duckdb.db 10.0 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
lineitem_0.vortex 10.0 vortex-compact 100.59 MB 0 B 100.59 MB -100.0%
lineitem_1.vortex 10.0 vortex-compact 100.64 MB 0 B 100.64 MB -100.0%
lineitem_10.vortex 10.0 vortex-compact 100.62 MB 0 B 100.62 MB -100.0%
lineitem_11.vortex 10.0 vortex-compact 100.53 MB 0 B 100.53 MB -100.0%
lineitem_12.vortex 10.0 vortex-compact 100.62 MB 0 B 100.62 MB -100.0%
lineitem_2.vortex 10.0 vortex-compact 100.59 MB 0 B 100.59 MB -100.0%
lineitem_3.vortex 10.0 vortex-compact 100.62 MB 0 B 100.62 MB -100.0%
lineitem_4.vortex 10.0 vortex-compact 100.56 MB 0 B 100.56 MB -100.0%
lineitem_5.vortex 10.0 vortex-compact 100.70 MB 0 B 100.70 MB -100.0%
lineitem_6.vortex 10.0 vortex-compact 100.68 MB 0 B 100.68 MB -100.0%
lineitem_7.vortex 10.0 vortex-compact 100.58 MB 0 B 100.58 MB -100.0%
lineitem_8.vortex 10.0 vortex-compact 100.59 MB 0 B 100.59 MB -100.0%
lineitem_9.vortex 10.0 vortex-compact 100.46 MB 0 B 100.46 MB -100.0%
nation_0.vortex 10.0 vortex-compact 8.34 KB 0 B 8.34 KB -100.0%
orders_0.vortex 10.0 vortex-compact 114.79 MB 0 B 114.79 MB -100.0%
orders_1.vortex 10.0 vortex-compact 114.76 MB 0 B 114.76 MB -100.0%
orders_2.vortex 10.0 vortex-compact 114.78 MB 0 B 114.78 MB -100.0%
part_0.vortex 10.0 vortex-compact 18.11 MB 0 B 18.11 MB -100.0%
part_1.vortex 10.0 vortex-compact 18.11 MB 0 B 18.11 MB -100.0%
partsupp_0.vortex 10.0 vortex-compact 126.76 MB 0 B 126.76 MB -100.0%
partsupp_1.vortex 10.0 vortex-compact 126.74 MB 0 B 126.74 MB -100.0%
region_0.vortex 10.0 vortex-compact 5.86 KB 0 B 5.86 KB -100.0%
supplier_0.vortex 10.0 vortex-compact 4.73 MB 0 B 4.73 MB -100.0%
customer_0.vortex 10.0 vortex-file-compressed 104.73 MB 0 B 104.73 MB -100.0%
duckdb.db 10.0 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
lineitem_0.vortex 10.0 vortex-file-compressed 134.65 MB 0 B 134.65 MB -100.0%
lineitem_1.vortex 10.0 vortex-file-compressed 134.27 MB 0 B 134.27 MB -100.0%
lineitem_10.vortex 10.0 vortex-file-compressed 134.51 MB 0 B 134.51 MB -100.0%
lineitem_11.vortex 10.0 vortex-file-compressed 134.87 MB 0 B 134.87 MB -100.0%
lineitem_12.vortex 10.0 vortex-file-compressed 134.52 MB 0 B 134.52 MB -100.0%
lineitem_2.vortex 10.0 vortex-file-compressed 134.38 MB 0 B 134.38 MB -100.0%
lineitem_3.vortex 10.0 vortex-file-compressed 133.74 MB 0 B 133.74 MB -100.0%
lineitem_4.vortex 10.0 vortex-file-compressed 134.43 MB 0 B 134.43 MB -100.0%
lineitem_5.vortex 10.0 vortex-file-compressed 133.86 MB 0 B 133.86 MB -100.0%
lineitem_6.vortex 10.0 vortex-file-compressed 133.23 MB 0 B 133.23 MB -100.0%
lineitem_7.vortex 10.0 vortex-file-compressed 134.01 MB 0 B 134.01 MB -100.0%
lineitem_8.vortex 10.0 vortex-file-compressed 134.06 MB 0 B 134.06 MB -100.0%
lineitem_9.vortex 10.0 vortex-file-compressed 134.65 MB 0 B 134.65 MB -100.0%
nation_0.vortex 10.0 vortex-file-compressed 11.00 KB 0 B 11.00 KB -100.0%
orders_0.vortex 10.0 vortex-file-compressed 163.92 MB 0 B 163.92 MB -100.0%
orders_1.vortex 10.0 vortex-file-compressed 164.15 MB 0 B 164.15 MB -100.0%
orders_2.vortex 10.0 vortex-file-compressed 164.00 MB 0 B 164.00 MB -100.0%
part_0.vortex 10.0 vortex-file-compressed 27.02 MB 0 B 27.02 MB -100.0%
part_1.vortex 10.0 vortex-file-compressed 26.99 MB 0 B 26.99 MB -100.0%
partsupp_0.vortex 10.0 vortex-file-compressed 180.47 MB 0 B 180.47 MB -100.0%
partsupp_1.vortex 10.0 vortex-file-compressed 180.65 MB 0 B 180.65 MB -100.0%
region_0.vortex 10.0 vortex-file-compressed 6.16 KB 0 B 6.16 KB -100.0%
supplier_0.vortex 10.0 vortex-file-compressed 6.69 MB 0 B 6.69 MB -100.0%
customer_0.vortex 100 vortex-file-compressed 261.80 MB 0 B 261.80 MB -100.0%
customer_1.vortex 100 vortex-file-compressed 261.77 MB 0 B 261.77 MB -100.0%
customer_2.vortex 100 vortex-file-compressed 261.69 MB 0 B 261.69 MB -100.0%
customer_3.vortex 100 vortex-file-compressed 261.80 MB 0 B 261.80 MB -100.0%
duckdb.db 100 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
lineitem_0.vortex 100 vortex-file-compressed 148.68 MB 0 B 148.68 MB -100.0%
lineitem_1.vortex 100 vortex-file-compressed 148.56 MB 0 B 148.56 MB -100.0%
lineitem_10.vortex 100 vortex-file-compressed 148.35 MB 0 B 148.35 MB -100.0%
lineitem_100.vortex 100 vortex-file-compressed 148.11 MB 0 B 148.11 MB -100.0%
lineitem_101.vortex 100 vortex-file-compressed 148.35 MB 0 B 148.35 MB -100.0%
lineitem_102.vortex 100 vortex-file-compressed 148.14 MB 0 B 148.14 MB -100.0%
lineitem_103.vortex 100 vortex-file-compressed 148.37 MB 0 B 148.37 MB -100.0%
lineitem_104.vortex 100 vortex-file-compressed 148.59 MB 0 B 148.59 MB -100.0%
lineitem_105.vortex 100 vortex-file-compressed 147.47 MB 0 B 147.47 MB -100.0%
lineitem_106.vortex 100 vortex-file-compressed 148.07 MB 0 B 148.07 MB -100.0%
lineitem_107.vortex 100 vortex-file-compressed 148.04 MB 0 B 148.04 MB -100.0%
lineitem_108.vortex 100 vortex-file-compressed 147.29 MB 0 B 147.29 MB -100.0%
lineitem_109.vortex 100 vortex-file-compressed 148.03 MB 0 B 148.03 MB -100.0%
lineitem_11.vortex 100 vortex-file-compressed 148.62 MB 0 B 148.62 MB -100.0%
lineitem_110.vortex 100 vortex-file-compressed 148.41 MB 0 B 148.41 MB -100.0%
lineitem_111.vortex 100 vortex-file-compressed 147.77 MB 0 B 147.77 MB -100.0%
lineitem_112.vortex 100 vortex-file-compressed 147.42 MB 0 B 147.42 MB -100.0%
lineitem_113.vortex 100 vortex-file-compressed 147.56 MB 0 B 147.56 MB -100.0%
lineitem_114.vortex 100 vortex-file-compressed 147.46 MB 0 B 147.46 MB -100.0%
lineitem_115.vortex 100 vortex-file-compressed 147.64 MB 0 B 147.64 MB -100.0%
lineitem_116.vortex 100 vortex-file-compressed 148.20 MB 0 B 148.20 MB -100.0%
lineitem_117.vortex 100 vortex-file-compressed 148.24 MB 0 B 148.24 MB -100.0%
lineitem_118.vortex 100 vortex-file-compressed 147.83 MB 0 B 147.83 MB -100.0%
lineitem_119.vortex 100 vortex-file-compressed 148.33 MB 0 B 148.33 MB -100.0%
lineitem_12.vortex 100 vortex-file-compressed 148.19 MB 0 B 148.19 MB -100.0%
lineitem_120.vortex 100 vortex-file-compressed 147.10 MB 0 B 147.10 MB -100.0%
lineitem_13.vortex 100 vortex-file-compressed 148.26 MB 0 B 148.26 MB -100.0%
lineitem_14.vortex 100 vortex-file-compressed 147.79 MB 0 B 147.79 MB -100.0%
lineitem_15.vortex 100 vortex-file-compressed 147.63 MB 0 B 147.63 MB -100.0%
lineitem_16.vortex 100 vortex-file-compressed 148.03 MB 0 B 148.03 MB -100.0%
lineitem_17.vortex 100 vortex-file-compressed 148.59 MB 0 B 148.59 MB -100.0%
lineitem_18.vortex 100 vortex-file-compressed 147.55 MB 0 B 147.55 MB -100.0%
lineitem_19.vortex 100 vortex-file-compressed 148.77 MB 0 B 148.77 MB -100.0%
lineitem_2.vortex 100 vortex-file-compressed 148.59 MB 0 B 148.59 MB -100.0%
lineitem_20.vortex 100 vortex-file-compressed 148.78 MB 0 B 148.78 MB -100.0%
lineitem_21.vortex 100 vortex-file-compressed 148.33 MB 0 B 148.33 MB -100.0%
lineitem_22.vortex 100 vortex-file-compressed 147.32 MB 0 B 147.32 MB -100.0%
lineitem_23.vortex 100 vortex-file-compressed 148.19 MB 0 B 148.19 MB -100.0%
lineitem_24.vortex 100 vortex-file-compressed 147.50 MB 0 B 147.50 MB -100.0%
lineitem_25.vortex 100 vortex-file-compressed 148.52 MB 0 B 148.52 MB -100.0%
lineitem_26.vortex 100 vortex-file-compressed 148.11 MB 0 B 148.11 MB -100.0%
lineitem_27.vortex 100 vortex-file-compressed 148.45 MB 0 B 148.45 MB -100.0%
lineitem_28.vortex 100 vortex-file-compressed 148.66 MB 0 B 148.66 MB -100.0%
lineitem_29.vortex 100 vortex-file-compressed 148.75 MB 0 B 148.75 MB -100.0%
lineitem_3.vortex 100 vortex-file-compressed 148.16 MB 0 B 148.16 MB -100.0%
lineitem_30.vortex 100 vortex-file-compressed 147.46 MB 0 B 147.46 MB -100.0%
lineitem_31.vortex 100 vortex-file-compressed 148.50 MB 0 B 148.50 MB -100.0%
lineitem_32.vortex 100 vortex-file-compressed 148.90 MB 0 B 148.90 MB -100.0%
lineitem_33.vortex 100 vortex-file-compressed 147.74 MB 0 B 147.74 MB -100.0%
lineitem_34.vortex 100 vortex-file-compressed 148.93 MB 0 B 148.93 MB -100.0%
lineitem_35.vortex 100 vortex-file-compressed 148.35 MB 0 B 148.35 MB -100.0%
lineitem_36.vortex 100 vortex-file-compressed 147.64 MB 0 B 147.64 MB -100.0%
lineitem_37.vortex 100 vortex-file-compressed 147.47 MB 0 B 147.47 MB -100.0%
lineitem_38.vortex 100 vortex-file-compressed 149.09 MB 0 B 149.09 MB -100.0%
lineitem_39.vortex 100 vortex-file-compressed 147.38 MB 0 B 147.38 MB -100.0%
lineitem_4.vortex 100 vortex-file-compressed 147.27 MB 0 B 147.27 MB -100.0%
lineitem_40.vortex 100 vortex-file-compressed 147.97 MB 0 B 147.97 MB -100.0%
lineitem_41.vortex 100 vortex-file-compressed 146.66 MB 0 B 146.66 MB -100.0%
lineitem_42.vortex 100 vortex-file-compressed 148.38 MB 0 B 148.38 MB -100.0%
lineitem_43.vortex 100 vortex-file-compressed 147.84 MB 0 B 147.84 MB -100.0%
lineitem_44.vortex 100 vortex-file-compressed 147.91 MB 0 B 147.91 MB -100.0%
lineitem_45.vortex 100 vortex-file-compressed 146.88 MB 0 B 146.88 MB -100.0%
lineitem_46.vortex 100 vortex-file-compressed 147.77 MB 0 B 147.77 MB -100.0%
lineitem_47.vortex 100 vortex-file-compressed 148.26 MB 0 B 148.26 MB -100.0%
lineitem_48.vortex 100 vortex-file-compressed 148.23 MB 0 B 148.23 MB -100.0%
lineitem_49.vortex 100 vortex-file-compressed 148.47 MB 0 B 148.47 MB -100.0%
lineitem_5.vortex 100 vortex-file-compressed 148.16 MB 0 B 148.16 MB -100.0%
lineitem_50.vortex 100 vortex-file-compressed 148.88 MB 0 B 148.88 MB -100.0%
lineitem_51.vortex 100 vortex-file-compressed 148.42 MB 0 B 148.42 MB -100.0%
lineitem_52.vortex 100 vortex-file-compressed 146.97 MB 0 B 146.97 MB -100.0%
lineitem_53.vortex 100 vortex-file-compressed 148.23 MB 0 B 148.23 MB -100.0%
lineitem_54.vortex 100 vortex-file-compressed 149.12 MB 0 B 149.12 MB -100.0%
lineitem_55.vortex 100 vortex-file-compressed 148.16 MB 0 B 148.16 MB -100.0%
lineitem_56.vortex 100 vortex-file-compressed 147.73 MB 0 B 147.73 MB -100.0%
lineitem_57.vortex 100 vortex-file-compressed 148.37 MB 0 B 148.37 MB -100.0%
lineitem_58.vortex 100 vortex-file-compressed 148.72 MB 0 B 148.72 MB -100.0%
lineitem_59.vortex 100 vortex-file-compressed 148.42 MB 0 B 148.42 MB -100.0%
lineitem_6.vortex 100 vortex-file-compressed 147.90 MB 0 B 147.90 MB -100.0%
lineitem_60.vortex 100 vortex-file-compressed 148.62 MB 0 B 148.62 MB -100.0%
lineitem_61.vortex 100 vortex-file-compressed 147.73 MB 0 B 147.73 MB -100.0%
lineitem_62.vortex 100 vortex-file-compressed 146.94 MB 0 B 146.94 MB -100.0%
lineitem_63.vortex 100 vortex-file-compressed 148.65 MB 0 B 148.65 MB -100.0%
lineitem_64.vortex 100 vortex-file-compressed 147.72 MB 0 B 147.72 MB -100.0%
lineitem_65.vortex 100 vortex-file-compressed 147.57 MB 0 B 147.57 MB -100.0%
lineitem_66.vortex 100 vortex-file-compressed 148.09 MB 0 B 148.09 MB -100.0%
lineitem_67.vortex 100 vortex-file-compressed 148.84 MB 0 B 148.84 MB -100.0%
lineitem_68.vortex 100 vortex-file-compressed 148.03 MB 0 B 148.03 MB -100.0%
lineitem_69.vortex 100 vortex-file-compressed 148.10 MB 0 B 148.10 MB -100.0%
lineitem_7.vortex 100 vortex-file-compressed 147.86 MB 0 B 147.86 MB -100.0%
lineitem_70.vortex 100 vortex-file-compressed 147.89 MB 0 B 147.89 MB -100.0%
lineitem_71.vortex 100 vortex-file-compressed 147.94 MB 0 B 147.94 MB -100.0%
lineitem_72.vortex 100 vortex-file-compressed 147.99 MB 0 B 147.99 MB -100.0%
lineitem_73.vortex 100 vortex-file-compressed 148.32 MB 0 B 148.32 MB -100.0%
lineitem_74.vortex 100 vortex-file-compressed 147.55 MB 0 B 147.55 MB -100.0%
lineitem_75.vortex 100 vortex-file-compressed 147.88 MB 0 B 147.88 MB -100.0%
lineitem_76.vortex 100 vortex-file-compressed 147.35 MB 0 B 147.35 MB -100.0%
lineitem_77.vortex 100 vortex-file-compressed 148.24 MB 0 B 148.24 MB -100.0%
lineitem_78.vortex 100 vortex-file-compressed 147.35 MB 0 B 147.35 MB -100.0%
lineitem_79.vortex 100 vortex-file-compressed 148.43 MB 0 B 148.43 MB -100.0%
lineitem_8.vortex 100 vortex-file-compressed 148.56 MB 0 B 148.56 MB -100.0%
lineitem_80.vortex 100 vortex-file-compressed 147.55 MB 0 B 147.55 MB -100.0%
lineitem_81.vortex 100 vortex-file-compressed 147.76 MB 0 B 147.76 MB -100.0%
lineitem_82.vortex 100 vortex-file-compressed 148.37 MB 0 B 148.37 MB -100.0%
lineitem_83.vortex 100 vortex-file-compressed 148.68 MB 0 B 148.68 MB -100.0%
lineitem_84.vortex 100 vortex-file-compressed 147.94 MB 0 B 147.94 MB -100.0%
lineitem_85.vortex 100 vortex-file-compressed 147.92 MB 0 B 147.92 MB -100.0%
lineitem_86.vortex 100 vortex-file-compressed 147.62 MB 0 B 147.62 MB -100.0%
lineitem_87.vortex 100 vortex-file-compressed 147.46 MB 0 B 147.46 MB -100.0%
lineitem_88.vortex 100 vortex-file-compressed 148.71 MB 0 B 148.71 MB -100.0%
lineitem_89.vortex 100 vortex-file-compressed 148.03 MB 0 B 148.03 MB -100.0%
lineitem_9.vortex 100 vortex-file-compressed 148.87 MB 0 B 148.87 MB -100.0%
lineitem_90.vortex 100 vortex-file-compressed 147.82 MB 0 B 147.82 MB -100.0%
lineitem_91.vortex 100 vortex-file-compressed 148.27 MB 0 B 148.27 MB -100.0%
lineitem_92.vortex 100 vortex-file-compressed 148.08 MB 0 B 148.08 MB -100.0%
lineitem_93.vortex 100 vortex-file-compressed 147.77 MB 0 B 147.77 MB -100.0%
lineitem_94.vortex 100 vortex-file-compressed 148.40 MB 0 B 148.40 MB -100.0%
lineitem_95.vortex 100 vortex-file-compressed 147.49 MB 0 B 147.49 MB -100.0%
lineitem_96.vortex 100 vortex-file-compressed 148.03 MB 0 B 148.03 MB -100.0%
lineitem_97.vortex 100 vortex-file-compressed 148.10 MB 0 B 148.10 MB -100.0%
lineitem_98.vortex 100 vortex-file-compressed 148.59 MB 0 B 148.59 MB -100.0%
lineitem_99.vortex 100 vortex-file-compressed 147.26 MB 0 B 147.26 MB -100.0%
nation_0.vortex 100 vortex-file-compressed 11.00 KB 0 B 11.00 KB -100.0%
orders_0.vortex 100 vortex-file-compressed 180.00 MB 0 B 180.00 MB -100.0%
orders_1.vortex 100 vortex-file-compressed 179.92 MB 0 B 179.92 MB -100.0%
orders_10.vortex 100 vortex-file-compressed 180.14 MB 0 B 180.14 MB -100.0%
orders_11.vortex 100 vortex-file-compressed 180.08 MB 0 B 180.08 MB -100.0%
orders_12.vortex 100 vortex-file-compressed 180.32 MB 0 B 180.32 MB -100.0%
orders_13.vortex 100 vortex-file-compressed 179.83 MB 0 B 179.83 MB -100.0%
orders_14.vortex 100 vortex-file-compressed 180.18 MB 0 B 180.18 MB -100.0%
orders_15.vortex 100 vortex-file-compressed 180.19 MB 0 B 180.19 MB -100.0%
orders_16.vortex 100 vortex-file-compressed 179.88 MB 0 B 179.88 MB -100.0%
orders_17.vortex 100 vortex-file-compressed 180.01 MB 0 B 180.01 MB -100.0%
orders_18.vortex 100 vortex-file-compressed 180.45 MB 0 B 180.45 MB -100.0%
orders_19.vortex 100 vortex-file-compressed 180.04 MB 0 B 180.04 MB -100.0%
orders_2.vortex 100 vortex-file-compressed 180.35 MB 0 B 180.35 MB -100.0%
orders_20.vortex 100 vortex-file-compressed 179.85 MB 0 B 179.85 MB -100.0%
orders_21.vortex 100 vortex-file-compressed 179.89 MB 0 B 179.89 MB -100.0%
orders_22.vortex 100 vortex-file-compressed 180.04 MB 0 B 180.04 MB -100.0%
orders_23.vortex 100 vortex-file-compressed 179.94 MB 0 B 179.94 MB -100.0%
orders_24.vortex 100 vortex-file-compressed 179.56 MB 0 B 179.56 MB -100.0%
orders_25.vortex 100 vortex-file-compressed 179.82 MB 0 B 179.82 MB -100.0%
orders_26.vortex 100 vortex-file-compressed 179.99 MB 0 B 179.99 MB -100.0%
orders_27.vortex 100 vortex-file-compressed 179.78 MB 0 B 179.78 MB -100.0%
orders_3.vortex 100 vortex-file-compressed 180.12 MB 0 B 180.12 MB -100.0%
orders_4.vortex 100 vortex-file-compressed 180.39 MB 0 B 180.39 MB -100.0%
orders_5.vortex 100 vortex-file-compressed 180.03 MB 0 B 180.03 MB -100.0%
orders_6.vortex 100 vortex-file-compressed 179.80 MB 0 B 179.80 MB -100.0%
orders_7.vortex 100 vortex-file-compressed 180.12 MB 0 B 180.12 MB -100.0%
orders_8.vortex 100 vortex-file-compressed 180.21 MB 0 B 180.21 MB -100.0%
orders_9.vortex 100 vortex-file-compressed 180.11 MB 0 B 180.11 MB -100.0%
part_0.vortex 100 vortex-file-compressed 28.45 MB 0 B 28.45 MB -100.0%
part_1.vortex 100 vortex-file-compressed 28.49 MB 0 B 28.49 MB -100.0%
part_10.vortex 100 vortex-file-compressed 28.43 MB 0 B 28.43 MB -100.0%
part_11.vortex 100 vortex-file-compressed 28.45 MB 0 B 28.45 MB -100.0%
part_12.vortex 100 vortex-file-compressed 28.43 MB 0 B 28.43 MB -100.0%
part_13.vortex 100 vortex-file-compressed 28.44 MB 0 B 28.44 MB -100.0%
part_14.vortex 100 vortex-file-compressed 28.46 MB 0 B 28.46 MB -100.0%
part_15.vortex 100 vortex-file-compressed 28.48 MB 0 B 28.48 MB -100.0%
part_16.vortex 100 vortex-file-compressed 28.42 MB 0 B 28.42 MB -100.0%
part_17.vortex 100 vortex-file-compressed 28.41 MB 0 B 28.41 MB -100.0%
part_18.vortex 100 vortex-file-compressed 28.51 MB 0 B 28.51 MB -100.0%
part_2.vortex 100 vortex-file-compressed 28.46 MB 0 B 28.46 MB -100.0%
part_3.vortex 100 vortex-file-compressed 28.43 MB 0 B 28.43 MB -100.0%
part_4.vortex 100 vortex-file-compressed 28.42 MB 0 B 28.42 MB -100.0%
part_5.vortex 100 vortex-file-compressed 28.38 MB 0 B 28.38 MB -100.0%
part_6.vortex 100 vortex-file-compressed 28.44 MB 0 B 28.44 MB -100.0%
part_7.vortex 100 vortex-file-compressed 28.41 MB 0 B 28.41 MB -100.0%
part_8.vortex 100 vortex-file-compressed 28.43 MB 0 B 28.43 MB -100.0%
part_9.vortex 100 vortex-file-compressed 28.41 MB 0 B 28.41 MB -100.0%
partsupp_0.vortex 100 vortex-file-compressed 191.37 MB 0 B 191.37 MB -100.0%
partsupp_1.vortex 100 vortex-file-compressed 191.69 MB 0 B 191.69 MB -100.0%
partsupp_10.vortex 100 vortex-file-compressed 191.59 MB 0 B 191.59 MB -100.0%
partsupp_11.vortex 100 vortex-file-compressed 191.43 MB 0 B 191.43 MB -100.0%
partsupp_12.vortex 100 vortex-file-compressed 191.50 MB 0 B 191.50 MB -100.0%
partsupp_13.vortex 100 vortex-file-compressed 191.35 MB 0 B 191.35 MB -100.0%
partsupp_14.vortex 100 vortex-file-compressed 191.62 MB 0 B 191.62 MB -100.0%
partsupp_15.vortex 100 vortex-file-compressed 191.52 MB 0 B 191.52 MB -100.0%
partsupp_16.vortex 100 vortex-file-compressed 191.25 MB 0 B 191.25 MB -100.0%
partsupp_17.vortex 100 vortex-file-compressed 191.49 MB 0 B 191.49 MB -100.0%
partsupp_18.vortex 100 vortex-file-compressed 191.38 MB 0 B 191.38 MB -100.0%
partsupp_2.vortex 100 vortex-file-compressed 191.39 MB 0 B 191.39 MB -100.0%
partsupp_3.vortex 100 vortex-file-compressed 191.37 MB 0 B 191.37 MB -100.0%
partsupp_4.vortex 100 vortex-file-compressed 191.40 MB 0 B 191.40 MB -100.0%
partsupp_5.vortex 100 vortex-file-compressed 191.41 MB 0 B 191.41 MB -100.0%
partsupp_6.vortex 100 vortex-file-compressed 191.38 MB 0 B 191.38 MB -100.0%
partsupp_7.vortex 100 vortex-file-compressed 191.61 MB 0 B 191.61 MB -100.0%
partsupp_8.vortex 100 vortex-file-compressed 191.49 MB 0 B 191.49 MB -100.0%
partsupp_9.vortex 100 vortex-file-compressed 191.50 MB 0 B 191.50 MB -100.0%
region_0.vortex 100 vortex-file-compressed 6.16 KB 0 B 6.16 KB -100.0%
supplier_0.vortex 100 vortex-file-compressed 66.71 MB 0 B 66.71 MB -100.0%

Totals:

  • vortex-compact: 11.86 GB → 959.62 MB (-92.1%)
  • vortex-file-compressed: 49.77 GB → 1.97 GB (-96.0%)
Full attributed analysis
Query Config Raw Δ Control Δ Attributed α Noise floor Significant?
0 duckdb:vortex-compact +2.3% -4.7% +7.4% +10.0% ➖ noise
0 duckdb:vortex-file-compressed -4.4% -4.7% +0.3% +10.0% ➖ noise
1 duckdb:vortex-compact +2.9% -2.1% +5.1% +26.6% ➖ noise
1 duckdb:vortex-file-compressed -3.5% -2.1% -1.4% +220.6% ➖ noise
2 duckdb:vortex-compact +0.5% -2.7% +3.3% +10.0% ➖ noise
2 duckdb:vortex-file-compressed -6.1% -2.7% -3.4% +10.0% ➖ noise
3 duckdb:vortex-compact +1.3% -3.8% +5.4% +10.0% ➖ noise
3 duckdb:vortex-file-compressed -2.9% -3.8% +1.0% +10.0% ➖ noise
4 duckdb:vortex-compact +0.2% -0.7% +1.0% +10.0% ➖ noise
4 duckdb:vortex-file-compressed -0.5% -0.7% +0.3% +10.0% ➖ noise
5 duckdb:vortex-compact -3.1% -1.5% -1.7% +10.0% ➖ noise
5 duckdb:vortex-file-compressed +3.3% -1.5% +4.8% +10.0% ➖ noise
6 duckdb:vortex-compact -0.4% -1.7% +1.3% +10.0% ➖ noise
6 duckdb:vortex-file-compressed -0.5% -1.7% +1.1% +10.0% ➖ noise
7 duckdb:vortex-compact -2.8% -0.4% -2.4% +10.0% ➖ noise
7 duckdb:vortex-file-compressed -6.3% -0.4% -5.9% +10.0% ➖ noise
8 duckdb:vortex-compact -1.3% -2.2% +1.0% +10.0% ➖ noise
8 duckdb:vortex-file-compressed -1.2% -2.2% +1.0% +10.0% ➖ noise
9 duckdb:vortex-compact -4.0% -3.0% -1.0% +10.0% ➖ noise
9 duckdb:vortex-file-compressed -0.7% -3.0% +2.4% +10.0% ➖ noise
10 duckdb:vortex-compact -1.7% -0.8% -0.9% +10.0% ➖ noise
10 duckdb:vortex-file-compressed -0.9% -0.8% -0.1% +10.0% ➖ noise

@github-actions
Copy link
Copy Markdown
Contributor

Benchmarks: TPC-H SF=10 on NVME

Verdict: No clear signal (low confidence)
Attributed Vortex impact: -4.2%
Engines: DataFusion No clear signal (-3.0%, low confidence) · DuckDB No clear signal (-5.4%, low confidence)
Vortex (geomean): 0.842x ✅
Parquet (geomean): 0.887x ✅
Shifts: Parquet (control) -11.3% · Median polish -15.3%

How to read Verdict and Engines
  • Verdict: Overall PR-level signal after subtracting baseline drift estimated from Parquet control rows. It can be Likely improvement, Likely regression, or No clear signal.
  • Engines: Per-engine attribution. DataFusion is compared against DataFusion/Parquet controls; DuckDB is compared against DuckDB/Parquet controls. This answers whether each engine improved or regressed independently.
  • Confidence: Based on directional consistency, share of rows above the noise floor, and control-run noise.

datafusion / vortex-file-compressed (0.816x ✅, 22↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/datafusion:vortex-file-compressed 🚀 408116981 467597435 0.87
tpch_q02/datafusion:vortex-file-compressed 🚀 107906739 137688718 0.78
tpch_q03/datafusion:vortex-file-compressed 🚀 213594437 261356783 0.82
tpch_q04/datafusion:vortex-file-compressed 🚀 117031784 141287176 0.83
tpch_q05/datafusion:vortex-file-compressed 🚀 381418076 474073797 0.80
tpch_q06/datafusion:vortex-file-compressed 🚀 37727619 44364498 0.85
tpch_q07/datafusion:vortex-file-compressed 🚀 509222344 637022206 0.80
tpch_q08/datafusion:vortex-file-compressed 🚀 371078776 463603736 0.80
tpch_q09/datafusion:vortex-file-compressed 🚀 651222283 820025746 0.79
tpch_q10/datafusion:vortex-file-compressed 🚀 229730109 282195335 0.81
tpch_q11/datafusion:vortex-file-compressed 🚀 84262946 101569680 0.83
tpch_q12/datafusion:vortex-file-compressed 🚀 119195561 145273377 0.82
tpch_q13/datafusion:vortex-file-compressed 🚀 216276032 261488505 0.83
tpch_q14/datafusion:vortex-file-compressed 🚀 52171122 64884971 0.80
tpch_q15/datafusion:vortex-file-compressed 🚀 100231253 122952130 0.82
tpch_q16/datafusion:vortex-file-compressed 🚀 77334763 93269537 0.83
tpch_q17/datafusion:vortex-file-compressed 🚀 641885990 821812876 0.78
tpch_q18/datafusion:vortex-file-compressed 🚀 875664014 1099883853 0.80
tpch_q19/datafusion:vortex-file-compressed 🚀 74556675 86159698 0.87
tpch_q20/datafusion:vortex-file-compressed 🚀 162705682 207029859 0.79
tpch_q21/datafusion:vortex-file-compressed 🚀 677567521 848499541 0.80
tpch_q22/datafusion:vortex-file-compressed 🚀 65629711 78372818 0.84
datafusion / vortex-compact (0.825x ✅, 22↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/datafusion:vortex-compact 🚀 449656628 510791775 0.88
tpch_q02/datafusion:vortex-compact 🚀 112298319 138846984 0.81
tpch_q03/datafusion:vortex-compact 🚀 218417856 268081868 0.81
tpch_q04/datafusion:vortex-compact 🚀 119784689 144808965 0.83
tpch_q05/datafusion:vortex-compact 🚀 386211765 476193060 0.81
tpch_q06/datafusion:vortex-compact 🚀 60220715 72241981 0.83
tpch_q07/datafusion:vortex-compact 🚀 530928072 646949837 0.82
tpch_q08/datafusion:vortex-compact 🚀 371520022 469692429 0.79
tpch_q09/datafusion:vortex-compact 🚀 655945560 820006828 0.80
tpch_q10/datafusion:vortex-compact 🚀 249759903 305030272 0.82
tpch_q11/datafusion:vortex-compact 🚀 86999216 107232751 0.81
tpch_q12/datafusion:vortex-compact 🚀 161442391 192047643 0.84
tpch_q13/datafusion:vortex-compact 🚀 269002982 316225456 0.85
tpch_q14/datafusion:vortex-compact 🚀 72600295 85642230 0.85
tpch_q15/datafusion:vortex-compact 🚀 156152886 185967091 0.84
tpch_q16/datafusion:vortex-compact 🚀 82136632 96212025 0.85
tpch_q17/datafusion:vortex-compact 🚀 651064074 817672862 0.80
tpch_q18/datafusion:vortex-compact 🚀 876524150 1093262645 0.80
tpch_q19/datafusion:vortex-compact 🚀 124018269 142754453 0.87
tpch_q20/datafusion:vortex-compact 🚀 187993966 226556914 0.83
tpch_q21/datafusion:vortex-compact 🚀 669563073 865413459 0.77
tpch_q22/datafusion:vortex-compact 🚀 73613115 86964088 0.85
datafusion / parquet (0.849x ✅, 20↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/datafusion:parquet 🚀 477089035 538676638 0.89
tpch_q02/datafusion:parquet 🚀 174551287 201069689 0.87
tpch_q03/datafusion:parquet 🚀 285949833 345338597 0.83
tpch_q04/datafusion:parquet 🚀 129360737 154877230 0.84
tpch_q05/datafusion:parquet 🚀 435485106 544511731 0.80
tpch_q06/datafusion:parquet 128451326 139511242 0.92
tpch_q07/datafusion:parquet 🚀 612119930 752259619 0.81
tpch_q08/datafusion:parquet 🚀 470585089 571798280 0.82
tpch_q09/datafusion:parquet 🚀 758996505 924529206 0.82
tpch_q10/datafusion:parquet 🚀 507156221 588718366 0.86
tpch_q11/datafusion:parquet 🚀 118115831 140345488 0.84
tpch_q12/datafusion:parquet 🚀 198090714 224684884 0.88
tpch_q13/datafusion:parquet 🚀 337362054 376428761 0.90
tpch_q14/datafusion:parquet 🚀 158691597 180618135 0.88
tpch_q15/datafusion:parquet 🚀 241800999 302960518 0.80
tpch_q16/datafusion:parquet 🚀 123107477 137283261 0.90
tpch_q17/datafusion:parquet 🚀 695014735 859035095 0.81
tpch_q18/datafusion:parquet 🚀 905603304 1127389904 0.80
tpch_q19/datafusion:parquet 🚀 262208343 297180291 0.88
tpch_q20/datafusion:parquet 🚀 297149586 359279178 0.83
tpch_q21/datafusion:parquet 🚀 706774102 884660065 0.80
tpch_q22/datafusion:parquet 218269314 236318467 0.92
datafusion / arrow (0.830x ✅, 22↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/datafusion:arrow 🚀 597943368 707021640 0.85
tpch_q02/datafusion:arrow 🚀 163749378 191829426 0.85
tpch_q03/datafusion:arrow 🚀 457752948 564049728 0.81
tpch_q04/datafusion:arrow 🚀 332636498 409374196 0.81
tpch_q05/datafusion:arrow 🚀 919781973 1115928122 0.82
tpch_q06/datafusion:arrow 🚀 272431816 338121856 0.81
tpch_q07/datafusion:arrow 🚀 1149998509 1418625150 0.81
tpch_q08/datafusion:arrow 🚀 1104762658 1349636948 0.82
tpch_q09/datafusion:arrow 🚀 1375828280 1582787055 0.87
tpch_q10/datafusion:arrow 🚀 587436149 725817391 0.81
tpch_q11/datafusion:arrow 🚀 138015925 164282311 0.84
tpch_q12/datafusion:arrow 🚀 700798569 904253467 0.78
tpch_q13/datafusion:arrow 🚀 501304896 577209005 0.87
tpch_q14/datafusion:arrow 🚀 317804465 379513130 0.84
tpch_q15/datafusion:arrow 🚀 679545986 851676507 0.80
tpch_q16/datafusion:arrow 🚀 105954180 123854208 0.86
tpch_q17/datafusion:arrow 🚀 1335340156 1626686803 0.82
tpch_q18/datafusion:arrow 🚀 1899054114 2363681917 0.80
tpch_q19/datafusion:arrow 🚀 492717335 576766574 0.85
tpch_q20/datafusion:arrow 🚀 494751194 603736613 0.82
tpch_q21/datafusion:arrow 🚀 3004113869 3369818605 0.89
tpch_q22/datafusion:arrow 🚀 132047371 157460278 0.84
duckdb / vortex-file-compressed (0.861x ✅, 18↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/duckdb:vortex-file-compressed 170891827 186117753 0.92
tpch_q02/duckdb:vortex-file-compressed 52472741 55442508 0.95
tpch_q03/duckdb:vortex-file-compressed 🚀 122081506 142591219 0.86
tpch_q04/duckdb:vortex-file-compressed 🚀 157943891 184005379 0.86
tpch_q05/duckdb:vortex-file-compressed 🚀 137256006 162480607 0.84
tpch_q06/duckdb:vortex-file-compressed 🚀 33711173 42216636 0.80
tpch_q07/duckdb:vortex-file-compressed 🚀 132722588 160948707 0.82
tpch_q08/duckdb:vortex-file-compressed 🚀 167853024 200402403 0.84
tpch_q09/duckdb:vortex-file-compressed 🚀 391326553 452616042 0.86
tpch_q10/duckdb:vortex-file-compressed 🚀 191385479 224662745 0.85
tpch_q11/duckdb:vortex-file-compressed 🚀 31993708 36684890 0.87
tpch_q12/duckdb:vortex-file-compressed 🚀 99981633 121100879 0.83
tpch_q13/duckdb:vortex-file-compressed 🚀 268148705 315588173 0.85
tpch_q14/duckdb:vortex-file-compressed 🚀 54059760 61937988 0.87
tpch_q15/duckdb:vortex-file-compressed 🚀 89525694 107906235 0.83
tpch_q16/duckdb:vortex-file-compressed 🚀 79310429 90831864 0.87
tpch_q17/duckdb:vortex-file-compressed 🚀 92397285 111060952 0.83
tpch_q18/duckdb:vortex-file-compressed 🚀 284997717 329999482 0.86
tpch_q19/duckdb:vortex-file-compressed 79240125 86643586 0.91
tpch_q20/duckdb:vortex-file-compressed 🚀 141055113 165227707 0.85
tpch_q21/duckdb:vortex-file-compressed 🚀 495172255 578170519 0.86
tpch_q22/duckdb:vortex-file-compressed 63962873 70634302 0.91
duckdb / vortex-compact (0.866x ✅, 21↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/duckdb:vortex-compact 🚀 230946709 259642890 0.89
tpch_q02/duckdb:vortex-compact 🚀 56699588 63686130 0.89
tpch_q03/duckdb:vortex-compact 🚀 136391014 164092820 0.83
tpch_q04/duckdb:vortex-compact 🚀 172056268 195820327 0.88
tpch_q05/duckdb:vortex-compact 🚀 165254369 190327791 0.87
tpch_q06/duckdb:vortex-compact 🚀 54280885 67191432 0.81
tpch_q07/duckdb:vortex-compact 🚀 172229380 199682803 0.86
tpch_q08/duckdb:vortex-compact 🚀 187440935 221215851 0.85
tpch_q09/duckdb:vortex-compact 🚀 428041339 505811395 0.85
tpch_q10/duckdb:vortex-compact 🚀 218636456 254880455 0.86
tpch_q11/duckdb:vortex-compact 🚀 38114908 43479582 0.88
tpch_q12/duckdb:vortex-compact 🚀 161882302 190011138 0.85
tpch_q13/duckdb:vortex-compact 🚀 325669504 373146026 0.87
tpch_q14/duckdb:vortex-compact 🚀 71067196 81052178 0.88
tpch_q15/duckdb:vortex-compact 🚀 113634840 131316358 0.87
tpch_q16/duckdb:vortex-compact 82422746 90072039 0.92
tpch_q17/duckdb:vortex-compact 🚀 107393589 123186878 0.87
tpch_q18/duckdb:vortex-compact 🚀 288289985 332598270 0.87
tpch_q19/duckdb:vortex-compact 🚀 96232878 107144821 0.90
tpch_q20/duckdb:vortex-compact 🚀 176545169 203984883 0.87
tpch_q21/duckdb:vortex-compact 🚀 516518690 604658569 0.85
tpch_q22/duckdb:vortex-compact 🚀 71022549 81357954 0.87
duckdb / parquet (0.928x ➖, 4↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/duckdb:parquet 267837557 279085064 0.96
tpch_q02/duckdb:parquet 103469021 106250184 0.97
tpch_q03/duckdb:parquet 210013286 226236866 0.93
tpch_q04/duckdb:parquet 🚀 135856996 151174253 0.90
tpch_q05/duckdb:parquet 223734215 241370857 0.93
tpch_q06/duckdb:parquet 73935321 78907869 0.94
tpch_q07/duckdb:parquet 187194438 203237418 0.92
tpch_q08/duckdb:parquet 258233135 285809944 0.90
tpch_q09/duckdb:parquet 🚀 476461265 538670965 0.88
tpch_q10/duckdb:parquet 619062442 668312734 0.93
tpch_q11/duckdb:parquet 65624116 68337827 0.96
tpch_q12/duckdb:parquet 132877562 139633433 0.95
tpch_q13/duckdb:parquet 444515508 477511353 0.93
tpch_q14/duckdb:parquet 179756621 191495231 0.94
tpch_q15/duckdb:parquet 105179836 113971000 0.92
tpch_q16/duckdb:parquet 160122929 176184135 0.91
tpch_q17/duckdb:parquet 180363891 196066399 0.92
tpch_q18/duckdb:parquet 🚀 360371957 401974112 0.90
tpch_q19/duckdb:parquet 287480858 301314415 0.95
tpch_q20/duckdb:parquet 229603049 243513203 0.94
tpch_q21/duckdb:parquet 🚀 547727743 628284688 0.87
tpch_q22/duckdb:parquet 293481863 304784177 0.96
duckdb / duckdb (0.906x ➖, 9↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/duckdb:duckdb 120536981 127750762 0.94
tpch_q02/duckdb:duckdb 51432726 54105946 0.95
tpch_q03/duckdb:duckdb 103811339 114873219 0.90
tpch_q04/duckdb:duckdb 🚀 139434173 160105218 0.87
tpch_q05/duckdb:duckdb 🚀 118825311 137075295 0.87
tpch_q06/duckdb:duckdb 44667976 48941416 0.91
tpch_q07/duckdb:duckdb 🚀 91201809 101366700 0.90
tpch_q08/duckdb:duckdb 118450676 131592185 0.90
tpch_q09/duckdb:duckdb 🚀 281190246 317449212 0.89
tpch_q10/duckdb:duckdb 🚀 213614008 238885809 0.89
tpch_q11/duckdb:duckdb 18944726 20526690 0.92
tpch_q12/duckdb:duckdb 90235809 99849287 0.90
tpch_q13/duckdb:duckdb 🚀 230629721 263448555 0.88
tpch_q14/duckdb:duckdb 🚀 78191498 87205869 0.90
tpch_q15/duckdb:duckdb 81579059 89280404 0.91
tpch_q16/duckdb:duckdb 75105921 83246911 0.90
tpch_q17/duckdb:duckdb 87960659 94932286 0.93
tpch_q18/duckdb:duckdb 🚀 234739093 263976913 0.89
tpch_q19/duckdb:duckdb 124112853 136944397 0.91
tpch_q20/duckdb:duckdb 117771711 127418879 0.92
tpch_q21/duckdb:duckdb 🚀 298845124 332608877 0.90
tpch_q22/duckdb:duckdb 71325341 74143363 0.96

File Size Changes (496 files changed, -92.4% overall, 0↑ 496↓)
File Scale Format Base HEAD Change %
addressview.vortex 1.0 vortex-compact 24.53 MB 0 B 24.53 MB -100.0%
categoryview.vortex 1.0 vortex-compact 19.86 KB 0 B 19.86 KB -100.0%
creditcardview.vortex 1.0 vortex-compact 32.23 MB 0 B 32.23 MB -100.0%
customerview.vortex 1.0 vortex-compact 10.60 MB 0 B 10.60 MB -100.0%
duckdb.db 1.0 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
orderitemnovelty_update.vortex 1.0 vortex-compact 13.14 KB 0 B 13.14 KB -100.0%
orderitemview.vortex 1.0 vortex-compact 156.30 MB 0 B 156.30 MB -100.0%
orderview.vortex 1.0 vortex-compact 32.16 MB 0 B 32.16 MB -100.0%
productview.vortex 1.0 vortex-compact 18.77 KB 0 B 18.77 KB -100.0%
taxrecordview.vortex 1.0 vortex-compact 17.34 MB 0 B 17.34 MB -100.0%
addressview.vortex 1.0 vortex-file-compressed 34.71 MB 0 B 34.71 MB -100.0%
categoryview.vortex 1.0 vortex-file-compressed 20.74 KB 0 B 20.74 KB -100.0%
creditcardview.vortex 1.0 vortex-file-compressed 66.75 MB 0 B 66.75 MB -100.0%
customerview.vortex 1.0 vortex-file-compressed 19.91 MB 0 B 19.91 MB -100.0%
duckdb.db 1.0 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
orderitemnovelty_update.vortex 1.0 vortex-file-compressed 13.14 KB 0 B 13.14 KB -100.0%
orderitemview.vortex 1.0 vortex-file-compressed 297.21 MB 0 B 297.21 MB -100.0%
orderview.vortex 1.0 vortex-file-compressed 88.79 MB 0 B 88.79 MB -100.0%
productview.vortex 1.0 vortex-file-compressed 20.44 KB 0 B 20.44 KB -100.0%
taxrecordview.vortex 1.0 vortex-file-compressed 22.01 MB 0 B 22.01 MB -100.0%
duckdb.db 1.0 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
hits_0.vortex 1.0 vortex-compact 58.66 MB 0 B 58.66 MB -100.0%
hits_1.vortex 1.0 vortex-compact 90.34 MB 0 B 90.34 MB -100.0%
hits_10.vortex 1.0 vortex-compact 48.86 MB 0 B 48.86 MB -100.0%
hits_11.vortex 1.0 vortex-compact 54.35 MB 0 B 54.35 MB -100.0%
hits_12.vortex 1.0 vortex-compact 69.27 MB 0 B 69.27 MB -100.0%
hits_13.vortex 1.0 vortex-compact 67.96 MB 0 B 67.96 MB -100.0%
hits_14.vortex 1.0 vortex-compact 73.75 MB 0 B 73.75 MB -100.0%
hits_15.vortex 1.0 vortex-compact 48.14 MB 0 B 48.14 MB -100.0%
hits_16.vortex 1.0 vortex-compact 48.30 MB 0 B 48.30 MB -100.0%
hits_17.vortex 1.0 vortex-compact 58.32 MB 0 B 58.32 MB -100.0%
hits_18.vortex 1.0 vortex-compact 64.28 MB 0 B 64.28 MB -100.0%
hits_19.vortex 1.0 vortex-compact 44.88 MB 0 B 44.88 MB -100.0%
hits_2.vortex 1.0 vortex-compact 129.36 MB 0 B 129.36 MB -100.0%
hits_20.vortex 1.0 vortex-compact 38.14 MB 0 B 38.14 MB -100.0%
hits_21.vortex 1.0 vortex-compact 51.60 MB 0 B 51.60 MB -100.0%
hits_22.vortex 1.0 vortex-compact 44.74 MB 0 B 44.74 MB -100.0%
hits_23.vortex 1.0 vortex-compact 44.17 MB 0 B 44.17 MB -100.0%
hits_24.vortex 1.0 vortex-compact 43.63 MB 0 B 43.63 MB -100.0%
hits_25.vortex 1.0 vortex-compact 73.14 MB 0 B 73.14 MB -100.0%
hits_26.vortex 1.0 vortex-compact 70.89 MB 0 B 70.89 MB -100.0%
hits_27.vortex 1.0 vortex-compact 69.88 MB 0 B 69.88 MB -100.0%
hits_28.vortex 1.0 vortex-compact 70.27 MB 0 B 70.27 MB -100.0%
hits_29.vortex 1.0 vortex-compact 36.61 MB 0 B 36.61 MB -100.0%
hits_3.vortex 1.0 vortex-compact 94.23 MB 0 B 94.23 MB -100.0%
hits_30.vortex 1.0 vortex-compact 58.69 MB 0 B 58.69 MB -100.0%
hits_31.vortex 1.0 vortex-compact 55.56 MB 0 B 55.56 MB -100.0%
hits_32.vortex 1.0 vortex-compact 44.13 MB 0 B 44.13 MB -100.0%
hits_33.vortex 1.0 vortex-compact 35.95 MB 0 B 35.95 MB -100.0%
hits_34.vortex 1.0 vortex-compact 58.26 MB 0 B 58.26 MB -100.0%
hits_35.vortex 1.0 vortex-compact 75.11 MB 0 B 75.11 MB -100.0%
hits_36.vortex 1.0 vortex-compact 48.99 MB 0 B 48.99 MB -100.0%
hits_37.vortex 1.0 vortex-compact 53.83 MB 0 B 53.83 MB -100.0%
hits_38.vortex 1.0 vortex-compact 63.10 MB 0 B 63.10 MB -100.0%
hits_39.vortex 1.0 vortex-compact 49.82 MB 0 B 49.82 MB -100.0%
hits_4.vortex 1.0 vortex-compact 71.81 MB 0 B 71.81 MB -100.0%
hits_40.vortex 1.0 vortex-compact 75.92 MB 0 B 75.92 MB -100.0%
hits_41.vortex 1.0 vortex-compact 165.78 MB 0 B 165.78 MB -100.0%
hits_42.vortex 1.0 vortex-compact 164.22 MB 0 B 164.22 MB -100.0%
hits_43.vortex 1.0 vortex-compact 168.91 MB 0 B 168.91 MB -100.0%
hits_44.vortex 1.0 vortex-compact 132.46 MB 0 B 132.46 MB -100.0%
hits_45.vortex 1.0 vortex-compact 76.07 MB 0 B 76.07 MB -100.0%
hits_46.vortex 1.0 vortex-compact 41.92 MB 0 B 41.92 MB -100.0%
hits_47.vortex 1.0 vortex-compact 18.25 MB 0 B 18.25 MB -100.0%
hits_48.vortex 1.0 vortex-compact 17.32 MB 0 B 17.32 MB -100.0%
hits_49.vortex 1.0 vortex-compact 50.53 MB 0 B 50.53 MB -100.0%
hits_5.vortex 1.0 vortex-compact 62.90 MB 0 B 62.90 MB -100.0%
hits_50.vortex 1.0 vortex-compact 113.12 MB 0 B 113.12 MB -100.0%
hits_51.vortex 1.0 vortex-compact 167.81 MB 0 B 167.81 MB -100.0%
hits_52.vortex 1.0 vortex-compact 63.73 MB 0 B 63.73 MB -100.0%
hits_53.vortex 1.0 vortex-compact 59.09 MB 0 B 59.09 MB -100.0%
hits_54.vortex 1.0 vortex-compact 117.66 MB 0 B 117.66 MB -100.0%
hits_55.vortex 1.0 vortex-compact 93.77 MB 0 B 93.77 MB -100.0%
hits_56.vortex 1.0 vortex-compact 77.87 MB 0 B 77.87 MB -100.0%
hits_57.vortex 1.0 vortex-compact 83.54 MB 0 B 83.54 MB -100.0%
hits_58.vortex 1.0 vortex-compact 60.41 MB 0 B 60.41 MB -100.0%
hits_59.vortex 1.0 vortex-compact 66.30 MB 0 B 66.30 MB -100.0%
hits_6.vortex 1.0 vortex-compact 63.16 MB 0 B 63.16 MB -100.0%
hits_60.vortex 1.0 vortex-compact 64.33 MB 0 B 64.33 MB -100.0%
hits_61.vortex 1.0 vortex-compact 57.66 MB 0 B 57.66 MB -100.0%
hits_62.vortex 1.0 vortex-compact 74.26 MB 0 B 74.26 MB -100.0%
hits_63.vortex 1.0 vortex-compact 46.10 MB 0 B 46.10 MB -100.0%
hits_64.vortex 1.0 vortex-compact 53.91 MB 0 B 53.91 MB -100.0%
hits_65.vortex 1.0 vortex-compact 129.95 MB 0 B 129.95 MB -100.0%
hits_66.vortex 1.0 vortex-compact 53.49 MB 0 B 53.49 MB -100.0%
hits_67.vortex 1.0 vortex-compact 114.05 MB 0 B 114.05 MB -100.0%
hits_68.vortex 1.0 vortex-compact 75.99 MB 0 B 75.99 MB -100.0%
hits_69.vortex 1.0 vortex-compact 81.02 MB 0 B 81.02 MB -100.0%
hits_7.vortex 1.0 vortex-compact 63.80 MB 0 B 63.80 MB -100.0%
hits_70.vortex 1.0 vortex-compact 61.29 MB 0 B 61.29 MB -100.0%
hits_71.vortex 1.0 vortex-compact 69.29 MB 0 B 69.29 MB -100.0%
hits_72.vortex 1.0 vortex-compact 51.79 MB 0 B 51.79 MB -100.0%
hits_73.vortex 1.0 vortex-compact 70.04 MB 0 B 70.04 MB -100.0%
hits_74.vortex 1.0 vortex-compact 71.62 MB 0 B 71.62 MB -100.0%
hits_75.vortex 1.0 vortex-compact 43.63 MB 0 B 43.63 MB -100.0%
hits_76.vortex 1.0 vortex-compact 76.44 MB 0 B 76.44 MB -100.0%
hits_77.vortex 1.0 vortex-compact 118.11 MB 0 B 118.11 MB -100.0%
hits_78.vortex 1.0 vortex-compact 97.87 MB 0 B 97.87 MB -100.0%
hits_79.vortex 1.0 vortex-compact 85.70 MB 0 B 85.70 MB -100.0%
hits_8.vortex 1.0 vortex-compact 62.89 MB 0 B 62.89 MB -100.0%
hits_80.vortex 1.0 vortex-compact 68.07 MB 0 B 68.07 MB -100.0%
hits_81.vortex 1.0 vortex-compact 65.45 MB 0 B 65.45 MB -100.0%
hits_82.vortex 1.0 vortex-compact 66.89 MB 0 B 66.89 MB -100.0%
hits_83.vortex 1.0 vortex-compact 52.57 MB 0 B 52.57 MB -100.0%
hits_84.vortex 1.0 vortex-compact 73.14 MB 0 B 73.14 MB -100.0%
hits_85.vortex 1.0 vortex-compact 52.73 MB 0 B 52.73 MB -100.0%
hits_86.vortex 1.0 vortex-compact 48.25 MB 0 B 48.25 MB -100.0%
hits_87.vortex 1.0 vortex-compact 119.04 MB 0 B 119.04 MB -100.0%
hits_88.vortex 1.0 vortex-compact 73.31 MB 0 B 73.31 MB -100.0%
hits_89.vortex 1.0 vortex-compact 112.82 MB 0 B 112.82 MB -100.0%
hits_9.vortex 1.0 vortex-compact 65.67 MB 0 B 65.67 MB -100.0%
hits_90.vortex 1.0 vortex-compact 81.86 MB 0 B 81.86 MB -100.0%
hits_91.vortex 1.0 vortex-compact 60.94 MB 0 B 60.94 MB -100.0%
hits_92.vortex 1.0 vortex-compact 94.27 MB 0 B 94.27 MB -100.0%
hits_93.vortex 1.0 vortex-compact 58.90 MB 0 B 58.90 MB -100.0%
hits_94.vortex 1.0 vortex-compact 90.63 MB 0 B 90.63 MB -100.0%
hits_95.vortex 1.0 vortex-compact 57.75 MB 0 B 57.75 MB -100.0%
hits_96.vortex 1.0 vortex-compact 91.08 MB 0 B 91.08 MB -100.0%
hits_97.vortex 1.0 vortex-compact 69.16 MB 0 B 69.16 MB -100.0%
hits_98.vortex 1.0 vortex-compact 72.77 MB 0 B 72.77 MB -100.0%
hits_99.vortex 1.0 vortex-compact 77.31 MB 0 B 77.31 MB -100.0%
duckdb.db 1.0 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
hits_0.vortex 1.0 vortex-file-compressed 112.17 MB 0 B 112.17 MB -100.0%
hits_1.vortex 1.0 vortex-file-compressed 181.16 MB 0 B 181.16 MB -100.0%
hits_10.vortex 1.0 vortex-file-compressed 81.76 MB 0 B 81.76 MB -100.0%
hits_11.vortex 1.0 vortex-file-compressed 96.07 MB 0 B 96.07 MB -100.0%
hits_12.vortex 1.0 vortex-file-compressed 125.34 MB 0 B 125.34 MB -100.0%
hits_13.vortex 1.0 vortex-file-compressed 123.20 MB 0 B 123.20 MB -100.0%
hits_14.vortex 1.0 vortex-file-compressed 135.14 MB 0 B 135.14 MB -100.0%
hits_15.vortex 1.0 vortex-file-compressed 97.01 MB 0 B 97.01 MB -100.0%
hits_16.vortex 1.0 vortex-file-compressed 87.59 MB 0 B 87.59 MB -100.0%
hits_17.vortex 1.0 vortex-file-compressed 103.64 MB 0 B 103.64 MB -100.0%
hits_18.vortex 1.0 vortex-file-compressed 126.06 MB 0 B 126.06 MB -100.0%
hits_19.vortex 1.0 vortex-file-compressed 82.10 MB 0 B 82.10 MB -100.0%
hits_2.vortex 1.0 vortex-file-compressed 241.46 MB 0 B 241.46 MB -100.0%
hits_20.vortex 1.0 vortex-file-compressed 67.53 MB 0 B 67.53 MB -100.0%
hits_21.vortex 1.0 vortex-file-compressed 101.28 MB 0 B 101.28 MB -100.0%
hits_22.vortex 1.0 vortex-file-compressed 81.17 MB 0 B 81.17 MB -100.0%
hits_23.vortex 1.0 vortex-file-compressed 80.37 MB 0 B 80.37 MB -100.0%
hits_24.vortex 1.0 vortex-file-compressed 79.71 MB 0 B 79.71 MB -100.0%
hits_25.vortex 1.0 vortex-file-compressed 137.01 MB 0 B 137.01 MB -100.0%
hits_26.vortex 1.0 vortex-file-compressed 144.05 MB 0 B 144.05 MB -100.0%
hits_27.vortex 1.0 vortex-file-compressed 174.61 MB 0 B 174.61 MB -100.0%
hits_28.vortex 1.0 vortex-file-compressed 167.55 MB 0 B 167.55 MB -100.0%
hits_29.vortex 1.0 vortex-file-compressed 65.47 MB 0 B 65.47 MB -100.0%
hits_3.vortex 1.0 vortex-file-compressed 193.11 MB 0 B 193.11 MB -100.0%
hits_30.vortex 1.0 vortex-file-compressed 104.00 MB 0 B 104.00 MB -100.0%
hits_31.vortex 1.0 vortex-file-compressed 104.39 MB 0 B 104.39 MB -100.0%
hits_32.vortex 1.0 vortex-file-compressed 77.12 MB 0 B 77.12 MB -100.0%
hits_33.vortex 1.0 vortex-file-compressed 62.97 MB 0 B 62.97 MB -100.0%
hits_34.vortex 1.0 vortex-file-compressed 111.68 MB 0 B 111.68 MB -100.0%
hits_35.vortex 1.0 vortex-file-compressed 138.81 MB 0 B 138.81 MB -100.0%
hits_36.vortex 1.0 vortex-file-compressed 80.27 MB 0 B 80.27 MB -100.0%
hits_37.vortex 1.0 vortex-file-compressed 97.54 MB 0 B 97.54 MB -100.0%
hits_38.vortex 1.0 vortex-file-compressed 118.43 MB 0 B 118.43 MB -100.0%
hits_39.vortex 1.0 vortex-file-compressed 94.06 MB 0 B 94.06 MB -100.0%
hits_4.vortex 1.0 vortex-file-compressed 138.86 MB 0 B 138.86 MB -100.0%
hits_40.vortex 1.0 vortex-file-compressed 142.99 MB 0 B 142.99 MB -100.0%
hits_41.vortex 1.0 vortex-file-compressed 300.49 MB 0 B 300.49 MB -100.0%
hits_42.vortex 1.0 vortex-file-compressed 298.79 MB 0 B 298.79 MB -100.0%
hits_43.vortex 1.0 vortex-file-compressed 305.71 MB 0 B 305.71 MB -100.0%
hits_44.vortex 1.0 vortex-file-compressed 243.64 MB 0 B 243.64 MB -100.0%
hits_45.vortex 1.0 vortex-file-compressed 145.48 MB 0 B 145.48 MB -100.0%
hits_46.vortex 1.0 vortex-file-compressed 80.32 MB 0 B 80.32 MB -100.0%
hits_47.vortex 1.0 vortex-file-compressed 41.86 MB 0 B 41.86 MB -100.0%
hits_48.vortex 1.0 vortex-file-compressed 28.53 MB 0 B 28.53 MB -100.0%
hits_49.vortex 1.0 vortex-file-compressed 88.67 MB 0 B 88.67 MB -100.0%
hits_5.vortex 1.0 vortex-file-compressed 122.64 MB 0 B 122.64 MB -100.0%
hits_50.vortex 1.0 vortex-file-compressed 255.24 MB 0 B 255.24 MB -100.0%
hits_51.vortex 1.0 vortex-file-compressed 428.84 MB 0 B 428.84 MB -100.0%
hits_52.vortex 1.0 vortex-file-compressed 120.78 MB 0 B 120.78 MB -100.0%
hits_53.vortex 1.0 vortex-file-compressed 98.26 MB 0 B 98.26 MB -100.0%
hits_54.vortex 1.0 vortex-file-compressed 361.83 MB 0 B 361.83 MB -100.0%
hits_55.vortex 1.0 vortex-file-compressed 251.56 MB 0 B 251.56 MB -100.0%
hits_56.vortex 1.0 vortex-file-compressed 163.76 MB 0 B 163.76 MB -100.0%
hits_57.vortex 1.0 vortex-file-compressed 158.37 MB 0 B 158.37 MB -100.0%
hits_58.vortex 1.0 vortex-file-compressed 113.78 MB 0 B 113.78 MB -100.0%
hits_59.vortex 1.0 vortex-file-compressed 121.84 MB 0 B 121.84 MB -100.0%
hits_6.vortex 1.0 vortex-file-compressed 122.86 MB 0 B 122.86 MB -100.0%
hits_60.vortex 1.0 vortex-file-compressed 121.19 MB 0 B 121.19 MB -100.0%
hits_61.vortex 1.0 vortex-file-compressed 114.43 MB 0 B 114.43 MB -100.0%
hits_62.vortex 1.0 vortex-file-compressed 148.36 MB 0 B 148.36 MB -100.0%
hits_63.vortex 1.0 vortex-file-compressed 80.62 MB 0 B 80.62 MB -100.0%
hits_64.vortex 1.0 vortex-file-compressed 95.27 MB 0 B 95.27 MB -100.0%
hits_65.vortex 1.0 vortex-file-compressed 238.05 MB 0 B 238.05 MB -100.0%
hits_66.vortex 1.0 vortex-file-compressed 105.34 MB 0 B 105.34 MB -100.0%
hits_67.vortex 1.0 vortex-file-compressed 265.94 MB 0 B 265.94 MB -100.0%
hits_68.vortex 1.0 vortex-file-compressed 172.16 MB 0 B 172.16 MB -100.0%
hits_69.vortex 1.0 vortex-file-compressed 147.61 MB 0 B 147.61 MB -100.0%
hits_7.vortex 1.0 vortex-file-compressed 123.82 MB 0 B 123.82 MB -100.0%
hits_70.vortex 1.0 vortex-file-compressed 115.14 MB 0 B 115.14 MB -100.0%
hits_71.vortex 1.0 vortex-file-compressed 126.41 MB 0 B 126.41 MB -100.0%
hits_72.vortex 1.0 vortex-file-compressed 96.27 MB 0 B 96.27 MB -100.0%
hits_73.vortex 1.0 vortex-file-compressed 131.83 MB 0 B 131.83 MB -100.0%
hits_74.vortex 1.0 vortex-file-compressed 152.12 MB 0 B 152.12 MB -100.0%
hits_75.vortex 1.0 vortex-file-compressed 74.18 MB 0 B 74.18 MB -100.0%
hits_76.vortex 1.0 vortex-file-compressed 140.05 MB 0 B 140.05 MB -100.0%
hits_77.vortex 1.0 vortex-file-compressed 218.96 MB 0 B 218.96 MB -100.0%
hits_78.vortex 1.0 vortex-file-compressed 238.59 MB 0 B 238.59 MB -100.0%
hits_79.vortex 1.0 vortex-file-compressed 204.16 MB 0 B 204.16 MB -100.0%
hits_8.vortex 1.0 vortex-file-compressed 122.86 MB 0 B 122.86 MB -100.0%
hits_80.vortex 1.0 vortex-file-compressed 124.24 MB 0 B 124.24 MB -100.0%
hits_81.vortex 1.0 vortex-file-compressed 126.55 MB 0 B 126.55 MB -100.0%
hits_82.vortex 1.0 vortex-file-compressed 122.77 MB 0 B 122.77 MB -100.0%
hits_83.vortex 1.0 vortex-file-compressed 103.72 MB 0 B 103.72 MB -100.0%
hits_84.vortex 1.0 vortex-file-compressed 145.05 MB 0 B 145.05 MB -100.0%
hits_85.vortex 1.0 vortex-file-compressed 106.37 MB 0 B 106.37 MB -100.0%
hits_86.vortex 1.0 vortex-file-compressed 81.40 MB 0 B 81.40 MB -100.0%
hits_87.vortex 1.0 vortex-file-compressed 221.68 MB 0 B 221.68 MB -100.0%
hits_88.vortex 1.0 vortex-file-compressed 137.34 MB 0 B 137.34 MB -100.0%
hits_89.vortex 1.0 vortex-file-compressed 266.01 MB 0 B 266.01 MB -100.0%
hits_9.vortex 1.0 vortex-file-compressed 124.22 MB 0 B 124.22 MB -100.0%
hits_90.vortex 1.0 vortex-file-compressed 204.12 MB 0 B 204.12 MB -100.0%
hits_91.vortex 1.0 vortex-file-compressed 116.23 MB 0 B 116.23 MB -100.0%
hits_92.vortex 1.0 vortex-file-compressed 196.47 MB 0 B 196.47 MB -100.0%
hits_93.vortex 1.0 vortex-file-compressed 107.66 MB 0 B 107.66 MB -100.0%
hits_94.vortex 1.0 vortex-file-compressed 185.12 MB 0 B 185.12 MB -100.0%
hits_95.vortex 1.0 vortex-file-compressed 114.33 MB 0 B 114.33 MB -100.0%
hits_96.vortex 1.0 vortex-file-compressed 180.76 MB 0 B 180.76 MB -100.0%
hits_97.vortex 1.0 vortex-file-compressed 130.96 MB 0 B 130.96 MB -100.0%
hits_98.vortex 1.0 vortex-file-compressed 150.55 MB 0 B 150.55 MB -100.0%
hits_99.vortex 1.0 vortex-file-compressed 158.88 MB 0 B 158.88 MB -100.0%
duckdb.db 1.0 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
sample.vortex 1.0 vortex-compact 1.23 GB 0 B 1.23 GB -100.0%
duckdb.db 1.0 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
sample.vortex 1.0 vortex-file-compressed 1.79 GB 0 B 1.79 GB -100.0%
stacktraces.vortex 1000000 vortex-file-compressed 689.41 MB 0 B 689.41 MB -100.0%
duckdb.db 100000 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
gnomad.genomes.v3.1.2.hgdp_tgp.chr21.vortex 100000 vortex-compact 959.35 MB 0 B 959.35 MB -100.0%
duckdb.db 100000 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
gnomad.genomes.v3.1.2.hgdp_tgp.chr21.vortex 100000 vortex-file-compressed 1.97 GB 0 B 1.97 GB -100.0%
call_center.vortex 1.0 vortex-compact 50.14 KB 0 B 50.14 KB -100.0%
catalog_page.vortex 1.0 vortex-compact 362.67 KB 0 B 362.67 KB -100.0%
catalog_returns.vortex 1.0 vortex-compact 6.02 MB 0 B 6.02 MB -100.0%
catalog_sales.vortex 1.0 vortex-compact 59.31 MB 0 B 59.31 MB -100.0%
customer.vortex 1.0 vortex-compact 3.29 MB 0 B 3.29 MB -100.0%
customer_address.vortex 1.0 vortex-compact 558.62 KB 0 B 558.62 KB -100.0%
customer_demographics.vortex 1.0 vortex-compact 649.61 KB 0 B 649.61 KB -100.0%
date_dim.vortex 1.0 vortex-compact 154.00 KB 0 B 154.00 KB -100.0%
duckdb.db 1.0 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
household_demographics.vortex 1.0 vortex-compact 10.79 KB 0 B 10.79 KB -100.0%
income_band.vortex 1.0 vortex-compact 5.98 KB 0 B 5.98 KB -100.0%
inventory.vortex 1.0 vortex-compact 16.07 MB 0 B 16.07 MB -100.0%
item.vortex 1.0 vortex-compact 994.21 KB 0 B 994.21 KB -100.0%
promotion.vortex 1.0 vortex-compact 51.51 KB 0 B 51.51 KB -100.0%
reason.vortex 1.0 vortex-compact 5.97 KB 0 B 5.97 KB -100.0%
ship_mode.vortex 1.0 vortex-compact 10.95 KB 0 B 10.95 KB -100.0%
store.vortex 1.0 vortex-compact 45.76 KB 0 B 45.76 KB -100.0%
store_returns.vortex 1.0 vortex-compact 9.31 MB 0 B 9.31 MB -100.0%
store_sales.vortex 1.0 vortex-compact 77.87 MB 0 B 77.87 MB -100.0%
time_dim.vortex 1.0 vortex-compact 97.35 KB 0 B 97.35 KB -100.0%
warehouse.vortex 1.0 vortex-compact 22.23 KB 0 B 22.23 KB -100.0%
web_page.vortex 1.0 vortex-compact 27.84 KB 0 B 27.84 KB -100.0%
web_returns.vortex 1.0 vortex-compact 2.99 MB 0 B 2.99 MB -100.0%
web_sales.vortex 1.0 vortex-compact 29.35 MB 0 B 29.35 MB -100.0%
web_site.vortex 1.0 vortex-compact 45.31 KB 0 B 45.31 KB -100.0%
call_center.vortex 1.0 vortex-file-compressed 54.94 KB 0 B 54.94 KB -100.0%
catalog_page.vortex 1.0 vortex-file-compressed 611.57 KB 0 B 611.57 KB -100.0%
catalog_returns.vortex 1.0 vortex-file-compressed 7.43 MB 0 B 7.43 MB -100.0%
catalog_sales.vortex 1.0 vortex-file-compressed 70.78 MB 0 B 70.78 MB -100.0%
customer.vortex 1.0 vortex-file-compressed 4.52 MB 0 B 4.52 MB -100.0%
customer_address.vortex 1.0 vortex-file-compressed 1012.96 KB 0 B 1012.96 KB -100.0%
customer_demographics.vortex 1.0 vortex-file-compressed 1.49 MB 0 B 1.49 MB -100.0%
date_dim.vortex 1.0 vortex-file-compressed 1.03 MB 0 B 1.03 MB -100.0%
duckdb.db 1.0 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
household_demographics.vortex 1.0 vortex-file-compressed 17.05 KB 0 B 17.05 KB -100.0%
income_band.vortex 1.0 vortex-file-compressed 6.19 KB 0 B 6.19 KB -100.0%
inventory.vortex 1.0 vortex-file-compressed 36.64 MB 0 B 36.64 MB -100.0%
item.vortex 1.0 vortex-file-compressed 1.75 MB 0 B 1.75 MB -100.0%
promotion.vortex 1.0 vortex-file-compressed 60.19 KB 0 B 60.19 KB -100.0%
reason.vortex 1.0 vortex-file-compressed 7.23 KB 0 B 7.23 KB -100.0%
ship_mode.vortex 1.0 vortex-file-compressed 13.12 KB 0 B 13.12 KB -100.0%
store.vortex 1.0 vortex-file-compressed 49.49 KB 0 B 49.49 KB -100.0%
store_returns.vortex 1.0 vortex-file-compressed 11.39 MB 0 B 11.39 MB -100.0%
store_sales.vortex 1.0 vortex-file-compressed 97.04 MB 0 B 97.04 MB -100.0%
time_dim.vortex 1.0 vortex-file-compressed 687.30 KB 0 B 687.30 KB -100.0%
warehouse.vortex 1.0 vortex-file-compressed 23.83 KB 0 B 23.83 KB -100.0%
web_page.vortex 1.0 vortex-file-compressed 31.92 KB 0 B 31.92 KB -100.0%
web_returns.vortex 1.0 vortex-file-compressed 3.55 MB 0 B 3.55 MB -100.0%
web_sales.vortex 1.0 vortex-file-compressed 34.27 MB 0 B 34.27 MB -100.0%
web_site.vortex 1.0 vortex-file-compressed 54.08 KB 0 B 54.08 KB -100.0%
customer_0.vortex 1.0 vortex-compact 7.43 MB 0 B 7.43 MB -100.0%
duckdb.db 1.0 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
lineitem_0.vortex 1.0 vortex-compact 63.00 MB 0 B 63.00 MB -100.0%
lineitem_1.vortex 1.0 vortex-compact 63.03 MB 0 B 63.03 MB -100.0%
nation_0.vortex 1.0 vortex-compact 8.34 KB 0 B 8.34 KB -100.0%
orders_0.vortex 1.0 vortex-compact 31.73 MB 0 B 31.73 MB -100.0%
part_0.vortex 1.0 vortex-compact 3.64 MB 0 B 3.64 MB -100.0%
partsupp_0.vortex 1.0 vortex-compact 25.23 MB 0 B 25.23 MB -100.0%
region_0.vortex 1.0 vortex-compact 5.86 KB 0 B 5.86 KB -100.0%
supplier_0.vortex 1.0 vortex-compact 496.72 KB 0 B 496.72 KB -100.0%
customer_0.vortex 1.0 vortex-file-compressed 10.50 MB 0 B 10.50 MB -100.0%
duckdb.db 1.0 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
lineitem_0.vortex 1.0 vortex-file-compressed 85.42 MB 0 B 85.42 MB -100.0%
lineitem_1.vortex 1.0 vortex-file-compressed 84.90 MB 0 B 84.90 MB -100.0%
nation_0.vortex 1.0 vortex-file-compressed 11.00 KB 0 B 11.00 KB -100.0%
orders_0.vortex 1.0 vortex-file-compressed 43.43 MB 0 B 43.43 MB -100.0%
part_0.vortex 1.0 vortex-file-compressed 5.44 MB 0 B 5.44 MB -100.0%
partsupp_0.vortex 1.0 vortex-file-compressed 35.94 MB 0 B 35.94 MB -100.0%
region_0.vortex 1.0 vortex-file-compressed 6.16 KB 0 B 6.16 KB -100.0%
supplier_0.vortex 1.0 vortex-file-compressed 706.34 KB 0 B 706.34 KB -100.0%
customer_0.vortex 100 vortex-file-compressed 261.80 MB 0 B 261.80 MB -100.0%
customer_1.vortex 100 vortex-file-compressed 261.77 MB 0 B 261.77 MB -100.0%
customer_2.vortex 100 vortex-file-compressed 261.69 MB 0 B 261.69 MB -100.0%
customer_3.vortex 100 vortex-file-compressed 261.80 MB 0 B 261.80 MB -100.0%
duckdb.db 100 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
lineitem_0.vortex 100 vortex-file-compressed 148.68 MB 0 B 148.68 MB -100.0%
lineitem_1.vortex 100 vortex-file-compressed 148.56 MB 0 B 148.56 MB -100.0%
lineitem_10.vortex 100 vortex-file-compressed 148.35 MB 0 B 148.35 MB -100.0%
lineitem_100.vortex 100 vortex-file-compressed 148.11 MB 0 B 148.11 MB -100.0%
lineitem_101.vortex 100 vortex-file-compressed 148.35 MB 0 B 148.35 MB -100.0%
lineitem_102.vortex 100 vortex-file-compressed 148.14 MB 0 B 148.14 MB -100.0%
lineitem_103.vortex 100 vortex-file-compressed 148.37 MB 0 B 148.37 MB -100.0%
lineitem_104.vortex 100 vortex-file-compressed 148.59 MB 0 B 148.59 MB -100.0%
lineitem_105.vortex 100 vortex-file-compressed 147.47 MB 0 B 147.47 MB -100.0%
lineitem_106.vortex 100 vortex-file-compressed 148.07 MB 0 B 148.07 MB -100.0%
lineitem_107.vortex 100 vortex-file-compressed 148.04 MB 0 B 148.04 MB -100.0%
lineitem_108.vortex 100 vortex-file-compressed 147.29 MB 0 B 147.29 MB -100.0%
lineitem_109.vortex 100 vortex-file-compressed 148.03 MB 0 B 148.03 MB -100.0%
lineitem_11.vortex 100 vortex-file-compressed 148.62 MB 0 B 148.62 MB -100.0%
lineitem_110.vortex 100 vortex-file-compressed 148.41 MB 0 B 148.41 MB -100.0%
lineitem_111.vortex 100 vortex-file-compressed 147.77 MB 0 B 147.77 MB -100.0%
lineitem_112.vortex 100 vortex-file-compressed 147.42 MB 0 B 147.42 MB -100.0%
lineitem_113.vortex 100 vortex-file-compressed 147.56 MB 0 B 147.56 MB -100.0%
lineitem_114.vortex 100 vortex-file-compressed 147.46 MB 0 B 147.46 MB -100.0%
lineitem_115.vortex 100 vortex-file-compressed 147.64 MB 0 B 147.64 MB -100.0%
lineitem_116.vortex 100 vortex-file-compressed 148.20 MB 0 B 148.20 MB -100.0%
lineitem_117.vortex 100 vortex-file-compressed 148.24 MB 0 B 148.24 MB -100.0%
lineitem_118.vortex 100 vortex-file-compressed 147.83 MB 0 B 147.83 MB -100.0%
lineitem_119.vortex 100 vortex-file-compressed 148.33 MB 0 B 148.33 MB -100.0%
lineitem_12.vortex 100 vortex-file-compressed 148.19 MB 0 B 148.19 MB -100.0%
lineitem_120.vortex 100 vortex-file-compressed 147.10 MB 0 B 147.10 MB -100.0%
lineitem_13.vortex 100 vortex-file-compressed 148.26 MB 0 B 148.26 MB -100.0%
lineitem_14.vortex 100 vortex-file-compressed 147.79 MB 0 B 147.79 MB -100.0%
lineitem_15.vortex 100 vortex-file-compressed 147.63 MB 0 B 147.63 MB -100.0%
lineitem_16.vortex 100 vortex-file-compressed 148.03 MB 0 B 148.03 MB -100.0%
lineitem_17.vortex 100 vortex-file-compressed 148.59 MB 0 B 148.59 MB -100.0%
lineitem_18.vortex 100 vortex-file-compressed 147.55 MB 0 B 147.55 MB -100.0%
lineitem_19.vortex 100 vortex-file-compressed 148.77 MB 0 B 148.77 MB -100.0%
lineitem_2.vortex 100 vortex-file-compressed 148.59 MB 0 B 148.59 MB -100.0%
lineitem_20.vortex 100 vortex-file-compressed 148.78 MB 0 B 148.78 MB -100.0%
lineitem_21.vortex 100 vortex-file-compressed 148.33 MB 0 B 148.33 MB -100.0%
lineitem_22.vortex 100 vortex-file-compressed 147.32 MB 0 B 147.32 MB -100.0%
lineitem_23.vortex 100 vortex-file-compressed 148.19 MB 0 B 148.19 MB -100.0%
lineitem_24.vortex 100 vortex-file-compressed 147.50 MB 0 B 147.50 MB -100.0%
lineitem_25.vortex 100 vortex-file-compressed 148.52 MB 0 B 148.52 MB -100.0%
lineitem_26.vortex 100 vortex-file-compressed 148.11 MB 0 B 148.11 MB -100.0%
lineitem_27.vortex 100 vortex-file-compressed 148.45 MB 0 B 148.45 MB -100.0%
lineitem_28.vortex 100 vortex-file-compressed 148.66 MB 0 B 148.66 MB -100.0%
lineitem_29.vortex 100 vortex-file-compressed 148.75 MB 0 B 148.75 MB -100.0%
lineitem_3.vortex 100 vortex-file-compressed 148.16 MB 0 B 148.16 MB -100.0%
lineitem_30.vortex 100 vortex-file-compressed 147.46 MB 0 B 147.46 MB -100.0%
lineitem_31.vortex 100 vortex-file-compressed 148.50 MB 0 B 148.50 MB -100.0%
lineitem_32.vortex 100 vortex-file-compressed 148.90 MB 0 B 148.90 MB -100.0%
lineitem_33.vortex 100 vortex-file-compressed 147.74 MB 0 B 147.74 MB -100.0%
lineitem_34.vortex 100 vortex-file-compressed 148.93 MB 0 B 148.93 MB -100.0%
lineitem_35.vortex 100 vortex-file-compressed 148.35 MB 0 B 148.35 MB -100.0%
lineitem_36.vortex 100 vortex-file-compressed 147.64 MB 0 B 147.64 MB -100.0%
lineitem_37.vortex 100 vortex-file-compressed 147.47 MB 0 B 147.47 MB -100.0%
lineitem_38.vortex 100 vortex-file-compressed 149.09 MB 0 B 149.09 MB -100.0%
lineitem_39.vortex 100 vortex-file-compressed 147.38 MB 0 B 147.38 MB -100.0%
lineitem_4.vortex 100 vortex-file-compressed 147.27 MB 0 B 147.27 MB -100.0%
lineitem_40.vortex 100 vortex-file-compressed 147.97 MB 0 B 147.97 MB -100.0%
lineitem_41.vortex 100 vortex-file-compressed 146.66 MB 0 B 146.66 MB -100.0%
lineitem_42.vortex 100 vortex-file-compressed 148.38 MB 0 B 148.38 MB -100.0%
lineitem_43.vortex 100 vortex-file-compressed 147.84 MB 0 B 147.84 MB -100.0%
lineitem_44.vortex 100 vortex-file-compressed 147.91 MB 0 B 147.91 MB -100.0%
lineitem_45.vortex 100 vortex-file-compressed 146.88 MB 0 B 146.88 MB -100.0%
lineitem_46.vortex 100 vortex-file-compressed 147.77 MB 0 B 147.77 MB -100.0%
lineitem_47.vortex 100 vortex-file-compressed 148.26 MB 0 B 148.26 MB -100.0%
lineitem_48.vortex 100 vortex-file-compressed 148.23 MB 0 B 148.23 MB -100.0%
lineitem_49.vortex 100 vortex-file-compressed 148.47 MB 0 B 148.47 MB -100.0%
lineitem_5.vortex 100 vortex-file-compressed 148.16 MB 0 B 148.16 MB -100.0%
lineitem_50.vortex 100 vortex-file-compressed 148.88 MB 0 B 148.88 MB -100.0%
lineitem_51.vortex 100 vortex-file-compressed 148.42 MB 0 B 148.42 MB -100.0%
lineitem_52.vortex 100 vortex-file-compressed 146.97 MB 0 B 146.97 MB -100.0%
lineitem_53.vortex 100 vortex-file-compressed 148.23 MB 0 B 148.23 MB -100.0%
lineitem_54.vortex 100 vortex-file-compressed 149.12 MB 0 B 149.12 MB -100.0%
lineitem_55.vortex 100 vortex-file-compressed 148.16 MB 0 B 148.16 MB -100.0%
lineitem_56.vortex 100 vortex-file-compressed 147.73 MB 0 B 147.73 MB -100.0%
lineitem_57.vortex 100 vortex-file-compressed 148.37 MB 0 B 148.37 MB -100.0%
lineitem_58.vortex 100 vortex-file-compressed 148.72 MB 0 B 148.72 MB -100.0%
lineitem_59.vortex 100 vortex-file-compressed 148.42 MB 0 B 148.42 MB -100.0%
lineitem_6.vortex 100 vortex-file-compressed 147.90 MB 0 B 147.90 MB -100.0%
lineitem_60.vortex 100 vortex-file-compressed 148.62 MB 0 B 148.62 MB -100.0%
lineitem_61.vortex 100 vortex-file-compressed 147.73 MB 0 B 147.73 MB -100.0%
lineitem_62.vortex 100 vortex-file-compressed 146.94 MB 0 B 146.94 MB -100.0%
lineitem_63.vortex 100 vortex-file-compressed 148.65 MB 0 B 148.65 MB -100.0%
lineitem_64.vortex 100 vortex-file-compressed 147.72 MB 0 B 147.72 MB -100.0%
lineitem_65.vortex 100 vortex-file-compressed 147.57 MB 0 B 147.57 MB -100.0%
lineitem_66.vortex 100 vortex-file-compressed 148.09 MB 0 B 148.09 MB -100.0%
lineitem_67.vortex 100 vortex-file-compressed 148.84 MB 0 B 148.84 MB -100.0%
lineitem_68.vortex 100 vortex-file-compressed 148.03 MB 0 B 148.03 MB -100.0%
lineitem_69.vortex 100 vortex-file-compressed 148.10 MB 0 B 148.10 MB -100.0%
lineitem_7.vortex 100 vortex-file-compressed 147.86 MB 0 B 147.86 MB -100.0%
lineitem_70.vortex 100 vortex-file-compressed 147.89 MB 0 B 147.89 MB -100.0%
lineitem_71.vortex 100 vortex-file-compressed 147.94 MB 0 B 147.94 MB -100.0%
lineitem_72.vortex 100 vortex-file-compressed 147.99 MB 0 B 147.99 MB -100.0%
lineitem_73.vortex 100 vortex-file-compressed 148.32 MB 0 B 148.32 MB -100.0%
lineitem_74.vortex 100 vortex-file-compressed 147.55 MB 0 B 147.55 MB -100.0%
lineitem_75.vortex 100 vortex-file-compressed 147.88 MB 0 B 147.88 MB -100.0%
lineitem_76.vortex 100 vortex-file-compressed 147.35 MB 0 B 147.35 MB -100.0%
lineitem_77.vortex 100 vortex-file-compressed 148.24 MB 0 B 148.24 MB -100.0%
lineitem_78.vortex 100 vortex-file-compressed 147.35 MB 0 B 147.35 MB -100.0%
lineitem_79.vortex 100 vortex-file-compressed 148.43 MB 0 B 148.43 MB -100.0%
lineitem_8.vortex 100 vortex-file-compressed 148.56 MB 0 B 148.56 MB -100.0%
lineitem_80.vortex 100 vortex-file-compressed 147.55 MB 0 B 147.55 MB -100.0%
lineitem_81.vortex 100 vortex-file-compressed 147.76 MB 0 B 147.76 MB -100.0%
lineitem_82.vortex 100 vortex-file-compressed 148.37 MB 0 B 148.37 MB -100.0%
lineitem_83.vortex 100 vortex-file-compressed 148.68 MB 0 B 148.68 MB -100.0%
lineitem_84.vortex 100 vortex-file-compressed 147.94 MB 0 B 147.94 MB -100.0%
lineitem_85.vortex 100 vortex-file-compressed 147.92 MB 0 B 147.92 MB -100.0%
lineitem_86.vortex 100 vortex-file-compressed 147.62 MB 0 B 147.62 MB -100.0%
lineitem_87.vortex 100 vortex-file-compressed 147.46 MB 0 B 147.46 MB -100.0%
lineitem_88.vortex 100 vortex-file-compressed 148.71 MB 0 B 148.71 MB -100.0%
lineitem_89.vortex 100 vortex-file-compressed 148.03 MB 0 B 148.03 MB -100.0%
lineitem_9.vortex 100 vortex-file-compressed 148.87 MB 0 B 148.87 MB -100.0%
lineitem_90.vortex 100 vortex-file-compressed 147.82 MB 0 B 147.82 MB -100.0%
lineitem_91.vortex 100 vortex-file-compressed 148.27 MB 0 B 148.27 MB -100.0%
lineitem_92.vortex 100 vortex-file-compressed 148.08 MB 0 B 148.08 MB -100.0%
lineitem_93.vortex 100 vortex-file-compressed 147.77 MB 0 B 147.77 MB -100.0%
lineitem_94.vortex 100 vortex-file-compressed 148.40 MB 0 B 148.40 MB -100.0%
lineitem_95.vortex 100 vortex-file-compressed 147.49 MB 0 B 147.49 MB -100.0%
lineitem_96.vortex 100 vortex-file-compressed 148.03 MB 0 B 148.03 MB -100.0%
lineitem_97.vortex 100 vortex-file-compressed 148.10 MB 0 B 148.10 MB -100.0%
lineitem_98.vortex 100 vortex-file-compressed 148.59 MB 0 B 148.59 MB -100.0%
lineitem_99.vortex 100 vortex-file-compressed 147.26 MB 0 B 147.26 MB -100.0%
nation_0.vortex 100 vortex-file-compressed 11.00 KB 0 B 11.00 KB -100.0%
orders_0.vortex 100 vortex-file-compressed 180.00 MB 0 B 180.00 MB -100.0%
orders_1.vortex 100 vortex-file-compressed 179.92 MB 0 B 179.92 MB -100.0%
orders_10.vortex 100 vortex-file-compressed 180.14 MB 0 B 180.14 MB -100.0%
orders_11.vortex 100 vortex-file-compressed 180.08 MB 0 B 180.08 MB -100.0%
orders_12.vortex 100 vortex-file-compressed 180.32 MB 0 B 180.32 MB -100.0%
orders_13.vortex 100 vortex-file-compressed 179.83 MB 0 B 179.83 MB -100.0%
orders_14.vortex 100 vortex-file-compressed 180.18 MB 0 B 180.18 MB -100.0%
orders_15.vortex 100 vortex-file-compressed 180.19 MB 0 B 180.19 MB -100.0%
orders_16.vortex 100 vortex-file-compressed 179.88 MB 0 B 179.88 MB -100.0%
orders_17.vortex 100 vortex-file-compressed 180.01 MB 0 B 180.01 MB -100.0%
orders_18.vortex 100 vortex-file-compressed 180.45 MB 0 B 180.45 MB -100.0%
orders_19.vortex 100 vortex-file-compressed 180.04 MB 0 B 180.04 MB -100.0%
orders_2.vortex 100 vortex-file-compressed 180.35 MB 0 B 180.35 MB -100.0%
orders_20.vortex 100 vortex-file-compressed 179.85 MB 0 B 179.85 MB -100.0%
orders_21.vortex 100 vortex-file-compressed 179.89 MB 0 B 179.89 MB -100.0%
orders_22.vortex 100 vortex-file-compressed 180.04 MB 0 B 180.04 MB -100.0%
orders_23.vortex 100 vortex-file-compressed 179.94 MB 0 B 179.94 MB -100.0%
orders_24.vortex 100 vortex-file-compressed 179.56 MB 0 B 179.56 MB -100.0%
orders_25.vortex 100 vortex-file-compressed 179.82 MB 0 B 179.82 MB -100.0%
orders_26.vortex 100 vortex-file-compressed 179.99 MB 0 B 179.99 MB -100.0%
orders_27.vortex 100 vortex-file-compressed 179.78 MB 0 B 179.78 MB -100.0%
orders_3.vortex 100 vortex-file-compressed 180.12 MB 0 B 180.12 MB -100.0%
orders_4.vortex 100 vortex-file-compressed 180.39 MB 0 B 180.39 MB -100.0%
orders_5.vortex 100 vortex-file-compressed 180.03 MB 0 B 180.03 MB -100.0%
orders_6.vortex 100 vortex-file-compressed 179.80 MB 0 B 179.80 MB -100.0%
orders_7.vortex 100 vortex-file-compressed 180.12 MB 0 B 180.12 MB -100.0%
orders_8.vortex 100 vortex-file-compressed 180.21 MB 0 B 180.21 MB -100.0%
orders_9.vortex 100 vortex-file-compressed 180.11 MB 0 B 180.11 MB -100.0%
part_0.vortex 100 vortex-file-compressed 28.45 MB 0 B 28.45 MB -100.0%
part_1.vortex 100 vortex-file-compressed 28.49 MB 0 B 28.49 MB -100.0%
part_10.vortex 100 vortex-file-compressed 28.43 MB 0 B 28.43 MB -100.0%
part_11.vortex 100 vortex-file-compressed 28.45 MB 0 B 28.45 MB -100.0%
part_12.vortex 100 vortex-file-compressed 28.43 MB 0 B 28.43 MB -100.0%
part_13.vortex 100 vortex-file-compressed 28.44 MB 0 B 28.44 MB -100.0%
part_14.vortex 100 vortex-file-compressed 28.46 MB 0 B 28.46 MB -100.0%
part_15.vortex 100 vortex-file-compressed 28.48 MB 0 B 28.48 MB -100.0%
part_16.vortex 100 vortex-file-compressed 28.42 MB 0 B 28.42 MB -100.0%
part_17.vortex 100 vortex-file-compressed 28.41 MB 0 B 28.41 MB -100.0%
part_18.vortex 100 vortex-file-compressed 28.51 MB 0 B 28.51 MB -100.0%
part_2.vortex 100 vortex-file-compressed 28.46 MB 0 B 28.46 MB -100.0%
part_3.vortex 100 vortex-file-compressed 28.43 MB 0 B 28.43 MB -100.0%
part_4.vortex 100 vortex-file-compressed 28.42 MB 0 B 28.42 MB -100.0%
part_5.vortex 100 vortex-file-compressed 28.38 MB 0 B 28.38 MB -100.0%
part_6.vortex 100 vortex-file-compressed 28.44 MB 0 B 28.44 MB -100.0%
part_7.vortex 100 vortex-file-compressed 28.41 MB 0 B 28.41 MB -100.0%
part_8.vortex 100 vortex-file-compressed 28.43 MB 0 B 28.43 MB -100.0%
part_9.vortex 100 vortex-file-compressed 28.41 MB 0 B 28.41 MB -100.0%
partsupp_0.vortex 100 vortex-file-compressed 191.37 MB 0 B 191.37 MB -100.0%
partsupp_1.vortex 100 vortex-file-compressed 191.69 MB 0 B 191.69 MB -100.0%
partsupp_10.vortex 100 vortex-file-compressed 191.59 MB 0 B 191.59 MB -100.0%
partsupp_11.vortex 100 vortex-file-compressed 191.43 MB 0 B 191.43 MB -100.0%
partsupp_12.vortex 100 vortex-file-compressed 191.50 MB 0 B 191.50 MB -100.0%
partsupp_13.vortex 100 vortex-file-compressed 191.35 MB 0 B 191.35 MB -100.0%
partsupp_14.vortex 100 vortex-file-compressed 191.62 MB 0 B 191.62 MB -100.0%
partsupp_15.vortex 100 vortex-file-compressed 191.52 MB 0 B 191.52 MB -100.0%
partsupp_16.vortex 100 vortex-file-compressed 191.25 MB 0 B 191.25 MB -100.0%
partsupp_17.vortex 100 vortex-file-compressed 191.49 MB 0 B 191.49 MB -100.0%
partsupp_18.vortex 100 vortex-file-compressed 191.38 MB 0 B 191.38 MB -100.0%
partsupp_2.vortex 100 vortex-file-compressed 191.39 MB 0 B 191.39 MB -100.0%
partsupp_3.vortex 100 vortex-file-compressed 191.37 MB 0 B 191.37 MB -100.0%
partsupp_4.vortex 100 vortex-file-compressed 191.40 MB 0 B 191.40 MB -100.0%
partsupp_5.vortex 100 vortex-file-compressed 191.41 MB 0 B 191.41 MB -100.0%
partsupp_6.vortex 100 vortex-file-compressed 191.38 MB 0 B 191.38 MB -100.0%
partsupp_7.vortex 100 vortex-file-compressed 191.61 MB 0 B 191.61 MB -100.0%
partsupp_8.vortex 100 vortex-file-compressed 191.49 MB 0 B 191.49 MB -100.0%
partsupp_9.vortex 100 vortex-file-compressed 191.50 MB 0 B 191.50 MB -100.0%
region_0.vortex 100 vortex-file-compressed 6.16 KB 0 B 6.16 KB -100.0%
supplier_0.vortex 100 vortex-file-compressed 66.71 MB 0 B 66.71 MB -100.0%

Totals:

  • vortex-compact: 11.86 GB → 1.97 GB (-83.4%)
  • vortex-file-compressed: 49.77 GB → 2.70 GB (-94.6%)
Full attributed analysis
Query Config Raw Δ Control Δ Attributed α Noise floor Significant?
1 datafusion:arrow -15.4% -7.8% -8.3% +10.0% ➖ noise
1 datafusion:vortex-compact -12.0% -7.8% -4.5% +10.0% ➖ noise
1 datafusion:vortex-file-compressed -12.7% -7.8% -5.3% +10.0% ➖ noise
1 duckdb:duckdb -5.6% -7.8% +2.3% +10.0% ➖ noise
1 duckdb:vortex-compact -11.1% -7.8% -3.5% +10.0% ➖ noise
1 duckdb:vortex-file-compressed -8.2% -7.8% -0.4% +10.0% ➖ noise
2 datafusion:arrow -14.6% -8.1% -7.2% +10.0% ➖ noise
2 datafusion:vortex-compact -19.1% -8.1% -12.0% +10.0% ✅ faster
2 datafusion:vortex-file-compressed -21.6% -8.1% -14.8% +10.0% ✅ faster
2 duckdb:duckdb -4.9% -8.1% +3.4% +10.0% ➖ noise
2 duckdb:vortex-compact -11.0% -8.1% -3.2% +10.0% ➖ noise
2 duckdb:vortex-file-compressed -5.4% -8.1% +2.9% +11.7% ➖ noise
3 datafusion:arrow -18.8% -12.3% -7.4% +10.0% ➖ noise
3 datafusion:vortex-compact -18.5% -12.3% -7.1% +10.0% ➖ noise
3 datafusion:vortex-file-compressed -18.3% -12.3% -6.8% +10.0% ➖ noise
3 duckdb:duckdb -9.6% -12.3% +3.1% +10.0% ➖ noise
3 duckdb:vortex-compact -16.9% -12.3% -5.2% +10.0% ➖ noise
3 duckdb:vortex-file-compressed -14.4% -12.3% -2.3% +10.0% ➖ noise
4 datafusion:arrow -18.7% -13.4% -6.2% +10.0% ➖ noise
4 datafusion:vortex-compact -17.3% -13.4% -4.5% +10.0% ➖ noise
4 datafusion:vortex-file-compressed -17.2% -13.4% -4.4% +10.0% ➖ noise
4 duckdb:duckdb -12.9% -13.4% +0.5% +10.0% ➖ noise
4 duckdb:vortex-compact -12.1% -13.4% +1.4% +10.0% ➖ noise
4 duckdb:vortex-file-compressed -14.2% -13.4% -0.9% +10.0% ➖ noise
5 datafusion:arrow -17.6% -13.9% -4.3% +10.0% ➖ noise
5 datafusion:vortex-compact -18.9% -13.9% -5.8% +10.0% ➖ noise
5 datafusion:vortex-file-compressed -19.5% -13.9% -6.6% +10.0% ➖ noise
5 duckdb:duckdb -13.3% -13.9% +0.7% +10.0% ➖ noise
5 duckdb:vortex-compact -13.2% -13.9% +0.8% +10.0% ➖ noise
5 duckdb:vortex-file-compressed -15.5% -13.9% -1.9% +10.0% ➖ noise
6 datafusion:arrow -19.4% -7.1% -13.3% +10.0% ✅ faster
6 datafusion:vortex-compact -16.6% -7.1% -10.3% +10.0% ✅ faster
6 datafusion:vortex-file-compressed -15.0% -7.1% -8.4% +10.0% ➖ noise
6 duckdb:duckdb -8.7% -7.1% -1.7% +10.0% ➖ noise
6 duckdb:vortex-compact -19.2% -7.1% -13.0% +10.0% ✅ faster
6 duckdb:vortex-file-compressed -20.1% -7.1% -14.0% +10.7% ✅ faster
7 datafusion:arrow -18.9% -13.4% -6.4% +10.0% ➖ noise
7 datafusion:vortex-compact -17.9% -13.4% -5.2% +10.0% ➖ noise
7 datafusion:vortex-file-compressed -20.1% -13.4% -7.7% +10.0% ➖ noise
7 duckdb:duckdb -10.0% -13.4% +3.9% +10.0% ➖ noise
7 duckdb:vortex-compact -13.7% -13.4% -0.4% +10.0% ➖ noise
7 duckdb:vortex-file-compressed -17.5% -13.4% -4.7% +10.0% ➖ noise
8 datafusion:arrow -18.1% -13.8% -5.1% +10.0% ➖ noise
8 datafusion:vortex-compact -20.9% -13.8% -8.3% +10.0% ➖ noise
8 datafusion:vortex-file-compressed -20.0% -13.8% -7.2% +10.0% ➖ noise
8 duckdb:duckdb -10.0% -13.8% +4.4% +10.0% ➖ noise
8 duckdb:vortex-compact -15.3% -13.8% -1.7% +10.0% ➖ noise
8 duckdb:vortex-file-compressed -16.2% -13.8% -2.9% +10.0% ➖ noise
9 datafusion:arrow -13.1% -14.8% +2.0% +10.0% ➖ noise
9 datafusion:vortex-compact -20.0% -14.8% -6.1% +10.0% ➖ noise
9 datafusion:vortex-file-compressed -20.6% -14.8% -6.8% +10.0% ➖ noise
9 duckdb:duckdb -11.4% -14.8% +3.9% +10.0% ➖ noise
9 duckdb:vortex-compact -15.4% -14.8% -0.7% +10.0% ➖ noise
9 duckdb:vortex-file-compressed -13.5% -14.8% +1.5% +10.0% ➖ noise
10 datafusion:arrow -19.1% -10.7% -9.4% +10.0% ✅ faster
10 datafusion:vortex-compact -18.1% -10.7% -8.3% +10.0% ➖ noise
10 datafusion:vortex-file-compressed -18.6% -10.7% -8.9% +10.0% ➖ noise
10 duckdb:duckdb -10.6% -10.7% +0.1% +10.0% ➖ noise
10 duckdb:vortex-compact -14.2% -10.7% -4.0% +10.0% ➖ noise
10 duckdb:vortex-file-compressed -14.8% -10.7% -4.6% +10.0% ➖ noise
11 datafusion:arrow -16.0% -10.1% -6.5% +14.1% ➖ noise
11 datafusion:vortex-compact -18.9% -10.1% -9.8% +10.0% ✅ faster
11 datafusion:vortex-file-compressed -17.0% -10.1% -7.7% +10.0% ➖ noise
11 duckdb:duckdb -7.7% -10.1% +2.7% +10.0% ➖ noise
11 duckdb:vortex-compact -12.3% -10.1% -2.5% +10.0% ➖ noise
11 duckdb:vortex-file-compressed -12.8% -10.1% -3.0% +10.0% ➖ noise
12 datafusion:arrow -22.5% -8.4% -15.4% +36.3% ➖ noise
12 datafusion:vortex-compact -15.9% -8.4% -8.2% +10.0% ➖ noise
12 datafusion:vortex-file-compressed -18.0% -8.4% -10.4% +10.0% ✅ faster
12 duckdb:duckdb -9.6% -8.4% -1.3% +10.0% ➖ noise
12 duckdb:vortex-compact -14.8% -8.4% -7.0% +10.0% ➖ noise
12 duckdb:vortex-file-compressed -17.4% -8.4% -9.9% +10.0% ✅ faster
13 datafusion:arrow -13.2% -8.7% -4.9% +10.0% ➖ noise
13 datafusion:vortex-compact -14.9% -8.7% -6.9% +10.0% ➖ noise
13 datafusion:vortex-file-compressed -17.3% -8.7% -9.4% +10.0% ✅ faster
13 duckdb:duckdb -12.5% -8.7% -4.2% +10.0% ➖ noise
13 duckdb:vortex-compact -12.7% -8.7% -4.4% +10.0% ➖ noise
13 duckdb:vortex-file-compressed -15.0% -8.7% -7.0% +10.0% ➖ noise
14 datafusion:arrow -16.3% -9.2% -7.8% +10.0% ➖ noise
14 datafusion:vortex-compact -15.2% -9.2% -6.7% +10.0% ➖ noise
14 datafusion:vortex-file-compressed -19.6% -9.2% -11.5% +10.0% ✅ faster
14 duckdb:duckdb -10.3% -9.2% -1.3% +10.0% ➖ noise
14 duckdb:vortex-compact -12.3% -9.2% -3.5% +10.0% ➖ noise
14 duckdb:vortex-file-compressed -12.7% -9.2% -3.9% +10.0% ➖ noise
15 datafusion:arrow -20.2% -14.2% -7.0% +10.0% ➖ noise
15 datafusion:vortex-compact -16.0% -14.2% -2.2% +10.0% ➖ noise
15 datafusion:vortex-file-compressed -18.5% -14.2% -5.0% +10.0% ➖ noise
15 duckdb:duckdb -8.6% -14.2% +6.5% +10.0% ➖ noise
15 duckdb:vortex-compact -13.5% -14.2% +0.8% +10.0% ➖ noise
15 duckdb:vortex-file-compressed -17.0% -14.2% -3.3% +10.0% ➖ noise
16 datafusion:arrow -14.5% -9.7% -5.2% +10.0% ➖ noise
16 datafusion:vortex-compact -14.6% -9.7% -5.4% +10.0% ➖ noise
16 datafusion:vortex-file-compressed -17.1% -9.7% -8.2% +10.0% ➖ noise
16 duckdb:duckdb -9.8% -9.7% -0.1% +10.0% ➖ noise
16 duckdb:vortex-compact -8.5% -9.7% +1.4% +10.0% ➖ noise
16 duckdb:vortex-file-compressed -12.7% -9.7% -3.3% +10.0% ➖ noise
17 datafusion:arrow -17.9% -13.7% -4.8% +10.0% ➖ noise
17 datafusion:vortex-compact -20.4% -13.7% -7.7% +10.0% ➖ noise
17 datafusion:vortex-file-compressed -21.9% -13.7% -9.5% +10.0% ✅ faster
17 duckdb:duckdb -7.3% -13.7% +7.4% +10.0% ➖ noise
17 duckdb:vortex-compact -12.8% -13.7% +1.1% +10.0% ➖ noise
17 duckdb:vortex-file-compressed -16.8% -13.7% -3.6% +10.0% ➖ noise
18 datafusion:arrow -19.7% -15.1% -5.3% +10.0% ➖ noise
18 datafusion:vortex-compact -19.8% -15.1% -5.5% +10.0% ➖ noise
18 datafusion:vortex-file-compressed -20.4% -15.1% -6.2% +10.0% ➖ noise
18 duckdb:duckdb -11.1% -15.1% +4.8% +10.0% ➖ noise
18 duckdb:vortex-compact -13.3% -15.1% +2.1% +10.0% ➖ noise
18 duckdb:vortex-file-compressed -13.6% -15.1% +1.8% +10.0% ➖ noise
19 datafusion:arrow -14.6% -8.2% -6.9% +10.0% ➖ noise
19 datafusion:vortex-compact -13.1% -8.2% -5.3% +10.0% ➖ noise
19 datafusion:vortex-file-compressed -13.5% -8.2% -5.7% +10.7% ➖ noise
19 duckdb:duckdb -9.4% -8.2% -1.2% +10.0% ➖ noise
19 duckdb:vortex-compact -10.2% -8.2% -2.1% +10.0% ➖ noise
19 duckdb:vortex-file-compressed -8.5% -8.2% -0.3% +10.0% ➖ noise
20 datafusion:arrow -18.1% -11.7% -7.2% +10.0% ➖ noise
20 datafusion:vortex-compact -17.0% -11.7% -6.0% +10.0% ➖ noise
20 datafusion:vortex-file-compressed -21.4% -11.7% -11.0% +10.0% ✅ faster
20 duckdb:duckdb -7.6% -11.7% +4.7% +10.0% ➖ noise
20 duckdb:vortex-compact -13.5% -11.7% -2.0% +10.0% ➖ noise
20 duckdb:vortex-file-compressed -14.6% -11.7% -3.3% +10.0% ➖ noise
21 datafusion:arrow -10.9% -16.5% +6.8% +10.0% ➖ noise
21 datafusion:vortex-compact -22.6% -16.5% -7.3% +10.0% ➖ noise
21 datafusion:vortex-file-compressed -20.1% -16.5% -4.3% +10.0% ➖ noise
21 duckdb:duckdb -10.2% -16.5% +7.7% +10.0% ➖ noise
21 duckdb:vortex-compact -14.6% -16.5% +2.4% +10.0% ➖ noise
21 duckdb:vortex-file-compressed -14.4% -16.5% +2.6% +10.0% ➖ noise
22 datafusion:arrow -16.1% -5.7% -11.1% +11.7% ✅ faster
22 datafusion:vortex-compact -15.4% -5.7% -10.2% +10.0% ✅ faster
22 datafusion:vortex-file-compressed -16.3% -5.7% -11.2% +10.0% ✅ faster
22 duckdb:duckdb -3.8% -5.7% +2.0% +10.0% ➖ noise
22 duckdb:vortex-compact -12.7% -5.7% -7.4% +10.0% ➖ noise
22 duckdb:vortex-file-compressed -9.4% -5.7% -4.0% +10.0% ➖ noise

@github-actions
Copy link
Copy Markdown
Contributor

Benchmarks: Random Access

Vortex (geomean): 1.041x ➖
Parquet (geomean): 1.041x ➖

How to read Verdict and Engines
  • Verdict: Overall PR-level signal after subtracting baseline drift estimated from Parquet control rows. It can be Likely improvement, Likely regression, or No clear signal.
  • Engines: Per-engine attribution. DataFusion is compared against DataFusion/Parquet controls; DuckDB is compared against DuckDB/Parquet controls. This answers whether each engine improved or regressed independently.
  • Confidence: Based on directional consistency, share of rows above the noise floor, and control-run noise.

unknown / unknown (1.069x ➖, 0↑ 2↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
random-access/feature-vectors/correlated/lance-tokio-local-disk 🚨 1776032 379475 4.68
random-access/feature-vectors/correlated/lance-tokio-local-disk-footer 1081926 1025576 1.05
random-access/feature-vectors/correlated/parquet-tokio-local-disk 8390031903 8655626167 0.97
random-access/feature-vectors/correlated/parquet-tokio-local-disk-footer 8443223717 8485301203 1.00
random-access/feature-vectors/correlated/vortex-tokio-local-disk 8235783 8447037 0.97
random-access/feature-vectors/correlated/vortex-tokio-local-disk-footer 7743047 7671602 1.01
random-access/feature-vectors/uniform/lance-tokio-local-disk 1230670 1190068 1.03
random-access/feature-vectors/uniform/lance-tokio-local-disk-footer 1926683 1853490 1.04
random-access/feature-vectors/uniform/parquet-tokio-local-disk 8372710703 8526619483 0.98
random-access/feature-vectors/uniform/parquet-tokio-local-disk-footer 8475962014 8479386525 1.00
random-access/feature-vectors/uniform/vortex-tokio-local-disk 14123160 13610399 1.04
random-access/feature-vectors/uniform/vortex-tokio-local-disk-footer 13753558 13441957 1.02
random-access/lance-tokio-local-disk 658859 630310 1.05
random-access/lance-tokio-local-disk-footer 1348947 1303673 1.03
random-access/nested-lists/correlated/lance-tokio-local-disk 246959 241550 1.02
random-access/nested-lists/correlated/lance-tokio-local-disk-footer 605212 589593 1.03
random-access/nested-lists/correlated/parquet-tokio-local-disk 135648545 128806190 1.05
random-access/nested-lists/correlated/parquet-tokio-local-disk-footer 135953822 128941865 1.05
random-access/nested-lists/correlated/vortex-tokio-local-disk 690848 641605 1.08
random-access/nested-lists/correlated/vortex-tokio-local-disk-footer 🚨 707822 609308 1.16
random-access/nested-lists/uniform/lance-tokio-local-disk 1016521 989123 1.03
random-access/nested-lists/uniform/lance-tokio-local-disk-footer 1412253 1355155 1.04
random-access/nested-lists/uniform/parquet-tokio-local-disk 134395974 128731419 1.04
random-access/nested-lists/uniform/parquet-tokio-local-disk-footer 133388103 128725083 1.04
random-access/nested-lists/uniform/vortex-tokio-local-disk 2245514 2199665 1.02
random-access/nested-lists/uniform/vortex-tokio-local-disk-footer 2239291 2185932 1.02
random-access/nested-structs/correlated/lance-tokio-local-disk 376931 371320 1.02
random-access/nested-structs/correlated/lance-tokio-local-disk-footer 573422 553300 1.04
random-access/nested-structs/correlated/parquet-tokio-local-disk 24591141 23329023 1.05
random-access/nested-structs/correlated/parquet-tokio-local-disk-footer 24889958 23665172 1.05
random-access/nested-structs/correlated/vortex-tokio-local-disk 799069 752349 1.06
random-access/nested-structs/correlated/vortex-tokio-local-disk-footer 800906 782967 1.02
random-access/nested-structs/uniform/lance-tokio-local-disk 2722818 2590830 1.05
random-access/nested-structs/uniform/lance-tokio-local-disk-footer 2890159 2724747 1.06
random-access/nested-structs/uniform/parquet-tokio-local-disk 24757718 23567915 1.05
random-access/nested-structs/uniform/parquet-tokio-local-disk-footer 24768036 23529192 1.05
random-access/nested-structs/uniform/vortex-tokio-local-disk 1815004 1651072 1.10
random-access/nested-structs/uniform/vortex-tokio-local-disk-footer 1775452 1632480 1.09
random-access/parquet-tokio-local-disk 177976752 165750346 1.07
random-access/parquet-tokio-local-disk-footer 177797646 167915170 1.06
random-access/taxi/correlated/lance-tokio-local-disk 977593 938394 1.04
random-access/taxi/correlated/lance-tokio-local-disk-footer 1956119 1837976 1.06
random-access/taxi/correlated/parquet-tokio-local-disk 267630557 250572969 1.07
random-access/taxi/correlated/parquet-tokio-local-disk-footer 270493530 253345635 1.07
random-access/taxi/correlated/vortex-tokio-local-disk 1781592 1799055 0.99
random-access/taxi/correlated/vortex-tokio-local-disk-footer 1956978 1824884 1.07
random-access/taxi/uniform/lance-tokio-local-disk 9510051 9369373 1.02
random-access/taxi/uniform/lance-tokio-local-disk-footer 10298650 9958530 1.03
random-access/taxi/uniform/parquet-tokio-local-disk 283876663 266960189 1.06
random-access/taxi/uniform/parquet-tokio-local-disk-footer 285531950 267898161 1.07
random-access/taxi/uniform/vortex-tokio-local-disk 4977933 4763344 1.05
random-access/taxi/uniform/vortex-tokio-local-disk-footer 4941635 4788896 1.03
random-access/vortex-tokio-local-disk 1266615 1262225 1.00
random-access/vortex-tokio-local-disk-footer 1303784 1285358 1.01

@github-actions
Copy link
Copy Markdown
Contributor

Benchmarks: Clickbench on NVME

Verdict: No clear signal (low confidence)
Attributed Vortex impact: -0.6%
Engines: DataFusion No clear signal (-1.6%, low confidence) · DuckDB No clear signal (+0.3%, low confidence)
Vortex (geomean): 1.010x ➖
Parquet (geomean): 1.014x ➖
Shifts: Parquet (control) +1.4% · Median polish +0.8%

How to read Verdict and Engines
  • Verdict: Overall PR-level signal after subtracting baseline drift estimated from Parquet control rows. It can be Likely improvement, Likely regression, or No clear signal.
  • Engines: Per-engine attribution. DataFusion is compared against DataFusion/Parquet controls; DuckDB is compared against DuckDB/Parquet controls. This answers whether each engine improved or regressed independently.
  • Confidence: Based on directional consistency, share of rows above the noise floor, and control-run noise.

datafusion / vortex-file-compressed (1.006x ➖, 1↑ 2↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
clickbench_q00/datafusion:vortex-file-compressed 1659095 1668490 0.99
clickbench_q01/datafusion:vortex-file-compressed 17451173 17723250 0.98
clickbench_q02/datafusion:vortex-file-compressed 38324935 40213631 0.95
clickbench_q03/datafusion:vortex-file-compressed 🚨 49774978 44370759 1.12
clickbench_q04/datafusion:vortex-file-compressed 293959361 288002413 1.02
clickbench_q05/datafusion:vortex-file-compressed 332117932 310145846 1.07
clickbench_q06/datafusion:vortex-file-compressed 1630815 1742072 0.94
clickbench_q07/datafusion:vortex-file-compressed 20918692 22054199 0.95
clickbench_q08/datafusion:vortex-file-compressed 370286638 349923971 1.06
clickbench_q09/datafusion:vortex-file-compressed 568557554 547645128 1.04
clickbench_q10/datafusion:vortex-file-compressed 76897521 74037590 1.04
clickbench_q11/datafusion:vortex-file-compressed 88796895 87460304 1.02
clickbench_q12/datafusion:vortex-file-compressed 277278050 265445132 1.04
clickbench_q13/datafusion:vortex-file-compressed 422454820 431709156 0.98
clickbench_q14/datafusion:vortex-file-compressed 258217420 265483489 0.97
clickbench_q15/datafusion:vortex-file-compressed 335216110 331257574 1.01
clickbench_q16/datafusion:vortex-file-compressed 675843633 671793333 1.01
clickbench_q17/datafusion:vortex-file-compressed 666567857 650443513 1.02
clickbench_q18/datafusion:vortex-file-compressed 1359291852 1411727319 0.96
clickbench_q19/datafusion:vortex-file-compressed 31922104 32717676 0.98
clickbench_q20/datafusion:vortex-file-compressed 354926113 356617734 1.00
clickbench_q21/datafusion:vortex-file-compressed 387490158 388521270 1.00
clickbench_q22/datafusion:vortex-file-compressed 461237762 464833364 0.99
clickbench_q23/datafusion:vortex-file-compressed 🚨 798556201 703919716 1.13
clickbench_q24/datafusion:vortex-file-compressed 🚀 47481242 55732880 0.85
clickbench_q25/datafusion:vortex-file-compressed 76601986 75786141 1.01
clickbench_q26/datafusion:vortex-file-compressed 45730041 43372274 1.05
clickbench_q27/datafusion:vortex-file-compressed 756674829 732778065 1.03
clickbench_q28/datafusion:vortex-file-compressed 6801681057 6721207437 1.01
clickbench_q29/datafusion:vortex-file-compressed 245462954 244681064 1.00
clickbench_q30/datafusion:vortex-file-compressed 227105499 224404997 1.01
clickbench_q31/datafusion:vortex-file-compressed 264987448 264545222 1.00
clickbench_q32/datafusion:vortex-file-compressed 1157515143 1135988842 1.02
clickbench_q33/datafusion:vortex-file-compressed 1377633231 1374932240 1.00
clickbench_q34/datafusion:vortex-file-compressed 1401861929 1375254824 1.02
clickbench_q35/datafusion:vortex-file-compressed 475534556 477313974 1.00
clickbench_q36/datafusion:vortex-file-compressed 70265129 76446569 0.92
clickbench_q37/datafusion:vortex-file-compressed 34971990 36415354 0.96
clickbench_q38/datafusion:vortex-file-compressed 20002832 19252189 1.04
clickbench_q39/datafusion:vortex-file-compressed 141942139 133996826 1.06
clickbench_q40/datafusion:vortex-file-compressed 16517729 15753641 1.05
clickbench_q41/datafusion:vortex-file-compressed 15161157 15326609 0.99
clickbench_q42/datafusion:vortex-file-compressed 17401191 17051177 1.02
datafusion / parquet (1.023x ➖, 0↑ 2↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
clickbench_q00/datafusion:parquet 1551566 1514892 1.02
clickbench_q01/datafusion:parquet 20253439 19136102 1.06
clickbench_q02/datafusion:parquet 47096630 48134924 0.98
clickbench_q03/datafusion:parquet 38109112 38113863 1.00
clickbench_q04/datafusion:parquet 310348250 307986408 1.01
clickbench_q05/datafusion:parquet 365813816 345601965 1.06
clickbench_q06/datafusion:parquet 1551195 1578533 0.98
clickbench_q07/datafusion:parquet 23128824 22822029 1.01
clickbench_q08/datafusion:parquet 379363824 373633866 1.02
clickbench_q09/datafusion:parquet 639843500 611802494 1.05
clickbench_q10/datafusion:parquet 109401233 106192728 1.03
clickbench_q11/datafusion:parquet 132787655 130173807 1.02
clickbench_q12/datafusion:parquet 354009600 341854870 1.04
clickbench_q13/datafusion:parquet 532715027 509038237 1.05
clickbench_q14/datafusion:parquet 346923362 343664787 1.01
clickbench_q15/datafusion:parquet 344017018 339530755 1.01
clickbench_q16/datafusion:parquet 714614212 661594837 1.08
clickbench_q17/datafusion:parquet 671369949 652433763 1.03
clickbench_q18/datafusion:parquet 1388847371 1375056709 1.01
clickbench_q19/datafusion:parquet 🚨 33904902 29509394 1.15
clickbench_q20/datafusion:parquet 610658662 599294842 1.02
clickbench_q21/datafusion:parquet 662301809 662094677 1.00
clickbench_q22/datafusion:parquet 983650926 960278521 1.02
clickbench_q23/datafusion:parquet 3778190211 3657669917 1.03
clickbench_q24/datafusion:parquet 87257368 83066207 1.05
clickbench_q25/datafusion:parquet 134352889 133688875 1.00
clickbench_q26/datafusion:parquet 🚨 90173760 81470125 1.11
clickbench_q27/datafusion:parquet 1061564863 1063706312 1.00
clickbench_q28/datafusion:parquet 6744981701 6538231043 1.03
clickbench_q29/datafusion:parquet 242288789 232510194 1.04
clickbench_q30/datafusion:parquet 332244064 327805006 1.01
clickbench_q31/datafusion:parquet 366175737 381158727 0.96
clickbench_q32/datafusion:parquet 1251810097 1194520679 1.05
clickbench_q33/datafusion:parquet 1514940608 1507614102 1.00
clickbench_q34/datafusion:parquet 1516776188 1511134560 1.00
clickbench_q35/datafusion:parquet 466336800 468124151 1.00
clickbench_q36/datafusion:parquet 143331899 146141419 0.98
clickbench_q37/datafusion:parquet 58925066 57816915 1.02
clickbench_q38/datafusion:parquet 86691083 85982876 1.01
clickbench_q39/datafusion:parquet 266030551 265090985 1.00
clickbench_q40/datafusion:parquet 31797359 31236531 1.02
clickbench_q41/datafusion:parquet 27462127 27470558 1.00
clickbench_q42/datafusion:parquet 30626949 29433027 1.04
duckdb / vortex-file-compressed (1.014x ➖, 1↑ 6↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
clickbench_q00/duckdb:vortex-file-compressed 🚨 7288642 6565690 1.11
clickbench_q01/duckdb:vortex-file-compressed 11342368 11172294 1.02
clickbench_q02/duckdb:vortex-file-compressed 26586802 26274425 1.01
clickbench_q03/duckdb:vortex-file-compressed 30404826 30288987 1.00
clickbench_q04/duckdb:vortex-file-compressed 189761509 189039753 1.00
clickbench_q05/duckdb:vortex-file-compressed 171937090 176749443 0.97
clickbench_q06/duckdb:vortex-file-compressed 20651027 20495169 1.01
clickbench_q07/duckdb:vortex-file-compressed 🚨 16423559 14115796 1.16
clickbench_q08/duckdb:vortex-file-compressed 263184523 265091474 0.99
clickbench_q09/duckdb:vortex-file-compressed 344860914 343686212 1.00
clickbench_q10/duckdb:vortex-file-compressed 70383619 68266274 1.03
clickbench_q11/duckdb:vortex-file-compressed 80663174 79481550 1.01
clickbench_q12/duckdb:vortex-file-compressed 198065319 198683910 1.00
clickbench_q13/duckdb:vortex-file-compressed 403834008 411421489 0.98
clickbench_q14/duckdb:vortex-file-compressed 227351255 234253604 0.97
clickbench_q15/duckdb:vortex-file-compressed 241610646 249766501 0.97
clickbench_q16/duckdb:vortex-file-compressed 532996302 527788297 1.01
clickbench_q17/duckdb:vortex-file-compressed 426365356 421588479 1.01
clickbench_q18/duckdb:vortex-file-compressed 951286674 960463902 0.99
clickbench_q19/duckdb:vortex-file-compressed 21872205 22898853 0.96
clickbench_q20/duckdb:vortex-file-compressed 334306581 340992160 0.98
clickbench_q21/duckdb:vortex-file-compressed 361814816 363120886 1.00
clickbench_q22/duckdb:vortex-file-compressed 556237742 510104564 1.09
clickbench_q23/duckdb:vortex-file-compressed 170126213 186109862 0.91
clickbench_q24/duckdb:vortex-file-compressed 36061845 35574074 1.01
clickbench_q25/duckdb:vortex-file-compressed 75237585 76959104 0.98
clickbench_q26/duckdb:vortex-file-compressed 🚀 48240071 53915816 0.89
clickbench_q27/duckdb:vortex-file-compressed 484614051 495807531 0.98
clickbench_q28/duckdb:vortex-file-compressed 3020348031 3047150521 0.99
clickbench_q29/duckdb:vortex-file-compressed 28946788 29755837 0.97
clickbench_q30/duckdb:vortex-file-compressed 197628043 197908753 1.00
clickbench_q31/duckdb:vortex-file-compressed 291124360 295244338 0.99
clickbench_q32/duckdb:vortex-file-compressed 1133468822 1130935151 1.00
clickbench_q33/duckdb:vortex-file-compressed 1081968384 1121388785 0.96
clickbench_q34/duckdb:vortex-file-compressed 1179914317 1179925880 1.00
clickbench_q35/duckdb:vortex-file-compressed 382302832 377434296 1.01
clickbench_q36/duckdb:vortex-file-compressed 29056536 27390356 1.06
clickbench_q37/duckdb:vortex-file-compressed 🚨 21224780 18592713 1.14
clickbench_q38/duckdb:vortex-file-compressed 🚨 22091186 20042674 1.10
clickbench_q39/duckdb:vortex-file-compressed 42183231 41667728 1.01
clickbench_q40/duckdb:vortex-file-compressed 21273078 20555504 1.03
clickbench_q41/duckdb:vortex-file-compressed 🚨 21677496 18642121 1.16
clickbench_q42/duckdb:vortex-file-compressed 🚨 23837780 20410870 1.17
duckdb / parquet (1.005x ➖, 0↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
clickbench_q00/duckdb:parquet 22381954 23712728 0.94
clickbench_q01/duckdb:parquet 29208158 28980523 1.01
clickbench_q02/duckdb:parquet 50605211 49474826 1.02
clickbench_q03/duckdb:parquet 39939676 39926486 1.00
clickbench_q04/duckdb:parquet 205112694 201739827 1.02
clickbench_q05/duckdb:parquet 259215856 256116713 1.01
clickbench_q06/duckdb:parquet 47211783 47341536 1.00
clickbench_q07/duckdb:parquet 31987871 31030445 1.03
clickbench_q08/duckdb:parquet 273011166 270623620 1.01
clickbench_q09/duckdb:parquet 400811528 396771291 1.01
clickbench_q10/duckdb:parquet 83076662 81504089 1.02
clickbench_q11/duckdb:parquet 101055937 100140767 1.01
clickbench_q12/duckdb:parquet 283661456 278842957 1.02
clickbench_q13/duckdb:parquet 481032233 470489812 1.02
clickbench_q14/duckdb:parquet 317323810 314709792 1.01
clickbench_q15/duckdb:parquet 255308650 253712818 1.01
clickbench_q16/duckdb:parquet 598800886 589824372 1.02
clickbench_q17/duckdb:parquet 503806191 495406919 1.02
clickbench_q18/duckdb:parquet 1039288446 1030098854 1.01
clickbench_q19/duckdb:parquet 27634392 26624078 1.04
clickbench_q20/duckdb:parquet 421951831 412546954 1.02
clickbench_q21/duckdb:parquet 531222206 529645187 1.00
clickbench_q22/duckdb:parquet 921328417 920525774 1.00
clickbench_q23/duckdb:parquet 260549590 268848262 0.97
clickbench_q24/duckdb:parquet 73169532 69847663 1.05
clickbench_q25/duckdb:parquet 163342972 162213800 1.01
clickbench_q26/duckdb:parquet 52768428 56910270 0.93
clickbench_q27/duckdb:parquet 640456834 645092636 0.99
clickbench_q28/duckdb:parquet 4914474545 4883003115 1.01
clickbench_q29/duckdb:parquet 42124865 42042342 1.00
clickbench_q30/duckdb:parquet 311552391 311127931 1.00
clickbench_q31/duckdb:parquet 375614017 376506646 1.00
clickbench_q32/duckdb:parquet 1126724101 1113554082 1.01
clickbench_q33/duckdb:parquet 1119059685 1115130761 1.00
clickbench_q34/duckdb:parquet 1158017868 1202450688 0.96
clickbench_q35/duckdb:parquet 369417128 375591393 0.98
clickbench_q36/duckdb:parquet 48556222 45336005 1.07
clickbench_q37/duckdb:parquet 33641683 35118747 0.96
clickbench_q38/duckdb:parquet 37894570 37962128 1.00
clickbench_q39/duckdb:parquet 88314681 86622326 1.02
clickbench_q40/duckdb:parquet 19876370 20368052 0.98
clickbench_q41/duckdb:parquet 21047299 20393829 1.03
clickbench_q42/duckdb:parquet 22332846 22236469 1.00
duckdb / duckdb (1.002x ➖, 0↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
clickbench_q00/duckdb:duckdb 17317834 17578699 0.99
clickbench_q01/duckdb:duckdb 33922305 34838241 0.97
clickbench_q02/duckdb:duckdb 51103902 51865462 0.99
clickbench_q03/duckdb:duckdb 55061671 55842648 0.99
clickbench_q04/duckdb:duckdb 212759872 212055588 1.00
clickbench_q05/duckdb:duckdb 281475601 283593785 0.99
clickbench_q06/duckdb:duckdb 33729580 35791195 0.94
clickbench_q07/duckdb:duckdb 35111811 35535510 0.99
clickbench_q08/duckdb:duckdb 274629705 275595510 1.00
clickbench_q09/duckdb:duckdb 393733231 392752093 1.00
clickbench_q10/duckdb:duckdb 116537130 116803266 1.00
clickbench_q11/duckdb:duckdb 127583912 125875703 1.01
clickbench_q12/duckdb:duckdb 259905513 262496163 0.99
clickbench_q13/duckdb:duckdb 442770218 444129268 1.00
clickbench_q14/duckdb:duckdb 285433232 286237489 1.00
clickbench_q15/duckdb:duckdb 242081135 242116073 1.00
clickbench_q16/duckdb:duckdb 570405705 562470876 1.01
clickbench_q17/duckdb:duckdb 468158808 476940020 0.98
clickbench_q18/duckdb:duckdb 1013595496 1024199417 0.99
clickbench_q19/duckdb:duckdb 34437235 35017320 0.98
clickbench_q20/duckdb:duckdb 479830369 457960962 1.05
clickbench_q21/duckdb:duckdb 480020879 487891121 0.98
clickbench_q22/duckdb:duckdb 567227827 542330345 1.05
clickbench_q23/duckdb:duckdb 256158953 249179545 1.03
clickbench_q24/duckdb:duckdb 60371909 61701963 0.98
clickbench_q25/duckdb:duckdb 147981336 150248907 0.98
clickbench_q26/duckdb:duckdb 62173851 61930625 1.00
clickbench_q27/duckdb:duckdb 561798555 545799191 1.03
clickbench_q28/duckdb:duckdb 4547027980 4511175014 1.01
clickbench_q29/duckdb:duckdb 50000655 50571833 0.99
clickbench_q30/duckdb:duckdb 276980964 278141919 1.00
clickbench_q31/duckdb:duckdb 366541265 364849256 1.00
clickbench_q32/duckdb:duckdb 1119300576 1114880645 1.00
clickbench_q33/duckdb:duckdb 1152872220 1114966436 1.03
clickbench_q34/duckdb:duckdb 1216667671 1179221895 1.03
clickbench_q35/duckdb:duckdb 299301361 298231059 1.00
clickbench_q36/duckdb:duckdb 49787123 48589377 1.02
clickbench_q37/duckdb:duckdb 28990626 28908793 1.00
clickbench_q38/duckdb:duckdb 34319155 32722934 1.05
clickbench_q39/duckdb:duckdb 80728712 79459567 1.02
clickbench_q40/duckdb:duckdb 27689313 27870108 0.99
clickbench_q41/duckdb:duckdb 27458115 27518075 1.00
clickbench_q42/duckdb:duckdb 29641587 29504666 1.00

File Size Changes (345 files changed, -65.8% overall, 0↑ 345↓)
File Scale Format Base HEAD Change %
addressview.vortex 1.0 vortex-compact 24.53 MB 0 B 24.53 MB -100.0%
categoryview.vortex 1.0 vortex-compact 19.86 KB 0 B 19.86 KB -100.0%
creditcardview.vortex 1.0 vortex-compact 32.23 MB 0 B 32.23 MB -100.0%
customerview.vortex 1.0 vortex-compact 10.60 MB 0 B 10.60 MB -100.0%
duckdb.db 1.0 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
orderitemnovelty_update.vortex 1.0 vortex-compact 13.14 KB 0 B 13.14 KB -100.0%
orderitemview.vortex 1.0 vortex-compact 156.30 MB 0 B 156.30 MB -100.0%
orderview.vortex 1.0 vortex-compact 32.16 MB 0 B 32.16 MB -100.0%
productview.vortex 1.0 vortex-compact 18.77 KB 0 B 18.77 KB -100.0%
taxrecordview.vortex 1.0 vortex-compact 17.34 MB 0 B 17.34 MB -100.0%
addressview.vortex 1.0 vortex-file-compressed 34.71 MB 0 B 34.71 MB -100.0%
categoryview.vortex 1.0 vortex-file-compressed 20.74 KB 0 B 20.74 KB -100.0%
creditcardview.vortex 1.0 vortex-file-compressed 66.75 MB 0 B 66.75 MB -100.0%
customerview.vortex 1.0 vortex-file-compressed 19.91 MB 0 B 19.91 MB -100.0%
duckdb.db 1.0 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
orderitemnovelty_update.vortex 1.0 vortex-file-compressed 13.14 KB 0 B 13.14 KB -100.0%
orderitemview.vortex 1.0 vortex-file-compressed 297.21 MB 0 B 297.21 MB -100.0%
orderview.vortex 1.0 vortex-file-compressed 88.79 MB 0 B 88.79 MB -100.0%
productview.vortex 1.0 vortex-file-compressed 20.44 KB 0 B 20.44 KB -100.0%
taxrecordview.vortex 1.0 vortex-file-compressed 22.01 MB 0 B 22.01 MB -100.0%
duckdb.db 1.0 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
duckdb.db 1.0 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
sample.vortex 1.0 vortex-compact 1.23 GB 0 B 1.23 GB -100.0%
duckdb.db 1.0 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
sample.vortex 1.0 vortex-file-compressed 1.79 GB 0 B 1.79 GB -100.0%
stacktraces.vortex 1000000 vortex-file-compressed 689.41 MB 0 B 689.41 MB -100.0%
duckdb.db 100000 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
gnomad.genomes.v3.1.2.hgdp_tgp.chr21.vortex 100000 vortex-compact 959.35 MB 0 B 959.35 MB -100.0%
duckdb.db 100000 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
gnomad.genomes.v3.1.2.hgdp_tgp.chr21.vortex 100000 vortex-file-compressed 1.97 GB 0 B 1.97 GB -100.0%
call_center.vortex 1.0 vortex-compact 50.14 KB 0 B 50.14 KB -100.0%
catalog_page.vortex 1.0 vortex-compact 362.67 KB 0 B 362.67 KB -100.0%
catalog_returns.vortex 1.0 vortex-compact 6.02 MB 0 B 6.02 MB -100.0%
catalog_sales.vortex 1.0 vortex-compact 59.31 MB 0 B 59.31 MB -100.0%
customer.vortex 1.0 vortex-compact 3.29 MB 0 B 3.29 MB -100.0%
customer_address.vortex 1.0 vortex-compact 558.62 KB 0 B 558.62 KB -100.0%
customer_demographics.vortex 1.0 vortex-compact 649.61 KB 0 B 649.61 KB -100.0%
date_dim.vortex 1.0 vortex-compact 154.00 KB 0 B 154.00 KB -100.0%
duckdb.db 1.0 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
household_demographics.vortex 1.0 vortex-compact 10.79 KB 0 B 10.79 KB -100.0%
income_band.vortex 1.0 vortex-compact 5.98 KB 0 B 5.98 KB -100.0%
inventory.vortex 1.0 vortex-compact 16.07 MB 0 B 16.07 MB -100.0%
item.vortex 1.0 vortex-compact 994.21 KB 0 B 994.21 KB -100.0%
promotion.vortex 1.0 vortex-compact 51.51 KB 0 B 51.51 KB -100.0%
reason.vortex 1.0 vortex-compact 5.97 KB 0 B 5.97 KB -100.0%
ship_mode.vortex 1.0 vortex-compact 10.95 KB 0 B 10.95 KB -100.0%
store.vortex 1.0 vortex-compact 45.76 KB 0 B 45.76 KB -100.0%
store_returns.vortex 1.0 vortex-compact 9.31 MB 0 B 9.31 MB -100.0%
store_sales.vortex 1.0 vortex-compact 77.87 MB 0 B 77.87 MB -100.0%
time_dim.vortex 1.0 vortex-compact 97.35 KB 0 B 97.35 KB -100.0%
warehouse.vortex 1.0 vortex-compact 22.23 KB 0 B 22.23 KB -100.0%
web_page.vortex 1.0 vortex-compact 27.84 KB 0 B 27.84 KB -100.0%
web_returns.vortex 1.0 vortex-compact 2.99 MB 0 B 2.99 MB -100.0%
web_sales.vortex 1.0 vortex-compact 29.35 MB 0 B 29.35 MB -100.0%
web_site.vortex 1.0 vortex-compact 45.31 KB 0 B 45.31 KB -100.0%
call_center.vortex 1.0 vortex-file-compressed 54.94 KB 0 B 54.94 KB -100.0%
catalog_page.vortex 1.0 vortex-file-compressed 611.57 KB 0 B 611.57 KB -100.0%
catalog_returns.vortex 1.0 vortex-file-compressed 7.43 MB 0 B 7.43 MB -100.0%
catalog_sales.vortex 1.0 vortex-file-compressed 70.78 MB 0 B 70.78 MB -100.0%
customer.vortex 1.0 vortex-file-compressed 4.52 MB 0 B 4.52 MB -100.0%
customer_address.vortex 1.0 vortex-file-compressed 1012.96 KB 0 B 1012.96 KB -100.0%
customer_demographics.vortex 1.0 vortex-file-compressed 1.49 MB 0 B 1.49 MB -100.0%
date_dim.vortex 1.0 vortex-file-compressed 1.03 MB 0 B 1.03 MB -100.0%
duckdb.db 1.0 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
household_demographics.vortex 1.0 vortex-file-compressed 17.05 KB 0 B 17.05 KB -100.0%
income_band.vortex 1.0 vortex-file-compressed 6.19 KB 0 B 6.19 KB -100.0%
inventory.vortex 1.0 vortex-file-compressed 36.64 MB 0 B 36.64 MB -100.0%
item.vortex 1.0 vortex-file-compressed 1.75 MB 0 B 1.75 MB -100.0%
promotion.vortex 1.0 vortex-file-compressed 60.19 KB 0 B 60.19 KB -100.0%
reason.vortex 1.0 vortex-file-compressed 7.23 KB 0 B 7.23 KB -100.0%
ship_mode.vortex 1.0 vortex-file-compressed 13.12 KB 0 B 13.12 KB -100.0%
store.vortex 1.0 vortex-file-compressed 49.49 KB 0 B 49.49 KB -100.0%
store_returns.vortex 1.0 vortex-file-compressed 11.39 MB 0 B 11.39 MB -100.0%
store_sales.vortex 1.0 vortex-file-compressed 97.04 MB 0 B 97.04 MB -100.0%
time_dim.vortex 1.0 vortex-file-compressed 687.30 KB 0 B 687.30 KB -100.0%
warehouse.vortex 1.0 vortex-file-compressed 23.83 KB 0 B 23.83 KB -100.0%
web_page.vortex 1.0 vortex-file-compressed 31.92 KB 0 B 31.92 KB -100.0%
web_returns.vortex 1.0 vortex-file-compressed 3.55 MB 0 B 3.55 MB -100.0%
web_sales.vortex 1.0 vortex-file-compressed 34.27 MB 0 B 34.27 MB -100.0%
web_site.vortex 1.0 vortex-file-compressed 54.08 KB 0 B 54.08 KB -100.0%
customer_0.vortex 1.0 vortex-compact 7.43 MB 0 B 7.43 MB -100.0%
duckdb.db 1.0 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
lineitem_0.vortex 1.0 vortex-compact 63.00 MB 0 B 63.00 MB -100.0%
lineitem_1.vortex 1.0 vortex-compact 63.03 MB 0 B 63.03 MB -100.0%
nation_0.vortex 1.0 vortex-compact 8.34 KB 0 B 8.34 KB -100.0%
orders_0.vortex 1.0 vortex-compact 31.73 MB 0 B 31.73 MB -100.0%
part_0.vortex 1.0 vortex-compact 3.64 MB 0 B 3.64 MB -100.0%
partsupp_0.vortex 1.0 vortex-compact 25.23 MB 0 B 25.23 MB -100.0%
region_0.vortex 1.0 vortex-compact 5.86 KB 0 B 5.86 KB -100.0%
supplier_0.vortex 1.0 vortex-compact 496.72 KB 0 B 496.72 KB -100.0%
customer_0.vortex 1.0 vortex-file-compressed 10.50 MB 0 B 10.50 MB -100.0%
duckdb.db 1.0 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
lineitem_0.vortex 1.0 vortex-file-compressed 85.42 MB 0 B 85.42 MB -100.0%
lineitem_1.vortex 1.0 vortex-file-compressed 84.90 MB 0 B 84.90 MB -100.0%
nation_0.vortex 1.0 vortex-file-compressed 11.00 KB 0 B 11.00 KB -100.0%
orders_0.vortex 1.0 vortex-file-compressed 43.43 MB 0 B 43.43 MB -100.0%
part_0.vortex 1.0 vortex-file-compressed 5.44 MB 0 B 5.44 MB -100.0%
partsupp_0.vortex 1.0 vortex-file-compressed 35.94 MB 0 B 35.94 MB -100.0%
region_0.vortex 1.0 vortex-file-compressed 6.16 KB 0 B 6.16 KB -100.0%
supplier_0.vortex 1.0 vortex-file-compressed 706.34 KB 0 B 706.34 KB -100.0%
customer_0.vortex 10.0 vortex-compact 74.12 MB 0 B 74.12 MB -100.0%
duckdb.db 10.0 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
lineitem_0.vortex 10.0 vortex-compact 100.59 MB 0 B 100.59 MB -100.0%
lineitem_1.vortex 10.0 vortex-compact 100.64 MB 0 B 100.64 MB -100.0%
lineitem_10.vortex 10.0 vortex-compact 100.62 MB 0 B 100.62 MB -100.0%
lineitem_11.vortex 10.0 vortex-compact 100.53 MB 0 B 100.53 MB -100.0%
lineitem_12.vortex 10.0 vortex-compact 100.62 MB 0 B 100.62 MB -100.0%
lineitem_2.vortex 10.0 vortex-compact 100.59 MB 0 B 100.59 MB -100.0%
lineitem_3.vortex 10.0 vortex-compact 100.62 MB 0 B 100.62 MB -100.0%
lineitem_4.vortex 10.0 vortex-compact 100.56 MB 0 B 100.56 MB -100.0%
lineitem_5.vortex 10.0 vortex-compact 100.70 MB 0 B 100.70 MB -100.0%
lineitem_6.vortex 10.0 vortex-compact 100.68 MB 0 B 100.68 MB -100.0%
lineitem_7.vortex 10.0 vortex-compact 100.58 MB 0 B 100.58 MB -100.0%
lineitem_8.vortex 10.0 vortex-compact 100.59 MB 0 B 100.59 MB -100.0%
lineitem_9.vortex 10.0 vortex-compact 100.46 MB 0 B 100.46 MB -100.0%
nation_0.vortex 10.0 vortex-compact 8.34 KB 0 B 8.34 KB -100.0%
orders_0.vortex 10.0 vortex-compact 114.79 MB 0 B 114.79 MB -100.0%
orders_1.vortex 10.0 vortex-compact 114.76 MB 0 B 114.76 MB -100.0%
orders_2.vortex 10.0 vortex-compact 114.78 MB 0 B 114.78 MB -100.0%
part_0.vortex 10.0 vortex-compact 18.11 MB 0 B 18.11 MB -100.0%
part_1.vortex 10.0 vortex-compact 18.11 MB 0 B 18.11 MB -100.0%
partsupp_0.vortex 10.0 vortex-compact 126.76 MB 0 B 126.76 MB -100.0%
partsupp_1.vortex 10.0 vortex-compact 126.74 MB 0 B 126.74 MB -100.0%
region_0.vortex 10.0 vortex-compact 5.86 KB 0 B 5.86 KB -100.0%
supplier_0.vortex 10.0 vortex-compact 4.73 MB 0 B 4.73 MB -100.0%
customer_0.vortex 10.0 vortex-file-compressed 104.73 MB 0 B 104.73 MB -100.0%
duckdb.db 10.0 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
lineitem_0.vortex 10.0 vortex-file-compressed 134.65 MB 0 B 134.65 MB -100.0%
lineitem_1.vortex 10.0 vortex-file-compressed 134.27 MB 0 B 134.27 MB -100.0%
lineitem_10.vortex 10.0 vortex-file-compressed 134.51 MB 0 B 134.51 MB -100.0%
lineitem_11.vortex 10.0 vortex-file-compressed 134.87 MB 0 B 134.87 MB -100.0%
lineitem_12.vortex 10.0 vortex-file-compressed 134.52 MB 0 B 134.52 MB -100.0%
lineitem_2.vortex 10.0 vortex-file-compressed 134.38 MB 0 B 134.38 MB -100.0%
lineitem_3.vortex 10.0 vortex-file-compressed 133.74 MB 0 B 133.74 MB -100.0%
lineitem_4.vortex 10.0 vortex-file-compressed 134.43 MB 0 B 134.43 MB -100.0%
lineitem_5.vortex 10.0 vortex-file-compressed 133.86 MB 0 B 133.86 MB -100.0%
lineitem_6.vortex 10.0 vortex-file-compressed 133.23 MB 0 B 133.23 MB -100.0%
lineitem_7.vortex 10.0 vortex-file-compressed 134.01 MB 0 B 134.01 MB -100.0%
lineitem_8.vortex 10.0 vortex-file-compressed 134.06 MB 0 B 134.06 MB -100.0%
lineitem_9.vortex 10.0 vortex-file-compressed 134.65 MB 0 B 134.65 MB -100.0%
nation_0.vortex 10.0 vortex-file-compressed 11.00 KB 0 B 11.00 KB -100.0%
orders_0.vortex 10.0 vortex-file-compressed 163.92 MB 0 B 163.92 MB -100.0%
orders_1.vortex 10.0 vortex-file-compressed 164.15 MB 0 B 164.15 MB -100.0%
orders_2.vortex 10.0 vortex-file-compressed 164.00 MB 0 B 164.00 MB -100.0%
part_0.vortex 10.0 vortex-file-compressed 27.02 MB 0 B 27.02 MB -100.0%
part_1.vortex 10.0 vortex-file-compressed 26.99 MB 0 B 26.99 MB -100.0%
partsupp_0.vortex 10.0 vortex-file-compressed 180.47 MB 0 B 180.47 MB -100.0%
partsupp_1.vortex 10.0 vortex-file-compressed 180.65 MB 0 B 180.65 MB -100.0%
region_0.vortex 10.0 vortex-file-compressed 6.16 KB 0 B 6.16 KB -100.0%
supplier_0.vortex 10.0 vortex-file-compressed 6.69 MB 0 B 6.69 MB -100.0%
customer_0.vortex 100 vortex-file-compressed 261.80 MB 0 B 261.80 MB -100.0%
customer_1.vortex 100 vortex-file-compressed 261.77 MB 0 B 261.77 MB -100.0%
customer_2.vortex 100 vortex-file-compressed 261.69 MB 0 B 261.69 MB -100.0%
customer_3.vortex 100 vortex-file-compressed 261.80 MB 0 B 261.80 MB -100.0%
duckdb.db 100 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
lineitem_0.vortex 100 vortex-file-compressed 148.68 MB 0 B 148.68 MB -100.0%
lineitem_1.vortex 100 vortex-file-compressed 148.56 MB 0 B 148.56 MB -100.0%
lineitem_10.vortex 100 vortex-file-compressed 148.35 MB 0 B 148.35 MB -100.0%
lineitem_100.vortex 100 vortex-file-compressed 148.11 MB 0 B 148.11 MB -100.0%
lineitem_101.vortex 100 vortex-file-compressed 148.35 MB 0 B 148.35 MB -100.0%
lineitem_102.vortex 100 vortex-file-compressed 148.14 MB 0 B 148.14 MB -100.0%
lineitem_103.vortex 100 vortex-file-compressed 148.37 MB 0 B 148.37 MB -100.0%
lineitem_104.vortex 100 vortex-file-compressed 148.59 MB 0 B 148.59 MB -100.0%
lineitem_105.vortex 100 vortex-file-compressed 147.47 MB 0 B 147.47 MB -100.0%
lineitem_106.vortex 100 vortex-file-compressed 148.07 MB 0 B 148.07 MB -100.0%
lineitem_107.vortex 100 vortex-file-compressed 148.04 MB 0 B 148.04 MB -100.0%
lineitem_108.vortex 100 vortex-file-compressed 147.29 MB 0 B 147.29 MB -100.0%
lineitem_109.vortex 100 vortex-file-compressed 148.03 MB 0 B 148.03 MB -100.0%
lineitem_11.vortex 100 vortex-file-compressed 148.62 MB 0 B 148.62 MB -100.0%
lineitem_110.vortex 100 vortex-file-compressed 148.41 MB 0 B 148.41 MB -100.0%
lineitem_111.vortex 100 vortex-file-compressed 147.77 MB 0 B 147.77 MB -100.0%
lineitem_112.vortex 100 vortex-file-compressed 147.42 MB 0 B 147.42 MB -100.0%
lineitem_113.vortex 100 vortex-file-compressed 147.56 MB 0 B 147.56 MB -100.0%
lineitem_114.vortex 100 vortex-file-compressed 147.46 MB 0 B 147.46 MB -100.0%
lineitem_115.vortex 100 vortex-file-compressed 147.64 MB 0 B 147.64 MB -100.0%
lineitem_116.vortex 100 vortex-file-compressed 148.20 MB 0 B 148.20 MB -100.0%
lineitem_117.vortex 100 vortex-file-compressed 148.24 MB 0 B 148.24 MB -100.0%
lineitem_118.vortex 100 vortex-file-compressed 147.83 MB 0 B 147.83 MB -100.0%
lineitem_119.vortex 100 vortex-file-compressed 148.33 MB 0 B 148.33 MB -100.0%
lineitem_12.vortex 100 vortex-file-compressed 148.19 MB 0 B 148.19 MB -100.0%
lineitem_120.vortex 100 vortex-file-compressed 147.10 MB 0 B 147.10 MB -100.0%
lineitem_13.vortex 100 vortex-file-compressed 148.26 MB 0 B 148.26 MB -100.0%
lineitem_14.vortex 100 vortex-file-compressed 147.79 MB 0 B 147.79 MB -100.0%
lineitem_15.vortex 100 vortex-file-compressed 147.63 MB 0 B 147.63 MB -100.0%
lineitem_16.vortex 100 vortex-file-compressed 148.03 MB 0 B 148.03 MB -100.0%
lineitem_17.vortex 100 vortex-file-compressed 148.59 MB 0 B 148.59 MB -100.0%
lineitem_18.vortex 100 vortex-file-compressed 147.55 MB 0 B 147.55 MB -100.0%
lineitem_19.vortex 100 vortex-file-compressed 148.77 MB 0 B 148.77 MB -100.0%
lineitem_2.vortex 100 vortex-file-compressed 148.59 MB 0 B 148.59 MB -100.0%
lineitem_20.vortex 100 vortex-file-compressed 148.78 MB 0 B 148.78 MB -100.0%
lineitem_21.vortex 100 vortex-file-compressed 148.33 MB 0 B 148.33 MB -100.0%
lineitem_22.vortex 100 vortex-file-compressed 147.32 MB 0 B 147.32 MB -100.0%
lineitem_23.vortex 100 vortex-file-compressed 148.19 MB 0 B 148.19 MB -100.0%
lineitem_24.vortex 100 vortex-file-compressed 147.50 MB 0 B 147.50 MB -100.0%
lineitem_25.vortex 100 vortex-file-compressed 148.52 MB 0 B 148.52 MB -100.0%
lineitem_26.vortex 100 vortex-file-compressed 148.11 MB 0 B 148.11 MB -100.0%
lineitem_27.vortex 100 vortex-file-compressed 148.45 MB 0 B 148.45 MB -100.0%
lineitem_28.vortex 100 vortex-file-compressed 148.66 MB 0 B 148.66 MB -100.0%
lineitem_29.vortex 100 vortex-file-compressed 148.75 MB 0 B 148.75 MB -100.0%
lineitem_3.vortex 100 vortex-file-compressed 148.16 MB 0 B 148.16 MB -100.0%
lineitem_30.vortex 100 vortex-file-compressed 147.46 MB 0 B 147.46 MB -100.0%
lineitem_31.vortex 100 vortex-file-compressed 148.50 MB 0 B 148.50 MB -100.0%
lineitem_32.vortex 100 vortex-file-compressed 148.90 MB 0 B 148.90 MB -100.0%
lineitem_33.vortex 100 vortex-file-compressed 147.74 MB 0 B 147.74 MB -100.0%
lineitem_34.vortex 100 vortex-file-compressed 148.93 MB 0 B 148.93 MB -100.0%
lineitem_35.vortex 100 vortex-file-compressed 148.35 MB 0 B 148.35 MB -100.0%
lineitem_36.vortex 100 vortex-file-compressed 147.64 MB 0 B 147.64 MB -100.0%
lineitem_37.vortex 100 vortex-file-compressed 147.47 MB 0 B 147.47 MB -100.0%
lineitem_38.vortex 100 vortex-file-compressed 149.09 MB 0 B 149.09 MB -100.0%
lineitem_39.vortex 100 vortex-file-compressed 147.38 MB 0 B 147.38 MB -100.0%
lineitem_4.vortex 100 vortex-file-compressed 147.27 MB 0 B 147.27 MB -100.0%
lineitem_40.vortex 100 vortex-file-compressed 147.97 MB 0 B 147.97 MB -100.0%
lineitem_41.vortex 100 vortex-file-compressed 146.66 MB 0 B 146.66 MB -100.0%
lineitem_42.vortex 100 vortex-file-compressed 148.38 MB 0 B 148.38 MB -100.0%
lineitem_43.vortex 100 vortex-file-compressed 147.84 MB 0 B 147.84 MB -100.0%
lineitem_44.vortex 100 vortex-file-compressed 147.91 MB 0 B 147.91 MB -100.0%
lineitem_45.vortex 100 vortex-file-compressed 146.88 MB 0 B 146.88 MB -100.0%
lineitem_46.vortex 100 vortex-file-compressed 147.77 MB 0 B 147.77 MB -100.0%
lineitem_47.vortex 100 vortex-file-compressed 148.26 MB 0 B 148.26 MB -100.0%
lineitem_48.vortex 100 vortex-file-compressed 148.23 MB 0 B 148.23 MB -100.0%
lineitem_49.vortex 100 vortex-file-compressed 148.47 MB 0 B 148.47 MB -100.0%
lineitem_5.vortex 100 vortex-file-compressed 148.16 MB 0 B 148.16 MB -100.0%
lineitem_50.vortex 100 vortex-file-compressed 148.88 MB 0 B 148.88 MB -100.0%
lineitem_51.vortex 100 vortex-file-compressed 148.42 MB 0 B 148.42 MB -100.0%
lineitem_52.vortex 100 vortex-file-compressed 146.97 MB 0 B 146.97 MB -100.0%
lineitem_53.vortex 100 vortex-file-compressed 148.23 MB 0 B 148.23 MB -100.0%
lineitem_54.vortex 100 vortex-file-compressed 149.12 MB 0 B 149.12 MB -100.0%
lineitem_55.vortex 100 vortex-file-compressed 148.16 MB 0 B 148.16 MB -100.0%
lineitem_56.vortex 100 vortex-file-compressed 147.73 MB 0 B 147.73 MB -100.0%
lineitem_57.vortex 100 vortex-file-compressed 148.37 MB 0 B 148.37 MB -100.0%
lineitem_58.vortex 100 vortex-file-compressed 148.72 MB 0 B 148.72 MB -100.0%
lineitem_59.vortex 100 vortex-file-compressed 148.42 MB 0 B 148.42 MB -100.0%
lineitem_6.vortex 100 vortex-file-compressed 147.90 MB 0 B 147.90 MB -100.0%
lineitem_60.vortex 100 vortex-file-compressed 148.62 MB 0 B 148.62 MB -100.0%
lineitem_61.vortex 100 vortex-file-compressed 147.73 MB 0 B 147.73 MB -100.0%
lineitem_62.vortex 100 vortex-file-compressed 146.94 MB 0 B 146.94 MB -100.0%
lineitem_63.vortex 100 vortex-file-compressed 148.65 MB 0 B 148.65 MB -100.0%
lineitem_64.vortex 100 vortex-file-compressed 147.72 MB 0 B 147.72 MB -100.0%
lineitem_65.vortex 100 vortex-file-compressed 147.57 MB 0 B 147.57 MB -100.0%
lineitem_66.vortex 100 vortex-file-compressed 148.09 MB 0 B 148.09 MB -100.0%
lineitem_67.vortex 100 vortex-file-compressed 148.84 MB 0 B 148.84 MB -100.0%
lineitem_68.vortex 100 vortex-file-compressed 148.03 MB 0 B 148.03 MB -100.0%
lineitem_69.vortex 100 vortex-file-compressed 148.10 MB 0 B 148.10 MB -100.0%
lineitem_7.vortex 100 vortex-file-compressed 147.86 MB 0 B 147.86 MB -100.0%
lineitem_70.vortex 100 vortex-file-compressed 147.89 MB 0 B 147.89 MB -100.0%
lineitem_71.vortex 100 vortex-file-compressed 147.94 MB 0 B 147.94 MB -100.0%
lineitem_72.vortex 100 vortex-file-compressed 147.99 MB 0 B 147.99 MB -100.0%
lineitem_73.vortex 100 vortex-file-compressed 148.32 MB 0 B 148.32 MB -100.0%
lineitem_74.vortex 100 vortex-file-compressed 147.55 MB 0 B 147.55 MB -100.0%
lineitem_75.vortex 100 vortex-file-compressed 147.88 MB 0 B 147.88 MB -100.0%
lineitem_76.vortex 100 vortex-file-compressed 147.35 MB 0 B 147.35 MB -100.0%
lineitem_77.vortex 100 vortex-file-compressed 148.24 MB 0 B 148.24 MB -100.0%
lineitem_78.vortex 100 vortex-file-compressed 147.35 MB 0 B 147.35 MB -100.0%
lineitem_79.vortex 100 vortex-file-compressed 148.43 MB 0 B 148.43 MB -100.0%
lineitem_8.vortex 100 vortex-file-compressed 148.56 MB 0 B 148.56 MB -100.0%
lineitem_80.vortex 100 vortex-file-compressed 147.55 MB 0 B 147.55 MB -100.0%
lineitem_81.vortex 100 vortex-file-compressed 147.76 MB 0 B 147.76 MB -100.0%
lineitem_82.vortex 100 vortex-file-compressed 148.37 MB 0 B 148.37 MB -100.0%
lineitem_83.vortex 100 vortex-file-compressed 148.68 MB 0 B 148.68 MB -100.0%
lineitem_84.vortex 100 vortex-file-compressed 147.94 MB 0 B 147.94 MB -100.0%
lineitem_85.vortex 100 vortex-file-compressed 147.92 MB 0 B 147.92 MB -100.0%
lineitem_86.vortex 100 vortex-file-compressed 147.62 MB 0 B 147.62 MB -100.0%
lineitem_87.vortex 100 vortex-file-compressed 147.46 MB 0 B 147.46 MB -100.0%
lineitem_88.vortex 100 vortex-file-compressed 148.71 MB 0 B 148.71 MB -100.0%
lineitem_89.vortex 100 vortex-file-compressed 148.03 MB 0 B 148.03 MB -100.0%
lineitem_9.vortex 100 vortex-file-compressed 148.87 MB 0 B 148.87 MB -100.0%
lineitem_90.vortex 100 vortex-file-compressed 147.82 MB 0 B 147.82 MB -100.0%
lineitem_91.vortex 100 vortex-file-compressed 148.27 MB 0 B 148.27 MB -100.0%
lineitem_92.vortex 100 vortex-file-compressed 148.08 MB 0 B 148.08 MB -100.0%
lineitem_93.vortex 100 vortex-file-compressed 147.77 MB 0 B 147.77 MB -100.0%
lineitem_94.vortex 100 vortex-file-compressed 148.40 MB 0 B 148.40 MB -100.0%
lineitem_95.vortex 100 vortex-file-compressed 147.49 MB 0 B 147.49 MB -100.0%
lineitem_96.vortex 100 vortex-file-compressed 148.03 MB 0 B 148.03 MB -100.0%
lineitem_97.vortex 100 vortex-file-compressed 148.10 MB 0 B 148.10 MB -100.0%
lineitem_98.vortex 100 vortex-file-compressed 148.59 MB 0 B 148.59 MB -100.0%
lineitem_99.vortex 100 vortex-file-compressed 147.26 MB 0 B 147.26 MB -100.0%
nation_0.vortex 100 vortex-file-compressed 11.00 KB 0 B 11.00 KB -100.0%
orders_0.vortex 100 vortex-file-compressed 180.00 MB 0 B 180.00 MB -100.0%
orders_1.vortex 100 vortex-file-compressed 179.92 MB 0 B 179.92 MB -100.0%
orders_10.vortex 100 vortex-file-compressed 180.14 MB 0 B 180.14 MB -100.0%
orders_11.vortex 100 vortex-file-compressed 180.08 MB 0 B 180.08 MB -100.0%
orders_12.vortex 100 vortex-file-compressed 180.32 MB 0 B 180.32 MB -100.0%
orders_13.vortex 100 vortex-file-compressed 179.83 MB 0 B 179.83 MB -100.0%
orders_14.vortex 100 vortex-file-compressed 180.18 MB 0 B 180.18 MB -100.0%
orders_15.vortex 100 vortex-file-compressed 180.19 MB 0 B 180.19 MB -100.0%
orders_16.vortex 100 vortex-file-compressed 179.88 MB 0 B 179.88 MB -100.0%
orders_17.vortex 100 vortex-file-compressed 180.01 MB 0 B 180.01 MB -100.0%
orders_18.vortex 100 vortex-file-compressed 180.45 MB 0 B 180.45 MB -100.0%
orders_19.vortex 100 vortex-file-compressed 180.04 MB 0 B 180.04 MB -100.0%
orders_2.vortex 100 vortex-file-compressed 180.35 MB 0 B 180.35 MB -100.0%
orders_20.vortex 100 vortex-file-compressed 179.85 MB 0 B 179.85 MB -100.0%
orders_21.vortex 100 vortex-file-compressed 179.89 MB 0 B 179.89 MB -100.0%
orders_22.vortex 100 vortex-file-compressed 180.04 MB 0 B 180.04 MB -100.0%
orders_23.vortex 100 vortex-file-compressed 179.94 MB 0 B 179.94 MB -100.0%
orders_24.vortex 100 vortex-file-compressed 179.56 MB 0 B 179.56 MB -100.0%
orders_25.vortex 100 vortex-file-compressed 179.82 MB 0 B 179.82 MB -100.0%
orders_26.vortex 100 vortex-file-compressed 179.99 MB 0 B 179.99 MB -100.0%
orders_27.vortex 100 vortex-file-compressed 179.78 MB 0 B 179.78 MB -100.0%
orders_3.vortex 100 vortex-file-compressed 180.12 MB 0 B 180.12 MB -100.0%
orders_4.vortex 100 vortex-file-compressed 180.39 MB 0 B 180.39 MB -100.0%
orders_5.vortex 100 vortex-file-compressed 180.03 MB 0 B 180.03 MB -100.0%
orders_6.vortex 100 vortex-file-compressed 179.80 MB 0 B 179.80 MB -100.0%
orders_7.vortex 100 vortex-file-compressed 180.12 MB 0 B 180.12 MB -100.0%
orders_8.vortex 100 vortex-file-compressed 180.21 MB 0 B 180.21 MB -100.0%
orders_9.vortex 100 vortex-file-compressed 180.11 MB 0 B 180.11 MB -100.0%
part_0.vortex 100 vortex-file-compressed 28.45 MB 0 B 28.45 MB -100.0%
part_1.vortex 100 vortex-file-compressed 28.49 MB 0 B 28.49 MB -100.0%
part_10.vortex 100 vortex-file-compressed 28.43 MB 0 B 28.43 MB -100.0%
part_11.vortex 100 vortex-file-compressed 28.45 MB 0 B 28.45 MB -100.0%
part_12.vortex 100 vortex-file-compressed 28.43 MB 0 B 28.43 MB -100.0%
part_13.vortex 100 vortex-file-compressed 28.44 MB 0 B 28.44 MB -100.0%
part_14.vortex 100 vortex-file-compressed 28.46 MB 0 B 28.46 MB -100.0%
part_15.vortex 100 vortex-file-compressed 28.48 MB 0 B 28.48 MB -100.0%
part_16.vortex 100 vortex-file-compressed 28.42 MB 0 B 28.42 MB -100.0%
part_17.vortex 100 vortex-file-compressed 28.41 MB 0 B 28.41 MB -100.0%
part_18.vortex 100 vortex-file-compressed 28.51 MB 0 B 28.51 MB -100.0%
part_2.vortex 100 vortex-file-compressed 28.46 MB 0 B 28.46 MB -100.0%
part_3.vortex 100 vortex-file-compressed 28.43 MB 0 B 28.43 MB -100.0%
part_4.vortex 100 vortex-file-compressed 28.42 MB 0 B 28.42 MB -100.0%
part_5.vortex 100 vortex-file-compressed 28.38 MB 0 B 28.38 MB -100.0%
part_6.vortex 100 vortex-file-compressed 28.44 MB 0 B 28.44 MB -100.0%
part_7.vortex 100 vortex-file-compressed 28.41 MB 0 B 28.41 MB -100.0%
part_8.vortex 100 vortex-file-compressed 28.43 MB 0 B 28.43 MB -100.0%
part_9.vortex 100 vortex-file-compressed 28.41 MB 0 B 28.41 MB -100.0%
partsupp_0.vortex 100 vortex-file-compressed 191.37 MB 0 B 191.37 MB -100.0%
partsupp_1.vortex 100 vortex-file-compressed 191.69 MB 0 B 191.69 MB -100.0%
partsupp_10.vortex 100 vortex-file-compressed 191.59 MB 0 B 191.59 MB -100.0%
partsupp_11.vortex 100 vortex-file-compressed 191.43 MB 0 B 191.43 MB -100.0%
partsupp_12.vortex 100 vortex-file-compressed 191.50 MB 0 B 191.50 MB -100.0%
partsupp_13.vortex 100 vortex-file-compressed 191.35 MB 0 B 191.35 MB -100.0%
partsupp_14.vortex 100 vortex-file-compressed 191.62 MB 0 B 191.62 MB -100.0%
partsupp_15.vortex 100 vortex-file-compressed 191.52 MB 0 B 191.52 MB -100.0%
partsupp_16.vortex 100 vortex-file-compressed 191.25 MB 0 B 191.25 MB -100.0%
partsupp_17.vortex 100 vortex-file-compressed 191.49 MB 0 B 191.49 MB -100.0%
partsupp_18.vortex 100 vortex-file-compressed 191.38 MB 0 B 191.38 MB -100.0%
partsupp_2.vortex 100 vortex-file-compressed 191.39 MB 0 B 191.39 MB -100.0%
partsupp_3.vortex 100 vortex-file-compressed 191.37 MB 0 B 191.37 MB -100.0%
partsupp_4.vortex 100 vortex-file-compressed 191.40 MB 0 B 191.40 MB -100.0%
partsupp_5.vortex 100 vortex-file-compressed 191.41 MB 0 B 191.41 MB -100.0%
partsupp_6.vortex 100 vortex-file-compressed 191.38 MB 0 B 191.38 MB -100.0%
partsupp_7.vortex 100 vortex-file-compressed 191.61 MB 0 B 191.61 MB -100.0%
partsupp_8.vortex 100 vortex-file-compressed 191.49 MB 0 B 191.49 MB -100.0%
partsupp_9.vortex 100 vortex-file-compressed 191.50 MB 0 B 191.50 MB -100.0%
region_0.vortex 100 vortex-file-compressed 6.16 KB 0 B 6.16 KB -100.0%
supplier_0.vortex 100 vortex-file-compressed 66.71 MB 0 B 66.71 MB -100.0%

Totals:

  • vortex-compact: 11.86 GB → 7.06 GB (-40.5%)
  • vortex-file-compressed: 49.77 GB → 14.01 GB (-71.9%)
Full attributed analysis
Query Config Raw Δ Control Δ Attributed α Noise floor Significant?
0 datafusion:vortex-file-compressed -0.6% -1.7% +1.1% +756.4% ➖ noise
0 duckdb:duckdb -1.5% -1.7% +0.2% +277.0% ➖ noise
0 duckdb:vortex-file-compressed +11.0% -1.7% +12.9% +456.5% ➖ noise
1 datafusion:vortex-file-compressed -1.5% +3.3% -4.7% +29.1% ➖ noise
1 duckdb:duckdb -2.6% +3.3% -5.7% +42.2% ➖ noise
1 duckdb:vortex-file-compressed +1.5% +3.3% -1.7% +24.1% ➖ noise
2 datafusion:vortex-file-compressed -4.7% +0.0% -4.7% +12.5% ➖ noise
2 duckdb:duckdb -1.5% +0.0% -1.5% +25.6% ➖ noise
2 duckdb:vortex-file-compressed +1.2% +0.0% +1.1% +11.5% ➖ noise
3 datafusion:vortex-file-compressed +12.2% +0.0% +12.2% +136.6% ➖ noise
3 duckdb:duckdb -1.4% +0.0% -1.4% +37.9% ➖ noise
3 duckdb:vortex-file-compressed +0.4% +0.0% +0.4% +63.2% ➖ noise
4 datafusion:vortex-file-compressed +2.1% +1.2% +0.8% +12.0% ➖ noise
4 duckdb:duckdb +0.3% +1.2% -0.9% +11.2% ➖ noise
4 duckdb:vortex-file-compressed +0.4% +1.2% -0.8% +11.4% ➖ noise
5 datafusion:vortex-file-compressed +7.1% +3.5% +3.5% +10.0% ➖ noise
5 duckdb:duckdb -0.7% +3.5% -4.1% +10.0% ➖ noise
5 duckdb:vortex-file-compressed -2.7% +3.5% -6.0% +10.0% ➖ noise
6 datafusion:vortex-file-compressed -6.4% -1.0% -5.4% +39.9% ➖ noise
6 duckdb:duckdb -5.8% -1.0% -4.8% +16.6% ➖ noise
6 duckdb:vortex-file-compressed +0.8% -1.0% +1.8% +19.3% ➖ noise
7 datafusion:vortex-file-compressed -5.1% +2.2% -7.2% +30.5% ➖ noise
7 duckdb:duckdb -1.2% +2.2% -3.3% +10.0% ➖ noise
7 duckdb:vortex-file-compressed +16.3% +2.2% +13.8% +16.3% ➖ noise
8 datafusion:vortex-file-compressed +5.8% +1.2% +4.6% +10.0% ➖ noise
8 duckdb:duckdb -0.4% +1.2% -1.5% +10.0% ➖ noise
8 duckdb:vortex-file-compressed -0.7% +1.2% -1.9% +10.0% ➖ noise
9 datafusion:vortex-file-compressed +3.8% +2.8% +1.0% +10.0% ➖ noise
9 duckdb:duckdb +0.2% +2.8% -2.5% +10.0% ➖ noise
9 duckdb:vortex-file-compressed +0.3% +2.8% -2.4% +10.0% ➖ noise
10 datafusion:vortex-file-compressed +3.9% +2.5% +1.4% +16.2% ➖ noise
10 duckdb:duckdb -0.2% +2.5% -2.6% +10.0% ➖ noise
10 duckdb:vortex-file-compressed +3.1% +2.5% +0.6% +10.8% ➖ noise
11 datafusion:vortex-file-compressed +1.5% +1.5% +0.1% +12.7% ➖ noise
11 duckdb:duckdb +1.4% +1.5% -0.1% +10.0% ➖ noise
11 duckdb:vortex-file-compressed +1.5% +1.5% +0.0% +10.0% ➖ noise
12 datafusion:vortex-file-compressed +4.5% +2.6% +1.8% +10.0% ➖ noise
12 duckdb:duckdb -1.0% +2.6% -3.5% +10.0% ➖ noise
12 duckdb:vortex-file-compressed -0.3% +2.6% -2.9% +10.0% ➖ noise
13 datafusion:vortex-file-compressed -2.1% +3.4% -5.4% +10.0% ➖ noise
13 duckdb:duckdb -0.3% +3.4% -3.6% +10.0% ➖ noise
13 duckdb:vortex-file-compressed -1.8% +3.4% -5.1% +10.0% ➖ noise
14 datafusion:vortex-file-compressed -2.7% +0.9% -3.6% +10.0% ➖ noise
14 duckdb:duckdb -0.3% +0.9% -1.2% +10.0% ➖ noise
14 duckdb:vortex-file-compressed -2.9% +0.9% -3.8% +10.0% ➖ noise
15 datafusion:vortex-file-compressed +1.2% +1.0% +0.2% +10.0% ➖ noise
15 duckdb:duckdb -0.0% +1.0% -1.0% +10.0% ➖ noise
15 duckdb:vortex-file-compressed -3.3% +1.0% -4.2% +10.0% ➖ noise
16 datafusion:vortex-file-compressed +0.6% +4.7% -3.9% +10.0% ➖ noise
16 duckdb:duckdb +1.4% +4.7% -3.2% +10.0% ➖ noise
16 duckdb:vortex-file-compressed +1.0% +4.7% -3.6% +10.0% ➖ noise
17 datafusion:vortex-file-compressed +2.5% +2.3% +0.2% +10.0% ➖ noise
17 duckdb:duckdb -1.8% +2.3% -4.0% +10.0% ➖ noise
17 duckdb:vortex-file-compressed +1.1% +2.3% -1.1% +10.0% ➖ noise
18 datafusion:vortex-file-compressed -3.7% +0.9% -4.6% +10.0% ➖ noise
18 duckdb:duckdb -1.0% +0.9% -2.0% +10.0% ➖ noise
18 duckdb:vortex-file-compressed -1.0% +0.9% -1.9% +10.0% ➖ noise
19 datafusion:vortex-file-compressed -2.4% +9.2% -10.7% +40.3% ➖ noise
19 duckdb:duckdb -1.7% +9.2% -9.9% +25.3% ➖ noise
19 duckdb:vortex-file-compressed -4.5% +9.2% -12.5% +28.0% ➖ noise
20 datafusion:vortex-file-compressed -0.5% +2.1% -2.5% +198.5% ➖ noise
20 duckdb:duckdb +4.8% +2.1% +2.6% +70.9% ➖ noise
20 duckdb:vortex-file-compressed -2.0% +2.1% -4.0% +41.9% ➖ noise
21 datafusion:vortex-file-compressed -0.3% +0.2% -0.4% +10.0% ➖ noise
21 duckdb:duckdb -1.6% +0.2% -1.8% +10.0% ➖ noise
21 duckdb:vortex-file-compressed -0.4% +0.2% -0.5% +10.1% ➖ noise
22 datafusion:vortex-file-compressed -0.8% +1.3% -2.0% +12.2% ➖ noise
22 duckdb:duckdb +4.6% +1.3% +3.3% +31.7% ➖ noise
22 duckdb:vortex-file-compressed +9.0% +1.3% +7.7% +24.4% ➖ noise
23 datafusion:vortex-file-compressed +13.4% +0.1% +13.4% +41.9% ➖ noise
23 duckdb:duckdb +2.8% +0.1% +2.7% +10.0% ➖ noise
23 duckdb:vortex-file-compressed -8.6% +0.1% -8.6% +32.5% ➖ noise
24 datafusion:vortex-file-compressed -14.8% +4.9% -18.8% +27.9% ➖ noise
24 duckdb:duckdb -2.2% +4.9% -6.7% +36.6% ➖ noise
24 duckdb:vortex-file-compressed +1.4% +4.9% -3.4% +26.0% ➖ noise
25 datafusion:vortex-file-compressed +1.1% +0.6% +0.5% +11.8% ➖ noise
25 duckdb:duckdb -1.5% +0.6% -2.1% +10.0% ➖ noise
25 duckdb:vortex-file-compressed -2.2% +0.6% -2.8% +13.9% ➖ noise
26 datafusion:vortex-file-compressed +5.4% +1.3% +4.1% +10.5% ➖ noise
26 duckdb:duckdb +0.4% +1.3% -0.9% +10.0% ➖ noise
26 duckdb:vortex-file-compressed -10.5% +1.3% -11.7% +18.0% ➖ noise
27 datafusion:vortex-file-compressed +3.3% -0.5% +3.7% +10.0% ➖ noise
27 duckdb:duckdb +2.9% -0.5% +3.4% +10.0% ➖ noise
27 duckdb:vortex-file-compressed -2.3% -0.5% -1.8% +10.0% ➖ noise
28 datafusion:vortex-file-compressed +1.2% +1.9% -0.7% +10.0% ➖ noise
28 duckdb:duckdb +0.8% +1.9% -1.1% +10.0% ➖ noise
28 duckdb:vortex-file-compressed -0.9% +1.9% -2.7% +12.3% ➖ noise
29 datafusion:vortex-file-compressed +0.3% +2.2% -1.8% +10.0% ➖ noise
29 duckdb:duckdb -1.1% +2.2% -3.2% +10.0% ➖ noise
29 duckdb:vortex-file-compressed -2.7% +2.2% -4.8% +61.2% ➖ noise
30 datafusion:vortex-file-compressed +1.2% +0.7% +0.5% +10.0% ➖ noise
30 duckdb:duckdb -0.4% +0.7% -1.2% +10.0% ➖ noise
30 duckdb:vortex-file-compressed -0.1% +0.7% -0.9% +10.0% ➖ noise
31 datafusion:vortex-file-compressed +0.2% -2.1% +2.3% +10.0% ➖ noise
31 duckdb:duckdb +0.5% -2.1% +2.6% +10.0% ➖ noise
31 duckdb:vortex-file-compressed -1.4% -2.1% +0.7% +10.0% ➖ noise
32 datafusion:vortex-file-compressed +1.9% +3.0% -1.0% +10.0% ➖ noise
32 duckdb:duckdb +0.4% +3.0% -2.5% +10.0% ➖ noise
32 duckdb:vortex-file-compressed +0.2% +3.0% -2.7% +10.0% ➖ noise
33 datafusion:vortex-file-compressed +0.2% +0.4% -0.2% +10.0% ➖ noise
33 duckdb:duckdb +3.4% +0.4% +3.0% +10.0% ➖ noise
33 duckdb:vortex-file-compressed -3.5% +0.4% -3.9% +10.0% ➖ noise
34 datafusion:vortex-file-compressed +1.9% -1.7% +3.7% +10.0% ➖ noise
34 duckdb:duckdb +3.2% -1.7% +4.9% +10.0% ➖ noise
34 duckdb:vortex-file-compressed -0.0% -1.7% +1.7% +10.0% ➖ noise
35 datafusion:vortex-file-compressed -0.4% -1.0% +0.6% +10.0% ➖ noise
35 duckdb:duckdb +0.4% -1.0% +1.4% +10.0% ➖ noise
35 duckdb:vortex-file-compressed +1.3% -1.0% +2.3% +10.0% ➖ noise
36 datafusion:vortex-file-compressed -8.1% +2.5% -10.3% +12.6% ➖ noise
36 duckdb:duckdb +2.5% +2.5% -0.0% +18.3% ➖ noise
36 duckdb:vortex-file-compressed +6.1% +2.5% +3.5% +10.4% ➖ noise
37 datafusion:vortex-file-compressed -4.0% -1.2% -2.8% +19.5% ➖ noise
37 duckdb:duckdb +0.3% -1.2% +1.5% +10.0% ➖ noise
37 duckdb:vortex-file-compressed +14.2% -1.2% +15.5% +16.2% ➖ noise
38 datafusion:vortex-file-compressed +3.9% +0.3% +3.6% +18.1% ➖ noise
38 duckdb:duckdb +4.9% +0.3% +4.5% +10.0% ➖ noise
38 duckdb:vortex-file-compressed +10.2% +0.3% +9.9% +10.0% ➖ noise
39 datafusion:vortex-file-compressed +5.9% +1.2% +4.7% +11.0% ➖ noise
39 duckdb:duckdb +1.6% +1.2% +0.4% +15.3% ➖ noise
39 duckdb:vortex-file-compressed +1.2% +1.2% +0.1% +10.0% ➖ noise
40 datafusion:vortex-file-compressed +4.9% -0.3% +5.2% +14.2% ➖ noise
40 duckdb:duckdb -0.6% -0.3% -0.3% +13.1% ➖ noise
40 duckdb:vortex-file-compressed +3.5% -0.3% +3.8% +18.8% ➖ noise
41 datafusion:vortex-file-compressed -1.1% +1.6% -2.6% +17.2% ➖ noise
41 duckdb:duckdb -0.2% +1.6% -1.8% +10.0% ➖ noise
41 duckdb:vortex-file-compressed +16.3% +1.6% +14.5% +15.5% ➖ noise
42 datafusion:vortex-file-compressed +2.1% +2.2% -0.2% +17.6% ➖ noise
42 duckdb:duckdb +0.5% +2.2% -1.7% +10.7% ➖ noise
42 duckdb:vortex-file-compressed +16.8% +2.2% +14.2% +16.8% ➖ noise

@github-actions
Copy link
Copy Markdown
Contributor

Benchmarks: Appian on NVME

Verdict: No clear signal (low confidence)
Attributed Vortex impact: +1.7%
Engines: DataFusion No clear signal (+1.5%, low confidence) · DuckDB No clear signal (+1.1%, low confidence)
Vortex (geomean): 0.948x ➖
Parquet (geomean): 0.937x ➖
Shifts: Parquet (control) -6.3% · Median polish -4.9%

How to read Verdict and Engines
  • Verdict: Overall PR-level signal after subtracting baseline drift estimated from Parquet control rows. It can be Likely improvement, Likely regression, or No clear signal.
  • Engines: Per-engine attribution. DataFusion is compared against DataFusion/Parquet controls; DuckDB is compared against DuckDB/Parquet controls. This answers whether each engine improved or regressed independently.
  • Confidence: Based on directional consistency, share of rows above the noise floor, and control-run noise.

datafusion / vortex-file-compressed (0.936x ➖, 1↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
appian_q01/datafusion:vortex-file-compressed 133337216 141882806 0.94
appian_q02/datafusion:vortex-file-compressed 666100606 710437248 0.94
appian_q03/datafusion:vortex-file-compressed 362946205 386995292 0.94
appian_q04/datafusion:vortex-file-compressed 27800961803 29439584924 0.94
appian_q05/datafusion:vortex-file-compressed 🚀 266328045 296119573 0.90
appian_q06/datafusion:vortex-file-compressed 426317290 445199812 0.96
appian_q07/datafusion:vortex-file-compressed 451178604 483620039 0.93
appian_q08/datafusion:vortex-file-compressed 1857892434 1976033074 0.94
datafusion / parquet (0.922x ➖, 1↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
appian_q01/datafusion:parquet 🚀 128223862 147466459 0.87
appian_q02/datafusion:parquet 665961704 724550327 0.92
appian_q03/datafusion:parquet 359571502 384020728 0.94
appian_q04/datafusion:parquet 27649968410 29527444526 0.94
appian_q05/datafusion:parquet 289795467 314936974 0.92
appian_q06/datafusion:parquet 430860906 468097514 0.92
appian_q07/datafusion:parquet 457095502 489021958 0.93
appian_q08/datafusion:parquet 1855602132 1966123841 0.94
duckdb / vortex-file-compressed (0.959x ➖, 0↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
appian_q01/duckdb:vortex-file-compressed 196770141 203992258 0.96
appian_q02/duckdb:vortex-file-compressed 615758290 645405898 0.95
appian_q03/duckdb:vortex-file-compressed 258576292 276599192 0.93
appian_q04/duckdb:vortex-file-compressed 1320078963 1355195501 0.97
appian_q05/duckdb:vortex-file-compressed 292312162 307281185 0.95
appian_q06/duckdb:vortex-file-compressed 797822621 810285895 0.98
appian_q07/duckdb:vortex-file-compressed 335700391 350350418 0.96
appian_q08/duckdb:vortex-file-compressed 1275924394 1336851452 0.95
duckdb / parquet (0.952x ➖, 0↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
appian_q01/duckdb:parquet 200711187 215595569 0.93
appian_q02/duckdb:parquet 605637001 645617572 0.94
appian_q03/duckdb:parquet 288241147 304359378 0.95
appian_q04/duckdb:parquet 1322154169 1381138884 0.96
appian_q05/duckdb:parquet 311801444 335545200 0.93
appian_q06/duckdb:parquet 798764231 796771431 1.00
appian_q07/duckdb:parquet 365765067 381536193 0.96
appian_q08/duckdb:parquet 1271762478 1328387714 0.96
duckdb / duckdb (0.966x ➖, 0↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
appian_q01/duckdb:duckdb 171431486 182437330 0.94
appian_q02/duckdb:duckdb 551009522 573492198 0.96
appian_q03/duckdb:duckdb 391112575 407230045 0.96
appian_q04/duckdb:duckdb 1305031644 1343456495 0.97
appian_q05/duckdb:duckdb 284607880 298007648 0.96
appian_q06/duckdb:duckdb 787258465 792789105 0.99
appian_q07/duckdb:duckdb 331514124 341132783 0.97
appian_q08/duckdb:duckdb 1237138758 1270903630 0.97

File Size Changes (527 files changed, -98.7% overall, 0↑ 527↓)
File Scale Format Base HEAD Change %
duckdb.db 1.0 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
duckdb.db 1.0 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
hits_0.vortex 1.0 vortex-compact 58.66 MB 0 B 58.66 MB -100.0%
hits_1.vortex 1.0 vortex-compact 90.34 MB 0 B 90.34 MB -100.0%
hits_10.vortex 1.0 vortex-compact 48.86 MB 0 B 48.86 MB -100.0%
hits_11.vortex 1.0 vortex-compact 54.35 MB 0 B 54.35 MB -100.0%
hits_12.vortex 1.0 vortex-compact 69.27 MB 0 B 69.27 MB -100.0%
hits_13.vortex 1.0 vortex-compact 67.96 MB 0 B 67.96 MB -100.0%
hits_14.vortex 1.0 vortex-compact 73.75 MB 0 B 73.75 MB -100.0%
hits_15.vortex 1.0 vortex-compact 48.14 MB 0 B 48.14 MB -100.0%
hits_16.vortex 1.0 vortex-compact 48.30 MB 0 B 48.30 MB -100.0%
hits_17.vortex 1.0 vortex-compact 58.32 MB 0 B 58.32 MB -100.0%
hits_18.vortex 1.0 vortex-compact 64.28 MB 0 B 64.28 MB -100.0%
hits_19.vortex 1.0 vortex-compact 44.88 MB 0 B 44.88 MB -100.0%
hits_2.vortex 1.0 vortex-compact 129.36 MB 0 B 129.36 MB -100.0%
hits_20.vortex 1.0 vortex-compact 38.14 MB 0 B 38.14 MB -100.0%
hits_21.vortex 1.0 vortex-compact 51.60 MB 0 B 51.60 MB -100.0%
hits_22.vortex 1.0 vortex-compact 44.74 MB 0 B 44.74 MB -100.0%
hits_23.vortex 1.0 vortex-compact 44.17 MB 0 B 44.17 MB -100.0%
hits_24.vortex 1.0 vortex-compact 43.63 MB 0 B 43.63 MB -100.0%
hits_25.vortex 1.0 vortex-compact 73.14 MB 0 B 73.14 MB -100.0%
hits_26.vortex 1.0 vortex-compact 70.89 MB 0 B 70.89 MB -100.0%
hits_27.vortex 1.0 vortex-compact 69.88 MB 0 B 69.88 MB -100.0%
hits_28.vortex 1.0 vortex-compact 70.27 MB 0 B 70.27 MB -100.0%
hits_29.vortex 1.0 vortex-compact 36.61 MB 0 B 36.61 MB -100.0%
hits_3.vortex 1.0 vortex-compact 94.23 MB 0 B 94.23 MB -100.0%
hits_30.vortex 1.0 vortex-compact 58.69 MB 0 B 58.69 MB -100.0%
hits_31.vortex 1.0 vortex-compact 55.56 MB 0 B 55.56 MB -100.0%
hits_32.vortex 1.0 vortex-compact 44.13 MB 0 B 44.13 MB -100.0%
hits_33.vortex 1.0 vortex-compact 35.95 MB 0 B 35.95 MB -100.0%
hits_34.vortex 1.0 vortex-compact 58.26 MB 0 B 58.26 MB -100.0%
hits_35.vortex 1.0 vortex-compact 75.11 MB 0 B 75.11 MB -100.0%
hits_36.vortex 1.0 vortex-compact 48.99 MB 0 B 48.99 MB -100.0%
hits_37.vortex 1.0 vortex-compact 53.83 MB 0 B 53.83 MB -100.0%
hits_38.vortex 1.0 vortex-compact 63.10 MB 0 B 63.10 MB -100.0%
hits_39.vortex 1.0 vortex-compact 49.82 MB 0 B 49.82 MB -100.0%
hits_4.vortex 1.0 vortex-compact 71.81 MB 0 B 71.81 MB -100.0%
hits_40.vortex 1.0 vortex-compact 75.92 MB 0 B 75.92 MB -100.0%
hits_41.vortex 1.0 vortex-compact 165.78 MB 0 B 165.78 MB -100.0%
hits_42.vortex 1.0 vortex-compact 164.22 MB 0 B 164.22 MB -100.0%
hits_43.vortex 1.0 vortex-compact 168.91 MB 0 B 168.91 MB -100.0%
hits_44.vortex 1.0 vortex-compact 132.46 MB 0 B 132.46 MB -100.0%
hits_45.vortex 1.0 vortex-compact 76.07 MB 0 B 76.07 MB -100.0%
hits_46.vortex 1.0 vortex-compact 41.92 MB 0 B 41.92 MB -100.0%
hits_47.vortex 1.0 vortex-compact 18.25 MB 0 B 18.25 MB -100.0%
hits_48.vortex 1.0 vortex-compact 17.32 MB 0 B 17.32 MB -100.0%
hits_49.vortex 1.0 vortex-compact 50.53 MB 0 B 50.53 MB -100.0%
hits_5.vortex 1.0 vortex-compact 62.90 MB 0 B 62.90 MB -100.0%
hits_50.vortex 1.0 vortex-compact 113.12 MB 0 B 113.12 MB -100.0%
hits_51.vortex 1.0 vortex-compact 167.81 MB 0 B 167.81 MB -100.0%
hits_52.vortex 1.0 vortex-compact 63.73 MB 0 B 63.73 MB -100.0%
hits_53.vortex 1.0 vortex-compact 59.09 MB 0 B 59.09 MB -100.0%
hits_54.vortex 1.0 vortex-compact 117.66 MB 0 B 117.66 MB -100.0%
hits_55.vortex 1.0 vortex-compact 93.77 MB 0 B 93.77 MB -100.0%
hits_56.vortex 1.0 vortex-compact 77.87 MB 0 B 77.87 MB -100.0%
hits_57.vortex 1.0 vortex-compact 83.54 MB 0 B 83.54 MB -100.0%
hits_58.vortex 1.0 vortex-compact 60.41 MB 0 B 60.41 MB -100.0%
hits_59.vortex 1.0 vortex-compact 66.30 MB 0 B 66.30 MB -100.0%
hits_6.vortex 1.0 vortex-compact 63.16 MB 0 B 63.16 MB -100.0%
hits_60.vortex 1.0 vortex-compact 64.33 MB 0 B 64.33 MB -100.0%
hits_61.vortex 1.0 vortex-compact 57.66 MB 0 B 57.66 MB -100.0%
hits_62.vortex 1.0 vortex-compact 74.26 MB 0 B 74.26 MB -100.0%
hits_63.vortex 1.0 vortex-compact 46.10 MB 0 B 46.10 MB -100.0%
hits_64.vortex 1.0 vortex-compact 53.91 MB 0 B 53.91 MB -100.0%
hits_65.vortex 1.0 vortex-compact 129.95 MB 0 B 129.95 MB -100.0%
hits_66.vortex 1.0 vortex-compact 53.49 MB 0 B 53.49 MB -100.0%
hits_67.vortex 1.0 vortex-compact 114.05 MB 0 B 114.05 MB -100.0%
hits_68.vortex 1.0 vortex-compact 75.99 MB 0 B 75.99 MB -100.0%
hits_69.vortex 1.0 vortex-compact 81.02 MB 0 B 81.02 MB -100.0%
hits_7.vortex 1.0 vortex-compact 63.80 MB 0 B 63.80 MB -100.0%
hits_70.vortex 1.0 vortex-compact 61.29 MB 0 B 61.29 MB -100.0%
hits_71.vortex 1.0 vortex-compact 69.29 MB 0 B 69.29 MB -100.0%
hits_72.vortex 1.0 vortex-compact 51.79 MB 0 B 51.79 MB -100.0%
hits_73.vortex 1.0 vortex-compact 70.04 MB 0 B 70.04 MB -100.0%
hits_74.vortex 1.0 vortex-compact 71.62 MB 0 B 71.62 MB -100.0%
hits_75.vortex 1.0 vortex-compact 43.63 MB 0 B 43.63 MB -100.0%
hits_76.vortex 1.0 vortex-compact 76.44 MB 0 B 76.44 MB -100.0%
hits_77.vortex 1.0 vortex-compact 118.11 MB 0 B 118.11 MB -100.0%
hits_78.vortex 1.0 vortex-compact 97.87 MB 0 B 97.87 MB -100.0%
hits_79.vortex 1.0 vortex-compact 85.70 MB 0 B 85.70 MB -100.0%
hits_8.vortex 1.0 vortex-compact 62.89 MB 0 B 62.89 MB -100.0%
hits_80.vortex 1.0 vortex-compact 68.07 MB 0 B 68.07 MB -100.0%
hits_81.vortex 1.0 vortex-compact 65.45 MB 0 B 65.45 MB -100.0%
hits_82.vortex 1.0 vortex-compact 66.89 MB 0 B 66.89 MB -100.0%
hits_83.vortex 1.0 vortex-compact 52.57 MB 0 B 52.57 MB -100.0%
hits_84.vortex 1.0 vortex-compact 73.14 MB 0 B 73.14 MB -100.0%
hits_85.vortex 1.0 vortex-compact 52.73 MB 0 B 52.73 MB -100.0%
hits_86.vortex 1.0 vortex-compact 48.25 MB 0 B 48.25 MB -100.0%
hits_87.vortex 1.0 vortex-compact 119.04 MB 0 B 119.04 MB -100.0%
hits_88.vortex 1.0 vortex-compact 73.31 MB 0 B 73.31 MB -100.0%
hits_89.vortex 1.0 vortex-compact 112.82 MB 0 B 112.82 MB -100.0%
hits_9.vortex 1.0 vortex-compact 65.67 MB 0 B 65.67 MB -100.0%
hits_90.vortex 1.0 vortex-compact 81.86 MB 0 B 81.86 MB -100.0%
hits_91.vortex 1.0 vortex-compact 60.94 MB 0 B 60.94 MB -100.0%
hits_92.vortex 1.0 vortex-compact 94.27 MB 0 B 94.27 MB -100.0%
hits_93.vortex 1.0 vortex-compact 58.90 MB 0 B 58.90 MB -100.0%
hits_94.vortex 1.0 vortex-compact 90.63 MB 0 B 90.63 MB -100.0%
hits_95.vortex 1.0 vortex-compact 57.75 MB 0 B 57.75 MB -100.0%
hits_96.vortex 1.0 vortex-compact 91.08 MB 0 B 91.08 MB -100.0%
hits_97.vortex 1.0 vortex-compact 69.16 MB 0 B 69.16 MB -100.0%
hits_98.vortex 1.0 vortex-compact 72.77 MB 0 B 72.77 MB -100.0%
hits_99.vortex 1.0 vortex-compact 77.31 MB 0 B 77.31 MB -100.0%
duckdb.db 1.0 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
hits_0.vortex 1.0 vortex-file-compressed 112.17 MB 0 B 112.17 MB -100.0%
hits_1.vortex 1.0 vortex-file-compressed 181.16 MB 0 B 181.16 MB -100.0%
hits_10.vortex 1.0 vortex-file-compressed 81.76 MB 0 B 81.76 MB -100.0%
hits_11.vortex 1.0 vortex-file-compressed 96.07 MB 0 B 96.07 MB -100.0%
hits_12.vortex 1.0 vortex-file-compressed 125.34 MB 0 B 125.34 MB -100.0%
hits_13.vortex 1.0 vortex-file-compressed 123.20 MB 0 B 123.20 MB -100.0%
hits_14.vortex 1.0 vortex-file-compressed 135.14 MB 0 B 135.14 MB -100.0%
hits_15.vortex 1.0 vortex-file-compressed 97.01 MB 0 B 97.01 MB -100.0%
hits_16.vortex 1.0 vortex-file-compressed 87.59 MB 0 B 87.59 MB -100.0%
hits_17.vortex 1.0 vortex-file-compressed 103.64 MB 0 B 103.64 MB -100.0%
hits_18.vortex 1.0 vortex-file-compressed 126.06 MB 0 B 126.06 MB -100.0%
hits_19.vortex 1.0 vortex-file-compressed 82.10 MB 0 B 82.10 MB -100.0%
hits_2.vortex 1.0 vortex-file-compressed 241.46 MB 0 B 241.46 MB -100.0%
hits_20.vortex 1.0 vortex-file-compressed 67.53 MB 0 B 67.53 MB -100.0%
hits_21.vortex 1.0 vortex-file-compressed 101.28 MB 0 B 101.28 MB -100.0%
hits_22.vortex 1.0 vortex-file-compressed 81.17 MB 0 B 81.17 MB -100.0%
hits_23.vortex 1.0 vortex-file-compressed 80.37 MB 0 B 80.37 MB -100.0%
hits_24.vortex 1.0 vortex-file-compressed 79.71 MB 0 B 79.71 MB -100.0%
hits_25.vortex 1.0 vortex-file-compressed 137.01 MB 0 B 137.01 MB -100.0%
hits_26.vortex 1.0 vortex-file-compressed 144.05 MB 0 B 144.05 MB -100.0%
hits_27.vortex 1.0 vortex-file-compressed 174.61 MB 0 B 174.61 MB -100.0%
hits_28.vortex 1.0 vortex-file-compressed 167.55 MB 0 B 167.55 MB -100.0%
hits_29.vortex 1.0 vortex-file-compressed 65.47 MB 0 B 65.47 MB -100.0%
hits_3.vortex 1.0 vortex-file-compressed 193.11 MB 0 B 193.11 MB -100.0%
hits_30.vortex 1.0 vortex-file-compressed 104.00 MB 0 B 104.00 MB -100.0%
hits_31.vortex 1.0 vortex-file-compressed 104.39 MB 0 B 104.39 MB -100.0%
hits_32.vortex 1.0 vortex-file-compressed 77.12 MB 0 B 77.12 MB -100.0%
hits_33.vortex 1.0 vortex-file-compressed 62.97 MB 0 B 62.97 MB -100.0%
hits_34.vortex 1.0 vortex-file-compressed 111.68 MB 0 B 111.68 MB -100.0%
hits_35.vortex 1.0 vortex-file-compressed 138.81 MB 0 B 138.81 MB -100.0%
hits_36.vortex 1.0 vortex-file-compressed 80.27 MB 0 B 80.27 MB -100.0%
hits_37.vortex 1.0 vortex-file-compressed 97.54 MB 0 B 97.54 MB -100.0%
hits_38.vortex 1.0 vortex-file-compressed 118.43 MB 0 B 118.43 MB -100.0%
hits_39.vortex 1.0 vortex-file-compressed 94.06 MB 0 B 94.06 MB -100.0%
hits_4.vortex 1.0 vortex-file-compressed 138.86 MB 0 B 138.86 MB -100.0%
hits_40.vortex 1.0 vortex-file-compressed 142.99 MB 0 B 142.99 MB -100.0%
hits_41.vortex 1.0 vortex-file-compressed 300.49 MB 0 B 300.49 MB -100.0%
hits_42.vortex 1.0 vortex-file-compressed 298.79 MB 0 B 298.79 MB -100.0%
hits_43.vortex 1.0 vortex-file-compressed 305.71 MB 0 B 305.71 MB -100.0%
hits_44.vortex 1.0 vortex-file-compressed 243.64 MB 0 B 243.64 MB -100.0%
hits_45.vortex 1.0 vortex-file-compressed 145.48 MB 0 B 145.48 MB -100.0%
hits_46.vortex 1.0 vortex-file-compressed 80.32 MB 0 B 80.32 MB -100.0%
hits_47.vortex 1.0 vortex-file-compressed 41.86 MB 0 B 41.86 MB -100.0%
hits_48.vortex 1.0 vortex-file-compressed 28.53 MB 0 B 28.53 MB -100.0%
hits_49.vortex 1.0 vortex-file-compressed 88.67 MB 0 B 88.67 MB -100.0%
hits_5.vortex 1.0 vortex-file-compressed 122.64 MB 0 B 122.64 MB -100.0%
hits_50.vortex 1.0 vortex-file-compressed 255.24 MB 0 B 255.24 MB -100.0%
hits_51.vortex 1.0 vortex-file-compressed 428.84 MB 0 B 428.84 MB -100.0%
hits_52.vortex 1.0 vortex-file-compressed 120.78 MB 0 B 120.78 MB -100.0%
hits_53.vortex 1.0 vortex-file-compressed 98.26 MB 0 B 98.26 MB -100.0%
hits_54.vortex 1.0 vortex-file-compressed 361.83 MB 0 B 361.83 MB -100.0%
hits_55.vortex 1.0 vortex-file-compressed 251.56 MB 0 B 251.56 MB -100.0%
hits_56.vortex 1.0 vortex-file-compressed 163.76 MB 0 B 163.76 MB -100.0%
hits_57.vortex 1.0 vortex-file-compressed 158.37 MB 0 B 158.37 MB -100.0%
hits_58.vortex 1.0 vortex-file-compressed 113.78 MB 0 B 113.78 MB -100.0%
hits_59.vortex 1.0 vortex-file-compressed 121.84 MB 0 B 121.84 MB -100.0%
hits_6.vortex 1.0 vortex-file-compressed 122.86 MB 0 B 122.86 MB -100.0%
hits_60.vortex 1.0 vortex-file-compressed 121.19 MB 0 B 121.19 MB -100.0%
hits_61.vortex 1.0 vortex-file-compressed 114.43 MB 0 B 114.43 MB -100.0%
hits_62.vortex 1.0 vortex-file-compressed 148.36 MB 0 B 148.36 MB -100.0%
hits_63.vortex 1.0 vortex-file-compressed 80.62 MB 0 B 80.62 MB -100.0%
hits_64.vortex 1.0 vortex-file-compressed 95.27 MB 0 B 95.27 MB -100.0%
hits_65.vortex 1.0 vortex-file-compressed 238.05 MB 0 B 238.05 MB -100.0%
hits_66.vortex 1.0 vortex-file-compressed 105.34 MB 0 B 105.34 MB -100.0%
hits_67.vortex 1.0 vortex-file-compressed 265.94 MB 0 B 265.94 MB -100.0%
hits_68.vortex 1.0 vortex-file-compressed 172.16 MB 0 B 172.16 MB -100.0%
hits_69.vortex 1.0 vortex-file-compressed 147.61 MB 0 B 147.61 MB -100.0%
hits_7.vortex 1.0 vortex-file-compressed 123.82 MB 0 B 123.82 MB -100.0%
hits_70.vortex 1.0 vortex-file-compressed 115.14 MB 0 B 115.14 MB -100.0%
hits_71.vortex 1.0 vortex-file-compressed 126.41 MB 0 B 126.41 MB -100.0%
hits_72.vortex 1.0 vortex-file-compressed 96.27 MB 0 B 96.27 MB -100.0%
hits_73.vortex 1.0 vortex-file-compressed 131.83 MB 0 B 131.83 MB -100.0%
hits_74.vortex 1.0 vortex-file-compressed 152.12 MB 0 B 152.12 MB -100.0%
hits_75.vortex 1.0 vortex-file-compressed 74.18 MB 0 B 74.18 MB -100.0%
hits_76.vortex 1.0 vortex-file-compressed 140.05 MB 0 B 140.05 MB -100.0%
hits_77.vortex 1.0 vortex-file-compressed 218.96 MB 0 B 218.96 MB -100.0%
hits_78.vortex 1.0 vortex-file-compressed 238.59 MB 0 B 238.59 MB -100.0%
hits_79.vortex 1.0 vortex-file-compressed 204.16 MB 0 B 204.16 MB -100.0%
hits_8.vortex 1.0 vortex-file-compressed 122.86 MB 0 B 122.86 MB -100.0%
hits_80.vortex 1.0 vortex-file-compressed 124.24 MB 0 B 124.24 MB -100.0%
hits_81.vortex 1.0 vortex-file-compressed 126.55 MB 0 B 126.55 MB -100.0%
hits_82.vortex 1.0 vortex-file-compressed 122.77 MB 0 B 122.77 MB -100.0%
hits_83.vortex 1.0 vortex-file-compressed 103.72 MB 0 B 103.72 MB -100.0%
hits_84.vortex 1.0 vortex-file-compressed 145.05 MB 0 B 145.05 MB -100.0%
hits_85.vortex 1.0 vortex-file-compressed 106.37 MB 0 B 106.37 MB -100.0%
hits_86.vortex 1.0 vortex-file-compressed 81.40 MB 0 B 81.40 MB -100.0%
hits_87.vortex 1.0 vortex-file-compressed 221.68 MB 0 B 221.68 MB -100.0%
hits_88.vortex 1.0 vortex-file-compressed 137.34 MB 0 B 137.34 MB -100.0%
hits_89.vortex 1.0 vortex-file-compressed 266.01 MB 0 B 266.01 MB -100.0%
hits_9.vortex 1.0 vortex-file-compressed 124.22 MB 0 B 124.22 MB -100.0%
hits_90.vortex 1.0 vortex-file-compressed 204.12 MB 0 B 204.12 MB -100.0%
hits_91.vortex 1.0 vortex-file-compressed 116.23 MB 0 B 116.23 MB -100.0%
hits_92.vortex 1.0 vortex-file-compressed 196.47 MB 0 B 196.47 MB -100.0%
hits_93.vortex 1.0 vortex-file-compressed 107.66 MB 0 B 107.66 MB -100.0%
hits_94.vortex 1.0 vortex-file-compressed 185.12 MB 0 B 185.12 MB -100.0%
hits_95.vortex 1.0 vortex-file-compressed 114.33 MB 0 B 114.33 MB -100.0%
hits_96.vortex 1.0 vortex-file-compressed 180.76 MB 0 B 180.76 MB -100.0%
hits_97.vortex 1.0 vortex-file-compressed 130.96 MB 0 B 130.96 MB -100.0%
hits_98.vortex 1.0 vortex-file-compressed 150.55 MB 0 B 150.55 MB -100.0%
hits_99.vortex 1.0 vortex-file-compressed 158.88 MB 0 B 158.88 MB -100.0%
duckdb.db 1.0 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
sample.vortex 1.0 vortex-compact 1.23 GB 0 B 1.23 GB -100.0%
duckdb.db 1.0 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
sample.vortex 1.0 vortex-file-compressed 1.79 GB 0 B 1.79 GB -100.0%
stacktraces.vortex 1000000 vortex-file-compressed 689.41 MB 0 B 689.41 MB -100.0%
duckdb.db 100000 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
gnomad.genomes.v3.1.2.hgdp_tgp.chr21.vortex 100000 vortex-compact 959.35 MB 0 B 959.35 MB -100.0%
duckdb.db 100000 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
gnomad.genomes.v3.1.2.hgdp_tgp.chr21.vortex 100000 vortex-file-compressed 1.97 GB 0 B 1.97 GB -100.0%
call_center.vortex 1.0 vortex-compact 50.14 KB 0 B 50.14 KB -100.0%
catalog_page.vortex 1.0 vortex-compact 362.67 KB 0 B 362.67 KB -100.0%
catalog_returns.vortex 1.0 vortex-compact 6.02 MB 0 B 6.02 MB -100.0%
catalog_sales.vortex 1.0 vortex-compact 59.31 MB 0 B 59.31 MB -100.0%
customer.vortex 1.0 vortex-compact 3.29 MB 0 B 3.29 MB -100.0%
customer_address.vortex 1.0 vortex-compact 558.62 KB 0 B 558.62 KB -100.0%
customer_demographics.vortex 1.0 vortex-compact 649.61 KB 0 B 649.61 KB -100.0%
date_dim.vortex 1.0 vortex-compact 154.00 KB 0 B 154.00 KB -100.0%
duckdb.db 1.0 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
household_demographics.vortex 1.0 vortex-compact 10.79 KB 0 B 10.79 KB -100.0%
income_band.vortex 1.0 vortex-compact 5.98 KB 0 B 5.98 KB -100.0%
inventory.vortex 1.0 vortex-compact 16.07 MB 0 B 16.07 MB -100.0%
item.vortex 1.0 vortex-compact 994.21 KB 0 B 994.21 KB -100.0%
promotion.vortex 1.0 vortex-compact 51.51 KB 0 B 51.51 KB -100.0%
reason.vortex 1.0 vortex-compact 5.97 KB 0 B 5.97 KB -100.0%
ship_mode.vortex 1.0 vortex-compact 10.95 KB 0 B 10.95 KB -100.0%
store.vortex 1.0 vortex-compact 45.76 KB 0 B 45.76 KB -100.0%
store_returns.vortex 1.0 vortex-compact 9.31 MB 0 B 9.31 MB -100.0%
store_sales.vortex 1.0 vortex-compact 77.87 MB 0 B 77.87 MB -100.0%
time_dim.vortex 1.0 vortex-compact 97.35 KB 0 B 97.35 KB -100.0%
warehouse.vortex 1.0 vortex-compact 22.23 KB 0 B 22.23 KB -100.0%
web_page.vortex 1.0 vortex-compact 27.84 KB 0 B 27.84 KB -100.0%
web_returns.vortex 1.0 vortex-compact 2.99 MB 0 B 2.99 MB -100.0%
web_sales.vortex 1.0 vortex-compact 29.35 MB 0 B 29.35 MB -100.0%
web_site.vortex 1.0 vortex-compact 45.31 KB 0 B 45.31 KB -100.0%
call_center.vortex 1.0 vortex-file-compressed 54.94 KB 0 B 54.94 KB -100.0%
catalog_page.vortex 1.0 vortex-file-compressed 611.57 KB 0 B 611.57 KB -100.0%
catalog_returns.vortex 1.0 vortex-file-compressed 7.43 MB 0 B 7.43 MB -100.0%
catalog_sales.vortex 1.0 vortex-file-compressed 70.78 MB 0 B 70.78 MB -100.0%
customer.vortex 1.0 vortex-file-compressed 4.52 MB 0 B 4.52 MB -100.0%
customer_address.vortex 1.0 vortex-file-compressed 1012.96 KB 0 B 1012.96 KB -100.0%
customer_demographics.vortex 1.0 vortex-file-compressed 1.49 MB 0 B 1.49 MB -100.0%
date_dim.vortex 1.0 vortex-file-compressed 1.03 MB 0 B 1.03 MB -100.0%
duckdb.db 1.0 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
household_demographics.vortex 1.0 vortex-file-compressed 17.05 KB 0 B 17.05 KB -100.0%
income_band.vortex 1.0 vortex-file-compressed 6.19 KB 0 B 6.19 KB -100.0%
inventory.vortex 1.0 vortex-file-compressed 36.64 MB 0 B 36.64 MB -100.0%
item.vortex 1.0 vortex-file-compressed 1.75 MB 0 B 1.75 MB -100.0%
promotion.vortex 1.0 vortex-file-compressed 60.19 KB 0 B 60.19 KB -100.0%
reason.vortex 1.0 vortex-file-compressed 7.23 KB 0 B 7.23 KB -100.0%
ship_mode.vortex 1.0 vortex-file-compressed 13.12 KB 0 B 13.12 KB -100.0%
store.vortex 1.0 vortex-file-compressed 49.49 KB 0 B 49.49 KB -100.0%
store_returns.vortex 1.0 vortex-file-compressed 11.39 MB 0 B 11.39 MB -100.0%
store_sales.vortex 1.0 vortex-file-compressed 97.04 MB 0 B 97.04 MB -100.0%
time_dim.vortex 1.0 vortex-file-compressed 687.30 KB 0 B 687.30 KB -100.0%
warehouse.vortex 1.0 vortex-file-compressed 23.83 KB 0 B 23.83 KB -100.0%
web_page.vortex 1.0 vortex-file-compressed 31.92 KB 0 B 31.92 KB -100.0%
web_returns.vortex 1.0 vortex-file-compressed 3.55 MB 0 B 3.55 MB -100.0%
web_sales.vortex 1.0 vortex-file-compressed 34.27 MB 0 B 34.27 MB -100.0%
web_site.vortex 1.0 vortex-file-compressed 54.08 KB 0 B 54.08 KB -100.0%
customer_0.vortex 1.0 vortex-compact 7.43 MB 0 B 7.43 MB -100.0%
duckdb.db 1.0 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
lineitem_0.vortex 1.0 vortex-compact 63.00 MB 0 B 63.00 MB -100.0%
lineitem_1.vortex 1.0 vortex-compact 63.03 MB 0 B 63.03 MB -100.0%
nation_0.vortex 1.0 vortex-compact 8.34 KB 0 B 8.34 KB -100.0%
orders_0.vortex 1.0 vortex-compact 31.73 MB 0 B 31.73 MB -100.0%
part_0.vortex 1.0 vortex-compact 3.64 MB 0 B 3.64 MB -100.0%
partsupp_0.vortex 1.0 vortex-compact 25.23 MB 0 B 25.23 MB -100.0%
region_0.vortex 1.0 vortex-compact 5.86 KB 0 B 5.86 KB -100.0%
supplier_0.vortex 1.0 vortex-compact 496.72 KB 0 B 496.72 KB -100.0%
customer_0.vortex 1.0 vortex-file-compressed 10.50 MB 0 B 10.50 MB -100.0%
duckdb.db 1.0 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
lineitem_0.vortex 1.0 vortex-file-compressed 85.42 MB 0 B 85.42 MB -100.0%
lineitem_1.vortex 1.0 vortex-file-compressed 84.90 MB 0 B 84.90 MB -100.0%
nation_0.vortex 1.0 vortex-file-compressed 11.00 KB 0 B 11.00 KB -100.0%
orders_0.vortex 1.0 vortex-file-compressed 43.43 MB 0 B 43.43 MB -100.0%
part_0.vortex 1.0 vortex-file-compressed 5.44 MB 0 B 5.44 MB -100.0%
partsupp_0.vortex 1.0 vortex-file-compressed 35.94 MB 0 B 35.94 MB -100.0%
region_0.vortex 1.0 vortex-file-compressed 6.16 KB 0 B 6.16 KB -100.0%
supplier_0.vortex 1.0 vortex-file-compressed 706.34 KB 0 B 706.34 KB -100.0%
customer_0.vortex 10.0 vortex-compact 74.12 MB 0 B 74.12 MB -100.0%
duckdb.db 10.0 vortex-compact 268.00 KB 0 B 268.00 KB -100.0%
lineitem_0.vortex 10.0 vortex-compact 100.59 MB 0 B 100.59 MB -100.0%
lineitem_1.vortex 10.0 vortex-compact 100.64 MB 0 B 100.64 MB -100.0%
lineitem_10.vortex 10.0 vortex-compact 100.62 MB 0 B 100.62 MB -100.0%
lineitem_11.vortex 10.0 vortex-compact 100.53 MB 0 B 100.53 MB -100.0%
lineitem_12.vortex 10.0 vortex-compact 100.62 MB 0 B 100.62 MB -100.0%
lineitem_2.vortex 10.0 vortex-compact 100.59 MB 0 B 100.59 MB -100.0%
lineitem_3.vortex 10.0 vortex-compact 100.62 MB 0 B 100.62 MB -100.0%
lineitem_4.vortex 10.0 vortex-compact 100.56 MB 0 B 100.56 MB -100.0%
lineitem_5.vortex 10.0 vortex-compact 100.70 MB 0 B 100.70 MB -100.0%
lineitem_6.vortex 10.0 vortex-compact 100.68 MB 0 B 100.68 MB -100.0%
lineitem_7.vortex 10.0 vortex-compact 100.58 MB 0 B 100.58 MB -100.0%
lineitem_8.vortex 10.0 vortex-compact 100.59 MB 0 B 100.59 MB -100.0%
lineitem_9.vortex 10.0 vortex-compact 100.46 MB 0 B 100.46 MB -100.0%
nation_0.vortex 10.0 vortex-compact 8.34 KB 0 B 8.34 KB -100.0%
orders_0.vortex 10.0 vortex-compact 114.79 MB 0 B 114.79 MB -100.0%
orders_1.vortex 10.0 vortex-compact 114.76 MB 0 B 114.76 MB -100.0%
orders_2.vortex 10.0 vortex-compact 114.78 MB 0 B 114.78 MB -100.0%
part_0.vortex 10.0 vortex-compact 18.11 MB 0 B 18.11 MB -100.0%
part_1.vortex 10.0 vortex-compact 18.11 MB 0 B 18.11 MB -100.0%
partsupp_0.vortex 10.0 vortex-compact 126.76 MB 0 B 126.76 MB -100.0%
partsupp_1.vortex 10.0 vortex-compact 126.74 MB 0 B 126.74 MB -100.0%
region_0.vortex 10.0 vortex-compact 5.86 KB 0 B 5.86 KB -100.0%
supplier_0.vortex 10.0 vortex-compact 4.73 MB 0 B 4.73 MB -100.0%
customer_0.vortex 10.0 vortex-file-compressed 104.73 MB 0 B 104.73 MB -100.0%
duckdb.db 10.0 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
lineitem_0.vortex 10.0 vortex-file-compressed 134.65 MB 0 B 134.65 MB -100.0%
lineitem_1.vortex 10.0 vortex-file-compressed 134.27 MB 0 B 134.27 MB -100.0%
lineitem_10.vortex 10.0 vortex-file-compressed 134.51 MB 0 B 134.51 MB -100.0%
lineitem_11.vortex 10.0 vortex-file-compressed 134.87 MB 0 B 134.87 MB -100.0%
lineitem_12.vortex 10.0 vortex-file-compressed 134.52 MB 0 B 134.52 MB -100.0%
lineitem_2.vortex 10.0 vortex-file-compressed 134.38 MB 0 B 134.38 MB -100.0%
lineitem_3.vortex 10.0 vortex-file-compressed 133.74 MB 0 B 133.74 MB -100.0%
lineitem_4.vortex 10.0 vortex-file-compressed 134.43 MB 0 B 134.43 MB -100.0%
lineitem_5.vortex 10.0 vortex-file-compressed 133.86 MB 0 B 133.86 MB -100.0%
lineitem_6.vortex 10.0 vortex-file-compressed 133.23 MB 0 B 133.23 MB -100.0%
lineitem_7.vortex 10.0 vortex-file-compressed 134.01 MB 0 B 134.01 MB -100.0%
lineitem_8.vortex 10.0 vortex-file-compressed 134.06 MB 0 B 134.06 MB -100.0%
lineitem_9.vortex 10.0 vortex-file-compressed 134.65 MB 0 B 134.65 MB -100.0%
nation_0.vortex 10.0 vortex-file-compressed 11.00 KB 0 B 11.00 KB -100.0%
orders_0.vortex 10.0 vortex-file-compressed 163.92 MB 0 B 163.92 MB -100.0%
orders_1.vortex 10.0 vortex-file-compressed 164.15 MB 0 B 164.15 MB -100.0%
orders_2.vortex 10.0 vortex-file-compressed 164.00 MB 0 B 164.00 MB -100.0%
part_0.vortex 10.0 vortex-file-compressed 27.02 MB 0 B 27.02 MB -100.0%
part_1.vortex 10.0 vortex-file-compressed 26.99 MB 0 B 26.99 MB -100.0%
partsupp_0.vortex 10.0 vortex-file-compressed 180.47 MB 0 B 180.47 MB -100.0%
partsupp_1.vortex 10.0 vortex-file-compressed 180.65 MB 0 B 180.65 MB -100.0%
region_0.vortex 10.0 vortex-file-compressed 6.16 KB 0 B 6.16 KB -100.0%
supplier_0.vortex 10.0 vortex-file-compressed 6.69 MB 0 B 6.69 MB -100.0%
customer_0.vortex 100 vortex-file-compressed 261.80 MB 0 B 261.80 MB -100.0%
customer_1.vortex 100 vortex-file-compressed 261.77 MB 0 B 261.77 MB -100.0%
customer_2.vortex 100 vortex-file-compressed 261.69 MB 0 B 261.69 MB -100.0%
customer_3.vortex 100 vortex-file-compressed 261.80 MB 0 B 261.80 MB -100.0%
duckdb.db 100 vortex-file-compressed 268.00 KB 0 B 268.00 KB -100.0%
lineitem_0.vortex 100 vortex-file-compressed 148.68 MB 0 B 148.68 MB -100.0%
lineitem_1.vortex 100 vortex-file-compressed 148.56 MB 0 B 148.56 MB -100.0%
lineitem_10.vortex 100 vortex-file-compressed 148.35 MB 0 B 148.35 MB -100.0%
lineitem_100.vortex 100 vortex-file-compressed 148.11 MB 0 B 148.11 MB -100.0%
lineitem_101.vortex 100 vortex-file-compressed 148.35 MB 0 B 148.35 MB -100.0%
lineitem_102.vortex 100 vortex-file-compressed 148.14 MB 0 B 148.14 MB -100.0%
lineitem_103.vortex 100 vortex-file-compressed 148.37 MB 0 B 148.37 MB -100.0%
lineitem_104.vortex 100 vortex-file-compressed 148.59 MB 0 B 148.59 MB -100.0%
lineitem_105.vortex 100 vortex-file-compressed 147.47 MB 0 B 147.47 MB -100.0%
lineitem_106.vortex 100 vortex-file-compressed 148.07 MB 0 B 148.07 MB -100.0%
lineitem_107.vortex 100 vortex-file-compressed 148.04 MB 0 B 148.04 MB -100.0%
lineitem_108.vortex 100 vortex-file-compressed 147.29 MB 0 B 147.29 MB -100.0%
lineitem_109.vortex 100 vortex-file-compressed 148.03 MB 0 B 148.03 MB -100.0%
lineitem_11.vortex 100 vortex-file-compressed 148.62 MB 0 B 148.62 MB -100.0%
lineitem_110.vortex 100 vortex-file-compressed 148.41 MB 0 B 148.41 MB -100.0%
lineitem_111.vortex 100 vortex-file-compressed 147.77 MB 0 B 147.77 MB -100.0%
lineitem_112.vortex 100 vortex-file-compressed 147.42 MB 0 B 147.42 MB -100.0%
lineitem_113.vortex 100 vortex-file-compressed 147.56 MB 0 B 147.56 MB -100.0%
lineitem_114.vortex 100 vortex-file-compressed 147.46 MB 0 B 147.46 MB -100.0%
lineitem_115.vortex 100 vortex-file-compressed 147.64 MB 0 B 147.64 MB -100.0%
lineitem_116.vortex 100 vortex-file-compressed 148.20 MB 0 B 148.20 MB -100.0%
lineitem_117.vortex 100 vortex-file-compressed 148.24 MB 0 B 148.24 MB -100.0%
lineitem_118.vortex 100 vortex-file-compressed 147.83 MB 0 B 147.83 MB -100.0%
lineitem_119.vortex 100 vortex-file-compressed 148.33 MB 0 B 148.33 MB -100.0%
lineitem_12.vortex 100 vortex-file-compressed 148.19 MB 0 B 148.19 MB -100.0%
lineitem_120.vortex 100 vortex-file-compressed 147.10 MB 0 B 147.10 MB -100.0%
lineitem_13.vortex 100 vortex-file-compressed 148.26 MB 0 B 148.26 MB -100.0%
lineitem_14.vortex 100 vortex-file-compressed 147.79 MB 0 B 147.79 MB -100.0%
lineitem_15.vortex 100 vortex-file-compressed 147.63 MB 0 B 147.63 MB -100.0%
lineitem_16.vortex 100 vortex-file-compressed 148.03 MB 0 B 148.03 MB -100.0%
lineitem_17.vortex 100 vortex-file-compressed 148.59 MB 0 B 148.59 MB -100.0%
lineitem_18.vortex 100 vortex-file-compressed 147.55 MB 0 B 147.55 MB -100.0%
lineitem_19.vortex 100 vortex-file-compressed 148.77 MB 0 B 148.77 MB -100.0%
lineitem_2.vortex 100 vortex-file-compressed 148.59 MB 0 B 148.59 MB -100.0%
lineitem_20.vortex 100 vortex-file-compressed 148.78 MB 0 B 148.78 MB -100.0%
lineitem_21.vortex 100 vortex-file-compressed 148.33 MB 0 B 148.33 MB -100.0%
lineitem_22.vortex 100 vortex-file-compressed 147.32 MB 0 B 147.32 MB -100.0%
lineitem_23.vortex 100 vortex-file-compressed 148.19 MB 0 B 148.19 MB -100.0%
lineitem_24.vortex 100 vortex-file-compressed 147.50 MB 0 B 147.50 MB -100.0%
lineitem_25.vortex 100 vortex-file-compressed 148.52 MB 0 B 148.52 MB -100.0%
lineitem_26.vortex 100 vortex-file-compressed 148.11 MB 0 B 148.11 MB -100.0%
lineitem_27.vortex 100 vortex-file-compressed 148.45 MB 0 B 148.45 MB -100.0%
lineitem_28.vortex 100 vortex-file-compressed 148.66 MB 0 B 148.66 MB -100.0%
lineitem_29.vortex 100 vortex-file-compressed 148.75 MB 0 B 148.75 MB -100.0%
lineitem_3.vortex 100 vortex-file-compressed 148.16 MB 0 B 148.16 MB -100.0%
lineitem_30.vortex 100 vortex-file-compressed 147.46 MB 0 B 147.46 MB -100.0%
lineitem_31.vortex 100 vortex-file-compressed 148.50 MB 0 B 148.50 MB -100.0%
lineitem_32.vortex 100 vortex-file-compressed 148.90 MB 0 B 148.90 MB -100.0%
lineitem_33.vortex 100 vortex-file-compressed 147.74 MB 0 B 147.74 MB -100.0%
lineitem_34.vortex 100 vortex-file-compressed 148.93 MB 0 B 148.93 MB -100.0%
lineitem_35.vortex 100 vortex-file-compressed 148.35 MB 0 B 148.35 MB -100.0%
lineitem_36.vortex 100 vortex-file-compressed 147.64 MB 0 B 147.64 MB -100.0%
lineitem_37.vortex 100 vortex-file-compressed 147.47 MB 0 B 147.47 MB -100.0%
lineitem_38.vortex 100 vortex-file-compressed 149.09 MB 0 B 149.09 MB -100.0%
lineitem_39.vortex 100 vortex-file-compressed 147.38 MB 0 B 147.38 MB -100.0%
lineitem_4.vortex 100 vortex-file-compressed 147.27 MB 0 B 147.27 MB -100.0%
lineitem_40.vortex 100 vortex-file-compressed 147.97 MB 0 B 147.97 MB -100.0%
lineitem_41.vortex 100 vortex-file-compressed 146.66 MB 0 B 146.66 MB -100.0%
lineitem_42.vortex 100 vortex-file-compressed 148.38 MB 0 B 148.38 MB -100.0%
lineitem_43.vortex 100 vortex-file-compressed 147.84 MB 0 B 147.84 MB -100.0%
lineitem_44.vortex 100 vortex-file-compressed 147.91 MB 0 B 147.91 MB -100.0%
lineitem_45.vortex 100 vortex-file-compressed 146.88 MB 0 B 146.88 MB -100.0%
lineitem_46.vortex 100 vortex-file-compressed 147.77 MB 0 B 147.77 MB -100.0%
lineitem_47.vortex 100 vortex-file-compressed 148.26 MB 0 B 148.26 MB -100.0%
lineitem_48.vortex 100 vortex-file-compressed 148.23 MB 0 B 148.23 MB -100.0%
lineitem_49.vortex 100 vortex-file-compressed 148.47 MB 0 B 148.47 MB -100.0%
lineitem_5.vortex 100 vortex-file-compressed 148.16 MB 0 B 148.16 MB -100.0%
lineitem_50.vortex 100 vortex-file-compressed 148.88 MB 0 B 148.88 MB -100.0%
lineitem_51.vortex 100 vortex-file-compressed 148.42 MB 0 B 148.42 MB -100.0%
lineitem_52.vortex 100 vortex-file-compressed 146.97 MB 0 B 146.97 MB -100.0%
lineitem_53.vortex 100 vortex-file-compressed 148.23 MB 0 B 148.23 MB -100.0%
lineitem_54.vortex 100 vortex-file-compressed 149.12 MB 0 B 149.12 MB -100.0%
lineitem_55.vortex 100 vortex-file-compressed 148.16 MB 0 B 148.16 MB -100.0%
lineitem_56.vortex 100 vortex-file-compressed 147.73 MB 0 B 147.73 MB -100.0%
lineitem_57.vortex 100 vortex-file-compressed 148.37 MB 0 B 148.37 MB -100.0%
lineitem_58.vortex 100 vortex-file-compressed 148.72 MB 0 B 148.72 MB -100.0%
lineitem_59.vortex 100 vortex-file-compressed 148.42 MB 0 B 148.42 MB -100.0%
lineitem_6.vortex 100 vortex-file-compressed 147.90 MB 0 B 147.90 MB -100.0%
lineitem_60.vortex 100 vortex-file-compressed 148.62 MB 0 B 148.62 MB -100.0%
lineitem_61.vortex 100 vortex-file-compressed 147.73 MB 0 B 147.73 MB -100.0%
lineitem_62.vortex 100 vortex-file-compressed 146.94 MB 0 B 146.94 MB -100.0%
lineitem_63.vortex 100 vortex-file-compressed 148.65 MB 0 B 148.65 MB -100.0%
lineitem_64.vortex 100 vortex-file-compressed 147.72 MB 0 B 147.72 MB -100.0%
lineitem_65.vortex 100 vortex-file-compressed 147.57 MB 0 B 147.57 MB -100.0%
lineitem_66.vortex 100 vortex-file-compressed 148.09 MB 0 B 148.09 MB -100.0%
lineitem_67.vortex 100 vortex-file-compressed 148.84 MB 0 B 148.84 MB -100.0%
lineitem_68.vortex 100 vortex-file-compressed 148.03 MB 0 B 148.03 MB -100.0%
lineitem_69.vortex 100 vortex-file-compressed 148.10 MB 0 B 148.10 MB -100.0%
lineitem_7.vortex 100 vortex-file-compressed 147.86 MB 0 B 147.86 MB -100.0%
lineitem_70.vortex 100 vortex-file-compressed 147.89 MB 0 B 147.89 MB -100.0%
lineitem_71.vortex 100 vortex-file-compressed 147.94 MB 0 B 147.94 MB -100.0%
lineitem_72.vortex 100 vortex-file-compressed 147.99 MB 0 B 147.99 MB -100.0%
lineitem_73.vortex 100 vortex-file-compressed 148.32 MB 0 B 148.32 MB -100.0%
lineitem_74.vortex 100 vortex-file-compressed 147.55 MB 0 B 147.55 MB -100.0%
lineitem_75.vortex 100 vortex-file-compressed 147.88 MB 0 B 147.88 MB -100.0%
lineitem_76.vortex 100 vortex-file-compressed 147.35 MB 0 B 147.35 MB -100.0%
lineitem_77.vortex 100 vortex-file-compressed 148.24 MB 0 B 148.24 MB -100.0%
lineitem_78.vortex 100 vortex-file-compressed 147.35 MB 0 B 147.35 MB -100.0%
lineitem_79.vortex 100 vortex-file-compressed 148.43 MB 0 B 148.43 MB -100.0%
lineitem_8.vortex 100 vortex-file-compressed 148.56 MB 0 B 148.56 MB -100.0%
lineitem_80.vortex 100 vortex-file-compressed 147.55 MB 0 B 147.55 MB -100.0%
lineitem_81.vortex 100 vortex-file-compressed 147.76 MB 0 B 147.76 MB -100.0%
lineitem_82.vortex 100 vortex-file-compressed 148.37 MB 0 B 148.37 MB -100.0%
lineitem_83.vortex 100 vortex-file-compressed 148.68 MB 0 B 148.68 MB -100.0%
lineitem_84.vortex 100 vortex-file-compressed 147.94 MB 0 B 147.94 MB -100.0%
lineitem_85.vortex 100 vortex-file-compressed 147.92 MB 0 B 147.92 MB -100.0%
lineitem_86.vortex 100 vortex-file-compressed 147.62 MB 0 B 147.62 MB -100.0%
lineitem_87.vortex 100 vortex-file-compressed 147.46 MB 0 B 147.46 MB -100.0%
lineitem_88.vortex 100 vortex-file-compressed 148.71 MB 0 B 148.71 MB -100.0%
lineitem_89.vortex 100 vortex-file-compressed 148.03 MB 0 B 148.03 MB -100.0%
lineitem_9.vortex 100 vortex-file-compressed 148.87 MB 0 B 148.87 MB -100.0%
lineitem_90.vortex 100 vortex-file-compressed 147.82 MB 0 B 147.82 MB -100.0%
lineitem_91.vortex 100 vortex-file-compressed 148.27 MB 0 B 148.27 MB -100.0%
lineitem_92.vortex 100 vortex-file-compressed 148.08 MB 0 B 148.08 MB -100.0%
lineitem_93.vortex 100 vortex-file-compressed 147.77 MB 0 B 147.77 MB -100.0%
lineitem_94.vortex 100 vortex-file-compressed 148.40 MB 0 B 148.40 MB -100.0%
lineitem_95.vortex 100 vortex-file-compressed 147.49 MB 0 B 147.49 MB -100.0%
lineitem_96.vortex 100 vortex-file-compressed 148.03 MB 0 B 148.03 MB -100.0%
lineitem_97.vortex 100 vortex-file-compressed 148.10 MB 0 B 148.10 MB -100.0%
lineitem_98.vortex 100 vortex-file-compressed 148.59 MB 0 B 148.59 MB -100.0%
lineitem_99.vortex 100 vortex-file-compressed 147.26 MB 0 B 147.26 MB -100.0%
nation_0.vortex 100 vortex-file-compressed 11.00 KB 0 B 11.00 KB -100.0%
orders_0.vortex 100 vortex-file-compressed 180.00 MB 0 B 180.00 MB -100.0%
orders_1.vortex 100 vortex-file-compressed 179.92 MB 0 B 179.92 MB -100.0%
orders_10.vortex 100 vortex-file-compressed 180.14 MB 0 B 180.14 MB -100.0%
orders_11.vortex 100 vortex-file-compressed 180.08 MB 0 B 180.08 MB -100.0%
orders_12.vortex 100 vortex-file-compressed 180.32 MB 0 B 180.32 MB -100.0%
orders_13.vortex 100 vortex-file-compressed 179.83 MB 0 B 179.83 MB -100.0%
orders_14.vortex 100 vortex-file-compressed 180.18 MB 0 B 180.18 MB -100.0%
orders_15.vortex 100 vortex-file-compressed 180.19 MB 0 B 180.19 MB -100.0%
orders_16.vortex 100 vortex-file-compressed 179.88 MB 0 B 179.88 MB -100.0%
orders_17.vortex 100 vortex-file-compressed 180.01 MB 0 B 180.01 MB -100.0%
orders_18.vortex 100 vortex-file-compressed 180.45 MB 0 B 180.45 MB -100.0%
orders_19.vortex 100 vortex-file-compressed 180.04 MB 0 B 180.04 MB -100.0%
orders_2.vortex 100 vortex-file-compressed 180.35 MB 0 B 180.35 MB -100.0%
orders_20.vortex 100 vortex-file-compressed 179.85 MB 0 B 179.85 MB -100.0%
orders_21.vortex 100 vortex-file-compressed 179.89 MB 0 B 179.89 MB -100.0%
orders_22.vortex 100 vortex-file-compressed 180.04 MB 0 B 180.04 MB -100.0%
orders_23.vortex 100 vortex-file-compressed 179.94 MB 0 B 179.94 MB -100.0%
orders_24.vortex 100 vortex-file-compressed 179.56 MB 0 B 179.56 MB -100.0%
orders_25.vortex 100 vortex-file-compressed 179.82 MB 0 B 179.82 MB -100.0%
orders_26.vortex 100 vortex-file-compressed 179.99 MB 0 B 179.99 MB -100.0%
orders_27.vortex 100 vortex-file-compressed 179.78 MB 0 B 179.78 MB -100.0%
orders_3.vortex 100 vortex-file-compressed 180.12 MB 0 B 180.12 MB -100.0%
orders_4.vortex 100 vortex-file-compressed 180.39 MB 0 B 180.39 MB -100.0%
orders_5.vortex 100 vortex-file-compressed 180.03 MB 0 B 180.03 MB -100.0%
orders_6.vortex 100 vortex-file-compressed 179.80 MB 0 B 179.80 MB -100.0%
orders_7.vortex 100 vortex-file-compressed 180.12 MB 0 B 180.12 MB -100.0%
orders_8.vortex 100 vortex-file-compressed 180.21 MB 0 B 180.21 MB -100.0%
orders_9.vortex 100 vortex-file-compressed 180.11 MB 0 B 180.11 MB -100.0%
part_0.vortex 100 vortex-file-compressed 28.45 MB 0 B 28.45 MB -100.0%
part_1.vortex 100 vortex-file-compressed 28.49 MB 0 B 28.49 MB -100.0%
part_10.vortex 100 vortex-file-compressed 28.43 MB 0 B 28.43 MB -100.0%
part_11.vortex 100 vortex-file-compressed 28.45 MB 0 B 28.45 MB -100.0%
part_12.vortex 100 vortex-file-compressed 28.43 MB 0 B 28.43 MB -100.0%
part_13.vortex 100 vortex-file-compressed 28.44 MB 0 B 28.44 MB -100.0%
part_14.vortex 100 vortex-file-compressed 28.46 MB 0 B 28.46 MB -100.0%
part_15.vortex 100 vortex-file-compressed 28.48 MB 0 B 28.48 MB -100.0%
part_16.vortex 100 vortex-file-compressed 28.42 MB 0 B 28.42 MB -100.0%
part_17.vortex 100 vortex-file-compressed 28.41 MB 0 B 28.41 MB -100.0%
part_18.vortex 100 vortex-file-compressed 28.51 MB 0 B 28.51 MB -100.0%
part_2.vortex 100 vortex-file-compressed 28.46 MB 0 B 28.46 MB -100.0%
part_3.vortex 100 vortex-file-compressed 28.43 MB 0 B 28.43 MB -100.0%
part_4.vortex 100 vortex-file-compressed 28.42 MB 0 B 28.42 MB -100.0%
part_5.vortex 100 vortex-file-compressed 28.38 MB 0 B 28.38 MB -100.0%
part_6.vortex 100 vortex-file-compressed 28.44 MB 0 B 28.44 MB -100.0%
part_7.vortex 100 vortex-file-compressed 28.41 MB 0 B 28.41 MB -100.0%
part_8.vortex 100 vortex-file-compressed 28.43 MB 0 B 28.43 MB -100.0%
part_9.vortex 100 vortex-file-compressed 28.41 MB 0 B 28.41 MB -100.0%
partsupp_0.vortex 100 vortex-file-compressed 191.37 MB 0 B 191.37 MB -100.0%
partsupp_1.vortex 100 vortex-file-compressed 191.69 MB 0 B 191.69 MB -100.0%
partsupp_10.vortex 100 vortex-file-compressed 191.59 MB 0 B 191.59 MB -100.0%
partsupp_11.vortex 100 vortex-file-compressed 191.43 MB 0 B 191.43 MB -100.0%
partsupp_12.vortex 100 vortex-file-compressed 191.50 MB 0 B 191.50 MB -100.0%
partsupp_13.vortex 100 vortex-file-compressed 191.35 MB 0 B 191.35 MB -100.0%
partsupp_14.vortex 100 vortex-file-compressed 191.62 MB 0 B 191.62 MB -100.0%
partsupp_15.vortex 100 vortex-file-compressed 191.52 MB 0 B 191.52 MB -100.0%
partsupp_16.vortex 100 vortex-file-compressed 191.25 MB 0 B 191.25 MB -100.0%
partsupp_17.vortex 100 vortex-file-compressed 191.49 MB 0 B 191.49 MB -100.0%
partsupp_18.vortex 100 vortex-file-compressed 191.38 MB 0 B 191.38 MB -100.0%
partsupp_2.vortex 100 vortex-file-compressed 191.39 MB 0 B 191.39 MB -100.0%
partsupp_3.vortex 100 vortex-file-compressed 191.37 MB 0 B 191.37 MB -100.0%
partsupp_4.vortex 100 vortex-file-compressed 191.40 MB 0 B 191.40 MB -100.0%
partsupp_5.vortex 100 vortex-file-compressed 191.41 MB 0 B 191.41 MB -100.0%
partsupp_6.vortex 100 vortex-file-compressed 191.38 MB 0 B 191.38 MB -100.0%
partsupp_7.vortex 100 vortex-file-compressed 191.61 MB 0 B 191.61 MB -100.0%
partsupp_8.vortex 100 vortex-file-compressed 191.49 MB 0 B 191.49 MB -100.0%
partsupp_9.vortex 100 vortex-file-compressed 191.50 MB 0 B 191.50 MB -100.0%
region_0.vortex 100 vortex-file-compressed 6.16 KB 0 B 6.16 KB -100.0%
supplier_0.vortex 100 vortex-file-compressed 66.71 MB 0 B 66.71 MB -100.0%

Totals:

  • vortex-compact: 11.86 GB → 273.21 MB (-97.8%)
  • vortex-file-compressed: 49.77 GB → 529.70 MB (-99.0%)
Full attributed analysis
Query Config Raw Δ Control Δ Attributed α Noise floor Significant?
1 datafusion:vortex-file-compressed -6.0% -10.0% +4.5% +10.0% ➖ noise
1 duckdb:duckdb -6.0% -10.0% +4.4% +10.0% ➖ noise
1 duckdb:vortex-file-compressed -3.5% -10.0% +7.2% +10.0% ➖ noise
2 datafusion:vortex-file-compressed -6.2% -7.1% +1.0% +10.0% ➖ noise
2 duckdb:duckdb -3.9% -7.1% +3.5% +10.0% ➖ noise
2 duckdb:vortex-file-compressed -4.6% -7.1% +2.7% +10.0% ➖ noise
3 datafusion:vortex-file-compressed -6.2% -5.8% -0.4% +10.0% ➖ noise
3 duckdb:duckdb -4.0% -5.8% +2.0% +10.0% ➖ noise
3 duckdb:vortex-file-compressed -6.5% -5.8% -0.7% +10.0% ➖ noise
4 datafusion:vortex-file-compressed -5.6% -5.3% -0.3% +10.0% ➖ noise
4 duckdb:duckdb -2.9% -5.3% +2.6% +10.0% ➖ noise
4 duckdb:vortex-file-compressed -2.6% -5.3% +2.9% +10.0% ➖ noise
5 datafusion:vortex-file-compressed -10.1% -7.5% -2.7% +12.4% ➖ noise
5 duckdb:duckdb -4.5% -7.5% +3.3% +10.0% ➖ noise
5 duckdb:vortex-file-compressed -4.9% -7.5% +2.9% +10.0% ➖ noise
6 datafusion:vortex-file-compressed -4.2% -3.9% -0.3% +10.0% ➖ noise
6 duckdb:duckdb -0.7% -3.9% +3.4% +10.0% ➖ noise
6 duckdb:vortex-file-compressed -1.5% -3.9% +2.5% +10.0% ➖ noise
7 datafusion:vortex-file-compressed -6.7% -5.3% -1.4% +10.0% ➖ noise
7 duckdb:duckdb -2.8% -5.3% +2.7% +10.0% ➖ noise
7 duckdb:vortex-file-compressed -4.2% -5.3% +1.2% +10.0% ➖ noise
8 datafusion:vortex-file-compressed -6.0% -4.9% -1.1% +10.0% ➖ noise
8 duckdb:duckdb -2.7% -4.9% +2.4% +10.0% ➖ noise
8 duckdb:vortex-file-compressed -4.6% -4.9% +0.4% +10.0% ➖ noise

@github-actions
Copy link
Copy Markdown
Contributor

Benchmarks: TPC-H SF=1 on S3

Verdict: No clear signal (environment too noisy confidence)
Attributed Vortex impact: -5.5%
Engines: DataFusion No clear signal (-13.6%, environment too noisy confidence) · DuckDB No clear signal (+3.5%, environment too noisy confidence)
Vortex (geomean): 0.865x ➖
Parquet (geomean): 0.915x ➖
Shifts: Parquet (control) -8.5% · Median polish -14.0%

How to read Verdict and Engines
  • Verdict: Overall PR-level signal after subtracting baseline drift estimated from Parquet control rows. It can be Likely improvement, Likely regression, or No clear signal.
  • Engines: Per-engine attribution. DataFusion is compared against DataFusion/Parquet controls; DuckDB is compared against DuckDB/Parquet controls. This answers whether each engine improved or regressed independently.
  • Confidence: Based on directional consistency, share of rows above the noise floor, and control-run noise.

datafusion / vortex-file-compressed (0.809x ➖, 7↑ 1↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/datafusion:vortex-file-compressed 290414710 313904772 0.93
tpch_q02/datafusion:vortex-file-compressed 🚨 962489598 473932514 2.03
tpch_q03/datafusion:vortex-file-compressed 469956458 551554085 0.85
tpch_q04/datafusion:vortex-file-compressed 277723480 275723025 1.01
tpch_q05/datafusion:vortex-file-compressed 424630377 605723966 0.70
tpch_q06/datafusion:vortex-file-compressed 315700086 341641882 0.92
tpch_q07/datafusion:vortex-file-compressed 🚀 422731890 623756935 0.68
tpch_q08/datafusion:vortex-file-compressed 621683014 807021517 0.77
tpch_q09/datafusion:vortex-file-compressed 🚀 390619981 602733530 0.65
tpch_q10/datafusion:vortex-file-compressed 484141755 658200454 0.74
tpch_q11/datafusion:vortex-file-compressed 349819943 360188672 0.97
tpch_q12/datafusion:vortex-file-compressed 516618811 472803006 1.09
tpch_q13/datafusion:vortex-file-compressed 199429055 237048415 0.84
tpch_q14/datafusion:vortex-file-compressed 🚀 219392443 368590231 0.60
tpch_q15/datafusion:vortex-file-compressed 🚀 404287656 606405264 0.67
tpch_q16/datafusion:vortex-file-compressed 🚀 185273597 311132824 0.60
tpch_q17/datafusion:vortex-file-compressed 🚀 441380147 678019641 0.65
tpch_q18/datafusion:vortex-file-compressed 🚀 396460602 723167616 0.55
tpch_q19/datafusion:vortex-file-compressed 508397607 724150957 0.70
tpch_q20/datafusion:vortex-file-compressed 426420155 572333466 0.75
tpch_q21/datafusion:vortex-file-compressed 701597535 854353802 0.82
tpch_q22/datafusion:vortex-file-compressed 150077182 135485484 1.11
datafusion / vortex-compact (0.905x ➖, 3↑ 2↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/datafusion:vortex-compact 280623715 250387248 1.12
tpch_q02/datafusion:vortex-compact 419611175 433336411 0.97
tpch_q03/datafusion:vortex-compact 373161893 396088542 0.94
tpch_q04/datafusion:vortex-compact 🚨 415472732 263894133 1.57
tpch_q05/datafusion:vortex-compact 🚨 834867884 637127866 1.31
tpch_q06/datafusion:vortex-compact 526832556 585419385 0.90
tpch_q07/datafusion:vortex-compact 578023109 654924708 0.88
tpch_q08/datafusion:vortex-compact 623156447 698513948 0.89
tpch_q09/datafusion:vortex-compact 530304612 623363839 0.85
tpch_q10/datafusion:vortex-compact 596835372 546201370 1.09
tpch_q11/datafusion:vortex-compact 285757403 345643170 0.83
tpch_q12/datafusion:vortex-compact 485597917 453168529 1.07
tpch_q13/datafusion:vortex-compact 🚀 159380682 246211346 0.65
tpch_q14/datafusion:vortex-compact 286273923 398875448 0.72
tpch_q15/datafusion:vortex-compact 475611551 592728689 0.80
tpch_q16/datafusion:vortex-compact 230946122 246705329 0.94
tpch_q17/datafusion:vortex-compact 429100903 531808764 0.81
tpch_q18/datafusion:vortex-compact 🚀 311025223 523335163 0.59
tpch_q19/datafusion:vortex-compact 🚀 492607090 717771760 0.69
tpch_q20/datafusion:vortex-compact 477585770 551574634 0.87
tpch_q21/datafusion:vortex-compact 552799162 717857288 0.77
tpch_q22/datafusion:vortex-compact 124069127 104116008 1.19
datafusion / parquet (0.991x ➖, 1↑ 1↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/datafusion:parquet 321499083 297271561 1.08
tpch_q02/datafusion:parquet 521368720 479487193 1.09
tpch_q03/datafusion:parquet 386110100 493298200 0.78
tpch_q04/datafusion:parquet 200522990 208962323 0.96
tpch_q05/datafusion:parquet 538532078 629412120 0.86
tpch_q06/datafusion:parquet 176898481 156412590 1.13
tpch_q07/datafusion:parquet 591187124 494041323 1.20
tpch_q08/datafusion:parquet 615809708 585207173 1.05
tpch_q09/datafusion:parquet 581775174 486268070 1.20
tpch_q10/datafusion:parquet 645604324 669302760 0.96
tpch_q11/datafusion:parquet 389371451 345931402 1.13
tpch_q12/datafusion:parquet 285885075 227291420 1.26
tpch_q13/datafusion:parquet 441699288 433294903 1.02
tpch_q14/datafusion:parquet 255290993 236180130 1.08
tpch_q15/datafusion:parquet 317399999 389963766 0.81
tpch_q16/datafusion:parquet 🚀 170510185 246241123 0.69
tpch_q17/datafusion:parquet 421224220 400207232 1.05
tpch_q18/datafusion:parquet 🚨 634498946 436949806 1.45
tpch_q19/datafusion:parquet 332975216 398944436 0.83
tpch_q20/datafusion:parquet 365557513 451699962 0.81
tpch_q21/datafusion:parquet 544479902 678937902 0.80
tpch_q22/datafusion:parquet 146808953 163243760 0.90
duckdb / vortex-file-compressed (0.859x ➖, 1↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/duckdb:vortex-file-compressed 288332393 356056488 0.81
tpch_q02/duckdb:vortex-file-compressed 871489118 1132743386 0.77
tpch_q03/duckdb:vortex-file-compressed 599261116 774677834 0.77
tpch_q04/duckdb:vortex-file-compressed 384587894 531260379 0.72
tpch_q05/duckdb:vortex-file-compressed 813304713 836595604 0.97
tpch_q06/duckdb:vortex-file-compressed 343361072 373108572 0.92
tpch_q07/duckdb:vortex-file-compressed 867218199 1032084533 0.84
tpch_q08/duckdb:vortex-file-compressed 946244816 1025866420 0.92
tpch_q09/duckdb:vortex-file-compressed 885932984 1072236782 0.83
tpch_q10/duckdb:vortex-file-compressed 709552430 790090015 0.90
tpch_q11/duckdb:vortex-file-compressed 452792169 508022492 0.89
tpch_q12/duckdb:vortex-file-compressed 650034411 667783273 0.97
tpch_q13/duckdb:vortex-file-compressed 445283760 396479062 1.12
tpch_q14/duckdb:vortex-file-compressed 408068322 405321097 1.01
tpch_q15/duckdb:vortex-file-compressed 295400697 370262018 0.80
tpch_q16/duckdb:vortex-file-compressed 332144242 357650999 0.93
tpch_q17/duckdb:vortex-file-compressed 668868416 814623283 0.82
tpch_q18/duckdb:vortex-file-compressed 568570994 631261639 0.90
tpch_q19/duckdb:vortex-file-compressed 🚀 425925117 611166669 0.70
tpch_q20/duckdb:vortex-file-compressed 787509914 995622803 0.79
tpch_q21/duckdb:vortex-file-compressed 1000538894 1134420241 0.88
tpch_q22/duckdb:vortex-file-compressed 281372574 370405308 0.76
duckdb / vortex-compact (0.891x ➖, 0↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/duckdb:vortex-compact 279337598 299462520 0.93
tpch_q02/duckdb:vortex-compact 898855691 955238532 0.94
tpch_q03/duckdb:vortex-compact 542863025 656574155 0.83
tpch_q04/duckdb:vortex-compact 353597654 459717917 0.77
tpch_q05/duckdb:vortex-compact 715631809 878311800 0.81
tpch_q06/duckdb:vortex-compact 350464349 338920033 1.03
tpch_q07/duckdb:vortex-compact 872253497 1014331827 0.86
tpch_q08/duckdb:vortex-compact 914990764 1016938210 0.90
tpch_q09/duckdb:vortex-compact 889280828 1018942163 0.87
tpch_q10/duckdb:vortex-compact 652757286 736601621 0.89
tpch_q11/duckdb:vortex-compact 454017396 510193019 0.89
tpch_q12/duckdb:vortex-compact 640317915 667140992 0.96
tpch_q13/duckdb:vortex-compact 329310930 452612504 0.73
tpch_q14/duckdb:vortex-compact 394201007 400495314 0.98
tpch_q15/duckdb:vortex-compact 287824594 290542540 0.99
tpch_q16/duckdb:vortex-compact 303902160 312354252 0.97
tpch_q17/duckdb:vortex-compact 601943023 642844347 0.94
tpch_q18/duckdb:vortex-compact 452860256 570071230 0.79
tpch_q19/duckdb:vortex-compact 419888357 465404655 0.90
tpch_q20/duckdb:vortex-compact 694116681 794398645 0.87
tpch_q21/duckdb:vortex-compact 950732756 1028284032 0.92
tpch_q22/duckdb:vortex-compact 247621008 284869025 0.87
duckdb / parquet (0.845x ➖, 0↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/duckdb:parquet 481245828 551092469 0.87
tpch_q02/duckdb:parquet 1032762242 1309746454 0.79
tpch_q03/duckdb:parquet 1040674029 1241898579 0.84
tpch_q04/duckdb:parquet 601290431 758580162 0.79
tpch_q05/duckdb:parquet 1183904437 1537558059 0.77
tpch_q06/duckdb:parquet 414339557 519552238 0.80
tpch_q07/duckdb:parquet 1110474976 1414837158 0.78
tpch_q08/duckdb:parquet 1599298594 1878971464 0.85
tpch_q09/duckdb:parquet 1310335628 1522252386 0.86
tpch_q10/duckdb:parquet 1269588223 1357098463 0.94
tpch_q11/duckdb:parquet 656411261 794102329 0.83
tpch_q12/duckdb:parquet 657115229 786172521 0.84
tpch_q13/duckdb:parquet 885125197 968721315 0.91
tpch_q14/duckdb:parquet 640745327 833822368 0.77
tpch_q15/duckdb:parquet 608774902 730056239 0.83
tpch_q16/duckdb:parquet 614465810 701719380 0.88
tpch_q17/duckdb:parquet 834362171 942648595 0.89
tpch_q18/duckdb:parquet 909183719 1083397786 0.84
tpch_q19/duckdb:parquet 941563540 840642827 1.12
tpch_q20/duckdb:parquet 1059014639 1310823406 0.81
tpch_q21/duckdb:parquet 1018344728 1297959961 0.78
tpch_q22/duckdb:parquet 562885306 641563098 0.88
Full attributed analysis
Query Config Raw Δ Control Δ Attributed α Noise floor Significant?
1 datafusion:vortex-compact +12.1% -2.8% +15.3% +63.5% ➖ noise
1 datafusion:vortex-file-compressed -7.5% -2.8% -4.8% +68.4% ➖ noise
1 duckdb:vortex-compact -6.7% -2.8% -4.0% +51.7% ➖ noise
1 duckdb:vortex-file-compressed -19.0% -2.8% -16.7% +49.5% ➖ noise
2 datafusion:vortex-compact -3.2% -7.4% +4.6% +30.0% ➖ noise
2 datafusion:vortex-file-compressed +103.1% -7.4% +119.3% +60.8% 🚨 regression
2 duckdb:vortex-compact -5.9% -7.4% +1.6% +30.0% ➖ noise
2 duckdb:vortex-file-compressed -23.1% -7.4% -16.9% +30.0% ➖ noise
3 datafusion:vortex-compact -5.8% -19.0% +16.3% +42.5% ➖ noise
3 datafusion:vortex-file-compressed -14.8% -19.0% +5.2% +51.5% ➖ noise
3 duckdb:vortex-compact -17.3% -19.0% +2.1% +35.5% ➖ noise
3 duckdb:vortex-file-compressed -22.6% -19.0% -4.5% +30.3% ➖ noise
4 datafusion:vortex-compact +57.4% -12.8% +80.5% +47.0% 🚨 regression
4 datafusion:vortex-file-compressed +0.7% -12.8% +15.5% +31.3% ➖ noise
4 duckdb:vortex-compact -23.1% -12.8% -11.8% +30.7% ➖ noise
4 duckdb:vortex-file-compressed -27.6% -12.8% -17.0% +31.2% ➖ noise
5 datafusion:vortex-compact +31.0% -18.8% +61.4% +45.6% 🚨 regression
5 datafusion:vortex-file-compressed -29.9% -18.8% -13.6% +30.0% ➖ noise
5 duckdb:vortex-compact -18.5% -18.8% +0.4% +30.0% ➖ noise
5 duckdb:vortex-file-compressed -2.8% -18.8% +19.8% +30.0% ➖ noise
6 datafusion:vortex-compact -10.0% -5.0% -5.2% +36.2% ➖ noise
6 datafusion:vortex-file-compressed -7.6% -5.0% -2.7% +30.0% ➖ noise
6 duckdb:vortex-compact +3.4% -5.0% +8.9% +30.0% ➖ noise
6 duckdb:vortex-file-compressed -8.0% -5.0% -3.1% +30.0% ➖ noise
7 datafusion:vortex-compact -11.7% -3.1% -8.9% +45.2% ➖ noise
7 datafusion:vortex-file-compressed -32.2% -3.1% -30.1% +30.0% ✅ faster
7 duckdb:vortex-compact -14.0% -3.1% -11.3% +30.0% ➖ noise
7 duckdb:vortex-file-compressed -16.0% -3.1% -13.3% +30.0% ➖ noise
8 datafusion:vortex-compact -10.8% -5.4% -5.7% +30.0% ➖ noise
8 datafusion:vortex-file-compressed -23.0% -5.4% -18.6% +30.0% ➖ noise
8 duckdb:vortex-compact -10.0% -5.4% -4.9% +30.0% ➖ noise
8 duckdb:vortex-file-compressed -7.8% -5.4% -2.5% +30.0% ➖ noise
9 datafusion:vortex-compact -14.9% +1.5% -16.2% +37.8% ➖ noise
9 datafusion:vortex-file-compressed -35.2% +1.5% -36.1% +30.7% ✅ faster
9 duckdb:vortex-compact -12.7% +1.5% -14.0% +30.0% ➖ noise
9 duckdb:vortex-file-compressed -17.4% +1.5% -18.6% +30.0% ➖ noise
10 datafusion:vortex-compact +9.3% -5.0% +15.0% +37.9% ➖ noise
10 datafusion:vortex-file-compressed -26.4% -5.0% -22.6% +30.0% ➖ noise
10 duckdb:vortex-compact -11.4% -5.0% -6.7% +30.0% ➖ noise
10 duckdb:vortex-file-compressed -10.2% -5.0% -5.5% +30.0% ➖ noise
11 datafusion:vortex-compact -17.3% -3.5% -14.3% +49.5% ➖ noise
11 datafusion:vortex-file-compressed -2.9% -3.5% +0.7% +30.0% ➖ noise
11 duckdb:vortex-compact -11.0% -3.5% -7.7% +30.0% ➖ noise
11 duckdb:vortex-file-compressed -10.9% -3.5% -7.6% +30.0% ➖ noise
12 datafusion:vortex-compact +7.2% +2.5% +4.5% +35.6% ➖ noise
12 datafusion:vortex-file-compressed +9.3% +2.5% +6.6% +30.0% ➖ noise
12 duckdb:vortex-compact -4.0% +2.5% -6.4% +30.0% ➖ noise
12 duckdb:vortex-file-compressed -2.7% +2.5% -5.1% +30.0% ➖ noise
13 datafusion:vortex-compact -35.3% -3.5% -32.9% +68.9% ➖ noise
13 datafusion:vortex-file-compressed -15.9% -3.5% -12.8% +52.2% ➖ noise
13 duckdb:vortex-compact -27.2% -3.5% -24.6% +30.0% ✅ faster
13 duckdb:vortex-file-compressed +12.3% -3.5% +16.4% +32.7% ➖ noise
14 datafusion:vortex-compact -28.2% -8.9% -21.3% +67.4% ➖ noise
14 datafusion:vortex-file-compressed -40.5% -8.9% -34.7% +35.5% ✅ faster
14 duckdb:vortex-compact -1.6% -8.9% +8.0% +30.0% ➖ noise
14 duckdb:vortex-file-compressed +0.7% -8.9% +10.5% +30.0% ➖ noise
15 datafusion:vortex-compact -19.8% -17.6% -2.6% +36.5% ➖ noise
15 datafusion:vortex-file-compressed -33.3% -17.6% -19.1% +30.0% ➖ noise
15 duckdb:vortex-compact -0.9% -17.6% +20.2% +30.0% ➖ noise
15 duckdb:vortex-file-compressed -20.2% -17.6% -3.2% +30.7% ➖ noise
16 datafusion:vortex-compact -6.4% -22.1% +20.2% +39.0% ➖ noise
16 datafusion:vortex-file-compressed -40.5% -22.1% -23.5% +30.0% ✅ faster
16 duckdb:vortex-compact -2.7% -22.1% +24.9% +30.0% ➖ noise
16 duckdb:vortex-file-compressed -7.1% -22.1% +19.3% +30.0% ➖ noise
17 datafusion:vortex-compact -19.3% -3.5% -16.4% +30.1% ➖ noise
17 datafusion:vortex-file-compressed -34.9% -3.5% -32.6% +30.0% ✅ faster
17 duckdb:vortex-compact -6.4% -3.5% -3.0% +30.0% ➖ noise
17 duckdb:vortex-file-compressed -17.9% -3.5% -14.9% +30.0% ➖ noise
18 datafusion:vortex-compact -40.6% +10.4% -46.2% +33.9% ✅ faster
18 datafusion:vortex-file-compressed -45.2% +10.4% -50.3% +31.1% ✅ faster
18 duckdb:vortex-compact -20.6% +10.4% -28.0% +30.0% ✅ faster
18 duckdb:vortex-file-compressed -9.9% +10.4% -18.4% +30.0% ➖ noise
19 datafusion:vortex-compact -31.4% -3.3% -29.0% +30.0% ✅ faster
19 datafusion:vortex-file-compressed -29.8% -3.3% -27.4% +36.3% ✅ faster
19 duckdb:vortex-compact -9.8% -3.3% -6.7% +30.0% ➖ noise
19 duckdb:vortex-file-compressed -30.3% -3.3% -27.9% +30.0% ✅ faster
20 datafusion:vortex-compact -13.4% -19.1% +7.1% +38.2% ➖ noise
20 datafusion:vortex-file-compressed -25.5% -19.1% -7.9% +30.0% ➖ noise
20 duckdb:vortex-compact -12.6% -19.1% +8.1% +30.0% ➖ noise
20 duckdb:vortex-file-compressed -20.9% -19.1% -2.2% +30.0% ➖ noise
21 datafusion:vortex-compact -23.0% -20.7% -2.9% +30.0% ➖ noise
21 datafusion:vortex-file-compressed -17.9% -20.7% +3.5% +30.0% ➖ noise
21 duckdb:vortex-compact -7.5% -20.7% +16.6% +30.0% ➖ noise
21 duckdb:vortex-file-compressed -11.8% -20.7% +11.2% +30.0% ➖ noise
22 datafusion:vortex-compact +19.2% -11.2% +34.2% +30.0% 🚨 regression
22 datafusion:vortex-file-compressed +10.8% -11.2% +24.7% +32.7% ➖ noise
22 duckdb:vortex-compact -13.1% -11.2% -2.1% +30.0% ➖ noise
22 duckdb:vortex-file-compressed -24.0% -11.2% -14.5% +30.0% ➖ noise

@joseph-isaacs
Copy link
Copy Markdown
Contributor Author

Looks like small but real wins

@joseph-isaacs joseph-isaacs requested a review from a10y May 29, 2026 10:52
@joseph-isaacs joseph-isaacs changed the title Add FSST AVX-512 decode benchmark and optimize view construction perf: optimize varbinview construction May 29, 2026
@github-actions
Copy link
Copy Markdown
Contributor

Benchmarks: Compression

Vortex (geomean): 1.002x ➖
Parquet (geomean): 0.998x ➖

How to read Verdict and Engines
  • Verdict: Overall PR-level signal after subtracting baseline drift estimated from Parquet control rows. It can be Likely improvement, Likely regression, or No clear signal.
  • Engines: Per-engine attribution. DataFusion is compared against DataFusion/Parquet controls; DuckDB is compared against DuckDB/Parquet controls. This answers whether each engine improved or regressed independently.
  • Confidence: Based on directional consistency, share of rows above the noise floor, and control-run noise.

unknown / unknown (0.998x ➖, 0↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
compress time/Arade 1093803965 1137775603 0.96
compress time/Bimbo 5572117456 5796530321 0.96
compress time/CMSprovider 2742701334 2755159437 1.00
compress time/Euro2016 418877044 427970891 0.98
compress time/Food 375995386 383738892 0.98
compress time/HashTags 780263397 771082056 1.01
compress time/TPC-H l_comment canonical 1223236895 1206496512 1.01
compress time/TPC-H l_comment chunked 1212245479 1191497742 1.02
compress time/taxi 662249014 670565204 0.99
compress time/wide table cols=100 chunks=1 rows=1000 11909566 12312904 0.97
compress time/wide table cols=100 chunks=50 rows=1000 11933037 11606599 1.03
compress time/wide table cols=1000 chunks=1 rows=1000 125058704 125514345 1.00
compress time/wide table cols=1000 chunks=50 rows=1000 130829398 131225722 1.00
compress time/wide table cols=10000 chunks=1 rows=1000 1463670738 1456823775 1.00
compress time/wide table cols=10000 chunks=50 rows=1000 1448184273 1473528118 0.98
decompress time/Arade 27453869 26693357 1.03
decompress time/Bimbo 77807649 85430962 0.91
decompress time/CMSprovider 75882029 75030356 1.01
decompress time/Euro2016 19026816 19365506 0.98
decompress time/Food 8277178 8360989 0.99
decompress time/HashTags 86567661 85659915 1.01
decompress time/TPC-H l_comment canonical 39311033 39652046 0.99
decompress time/TPC-H l_comment chunked 40212432 39401140 1.02
decompress time/taxi 14604004 14760766 0.99
decompress time/wide table cols=100 chunks=1 rows=1000 2447632 2472339 0.99
decompress time/wide table cols=100 chunks=50 rows=1000 2575991 2645571 0.97
decompress time/wide table cols=1000 chunks=1 rows=1000 23507047 23733761 0.99
decompress time/wide table cols=1000 chunks=50 rows=1000 24117739 23381363 1.03
decompress time/wide table cols=10000 chunks=1 rows=1000 251065096 238772753 1.05
decompress time/wide table cols=10000 chunks=50 rows=1000 265552235 261821331 1.01
parquet size/Arade 258014282 258014282 1.00
parquet size/Bimbo 384517292 384517292 1.00
parquet size/CMSprovider 376885545 376885545 1.00
parquet size/Euro2016 122975499 122975499 1.00
parquet size/Food 35699500 35699500 1.00
parquet size/HashTags 133510943 133510943 1.00
parquet size/TPC-H l_comment canonical 158358238 158358238 1.00
parquet size/TPC-H l_comment chunked 158358238 158358238 1.00
parquet size/taxi 55283635 55283635 1.00
parquet size/wide table cols=100 chunks=1 rows=1000 932404 932404 1.00
parquet size/wide table cols=100 chunks=50 rows=1000 932404 932404 1.00
parquet size/wide table cols=1000 chunks=1 rows=1000 9324004 9324004 1.00
parquet size/wide table cols=1000 chunks=50 rows=1000 9324004 9324004 1.00
parquet size/wide table cols=10000 chunks=1 rows=1000 93240004 93240004 1.00
parquet size/wide table cols=10000 chunks=50 rows=1000 93240004 93240004 1.00
parquet_rs-zstd compress time/Arade 2626424762 2614174992 1.00
parquet_rs-zstd compress time/Bimbo 12576429145 12969757674 0.97
parquet_rs-zstd compress time/CMSprovider 6913176518 7224158386 0.96
parquet_rs-zstd compress time/Euro2016 1304364525 1303699930 1.00
parquet_rs-zstd compress time/Food 792969159 812602806 0.98
parquet_rs-zstd compress time/HashTags 2150911391 2183336658 0.99
parquet_rs-zstd compress time/TPC-H l_comment canonical 3200753605 3186611295 1.00
parquet_rs-zstd compress time/TPC-H l_comment chunked 3237030455 3218405831 1.01
parquet_rs-zstd compress time/taxi 1202113571 1189724338 1.01
parquet_rs-zstd compress time/wide table cols=100 chunks=1 rows=1000 6029426 6169737 0.98
parquet_rs-zstd compress time/wide table cols=100 chunks=50 rows=1000 5975605 6055550 0.99
parquet_rs-zstd compress time/wide table cols=1000 chunks=1 rows=1000 74780401 74396711 1.01
parquet_rs-zstd compress time/wide table cols=1000 chunks=50 rows=1000 73756319 75686325 0.97
parquet_rs-zstd compress time/wide table cols=10000 chunks=1 rows=1000 771772024 809747911 0.95
parquet_rs-zstd compress time/wide table cols=10000 chunks=50 rows=1000 766304121 777774907 0.99
parquet_rs-zstd decompress time/Arade 618525289 624707431 0.99
parquet_rs-zstd decompress time/Bimbo 1690247934 1698135151 1.00
parquet_rs-zstd decompress time/CMSprovider 1684702416 1710360396 0.98
parquet_rs-zstd decompress time/Euro2016 376902166 380089648 0.99
parquet_rs-zstd decompress time/Food 195171248 196051481 1.00
parquet_rs-zstd decompress time/HashTags 625402588 627630455 1.00
parquet_rs-zstd decompress time/TPC-H l_comment canonical 585484071 582146548 1.01
parquet_rs-zstd decompress time/TPC-H l_comment chunked 594877648 586041004 1.02
parquet_rs-zstd decompress time/taxi 244928218 243380932 1.01
parquet_rs-zstd decompress time/wide table cols=100 chunks=1 rows=1000 2815447 2816506 1.00
parquet_rs-zstd decompress time/wide table cols=100 chunks=50 rows=1000 2781967 2803683 0.99
parquet_rs-zstd decompress time/wide table cols=1000 chunks=1 rows=1000 32225522 31932286 1.01
parquet_rs-zstd decompress time/wide table cols=1000 chunks=50 rows=1000 32779838 33146501 0.99
parquet_rs-zstd decompress time/wide table cols=10000 chunks=1 rows=1000 346681655 349607094 0.99
parquet_rs-zstd decompress time/wide table cols=10000 chunks=50 rows=1000 351574666 350863401 1.00
vortex-file-compressed size/Arade 145363828 145363828 1.00
vortex-file-compressed size/Bimbo 468763364 468763364 1.00
vortex-file-compressed size/CMSprovider 417907844 417907844 1.00
vortex-file-compressed size/Euro2016 163394956 163395324 1.00
vortex-file-compressed size/Food 41926968 41926968 1.00
vortex-file-compressed size/HashTags 195647860 195647860 1.00
vortex-file-compressed size/TPC-H l_comment canonical 179087392 179087392 1.00
vortex-file-compressed size/TPC-H l_comment chunked 179087392 179087392 1.00
vortex-file-compressed size/taxi 52363980 52363980 1.00
vortex-file-compressed size/wide table cols=100 chunks=1 rows=1000 930880 930880 1.00
vortex-file-compressed size/wide table cols=100 chunks=50 rows=1000 930880 930880 1.00
vortex-file-compressed size/wide table cols=1000 chunks=1 rows=1000 9293680 9293680 1.00
vortex-file-compressed size/wide table cols=1000 chunks=50 rows=1000 9293680 9293680 1.00
vortex-file-compressed size/wide table cols=10000 chunks=1 rows=1000 92957680 92957680 1.00
vortex-file-compressed size/wide table cols=10000 chunks=50 rows=1000 92957680 92957680 1.00
vortex:parquet-zstd ratio compress time/Arade 0 0 0.96
vortex:parquet-zstd ratio compress time/Bimbo 0 0 0.99
vortex:parquet-zstd ratio compress time/CMSprovider 0 0 1.04
vortex:parquet-zstd ratio compress time/Euro2016 0 0 0.98
vortex:parquet-zstd ratio compress time/Food 0 0 1.00
vortex:parquet-zstd ratio compress time/HashTags 0 0 1.03
vortex:parquet-zstd ratio compress time/TPC-H l_comment canonical 0 0 1.01
vortex:parquet-zstd ratio compress time/TPC-H l_comment chunked 0 0 1.01
vortex:parquet-zstd ratio compress time/taxi 0 0 0.98
vortex:parquet-zstd ratio compress time/wide table cols=100 chunks=1 rows=1000 1 1 0.99
vortex:parquet-zstd ratio compress time/wide table cols=100 chunks=50 rows=1000 1 1 1.04
vortex:parquet-zstd ratio compress time/wide table cols=1000 chunks=1 rows=1000 1 1 0.99
vortex:parquet-zstd ratio compress time/wide table cols=1000 chunks=50 rows=1000 1 1 1.02
vortex:parquet-zstd ratio compress time/wide table cols=10000 chunks=1 rows=1000 1 1 1.05
vortex:parquet-zstd ratio compress time/wide table cols=10000 chunks=50 rows=1000 1 1 1.00
vortex:parquet-zstd ratio decompress time/Arade 0 0 1.04
vortex:parquet-zstd ratio decompress time/Bimbo 0 0 0.92
vortex:parquet-zstd ratio decompress time/CMSprovider 0 0 1.03
vortex:parquet-zstd ratio decompress time/Euro2016 0 0 0.99
vortex:parquet-zstd ratio decompress time/Food 0 0 0.99
vortex:parquet-zstd ratio decompress time/HashTags 0 0 1.01
vortex:parquet-zstd ratio decompress time/TPC-H l_comment canonical 0 0 0.99
vortex:parquet-zstd ratio decompress time/TPC-H l_comment chunked 0 0 1.01
vortex:parquet-zstd ratio decompress time/taxi 0 0 0.98
vortex:parquet-zstd ratio decompress time/wide table cols=100 chunks=1 rows=1000 0 0 0.99
vortex:parquet-zstd ratio decompress time/wide table cols=100 chunks=50 rows=1000 0 0 0.98
vortex:parquet-zstd ratio decompress time/wide table cols=1000 chunks=1 rows=1000 0 0 0.98
vortex:parquet-zstd ratio decompress time/wide table cols=1000 chunks=50 rows=1000 0 0 1.04
vortex:parquet-zstd ratio decompress time/wide table cols=10000 chunks=1 rows=1000 0 0 1.06
vortex:parquet-zstd ratio decompress time/wide table cols=10000 chunks=50 rows=1000 0 0 1.01
vortex:parquet-zstd size/Arade 0 0 1.00
vortex:parquet-zstd size/Bimbo 1 1 1.00
vortex:parquet-zstd size/CMSprovider 1 1 1.00
vortex:parquet-zstd size/Euro2016 1 1 1.00
vortex:parquet-zstd size/Food 1 1 1.00
vortex:parquet-zstd size/HashTags 1 1 1.00
vortex:parquet-zstd size/TPC-H l_comment canonical 1 1 1.00
vortex:parquet-zstd size/TPC-H l_comment chunked 1 1 1.00
vortex:parquet-zstd size/taxi 0 0 1.00
vortex:parquet-zstd size/wide table cols=100 chunks=1 rows=1000 0 0 1.00
vortex:parquet-zstd size/wide table cols=100 chunks=50 rows=1000 0 0 1.00
vortex:parquet-zstd size/wide table cols=1000 chunks=1 rows=1000 0 0 1.00
vortex:parquet-zstd size/wide table cols=1000 chunks=50 rows=1000 0 0 1.00
vortex:parquet-zstd size/wide table cols=10000 chunks=1 rows=1000 0 0 1.00
vortex:parquet-zstd size/wide table cols=10000 chunks=50 rows=1000 0 0 1.00

@github-actions
Copy link
Copy Markdown
Contributor

Benchmarks: TPC-H SF=10 on S3

Verdict: No clear signal (environment too noisy confidence)
Attributed Vortex impact: +1.9%
Engines: DataFusion No clear signal (+8.3%, environment too noisy confidence) · DuckDB No clear signal (-4.1%, environment too noisy confidence)
Vortex (geomean): 0.886x ➖
Parquet (geomean): 0.870x ➖
Shifts: Parquet (control) -13.0% · Median polish -8.2%

How to read Verdict and Engines
  • Verdict: Overall PR-level signal after subtracting baseline drift estimated from Parquet control rows. It can be Likely improvement, Likely regression, or No clear signal.
  • Engines: Per-engine attribution. DataFusion is compared against DataFusion/Parquet controls; DuckDB is compared against DuckDB/Parquet controls. This answers whether each engine improved or regressed independently.
  • Confidence: Based on directional consistency, share of rows above the noise floor, and control-run noise.

datafusion / vortex-file-compressed (0.890x ➖, 1↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/datafusion:vortex-file-compressed 711434297 752017962 0.95
tpch_q02/datafusion:vortex-file-compressed 771569088 1003846728 0.77
tpch_q03/datafusion:vortex-file-compressed 791316956 940965122 0.84
tpch_q04/datafusion:vortex-file-compressed 553990472 617515196 0.90
tpch_q05/datafusion:vortex-file-compressed 913799473 974269861 0.94
tpch_q06/datafusion:vortex-file-compressed 549672601 554307173 0.99
tpch_q07/datafusion:vortex-file-compressed 983634308 1098382945 0.90
tpch_q08/datafusion:vortex-file-compressed 1223392270 1626482352 0.75
tpch_q09/datafusion:vortex-file-compressed 1314571388 1487915006 0.88
tpch_q10/datafusion:vortex-file-compressed 1018471306 1140897924 0.89
tpch_q11/datafusion:vortex-file-compressed 496323797 468761235 1.06
tpch_q12/datafusion:vortex-file-compressed 820601333 1018384359 0.81
tpch_q13/datafusion:vortex-file-compressed 460546919 494057745 0.93
tpch_q14/datafusion:vortex-file-compressed 554626332 632416863 0.88
tpch_q15/datafusion:vortex-file-compressed 1011218931 1070224894 0.94
tpch_q16/datafusion:vortex-file-compressed 418622996 571909463 0.73
tpch_q17/datafusion:vortex-file-compressed 1176986786 1164891951 1.01
tpch_q18/datafusion:vortex-file-compressed 1268903965 1225366196 1.04
tpch_q19/datafusion:vortex-file-compressed 824301680 801705399 1.03
tpch_q20/datafusion:vortex-file-compressed 845642516 972382280 0.87
tpch_q21/datafusion:vortex-file-compressed 1636168442 1729719123 0.95
tpch_q22/datafusion:vortex-file-compressed 🚀 325829354 487561929 0.67
datafusion / vortex-compact (0.895x ➖, 2↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/datafusion:vortex-compact 710796907 741895675 0.96
tpch_q02/datafusion:vortex-compact 🚀 703744196 1201711394 0.59
tpch_q03/datafusion:vortex-compact 712384247 900167918 0.79
tpch_q04/datafusion:vortex-compact 490477169 517357654 0.95
tpch_q05/datafusion:vortex-compact 827123903 881861305 0.94
tpch_q06/datafusion:vortex-compact 539399672 558567569 0.97
tpch_q07/datafusion:vortex-compact 913043626 1068160197 0.85
tpch_q08/datafusion:vortex-compact 1132695072 1087190134 1.04
tpch_q09/datafusion:vortex-compact 1263998015 1634159452 0.77
tpch_q10/datafusion:vortex-compact 974640269 1029499937 0.95
tpch_q11/datafusion:vortex-compact 464184850 511398852 0.91
tpch_q12/datafusion:vortex-compact 851795789 904452462 0.94
tpch_q13/datafusion:vortex-compact 435647302 424923817 1.03
tpch_q14/datafusion:vortex-compact 528245595 632025838 0.84
tpch_q15/datafusion:vortex-compact 929752016 1198838062 0.78
tpch_q16/datafusion:vortex-compact 🚀 329005459 495972168 0.66
tpch_q17/datafusion:vortex-compact 1248056394 1396790573 0.89
tpch_q18/datafusion:vortex-compact 1176512870 1107842012 1.06
tpch_q19/datafusion:vortex-compact 841590918 801458512 1.05
tpch_q20/datafusion:vortex-compact 879054395 913554115 0.96
tpch_q21/datafusion:vortex-compact 1357334928 1609219452 0.84
tpch_q22/datafusion:vortex-compact 386189423 336440385 1.15
datafusion / parquet (0.824x ➖, 3↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/datafusion:parquet 802747405 831024356 0.97
tpch_q02/datafusion:parquet 🚀 799822270 1197851566 0.67
tpch_q03/datafusion:parquet 1080923527 1130109024 0.96
tpch_q04/datafusion:parquet 431735669 542073244 0.80
tpch_q05/datafusion:parquet 1225486140 1323808473 0.93
tpch_q06/datafusion:parquet 549662213 615648207 0.89
tpch_q07/datafusion:parquet 1223080013 1515603169 0.81
tpch_q08/datafusion:parquet 1598800994 2158031339 0.74
tpch_q09/datafusion:parquet 1899081634 2191182185 0.87
tpch_q10/datafusion:parquet 2027694947 2661183493 0.76
tpch_q11/datafusion:parquet 🚀 524504711 917800787 0.57
tpch_q12/datafusion:parquet 659931440 771106535 0.86
tpch_q13/datafusion:parquet 738936160 880664896 0.84
tpch_q14/datafusion:parquet 798822724 896165716 0.89
tpch_q15/datafusion:parquet 1277290512 1503589352 0.85
tpch_q16/datafusion:parquet 🚀 341019606 504898972 0.68
tpch_q17/datafusion:parquet 1369647893 1508041008 0.91
tpch_q18/datafusion:parquet 1554949201 1844038151 0.84
tpch_q19/datafusion:parquet 865408339 1107785857 0.78
tpch_q20/datafusion:parquet 1173637704 1554455649 0.76
tpch_q21/datafusion:parquet 1748611704 2054746846 0.85
tpch_q22/datafusion:parquet 843401330 769935539 1.10
duckdb / vortex-file-compressed (0.929x ➖, 0↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/duckdb:vortex-file-compressed 610835240 695706114 0.88
tpch_q02/duckdb:vortex-file-compressed 1039602949 1264445286 0.82
tpch_q03/duckdb:vortex-file-compressed 916272183 957913504 0.96
tpch_q04/duckdb:vortex-file-compressed 759581793 882733124 0.86
tpch_q05/duckdb:vortex-file-compressed 1196597205 1227341412 0.97
tpch_q06/duckdb:vortex-file-compressed 596320807 558253671 1.07
tpch_q07/duckdb:vortex-file-compressed 1221889583 1275097944 0.96
tpch_q08/duckdb:vortex-file-compressed 1411747118 1562775060 0.90
tpch_q09/duckdb:vortex-file-compressed 1718975869 1765489427 0.97
tpch_q10/duckdb:vortex-file-compressed 1110870385 1282038244 0.87
tpch_q11/duckdb:vortex-file-compressed 557451378 707915082 0.79
tpch_q12/duckdb:vortex-file-compressed 1204269276 1355268408 0.89
tpch_q13/duckdb:vortex-file-compressed 827936521 907908539 0.91
tpch_q14/duckdb:vortex-file-compressed 634416943 652633376 0.97
tpch_q15/duckdb:vortex-file-compressed 550075882 537827058 1.02
tpch_q16/duckdb:vortex-file-compressed 493052990 545454589 0.90
tpch_q17/duckdb:vortex-file-compressed 949665982 967167499 0.98
tpch_q18/duckdb:vortex-file-compressed 905239863 1021306348 0.89
tpch_q19/duckdb:vortex-file-compressed 783577448 819187549 0.96
tpch_q20/duckdb:vortex-file-compressed 1293557333 1332003926 0.97
tpch_q21/duckdb:vortex-file-compressed 1986264124 1974382374 1.01
tpch_q22/duckdb:vortex-file-compressed 418198940 446918942 0.94
duckdb / vortex-compact (0.834x ➖, 1↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/duckdb:vortex-compact 591718908 634093507 0.93
tpch_q02/duckdb:vortex-compact 1010171628 1276039648 0.79
tpch_q03/duckdb:vortex-compact 790259959 933094883 0.85
tpch_q04/duckdb:vortex-compact 539506820 768414792 0.70
tpch_q05/duckdb:vortex-compact 1076978971 1250302410 0.86
tpch_q06/duckdb:vortex-compact 531455357 614257425 0.87
tpch_q07/duckdb:vortex-compact 1070613243 1510649659 0.71
tpch_q08/duckdb:vortex-compact 1318197404 1421176599 0.93
tpch_q09/duckdb:vortex-compact 1467414090 1773521210 0.83
tpch_q10/duckdb:vortex-compact 🚀 1002442711 1443828760 0.69
tpch_q11/duckdb:vortex-compact 650077173 743750549 0.87
tpch_q12/duckdb:vortex-compact 1102470516 1220156461 0.90
tpch_q13/duckdb:vortex-compact 874356312 793213935 1.10
tpch_q14/duckdb:vortex-compact 605295771 691430236 0.88
tpch_q15/duckdb:vortex-compact 537759900 639945390 0.84
tpch_q16/duckdb:vortex-compact 404175142 462803348 0.87
tpch_q17/duckdb:vortex-compact 888469395 1037126069 0.86
tpch_q18/duckdb:vortex-compact 756518743 1054320213 0.72
tpch_q19/duckdb:vortex-compact 719930402 942308698 0.76
tpch_q20/duckdb:vortex-compact 1107024878 1279586107 0.87
tpch_q21/duckdb:vortex-compact 1678527454 1856606017 0.90
tpch_q22/duckdb:vortex-compact 390553506 543489362 0.72
duckdb / parquet (0.918x ➖, 0↑ 0↓)
name PR 2042c37 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/duckdb:parquet 784546882 828801172 0.95
tpch_q02/duckdb:parquet 1344864624 1342151895 1.00
tpch_q03/duckdb:parquet 1539962823 1833263361 0.84
tpch_q04/duckdb:parquet 950230974 1070797376 0.89
tpch_q05/duckdb:parquet 1757646767 1985016317 0.89
tpch_q06/duckdb:parquet 785906901 842759873 0.93
tpch_q07/duckdb:parquet 1755246860 1831925383 0.96
tpch_q08/duckdb:parquet 2330114300 2602481027 0.90
tpch_q09/duckdb:parquet 2519444822 2651951234 0.95
tpch_q10/duckdb:parquet 3059103219 3389606370 0.90
tpch_q11/duckdb:parquet 889702250 956228422 0.93
tpch_q12/duckdb:parquet 1114610566 1294239072 0.86
tpch_q13/duckdb:parquet 1248506098 1369490716 0.91
tpch_q14/duckdb:parquet 1286037161 1301053806 0.99
tpch_q15/duckdb:parquet 883714695 1035874542 0.85
tpch_q16/duckdb:parquet 857994733 980239998 0.88
tpch_q17/duckdb:parquet 1271795285 1411157754 0.90
tpch_q18/duckdb:parquet 1536427052 1502107372 1.02
tpch_q19/duckdb:parquet 1413303530 1515978376 0.93
tpch_q20/duckdb:parquet 1949580046 2197875790 0.89
tpch_q21/duckdb:parquet 1772891846 2058356613 0.86
tpch_q22/duckdb:parquet 1067964387 1072869735 1.00
Full attributed analysis
Query Config Raw Δ Control Δ Attributed α Noise floor Significant?
1 datafusion:vortex-compact -4.2% -4.4% +0.2% +40.8% ➖ noise
1 datafusion:vortex-file-compressed -5.4% -4.4% -1.1% +42.2% ➖ noise
1 duckdb:vortex-compact -6.7% -4.4% -2.4% +30.0% ➖ noise
1 duckdb:vortex-file-compressed -12.2% -4.4% -8.2% +31.0% ➖ noise
2 datafusion:vortex-compact -41.4% -18.2% -28.4% +37.0% ✅ faster
2 datafusion:vortex-file-compressed -23.1% -18.2% -6.0% +36.3% ➖ noise
2 duckdb:vortex-compact -20.8% -18.2% -3.2% +30.6% ➖ noise
2 duckdb:vortex-file-compressed -17.8% -18.2% +0.5% +30.0% ➖ noise
3 datafusion:vortex-compact -20.9% -10.4% -11.7% +40.9% ➖ noise
3 datafusion:vortex-file-compressed -15.9% -10.4% -6.2% +41.8% ➖ noise
3 duckdb:vortex-compact -15.3% -10.4% -5.5% +30.0% ➖ noise
3 duckdb:vortex-file-compressed -4.3% -10.4% +6.7% +30.8% ➖ noise
4 datafusion:vortex-compact -5.2% -15.9% +12.8% +30.0% ➖ noise
4 datafusion:vortex-file-compressed -10.3% -15.9% +6.7% +30.0% ➖ noise
4 duckdb:vortex-compact -29.8% -15.9% -16.5% +30.0% ➖ noise
4 duckdb:vortex-file-compressed -14.0% -15.9% +2.4% +30.0% ➖ noise
5 datafusion:vortex-compact -6.2% -9.5% +3.6% +30.0% ➖ noise
5 datafusion:vortex-file-compressed -6.2% -9.5% +3.6% +30.0% ➖ noise
5 duckdb:vortex-compact -13.9% -9.5% -4.9% +30.0% ➖ noise
5 duckdb:vortex-file-compressed -2.5% -9.5% +7.7% +30.0% ➖ noise
6 datafusion:vortex-compact -3.4% -8.8% +5.8% +30.0% ➖ noise
6 datafusion:vortex-file-compressed -0.8% -8.8% +8.7% +30.0% ➖ noise
6 duckdb:vortex-compact -13.5% -8.8% -5.2% +30.0% ➖ noise
6 duckdb:vortex-file-compressed +6.8% -8.8% +17.1% +30.0% ➖ noise
7 datafusion:vortex-compact -14.5% -12.1% -2.8% +34.7% ➖ noise
7 datafusion:vortex-file-compressed -10.4% -12.1% +1.8% +36.3% ➖ noise
7 duckdb:vortex-compact -29.1% -12.1% -19.4% +37.2% ➖ noise
7 duckdb:vortex-file-compressed -4.2% -12.1% +9.0% +37.6% ➖ noise
8 datafusion:vortex-compact +4.2% -18.6% +27.9% +51.3% ➖ noise
8 datafusion:vortex-file-compressed -24.8% -18.6% -7.6% +53.5% ➖ noise
8 duckdb:vortex-compact -7.2% -18.6% +13.9% +53.1% ➖ noise
8 duckdb:vortex-file-compressed -9.7% -18.6% +10.9% +51.3% ➖ noise
9 datafusion:vortex-compact -22.7% -9.3% -14.8% +53.4% ➖ noise
9 datafusion:vortex-file-compressed -11.7% -9.3% -2.6% +30.0% ➖ noise
9 duckdb:vortex-compact -17.3% -9.3% -8.8% +30.0% ➖ noise
9 duckdb:vortex-file-compressed -2.6% -9.3% +7.3% +30.0% ➖ noise
10 datafusion:vortex-compact -5.3% -17.1% +14.2% +34.4% ➖ noise
10 datafusion:vortex-file-compressed -10.7% -17.1% +7.7% +77.9% ➖ noise
10 duckdb:vortex-compact -30.6% -17.1% -16.3% +36.5% ➖ noise
10 duckdb:vortex-file-compressed -13.4% -17.1% +4.5% +30.0% ➖ noise
11 datafusion:vortex-compact -9.2% -27.1% +24.5% +30.0% ➖ noise
11 datafusion:vortex-file-compressed +5.9% -27.1% +45.2% +30.0% 🚨 regression
11 duckdb:vortex-compact -12.6% -27.1% +19.9% +30.0% ➖ noise
11 duckdb:vortex-file-compressed -21.3% -27.1% +8.0% +30.0% ➖ noise
12 datafusion:vortex-compact -5.8% -14.1% +9.7% +30.0% ➖ noise
12 datafusion:vortex-file-compressed -19.4% -14.1% -6.1% +30.0% ➖ noise
12 duckdb:vortex-compact -9.6% -14.1% +5.2% +30.0% ➖ noise
12 duckdb:vortex-file-compressed -11.1% -14.1% +3.5% +30.0% ➖ noise
13 datafusion:vortex-compact +2.5% -12.5% +17.2% +31.0% ➖ noise
13 datafusion:vortex-file-compressed -6.8% -12.5% +6.6% +30.4% ➖ noise
13 duckdb:vortex-compact +10.2% -12.5% +26.0% +77.5% ➖ noise
13 duckdb:vortex-file-compressed -8.8% -12.5% +4.3% +33.4% ➖ noise
14 datafusion:vortex-compact -16.4% -6.1% -11.0% +36.4% ➖ noise
14 datafusion:vortex-file-compressed -12.3% -6.1% -6.6% +33.3% ➖ noise
14 duckdb:vortex-compact -12.5% -6.1% -6.7% +32.2% ➖ noise
14 duckdb:vortex-file-compressed -2.8% -6.1% +3.6% +33.9% ➖ noise
15 datafusion:vortex-compact -22.4% -14.9% -8.9% +30.0% ➖ noise
15 datafusion:vortex-file-compressed -5.5% -14.9% +11.0% +31.6% ➖ noise
15 duckdb:vortex-compact -16.0% -14.9% -1.3% +30.0% ➖ noise
15 duckdb:vortex-file-compressed +2.3% -14.9% +20.1% +30.0% ➖ noise
16 datafusion:vortex-compact -33.7% -23.1% -13.7% +34.6% ➖ noise
16 datafusion:vortex-file-compressed -26.8% -23.1% -4.8% +33.7% ➖ noise
16 duckdb:vortex-compact -12.7% -23.1% +13.6% +30.0% ➖ noise
16 duckdb:vortex-file-compressed -9.6% -23.1% +17.6% +30.0% ➖ noise
17 datafusion:vortex-compact -10.6% -9.5% -1.2% +30.0% ➖ noise
17 datafusion:vortex-file-compressed +1.0% -9.5% +11.7% +30.0% ➖ noise
17 duckdb:vortex-compact -14.3% -9.5% -5.3% +30.0% ➖ noise
17 duckdb:vortex-file-compressed -1.8% -9.5% +8.5% +30.0% ➖ noise
18 datafusion:vortex-compact +6.2% -7.1% +14.4% +30.0% ➖ noise
18 datafusion:vortex-file-compressed +3.6% -7.1% +11.5% +30.0% ➖ noise
18 duckdb:vortex-compact -28.2% -7.1% -22.7% +30.0% ➖ noise
18 duckdb:vortex-file-compressed -11.4% -7.1% -4.6% +30.0% ➖ noise
19 datafusion:vortex-compact +5.0% -14.7% +23.0% +33.3% ➖ noise
19 datafusion:vortex-file-compressed +2.8% -14.7% +20.5% +30.0% ➖ noise
19 duckdb:vortex-compact -23.6% -14.7% -10.5% +30.0% ➖ noise
19 duckdb:vortex-file-compressed -4.3% -14.7% +12.1% +30.0% ➖ noise
20 datafusion:vortex-compact -3.8% -18.2% +17.6% +30.0% ➖ noise
20 datafusion:vortex-file-compressed -13.0% -18.2% +6.3% +30.0% ➖ noise
20 duckdb:vortex-compact -13.5% -18.2% +5.7% +30.0% ➖ noise
20 duckdb:vortex-file-compressed -2.9% -18.2% +18.7% +30.0% ➖ noise
21 datafusion:vortex-compact -15.7% -14.4% -1.5% +40.7% ➖ noise
21 datafusion:vortex-file-compressed -5.4% -14.4% +10.5% +30.0% ➖ noise
21 duckdb:vortex-compact -9.6% -14.4% +5.6% +30.0% ➖ noise
21 duckdb:vortex-file-compressed +0.6% -14.4% +17.5% +30.0% ➖ noise
22 datafusion:vortex-compact +14.8% +4.4% +9.9% +30.8% ➖ noise
22 datafusion:vortex-file-compressed -33.2% +4.4% -36.0% +30.0% ✅ faster
22 duckdb:vortex-compact -28.1% +4.4% -31.2% +30.1% ✅ faster
22 duckdb:vortex-file-compressed -6.4% +4.4% -10.4% +30.0% ➖ noise

Builds on the single-buffer fast path with two changes to the per-view
write, measured at ~12% faster on the long-string canonicalization path
(8.13 -> 7.10 ns/view, isolated build_views over 600k reference views,
native/AVX-512, pinned core, 6 samples each):

1. Write views into the reserved spare capacity via an iterator instead
   of `push_unchecked`. `push_unchecked` advances the backing buffer's
   length on every call, which the optimizer cannot prove is
   loop-invariant, so it reloads and rewrites the output cursor through
   the stack each iteration. Writing into the spare slice and calling
   `set_len` once keeps the cursor in a register.

2. Assemble the reference view as a single `u128` via a new
   `BinaryView::new_ref` constructor, so the compiler emits one wide
   store per view rather than separate field stores. The constructor
   matches the little-endian field order already assumed by `BinaryView`
   (`le_bytes`, `From<u128>`, `as_u128`).

A new `new_ref_matches_make_view` test asserts the `u128` assembly is
byte-identical to the value-inspecting `make_view` across several
lengths. Existing build_views and vortex-fsst canonicalization tests
pass; clippy and rustfmt are clean.

Signed-off-by: Joe Isaacs <joe.isaacs@live.co.uk>
@joseph-isaacs joseph-isaacs requested a review from 0ax1 May 29, 2026 15:18
use super::*;

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

Choose a reason for hiding this comment

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

Any more test cases you can come up with? Is the change sufficiently covered?

Copy link
Copy Markdown
Contributor

@0ax1 0ax1 left a comment

Choose a reason for hiding this comment

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

lgtm

prefix.copy_from_slice(&value[..4]);
BinaryView::new_ref(len.as_(), prefix, start_buf_index, offset.as_())
} else {
BinaryView::make_view(value, start_buf_index, offset.as_())
Copy link
Copy Markdown
Contributor

@0ax1 0ax1 May 29, 2026

Choose a reason for hiding this comment

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

offset.as_() can implicitly truncate?

claude added 2 commits May 29, 2026 16:13
Add tests exercising the new single-buffer fast path in build_views: a
parameterized roundtrip over mixed inline/reference lengths, the 12/13
byte inline boundary, empty and interleaved-empty values, all-inlined and
all-reference sets, and a single large value. Also verify the fast path is
taken at the exact bytes.len() == max_buffer_len boundary, that it agrees
with the slow rollover path on reconstructed values, handles empty input,
and produces views byte-identical to make_view.

Allow cast_possible_truncation in the view.rs test module so the new_ref
test compiles under clippy.

Signed-off-by: Joe Isaacs <joe.isaacs@live.co.uk>
Add fast_path_large_offsets, which builds a ~9 MiB heap so the running
offset climbs past 2^23 while staying far below MAX_BUFFER_LEN. Each value
encodes its index, and the test asserts every Ref records the exact
cumulative offset and size, guarding against any accidental narrowing of
the u32 offset/size fields written via as_ truncation.

Signed-off-by: Joe Isaacs <joe.isaacs@live.co.uk>
claude added 2 commits May 29, 2026 16:33
Add fsst_canonicalize_offsets_overflow_i32, the decode-side companion to
fsst_compress_offsets_overflow_i32. It builds an FSST array whose
decompressed heap crosses i32::MAX so canonicalization feeds build_views a
heap larger than MAX_BUFFER_LEN, forcing the single-buffer fast path to be
declined in favor of buffer rollover. The test asserts the row count is
preserved, that more than one data buffer is produced, that no buffer
exceeds MAX_BUFFER_LEN, and that rows straddling the rollover boundary
reconstruct exactly.

Gated with the same #[test_with::env(CI)] / #[test_with::no_env(
VORTEX_SKIP_SLOW_TESTS)] attributes as the existing slow test. Highly
compressible bodies keep the FSST array tiny so peak memory is dominated by
the input and decompressed heaps.

Signed-off-by: Joe Isaacs <joe.isaacs@live.co.uk>
Drop the FSST-based fsst_canonicalize_offsets_overflow_i32 test in favor of
a direct build_views test in vortex-array, avoiding the compressor/training
and the doubled input+decompressed heaps. build_views_offsets_overflow_i32
builds a ~2.25 GiB heap (just past i32::MAX) and calls build_views with
MAX_BUFFER_LEN, asserting the heap rolls over into multiple buffers, that no
buffer exceeds MAX_BUFFER_LEN, and that rows straddling the rollover
boundary reconstruct exactly.

Validated that the test catches the overflow: with the single-buffer
fast-path guard intact it passes, and forcing the fast path to swallow the
whole heap makes it fail on the multi-buffer assertion.

Gated with #[test_with::env(CI)] / #[test_with::no_env(VORTEX_SKIP_SLOW_TESTS)],
matching the existing slow-test convention; adds test-with as a vortex-array
dev-dependency.

Signed-off-by: Joe Isaacs <joe.isaacs@live.co.uk>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

changelog/performance A performance improvement

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants