Skip to content

feat: add ListLayout#8071

Open
mhk197 wants to merge 21 commits into
developfrom
mk/add-list-layout
Open

feat: add ListLayout#8071
mhk197 wants to merge 21 commits into
developfrom
mk/add-list-layout

Conversation

@mhk197
Copy link
Copy Markdown
Contributor

@mhk197 mhk197 commented May 22, 2026

Adds ListLayout, a structured layout for DType::List columns that stores elements, offsets, and (when nullable) validity as independent child layouts, each with its own configurable strategy.

ListLayoutStrategy canonicalizes input to ListViewArray, rebuilds it via list_from_list_view, and writes each child concurrently.

ListReader fetches offsets and validity concurrently. Then uses offsets[0]..offsets[-1] to derive a bounded elements range, rebase the offsets to start at zero, fetch only that slice of elements, and assemble the ListArray. This means partial-range reads only fetch the elements they actually need rather than the whole elements buffer.

Todos:

  • Filter evaluation
  • Benchmarks
  • Integrating with default writer
  • Conditionally fetching full elements when we fetch most of offsets to avoid sequential io

@codspeed-hq
Copy link
Copy Markdown

codspeed-hq Bot commented May 22, 2026

Merging this PR will degrade performance by 16.52%

⚠️ 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.

❌ 1 regressed benchmark
✅ 1265 untouched benchmarks

Warning

Please fix the performance issues or acknowledge them on CodSpeed.

Performance Changes

Mode Benchmark BASE HEAD Efficiency
Simulation chunked_varbinview_opt_canonical_into[(1000, 10)] 187.8 µs 225 µs -16.52%

Tip

Investigate this regression by commenting @codspeedbot fix this regression on this PR, or directly use the CodSpeed MCP with your agent.


Comparing mk/add-list-layout (4256223) with develop (7a228aa)

Open in CodSpeed

@mhk197 mhk197 linked an issue May 27, 2026 that may be closed by this pull request
1 task
@mhk197 mhk197 removed a link to an issue May 27, 2026
1 task
Matthew Katz and others added 18 commits May 28, 2026 09:53
Signed-off-by: Matthew Katz <katz@spiraldb.com>
Signed-off-by: Matt Katz <mhkatz97@gmail.com>
Signed-off-by: Matthew Katz <katz@spiraldb.com>
Signed-off-by: Matt Katz <mhkatz97@gmail.com>
Signed-off-by: Matthew Katz <katz@spiraldb.com>
Signed-off-by: Matt Katz <mhkatz97@gmail.com>
Signed-off-by: Matthew Katz <katz@spiraldb.com>
Signed-off-by: Matt Katz <mhkatz97@gmail.com>
Signed-off-by: Matthew Katz <katz@spiraldb.com>
Signed-off-by: Matt Katz <mhkatz97@gmail.com>
Signed-off-by: Matthew Katz <katz@spiraldb.com>
Signed-off-by: Matt Katz <mhkatz97@gmail.com>
Signed-off-by: Matt Katz <mhkatz97@gmail.com>
Signed-off-by: Matt Katz <mhkatz97@gmail.com>
Signed-off-by: Matt Katz <mhkatz97@gmail.com>
Signed-off-by: Matt Katz <mhkatz97@gmail.com>
Signed-off-by: Matt Katz <mhkatz97@gmail.com>
Signed-off-by: Matt Katz <mhkatz97@gmail.com>
Signed-off-by: Matt Katz <mhkatz97@gmail.com>
Signed-off-by: Matt Katz <mhkatz97@gmail.com>
Signed-off-by: Matt Katz <mhkatz97@gmail.com>
Signed-off-by: Matt Katz <mhkatz97@gmail.com>
Signed-off-by: Matt Katz <mhkatz97@gmail.com>
Signed-off-by: Matt Katz <mhkatz97@gmail.com>
@mhk197 mhk197 force-pushed the mk/add-list-layout branch from 2dafcdb to b267f99 Compare May 28, 2026 13:53
@mhk197 mhk197 added the changelog/feature A new feature label May 28, 2026
Signed-off-by: Matt Katz <mhkatz97@gmail.com>
@mhk197 mhk197 linked an issue May 28, 2026 that may be closed by this pull request
1 task
@mhk197 mhk197 removed a link to an issue May 28, 2026
1 task
@mhk197 mhk197 marked this pull request as ready for review May 28, 2026 14:09
Signed-off-by: Matt Katz <mhkatz97@gmail.com>
@connortsui20 connortsui20 requested review from gatesn and robert3005 and removed request for connortsui20 May 28, 2026 14:14
Comment on lines +162 to +166
self.offsets
.register_splits(field_mask, split_range, splits)?;
if let Some(validity) = &self.validity {
validity.register_splits(field_mask, split_range, splits)?;
}
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.

This looks odd why would they be different?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

they may be chunked differently and offsets will have one extra entry

session: VortexSession,
elements: LayoutReaderRef,
offsets: LayoutReaderRef,
validity: Option<LayoutReaderRef>,
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.

Are we sure this needs a layout?

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.

You can probably can by with this being a segment

offsets,
validity,
..
} = list_from_list_view(array.execute::<ListViewArray>(&mut exec_ctx)?)?.into_data_parts();
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.

Why to execute to a ListArray?

Comment on lines +34 to +42
/// Strategy for writing list-typed arrays.
///
/// Single-chunk only. The strategy:
/// 1. Canonicalizes the input chunk into a [`ListViewArray`].
/// 2. Calls [`list_from_list_view`] to rebuild it into zero-copy-to-list form
/// (sorted, gapless, non-overlapping offsets) and produce a [`ListArray`].
/// 3. Writes the `elements`, `offsets`, and (when nullable) `validity` columns into
/// separately configurable downstream strategies, producing a single [`ListLayout`].
///
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.

How does the sizing of the splits works, what is it based on?

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.

We just talked through this. This is the layout that really highlights why row-batches suck... and really why engines should be pushing down unnest operations into the source. But... they don't.

For now, the best we can do is register the validity and offsets splits, so we just delegate to the child.

Signed-off-by: Matt Katz <mhkatz97@gmail.com>
@connortsui20
Copy link
Copy Markdown
Contributor

connortsui20 commented May 29, 2026

Is there a tracking issue that explains why we do not want to store sizes as a (potentially optional) layout child?

It would be nice to see some sort of design doc (or if that already exists, please attach it in the PR description).

@joseph-isaacs joseph-isaacs added the action/benchmark Trigger full benchmarks to run on this PR label May 29, 2026
@github-actions github-actions Bot removed the action/benchmark Trigger full benchmarks to run on this PR label May 29, 2026
@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 4256223 2 Explore Profiling Data
Previous Runs (1)
Status Commit Job Attempt Link
🟢 Done 4256223 1 Explore Profiling Data

Powered by Polar Signals Cloud

Copy link
Copy Markdown
Contributor

@connortsui20 connortsui20 left a comment

Choose a reason for hiding this comment

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

Mostly nits, didn't get a chance to read through writer.rs though

}

/// Validates expected number of children based on `dtype`
#[inline]
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.

We generally dont want to inline functions with branches, and also because this is a private function the compiler will likely inline this anyways.

inline is only useful for public functions that are small

Comment on lines +180 to +181
vortex_ensure!(
n_children == expected,
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.

vortex_ensure_eq!

Comment on lines +266 to +270
pub fn new(offsets_ptype: PType) -> Self {
let mut metadata = Self::default();
metadata.set_offsets_ptype(offsets_ptype);
metadata
}
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.

This seems like a strange constructor? Why not just do Self { offsets_ptype }?

Comment on lines +77 to +82
let mut n = NUM_CHILDREN_NON_NULLABLE;
if layout.dtype.is_nullable() {
n += 1;
}

n
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.

I feel like I would prefer reading just an if branch and then return either NUM_CHILDREN_NON_NULLABLE or NUM_CHILDREN_NON_NULLABLE + 1?

_expr: &Expression,
_mask: MaskFuture,
) -> VortexResult<MaskFuture> {
todo!()
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.

todo for when?

// Bound the elements read using offsets[0] and offsets[-1]
let elements_range = calculate_elements_range(&offsets, &session)?;

// Rebase the offsets so they start at zero
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.

Nit: prose comments should end in periods (ask an llm to do this for you!).

Comment on lines +241 to +245
let array = if !mask.all_true() {
array.filter(mask)?
} else {
array
};
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.

@joseph-isaacs I feel like we should have this optimization in the .filter method for arrays instead of constructing the filter array and then immediately optimizing it away?

Basically for the "built-in" array methods we might as well do the optimizations immediately.

@github-actions
Copy link
Copy Markdown
Contributor

Benchmarks: PolarSignals Profiling

Vortex (geomean): 0.967x ➖

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.967x ➖, 2↑ 0↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
polarsignals_q00/datafusion:vortex-file-compressed 🚀 96590984 116119216 0.83
polarsignals_q01/datafusion:vortex-file-compressed 🚀 243476825 280294282 0.87
polarsignals_q02/datafusion:vortex-file-compressed 21326085 22286967 0.96
polarsignals_q03/datafusion:vortex-file-compressed 257369981 265876497 0.97
polarsignals_q04/datafusion:vortex-file-compressed 11002383 11013731 1.00
polarsignals_q05/datafusion:vortex-file-compressed 14373855 14791527 0.97
polarsignals_q06/datafusion:vortex-file-compressed 17490831 17717360 0.99
polarsignals_q07/datafusion:vortex-file-compressed 13115715 12657228 1.04
polarsignals_q08/datafusion:vortex-file-compressed 384290089 378978871 1.01
polarsignals_q09/datafusion:vortex-file-compressed 11143160 10525330 1.06

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%)

@github-actions
Copy link
Copy Markdown
Contributor

Benchmarks: FineWeb NVMe

Verdict: No clear signal (low confidence)
Attributed Vortex impact: -1.1%
Engines: DataFusion No clear signal (-0.4%, low confidence) · DuckDB No clear signal (-1.8%, low confidence)
Vortex (geomean): 1.004x ➖
Parquet (geomean): 1.015x ➖
Shifts: Parquet (control) +1.5% · Median polish +0.5%

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.001x ➖, 0↑ 1↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
fineweb_q00/datafusion:vortex-file-compressed 🚨 6004384 5085203 1.18
fineweb_q01/datafusion:vortex-file-compressed 20028243 22222586 0.90
fineweb_q02/datafusion:vortex-file-compressed 21152030 22074664 0.96
fineweb_q03/datafusion:vortex-file-compressed 75854459 82296605 0.92
fineweb_q04/datafusion:vortex-file-compressed 234049226 234410703 1.00
fineweb_q05/datafusion:vortex-file-compressed 218740026 218820968 1.00
fineweb_q06/datafusion:vortex-file-compressed 52989238 49640330 1.07
fineweb_q07/datafusion:vortex-file-compressed 58007017 58104245 1.00
fineweb_q08/datafusion:vortex-file-compressed 21666464 21377130 1.01
datafusion / vortex-compact (1.011x ➖, 0↑ 1↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
fineweb_q00/datafusion:vortex-compact 5898195 5797290 1.02
fineweb_q01/datafusion:vortex-compact 92883606 99480460 0.93
fineweb_q02/datafusion:vortex-compact 🚨 113171370 99261307 1.14
fineweb_q03/datafusion:vortex-compact 885002048 875490243 1.01
fineweb_q04/datafusion:vortex-compact 914168653 914693472 1.00
fineweb_q05/datafusion:vortex-compact 815416786 816780888 1.00
fineweb_q06/datafusion:vortex-compact 472967372 463635975 1.02
fineweb_q07/datafusion:vortex-compact 480859830 480909427 1.00
fineweb_q08/datafusion:vortex-compact 18664414 18829782 0.99
datafusion / parquet (1.010x ➖, 0↑ 0↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
fineweb_q00/datafusion:parquet 6757644 6306226 1.07
fineweb_q01/datafusion:parquet 289873870 299168952 0.97
fineweb_q02/datafusion:parquet 293690733 293466172 1.00
fineweb_q03/datafusion:parquet 295724431 279619964 1.06
fineweb_q04/datafusion:parquet 317665745 300825514 1.06
fineweb_q05/datafusion:parquet 294117844 304402249 0.97
fineweb_q06/datafusion:parquet 287772496 297583115 0.97
fineweb_q07/datafusion:parquet 283901974 281894809 1.01
fineweb_q08/datafusion:parquet 278315928 277692784 1.00
duckdb / vortex-file-compressed (0.994x ➖, 1↑ 0↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
fineweb_q00/duckdb:vortex-file-compressed 3648091 3423917 1.07
fineweb_q01/duckdb:vortex-file-compressed 21758848 21140507 1.03
fineweb_q02/duckdb:vortex-file-compressed 23557863 23246164 1.01
fineweb_q03/duckdb:vortex-file-compressed 🚀 129009247 153992477 0.84
fineweb_q04/duckdb:vortex-file-compressed 217578604 225657081 0.96
fineweb_q05/duckdb:vortex-file-compressed 213890183 208818912 1.02
fineweb_q06/duckdb:vortex-file-compressed 52318033 52185054 1.00
fineweb_q07/duckdb:vortex-file-compressed 54788557 53505893 1.02
fineweb_q08/duckdb:vortex-file-compressed 22548064 22440651 1.00
duckdb / vortex-compact (1.010x ➖, 0↑ 0↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
fineweb_q00/duckdb:vortex-compact 4507969 4213876 1.07
fineweb_q01/duckdb:vortex-compact 97823123 101103402 0.97
fineweb_q02/duckdb:vortex-compact 113109787 112546877 1.01
fineweb_q03/duckdb:vortex-compact 872066835 861669873 1.01
fineweb_q04/duckdb:vortex-compact 903636411 894184079 1.01
fineweb_q05/duckdb:vortex-compact 812596184 801780694 1.01
fineweb_q06/duckdb:vortex-compact 465032433 460673093 1.01
fineweb_q07/duckdb:vortex-compact 483636568 469218735 1.03
fineweb_q08/duckdb:vortex-compact 19803208 20261951 0.98
duckdb / parquet (1.021x ➖, 0↑ 0↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
fineweb_q00/duckdb:parquet 31473978 31384836 1.00
fineweb_q01/duckdb:parquet 84152218 82860039 1.02
fineweb_q02/duckdb:parquet 85949304 84651721 1.02
fineweb_q03/duckdb:parquet 319389946 317181910 1.01
fineweb_q04/duckdb:parquet 451008106 445843825 1.01
fineweb_q05/duckdb:parquet 418810155 412794292 1.01
fineweb_q06/duckdb:parquet 205254450 203902420 1.01
fineweb_q07/duckdb:parquet 219961299 215313575 1.02
fineweb_q08/duckdb:parquet 35351074 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 +1.7% +3.7% -1.9% +51.2% ➖ noise
0 datafusion:vortex-file-compressed +18.1% +3.7% +13.9% +96.6% ➖ noise
0 duckdb:vortex-compact +7.0% +3.7% +3.2% +167.5% ➖ noise
0 duckdb:vortex-file-compressed +6.5% +3.7% +2.8% +77.9% ➖ noise
1 datafusion:vortex-compact -6.6% -0.8% -5.9% +13.4% ➖ noise
1 datafusion:vortex-file-compressed -9.9% -0.8% -9.1% +27.5% ➖ noise
1 duckdb:vortex-compact -3.2% -0.8% -2.5% +25.8% ➖ noise
1 duckdb:vortex-file-compressed +2.9% -0.8% +3.8% +67.6% ➖ noise
2 datafusion:vortex-compact +14.0% +0.8% +13.1% +21.1% ➖ noise
2 datafusion:vortex-file-compressed -4.2% +0.8% -4.9% +11.9% ➖ noise
2 duckdb:vortex-compact +0.5% +0.8% -0.3% +17.9% ➖ noise
2 duckdb:vortex-file-compressed +1.3% +0.8% +0.5% +10.0% ➖ noise
3 datafusion:vortex-compact +1.1% +3.2% -2.0% +10.0% ➖ noise
3 datafusion:vortex-file-compressed -7.8% +3.2% -10.7% +28.9% ➖ noise
3 duckdb:vortex-compact +1.2% +3.2% -1.9% +10.0% ➖ noise
3 duckdb:vortex-file-compressed -16.2% +3.2% -18.8% +30.5% ➖ noise
4 datafusion:vortex-compact -0.1% +3.4% -3.3% +10.0% ➖ noise
4 datafusion:vortex-file-compressed -0.2% +3.4% -3.4% +10.0% ➖ noise
4 duckdb:vortex-compact +1.1% +3.4% -2.2% +10.0% ➖ noise
4 duckdb:vortex-file-compressed -3.6% +3.4% -6.7% +10.0% ➖ noise
5 datafusion:vortex-compact -0.2% -1.0% +0.8% +10.0% ➖ noise
5 datafusion:vortex-file-compressed -0.0% -1.0% +1.0% +10.0% ➖ noise
5 duckdb:vortex-compact +1.3% -1.0% +2.4% +10.0% ➖ noise
5 duckdb:vortex-file-compressed +2.4% -1.0% +3.5% +10.0% ➖ noise
6 datafusion:vortex-compact +2.0% -1.3% +3.4% +10.0% ➖ noise
6 datafusion:vortex-file-compressed +6.7% -1.3% +8.2% +10.0% ➖ noise
6 duckdb:vortex-compact +0.9% -1.3% +2.3% +10.0% ➖ noise
6 duckdb:vortex-file-compressed +0.3% -1.3% +1.6% +10.0% ➖ noise
7 datafusion:vortex-compact -0.0% +1.4% -1.4% +10.0% ➖ noise
7 datafusion:vortex-file-compressed -0.2% +1.4% -1.6% +15.9% ➖ noise
7 duckdb:vortex-compact +3.1% +1.4% +1.6% +10.0% ➖ noise
7 duckdb:vortex-file-compressed +2.4% +1.4% +1.0% +17.7% ➖ noise
8 datafusion:vortex-compact -0.9% +4.8% -5.4% +29.1% ➖ noise
8 datafusion:vortex-file-compressed +1.4% +4.8% -3.3% +10.0% ➖ noise
8 duckdb:vortex-compact -2.3% +4.8% -6.8% +10.0% ➖ noise
8 duckdb:vortex-file-compressed +0.5% +4.8% -4.2% +12.5% ➖ noise

@github-actions
Copy link
Copy Markdown
Contributor

Benchmarks: TPC-H SF=1 on NVME

Verdict: No clear signal (low confidence)
Attributed Vortex impact: -0.2%
Engines: DataFusion No clear signal (+1.0%, environment too noisy confidence) · DuckDB No clear signal (-1.3%, environment too noisy confidence)
Vortex (geomean): 1.012x ➖
Parquet (geomean): 1.015x ➖
Shifts: Parquet (control) +1.5% · Median polish +1.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 (1.022x ➖, 0↑ 1↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/datafusion:vortex-file-compressed 50467958 49623489 1.02
tpch_q02/datafusion:vortex-file-compressed 22569296 22238055 1.01
tpch_q03/datafusion:vortex-file-compressed 28394203 27371425 1.04
tpch_q04/datafusion:vortex-file-compressed 20530971 20439433 1.00
tpch_q05/datafusion:vortex-file-compressed 52441019 47908826 1.09
tpch_q06/datafusion:vortex-file-compressed 10572200 10794789 0.98
tpch_q07/datafusion:vortex-file-compressed 57679291 53226454 1.08
tpch_q08/datafusion:vortex-file-compressed 39935364 38556184 1.04
tpch_q09/datafusion:vortex-file-compressed 54730588 53458230 1.02
tpch_q10/datafusion:vortex-file-compressed 🚨 42269044 38043681 1.11
tpch_q11/datafusion:vortex-file-compressed 16431074 16146633 1.02
tpch_q12/datafusion:vortex-file-compressed 25037810 24134942 1.04
tpch_q13/datafusion:vortex-file-compressed 25443449 24855247 1.02
tpch_q14/datafusion:vortex-file-compressed 16475253 15501160 1.06
tpch_q15/datafusion:vortex-file-compressed 25117540 25141869 1.00
tpch_q16/datafusion:vortex-file-compressed 20071246 19956297 1.01
tpch_q17/datafusion:vortex-file-compressed 67458664 68025353 0.99
tpch_q18/datafusion:vortex-file-compressed 83431436 80770892 1.03
tpch_q19/datafusion:vortex-file-compressed 19744360 20009466 0.99
tpch_q20/datafusion:vortex-file-compressed 28694956 29524594 0.97
tpch_q21/datafusion:vortex-file-compressed 70306807 71573717 0.98
tpch_q22/datafusion:vortex-file-compressed 11945750 12114189 0.99
datafusion / vortex-compact (1.000x ➖, 0↑ 0↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/datafusion:vortex-compact 58532219 56847153 1.03
tpch_q02/datafusion:vortex-compact 25635931 25722901 1.00
tpch_q03/datafusion:vortex-compact 29169959 28601021 1.02
tpch_q04/datafusion:vortex-compact 22590174 23199179 0.97
tpch_q05/datafusion:vortex-compact 49775593 51039201 0.98
tpch_q06/datafusion:vortex-compact 12264410 12760276 0.96
tpch_q07/datafusion:vortex-compact 59796426 58183703 1.03
tpch_q08/datafusion:vortex-compact 42738177 43250566 0.99
tpch_q09/datafusion:vortex-compact 55183969 54845764 1.01
tpch_q10/datafusion:vortex-compact 45841805 45306445 1.01
tpch_q11/datafusion:vortex-compact 17021890 17008071 1.00
tpch_q12/datafusion:vortex-compact 29962946 30481390 0.98
tpch_q13/datafusion:vortex-compact 31263737 31601758 0.99
tpch_q14/datafusion:vortex-compact 18756401 19870946 0.94
tpch_q15/datafusion:vortex-compact 31466719 31219266 1.01
tpch_q16/datafusion:vortex-compact 24808255 23907125 1.04
tpch_q17/datafusion:vortex-compact 71376886 70085367 1.02
tpch_q18/datafusion:vortex-compact 83735399 83220644 1.01
tpch_q19/datafusion:vortex-compact 30496222 29767862 1.02
tpch_q20/datafusion:vortex-compact 33695430 34211896 0.98
tpch_q21/datafusion:vortex-compact 75992994 74242167 1.02
tpch_q22/datafusion:vortex-compact 12377758 12417106 1.00
datafusion / parquet (1.004x ➖, 2↑ 2↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/datafusion:parquet 113352365 119717375 0.95
tpch_q02/datafusion:parquet 60393178 60943531 0.99
tpch_q03/datafusion:parquet 🚨 74607591 67178309 1.11
tpch_q04/datafusion:parquet 43292425 43003256 1.01
tpch_q05/datafusion:parquet 93571417 93788314 1.00
tpch_q06/datafusion:parquet 🚀 36017319 40793179 0.88
tpch_q07/datafusion:parquet 105371516 104952609 1.00
tpch_q08/datafusion:parquet 90069131 91733425 0.98
tpch_q09/datafusion:parquet 122296791 127864099 0.96
tpch_q10/datafusion:parquet 113974841 109045295 1.05
tpch_q11/datafusion:parquet 40699515 40036452 1.02
tpch_q12/datafusion:parquet 🚨 85375988 75722480 1.13
tpch_q13/datafusion:parquet 197019791 200734606 0.98
tpch_q14/datafusion:parquet 46210723 46414043 1.00
tpch_q15/datafusion:parquet 58659492 57247929 1.02
tpch_q16/datafusion:parquet 40222188 40277344 1.00
tpch_q17/datafusion:parquet 127124227 123495882 1.03
tpch_q18/datafusion:parquet 168897432 161428729 1.05
tpch_q19/datafusion:parquet 🚀 70682416 80759365 0.88
tpch_q20/datafusion:parquet 68806455 69060096 1.00
tpch_q21/datafusion:parquet 138053275 129025320 1.07
tpch_q22/datafusion:parquet 31305086 30169885 1.04
datafusion / arrow (1.019x ➖, 0↑ 1↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/datafusion:arrow 55378978 59131711 0.94
tpch_q02/datafusion:arrow 18833491 18933899 0.99
tpch_q03/datafusion:arrow 29516806 29063362 1.02
tpch_q04/datafusion:arrow 26114018 24953362 1.05
tpch_q05/datafusion:arrow 🚨 81446715 74017311 1.10
tpch_q06/datafusion:arrow 20550990 19133529 1.07
tpch_q07/datafusion:arrow 102747812 100097115 1.03
tpch_q08/datafusion:arrow 41736779 39809339 1.05
tpch_q09/datafusion:arrow 62036002 63978679 0.97
tpch_q10/datafusion:arrow 45876836 49110527 0.93
tpch_q11/datafusion:arrow 9186696 9216689 1.00
tpch_q12/datafusion:arrow 50887795 50870996 1.00
tpch_q13/datafusion:arrow 47481066 47220080 1.01
tpch_q14/datafusion:arrow 21391424 21150450 1.01
tpch_q15/datafusion:arrow 43179701 41327720 1.04
tpch_q16/datafusion:arrow 19236187 18548901 1.04
tpch_q17/datafusion:arrow 69971403 66515954 1.05
tpch_q18/datafusion:arrow 143309003 134454282 1.07
tpch_q19/datafusion:arrow 35629898 34724480 1.03
tpch_q20/datafusion:arrow 34600223 33621978 1.03
tpch_q21/datafusion:arrow 154554049 155438498 0.99
tpch_q22/datafusion:arrow 18211940 17917864 1.02
duckdb / vortex-file-compressed (1.012x ➖, 0↑ 0↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/duckdb:vortex-file-compressed 31376266 31317713 1.00
tpch_q02/duckdb:vortex-file-compressed 25114537 24622680 1.02
tpch_q03/duckdb:vortex-file-compressed 32421715 32008254 1.01
tpch_q04/duckdb:vortex-file-compressed 28986790 28288475 1.02
tpch_q05/duckdb:vortex-file-compressed 37188871 36895804 1.01
tpch_q06/duckdb:vortex-file-compressed 8136281 8514857 0.96
tpch_q07/duckdb:vortex-file-compressed 34589030 34441168 1.00
tpch_q08/duckdb:vortex-file-compressed 37164036 37511014 0.99
tpch_q09/duckdb:vortex-file-compressed 57676378 56415916 1.02
tpch_q10/duckdb:vortex-file-compressed 41213183 41224969 1.00
tpch_q11/duckdb:vortex-file-compressed 15027874 14265625 1.05
tpch_q12/duckdb:vortex-file-compressed 22781740 21917033 1.04
tpch_q13/duckdb:vortex-file-compressed 40500469 40416163 1.00
tpch_q14/duckdb:vortex-file-compressed 22330753 21769139 1.03
tpch_q15/duckdb:vortex-file-compressed 17205227 17454944 0.99
tpch_q16/duckdb:vortex-file-compressed 29971799 28621088 1.05
tpch_q17/duckdb:vortex-file-compressed 23831776 23568365 1.01
tpch_q18/duckdb:vortex-file-compressed 53068881 53030491 1.00
tpch_q19/duckdb:vortex-file-compressed 28908422 28918939 1.00
tpch_q20/duckdb:vortex-file-compressed 32930500 32493867 1.01
tpch_q21/duckdb:vortex-file-compressed 100943982 99340670 1.02
tpch_q22/duckdb:vortex-file-compressed 17332178 16882825 1.03
duckdb / vortex-compact (1.013x ➖, 0↑ 0↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/duckdb:vortex-compact 38510027 38391584 1.00
tpch_q02/duckdb:vortex-compact 32912608 34326846 0.96
tpch_q03/duckdb:vortex-compact 34177092 33982403 1.01
tpch_q04/duckdb:vortex-compact 31652726 31577779 1.00
tpch_q05/duckdb:vortex-compact 41087835 39989205 1.03
tpch_q06/duckdb:vortex-compact 11106287 11076129 1.00
tpch_q07/duckdb:vortex-compact 40612588 40144584 1.01
tpch_q08/duckdb:vortex-compact 42269435 41201735 1.03
tpch_q09/duckdb:vortex-compact 64434906 64864022 0.99
tpch_q10/duckdb:vortex-compact 45959621 44449088 1.03
tpch_q11/duckdb:vortex-compact 18668109 18023776 1.04
tpch_q12/duckdb:vortex-compact 29876905 29548278 1.01
tpch_q13/duckdb:vortex-compact 47429255 46022579 1.03
tpch_q14/duckdb:vortex-compact 26041721 25755183 1.01
tpch_q15/duckdb:vortex-compact 20097740 19636902 1.02
tpch_q16/duckdb:vortex-compact 31361353 32746163 0.96
tpch_q17/duckdb:vortex-compact 29809303 29010520 1.03
tpch_q18/duckdb:vortex-compact 54305225 53098844 1.02
tpch_q19/duckdb:vortex-compact 33462307 32461516 1.03
tpch_q20/duckdb:vortex-compact 40118112 39920341 1.00
tpch_q21/duckdb:vortex-compact 103528154 101637455 1.02
tpch_q22/duckdb:vortex-compact 18859109 17861259 1.06
duckdb / parquet (1.026x ➖, 0↑ 1↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/duckdb:parquet 76907531 75902030 1.01
tpch_q02/duckdb:parquet 39371048 38815844 1.01
tpch_q03/duckdb:parquet 72955927 70377051 1.04
tpch_q04/duckdb:parquet 49254003 49745630 0.99
tpch_q05/duckdb:parquet 67540281 67745913 1.00
tpch_q06/duckdb:parquet 22320955 22216255 1.00
tpch_q07/duckdb:parquet 69517133 71033363 0.98
tpch_q08/duckdb:parquet 82027974 82080706 1.00
tpch_q09/duckdb:parquet 146267269 134675072 1.09
tpch_q10/duckdb:parquet 133823772 127334629 1.05
tpch_q11/duckdb:parquet 22517324 22029737 1.02
tpch_q12/duckdb:parquet 46562606 46688440 1.00
tpch_q13/duckdb:parquet 252093425 251525082 1.00
tpch_q14/duckdb:parquet 51433388 50239749 1.02
tpch_q15/duckdb:parquet 🚨 35292696 26853037 1.31
tpch_q16/duckdb:parquet 57882950 57745408 1.00
tpch_q17/duckdb:parquet 58478750 56691726 1.03
tpch_q18/duckdb:parquet 120749602 118635338 1.02
tpch_q19/duckdb:parquet 69167448 68253893 1.01
tpch_q20/duckdb:parquet 65447343 64909734 1.01
tpch_q21/duckdb:parquet 176116185 174603897 1.01
tpch_q22/duckdb:parquet 53321181 53865607 0.99
duckdb / duckdb (1.012x ➖, 0↑ 0↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/duckdb:duckdb 17524817 17389806 1.01
tpch_q02/duckdb:duckdb 14352425 13944877 1.03
tpch_q03/duckdb:duckdb 21913445 22038553 0.99
tpch_q04/duckdb:duckdb 22739961 22434276 1.01
tpch_q05/duckdb:duckdb 23185237 22594379 1.03
tpch_q06/duckdb:duckdb 7155853 6950162 1.03
tpch_q07/duckdb:duckdb 25680875 25231890 1.02
tpch_q08/duckdb:duckdb 24186596 23751257 1.02
tpch_q09/duckdb:duckdb 58171528 56433186 1.03
tpch_q10/duckdb:duckdb 52011645 50886961 1.02
tpch_q11/duckdb:duckdb 7129192 7093870 1.00
tpch_q12/duckdb:duckdb 18368248 18049638 1.02
tpch_q13/duckdb:duckdb 38783548 39659959 0.98
tpch_q14/duckdb:duckdb 21724767 21388819 1.02
tpch_q15/duckdb:duckdb 13824434 13776365 1.00
tpch_q16/duckdb:duckdb 25840192 25860692 1.00
tpch_q17/duckdb:duckdb 16046347 15951862 1.01
tpch_q18/duckdb:duckdb 40680869 40916719 0.99
tpch_q19/duckdb:duckdb 31376834 30564610 1.03
tpch_q20/duckdb:duckdb 24893296 25228254 0.99
tpch_q21/duckdb:duckdb 61709379 61226406 1.01
tpch_q22/duckdb:duckdb 25797890 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 -6.3% -2.1% -4.4% +21.3% ➖ noise
1 datafusion:vortex-compact +3.0% -2.1% +5.1% +20.9% ➖ noise
1 datafusion:vortex-file-compressed +1.7% -2.1% +3.8% +21.7% ➖ noise
1 duckdb:duckdb +0.8% -2.1% +2.9% +18.4% ➖ noise
1 duckdb:vortex-compact +0.3% -2.1% +2.4% +18.3% ➖ noise
1 duckdb:vortex-file-compressed +0.2% -2.1% +2.3% +21.1% ➖ noise
2 datafusion:arrow -0.5% +0.3% -0.8% +12.0% ➖ noise
2 datafusion:vortex-compact -0.3% +0.3% -0.6% +12.0% ➖ noise
2 datafusion:vortex-file-compressed +1.5% +0.3% +1.2% +12.0% ➖ noise
2 duckdb:duckdb +2.9% +0.3% +2.7% +12.0% ➖ noise
2 duckdb:vortex-compact -4.1% +0.3% -4.4% +12.0% ➖ noise
2 duckdb:vortex-file-compressed +2.0% +0.3% +1.7% +12.0% ➖ noise
3 datafusion:arrow +1.6% +7.3% -5.3% +12.0% ➖ noise
3 datafusion:vortex-compact +2.0% +7.3% -4.9% +12.0% ➖ noise
3 datafusion:vortex-file-compressed +3.7% +7.3% -3.3% +12.0% ➖ noise
3 duckdb:duckdb -0.6% +7.3% -7.3% +12.0% ➖ noise
3 duckdb:vortex-compact +0.6% +7.3% -6.3% +12.0% ➖ noise
3 duckdb:vortex-file-compressed +1.3% +7.3% -5.6% +12.0% ➖ noise
4 datafusion:arrow +4.7% -0.2% +4.8% +12.0% ➖ noise
4 datafusion:vortex-compact -2.6% -0.2% -2.5% +13.6% ➖ noise
4 datafusion:vortex-file-compressed +0.4% -0.2% +0.6% +12.0% ➖ noise
4 duckdb:duckdb +1.4% -0.2% +1.5% +12.0% ➖ noise
4 duckdb:vortex-compact +0.2% -0.2% +0.4% +12.0% ➖ noise
4 duckdb:vortex-file-compressed +2.5% -0.2% +2.6% +12.0% ➖ noise
5 datafusion:arrow +10.0% -0.3% +10.3% +12.0% ➖ noise
5 datafusion:vortex-compact -2.5% -0.3% -2.2% +12.0% ➖ noise
5 datafusion:vortex-file-compressed +9.5% -0.3% +9.8% +12.0% ➖ noise
5 duckdb:duckdb +2.6% -0.3% +2.9% +12.0% ➖ noise
5 duckdb:vortex-compact +2.7% -0.3% +3.0% +12.0% ➖ noise
5 duckdb:vortex-file-compressed +0.8% -0.3% +1.1% +12.0% ➖ noise
6 datafusion:arrow +7.4% -5.8% +14.0% +12.0% 🚨 regression
6 datafusion:vortex-compact -3.9% -5.8% +2.0% +17.9% ➖ noise
6 datafusion:vortex-file-compressed -2.1% -5.8% +4.0% +18.5% ➖ noise
6 duckdb:duckdb +3.0% -5.8% +9.3% +12.0% ➖ noise
6 duckdb:vortex-compact +0.3% -5.8% +6.5% +19.3% ➖ noise
6 duckdb:vortex-file-compressed -4.4% -5.8% +1.5% +12.2% ➖ noise
7 datafusion:arrow +2.6% -0.9% +3.6% +12.0% ➖ noise
7 datafusion:vortex-compact +2.8% -0.9% +3.7% +12.0% ➖ noise
7 datafusion:vortex-file-compressed +8.4% -0.9% +9.3% +12.0% ➖ noise
7 duckdb:duckdb +1.8% -0.9% +2.7% +12.0% ➖ noise
7 duckdb:vortex-compact +1.2% -0.9% +2.1% +12.0% ➖ noise
7 duckdb:vortex-file-compressed +0.4% -0.9% +1.3% +12.0% ➖ noise
8 datafusion:arrow +4.8% -0.9% +5.8% +12.0% ➖ noise
8 datafusion:vortex-compact -1.2% -0.9% -0.2% +12.0% ➖ noise
8 datafusion:vortex-file-compressed +3.6% -0.9% +4.6% +12.0% ➖ noise
8 duckdb:duckdb +1.8% -0.9% +2.8% +12.0% ➖ noise
8 duckdb:vortex-compact +2.6% -0.9% +3.6% +12.7% ➖ noise
8 duckdb:vortex-file-compressed -0.9% -0.9% +0.0% +12.0% ➖ noise
9 datafusion:arrow -3.0% +1.9% -4.9% +12.0% ➖ noise
9 datafusion:vortex-compact +0.6% +1.9% -1.3% +12.0% ➖ noise
9 datafusion:vortex-file-compressed +2.4% +1.9% +0.5% +12.0% ➖ noise
9 duckdb:duckdb +3.1% +1.9% +1.1% +12.0% ➖ noise
9 duckdb:vortex-compact -0.7% +1.9% -2.5% +12.0% ➖ noise
9 duckdb:vortex-file-compressed +2.2% +1.9% +0.3% +12.4% ➖ noise
10 datafusion:arrow -6.6% +4.8% -10.9% +12.0% ✅ faster
10 datafusion:vortex-compact +1.2% +4.8% -3.5% +12.0% ➖ noise
10 datafusion:vortex-file-compressed +11.1% +4.8% +6.0% +12.0% ➖ noise
10 duckdb:duckdb +2.2% +4.8% -2.5% +12.0% ➖ noise
10 duckdb:vortex-compact +3.4% +4.8% -1.3% +12.0% ➖ noise
10 duckdb:vortex-file-compressed -0.0% +4.8% -4.6% +12.0% ➖ noise
11 datafusion:arrow -0.3% +1.9% -2.2% +12.0% ➖ noise
11 datafusion:vortex-compact +0.1% +1.9% -1.8% +14.4% ➖ noise
11 datafusion:vortex-file-compressed +1.8% +1.9% -0.2% +12.0% ➖ noise
11 duckdb:duckdb +0.5% +1.9% -1.4% +12.0% ➖ noise
11 duckdb:vortex-compact +3.6% +1.9% +1.6% +12.0% ➖ noise
11 duckdb:vortex-file-compressed +5.3% +1.9% +3.3% +21.1% ➖ noise
12 datafusion:arrow +0.0% +6.0% -5.7% +19.5% ➖ noise
12 datafusion:vortex-compact -1.7% +6.0% -7.3% +12.0% ➖ noise
12 datafusion:vortex-file-compressed +3.7% +6.0% -2.2% +12.7% ➖ noise
12 duckdb:duckdb +1.8% +6.0% -4.0% +12.0% ➖ noise
12 duckdb:vortex-compact +1.1% +6.0% -4.6% +13.7% ➖ noise
12 duckdb:vortex-file-compressed +3.9% +6.0% -2.0% +14.4% ➖ noise
13 datafusion:arrow +0.6% -0.8% +1.4% +14.4% ➖ noise
13 datafusion:vortex-compact -1.1% -0.8% -0.3% +12.0% ➖ noise
13 datafusion:vortex-file-compressed +2.4% -0.8% +3.2% +12.0% ➖ noise
13 duckdb:duckdb -2.2% -0.8% -1.4% +12.0% ➖ noise
13 duckdb:vortex-compact +3.1% -0.8% +3.9% +12.0% ➖ noise
13 duckdb:vortex-file-compressed +0.2% -0.8% +1.0% +12.0% ➖ noise
14 datafusion:arrow +1.1% +1.0% +0.2% +15.0% ➖ noise
14 datafusion:vortex-compact -5.6% +1.0% -6.5% +12.9% ➖ noise
14 datafusion:vortex-file-compressed +6.3% +1.0% +5.3% +12.0% ➖ noise
14 duckdb:duckdb +1.6% +1.0% +0.6% +12.0% ➖ noise
14 duckdb:vortex-compact +1.1% +1.0% +0.2% +12.0% ➖ noise
14 duckdb:vortex-file-compressed +2.6% +1.0% +1.6% +13.2% ➖ noise
15 datafusion:arrow +4.5% +16.0% -10.0% +12.0% ➖ noise
15 datafusion:vortex-compact +0.8% +16.0% -13.1% +13.4% ✅ faster
15 datafusion:vortex-file-compressed -0.1% +16.0% -13.9% +14.0% ✅ faster
15 duckdb:duckdb +0.3% +16.0% -13.5% +12.0% ✅ faster
15 duckdb:vortex-compact +2.3% +16.0% -11.8% +12.0% ✅ faster
15 duckdb:vortex-file-compressed -1.4% +16.0% -15.1% +12.6% ✅ faster
16 datafusion:arrow +3.7% +0.1% +3.7% +12.0% ➖ noise
16 datafusion:vortex-compact +3.8% +0.1% +3.7% +12.0% ➖ noise
16 datafusion:vortex-file-compressed +0.6% +0.1% +0.5% +12.0% ➖ noise
16 duckdb:duckdb -0.1% +0.1% -0.1% +12.0% ➖ noise
16 duckdb:vortex-compact -4.2% +0.1% -4.3% +12.0% ➖ noise
16 duckdb:vortex-file-compressed +4.7% +0.1% +4.7% +12.0% ➖ noise
17 datafusion:arrow +5.2% +3.0% +2.1% +12.0% ➖ noise
17 datafusion:vortex-compact +1.8% +3.0% -1.2% +12.7% ➖ noise
17 datafusion:vortex-file-compressed -0.8% +3.0% -3.8% +12.9% ➖ noise
17 duckdb:duckdb +0.6% +3.0% -2.4% +12.0% ➖ noise
17 duckdb:vortex-compact +2.8% +3.0% -0.3% +12.0% ➖ noise
17 duckdb:vortex-file-compressed +1.1% +3.0% -1.9% +12.6% ➖ noise
18 datafusion:arrow +6.6% +3.2% +3.3% +12.0% ➖ noise
18 datafusion:vortex-compact +0.6% +3.2% -2.5% +12.0% ➖ noise
18 datafusion:vortex-file-compressed +3.3% +3.2% +0.1% +12.0% ➖ noise
18 duckdb:duckdb -0.6% +3.2% -3.7% +12.0% ➖ noise
18 duckdb:vortex-compact +2.3% +3.2% -0.9% +12.0% ➖ noise
18 duckdb:vortex-file-compressed +0.1% +3.2% -3.0% +12.0% ➖ noise
19 datafusion:arrow +2.6% -5.8% +9.0% +19.2% ➖ noise
19 datafusion:vortex-compact +2.4% -5.8% +8.8% +13.1% ➖ noise
19 datafusion:vortex-file-compressed -1.3% -5.8% +4.8% +14.8% ➖ noise
19 duckdb:duckdb +2.7% -5.8% +9.0% +12.0% ➖ noise
19 duckdb:vortex-compact +3.1% -5.8% +9.5% +12.0% ➖ noise
19 duckdb:vortex-file-compressed -0.0% -5.8% +6.1% +12.3% ➖ noise
20 datafusion:arrow +2.9% +0.2% +2.7% +12.0% ➖ noise
20 datafusion:vortex-compact -1.5% +0.2% -1.7% +12.0% ➖ noise
20 datafusion:vortex-file-compressed -2.8% +0.2% -3.0% +12.0% ➖ noise
20 duckdb:duckdb -1.3% +0.2% -1.6% +12.0% ➖ noise
20 duckdb:vortex-compact +0.5% +0.2% +0.3% +12.0% ➖ noise
20 duckdb:vortex-file-compressed +1.3% +0.2% +1.1% +12.0% ➖ noise
21 datafusion:arrow -0.6% +3.9% -4.3% +12.0% ➖ noise
21 datafusion:vortex-compact +2.4% +3.9% -1.5% +12.0% ➖ noise
21 datafusion:vortex-file-compressed -1.8% +3.9% -5.4% +12.0% ➖ noise
21 duckdb:duckdb +0.8% +3.9% -3.0% +12.0% ➖ noise
21 duckdb:vortex-compact +1.9% +3.9% -2.0% +12.0% ➖ noise
21 duckdb:vortex-file-compressed +1.6% +3.9% -2.2% +12.0% ➖ noise
22 datafusion:arrow +1.6% +1.3% +0.3% +12.0% ➖ noise
22 datafusion:vortex-compact -0.3% +1.3% -1.6% +12.0% ➖ noise
22 datafusion:vortex-file-compressed -1.4% +1.3% -2.7% +12.0% ➖ noise
22 duckdb:duckdb +4.1% +1.3% +2.7% +12.0% ➖ noise
22 duckdb:vortex-compact +5.6% +1.3% +4.2% +12.0% ➖ noise
22 duckdb:vortex-file-compressed +2.7% +1.3% +1.3% +12.0% ➖ noise

@github-actions
Copy link
Copy Markdown
Contributor

Benchmarks: FineWeb S3

Verdict: No clear signal (environment too noisy confidence)
Attributed Vortex impact: -0.4%
Engines: DataFusion No clear signal (-5.3%, environment too noisy confidence) · DuckDB No clear signal (+4.9%, environment too noisy confidence)
Vortex (geomean): 1.075x ➖
Parquet (geomean): 1.079x ➖
Shifts: Parquet (control) +7.9% · Median polish +5.5%

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.110x ➖, 0↑ 2↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
fineweb_q00/datafusion:vortex-file-compressed 32436126 32090924 1.01
fineweb_q01/datafusion:vortex-file-compressed 🚨 947800737 704408215 1.35
fineweb_q02/datafusion:vortex-file-compressed 🚨 848374930 528434231 1.61
fineweb_q03/datafusion:vortex-file-compressed 1435368536 1319990729 1.09
fineweb_q04/datafusion:vortex-file-compressed 1398311115 1366887726 1.02
fineweb_q05/datafusion:vortex-file-compressed 1435054738 1357868760 1.06
fineweb_q06/datafusion:vortex-file-compressed 1807503682 1613372578 1.12
fineweb_q07/datafusion:vortex-file-compressed 1402676909 1618012197 0.87
fineweb_q08/datafusion:vortex-file-compressed 543225653 528916179 1.03
datafusion / vortex-compact (1.077x ➖, 0↑ 1↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
fineweb_q00/datafusion:vortex-compact 88413956 82004547 1.08
fineweb_q01/datafusion:vortex-compact 🚨 1204124440 795676796 1.51
fineweb_q02/datafusion:vortex-compact 1464079212 1164494842 1.26
fineweb_q03/datafusion:vortex-compact 1388020480 1491681925 0.93
fineweb_q04/datafusion:vortex-compact 1631035735 1616032401 1.01
fineweb_q05/datafusion:vortex-compact 1393516447 1378137651 1.01
fineweb_q06/datafusion:vortex-compact 1296917208 1337891586 0.97
fineweb_q07/datafusion:vortex-compact 1248667798 1176694596 1.06
fineweb_q08/datafusion:vortex-compact 371679972 382848123 0.97
datafusion / parquet (1.155x ➖, 0↑ 1↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
fineweb_q00/datafusion:parquet 1653624964 1641101219 1.01
fineweb_q01/datafusion:parquet 2328870123 2175274132 1.07
fineweb_q02/datafusion:parquet 2700440286 2191060284 1.23
fineweb_q03/datafusion:parquet 2440721889 2009068877 1.21
fineweb_q04/datafusion:parquet 2776494188 2317531861 1.20
fineweb_q05/datafusion:parquet 🚨 2783693893 1985360048 1.40
fineweb_q06/datafusion:parquet 2243854715 2240089204 1.00
fineweb_q07/datafusion:parquet 2322193271 1845567041 1.26
fineweb_q08/datafusion:parquet 2329841396 2182192547 1.07
duckdb / vortex-file-compressed (1.074x ➖, 0↑ 2↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
fineweb_q00/duckdb:vortex-file-compressed 119510933 108427814 1.10
fineweb_q01/duckdb:vortex-file-compressed 🚨 935950327 702841018 1.33
fineweb_q02/duckdb:vortex-file-compressed 🚨 670387531 500452350 1.34
fineweb_q03/duckdb:vortex-file-compressed 1662201508 1582794906 1.05
fineweb_q04/duckdb:vortex-file-compressed 1616139647 1673963202 0.97
fineweb_q05/duckdb:vortex-file-compressed 1499668092 1788174265 0.84
fineweb_q06/duckdb:vortex-file-compressed 1886666598 1876594283 1.01
fineweb_q07/duckdb:vortex-file-compressed 1646052052 1631533976 1.01
fineweb_q08/duckdb:vortex-file-compressed 748381997 670215392 1.12
duckdb / vortex-compact (1.042x ➖, 0↑ 1↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
fineweb_q00/duckdb:vortex-compact 🚨 121852967 71322186 1.71
fineweb_q01/duckdb:vortex-compact 664612034 649234980 1.02
fineweb_q02/duckdb:vortex-compact 575451031 727944092 0.79
fineweb_q03/duckdb:vortex-compact 1768522519 1690169485 1.05
fineweb_q04/duckdb:vortex-compact 1861818545 1822903734 1.02
fineweb_q05/duckdb:vortex-compact 1461932666 1569987693 0.93
fineweb_q06/duckdb:vortex-compact 1559616085 1614303888 0.97
fineweb_q07/duckdb:vortex-compact 1433427200 1428352017 1.00
fineweb_q08/duckdb:vortex-compact 503594562 462525257 1.09
duckdb / parquet (1.009x ➖, 0↑ 0↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
fineweb_q00/duckdb:parquet 1240230434 1265083827 0.98
fineweb_q01/duckdb:parquet 1408546272 1545055049 0.91
fineweb_q02/duckdb:parquet 1677940983 1474943557 1.14
fineweb_q03/duckdb:parquet 4317385294 3851799017 1.12
fineweb_q04/duckdb:parquet 2247830307 2137156827 1.05
fineweb_q05/duckdb:parquet 2456690567 2470498348 0.99
fineweb_q06/duckdb:parquet 4591342967 4896337382 0.94
fineweb_q07/duckdb:parquet 2818695296 2969373929 0.95
fineweb_q08/duckdb:parquet 1180030293 1156214498 1.02
Full attributed analysis
Query Config Raw Δ Control Δ Attributed α Noise floor Significant?
0 datafusion:vortex-compact +7.8% -0.6% +8.5% +163.7% ➖ noise
0 datafusion:vortex-file-compressed +1.1% -0.6% +1.7% +324.6% ➖ noise
0 duckdb:vortex-compact +70.8% -0.6% +71.9% +59.6% 🚨 regression
0 duckdb:vortex-file-compressed +10.2% -0.6% +10.9% +68.6% ➖ noise
1 datafusion:vortex-compact +51.3% -1.2% +53.2% +108.8% ➖ noise
1 datafusion:vortex-file-compressed +34.6% -1.2% +36.2% +58.2% ➖ noise
1 duckdb:vortex-compact +2.4% -1.2% +3.6% +30.0% ➖ noise
1 duckdb:vortex-file-compressed +33.2% -1.2% +34.8% +36.1% ➖ noise
2 datafusion:vortex-compact +25.7% +18.4% +6.2% +51.7% ➖ noise
2 datafusion:vortex-file-compressed +60.5% +18.4% +35.6% +48.9% ➖ noise
2 duckdb:vortex-compact -20.9% +18.4% -33.2% +35.7% ✅ faster
2 duckdb:vortex-file-compressed +34.0% +18.4% +13.1% +47.5% ➖ noise
3 datafusion:vortex-compact -6.9% +16.7% -20.3% +30.0% ➖ noise
3 datafusion:vortex-file-compressed +8.7% +16.7% -6.8% +30.0% ➖ noise
3 duckdb:vortex-compact +4.6% +16.7% -10.3% +30.0% ➖ noise
3 duckdb:vortex-file-compressed +5.0% +16.7% -10.0% +30.0% ➖ noise
4 datafusion:vortex-compact +0.9% +12.3% -10.1% +30.0% ➖ noise
4 datafusion:vortex-file-compressed +2.3% +12.3% -8.9% +30.0% ➖ noise
4 duckdb:vortex-compact +2.1% +12.3% -9.0% +30.0% ➖ noise
4 duckdb:vortex-file-compressed -3.5% +12.3% -14.0% +30.0% ➖ noise
5 datafusion:vortex-compact +1.1% +18.1% -14.4% +30.0% ➖ noise
5 datafusion:vortex-file-compressed +5.7% +18.1% -10.5% +30.0% ➖ noise
5 duckdb:vortex-compact -6.9% +18.1% -21.1% +31.1% ➖ noise
5 duckdb:vortex-file-compressed -16.1% +18.1% -29.0% +30.0% ✅ faster
6 datafusion:vortex-compact -3.1% -3.1% +0.0% +30.0% ➖ noise
6 datafusion:vortex-file-compressed +12.0% -3.1% +15.6% +30.0% ➖ noise
6 duckdb:vortex-compact -3.4% -3.1% -0.3% +30.0% ➖ noise
6 duckdb:vortex-file-compressed +0.5% -3.1% +3.7% +30.0% ➖ noise
7 datafusion:vortex-compact +6.1% +9.3% -2.9% +163.3% ➖ noise
7 datafusion:vortex-file-compressed -13.3% +9.3% -20.7% +131.2% ➖ noise
7 duckdb:vortex-compact +0.4% +9.3% -8.2% +30.0% ➖ noise
7 duckdb:vortex-file-compressed +0.9% +9.3% -7.7% +32.1% ➖ noise
8 datafusion:vortex-compact -2.9% +4.4% -7.0% +30.0% ➖ noise
8 datafusion:vortex-file-compressed +2.7% +4.4% -1.6% +30.0% ➖ noise
8 duckdb:vortex-compact +8.9% +4.4% +4.3% +30.0% ➖ noise
8 duckdb:vortex-file-compressed +11.7% +4.4% +7.0% +34.4% ➖ noise

@github-actions
Copy link
Copy Markdown
Contributor

Benchmarks: Statistical and Population Genetics

Verdict: No clear signal (low confidence)
Attributed Vortex impact: +1.0%
Engines: DuckDB No clear signal (+1.0%, low confidence)
Vortex (geomean): 0.987x ➖
Parquet (geomean): 0.977x ➖
Shifts: Parquet (control) -2.3% · Median polish -1.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.

duckdb / vortex-file-compressed (0.979x ➖, 0↑ 0↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
statpopgen_q00/duckdb:vortex-file-compressed 12167672 12556517 0.97
statpopgen_q01/duckdb:vortex-file-compressed 26968734 27113935 0.99
statpopgen_q02/duckdb:vortex-file-compressed 535564070 557820675 0.96
statpopgen_q03/duckdb:vortex-file-compressed 1054493732 1077215472 0.98
statpopgen_q04/duckdb:vortex-file-compressed 1074790419 1068971353 1.01
statpopgen_q05/duckdb:vortex-file-compressed 466305240 482522507 0.97
statpopgen_q06/duckdb:vortex-file-compressed 1541122336 1548789060 1.00
statpopgen_q07/duckdb:vortex-file-compressed 199313372 212519901 0.94
statpopgen_q08/duckdb:vortex-file-compressed 233917279 236115685 0.99
statpopgen_q09/duckdb:vortex-file-compressed 824020634 842166113 0.98
statpopgen_q10/duckdb:vortex-file-compressed 2549231351 2571880670 0.99
duckdb / vortex-compact (0.995x ➖, 0↑ 0↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
statpopgen_q00/duckdb:vortex-compact 11437932 11509954 0.99
statpopgen_q01/duckdb:vortex-compact 217423277 217972843 1.00
statpopgen_q02/duckdb:vortex-compact 561142197 554575928 1.01
statpopgen_q03/duckdb:vortex-compact 1164726354 1148561533 1.01
statpopgen_q04/duckdb:vortex-compact 1154948341 1159474720 1.00
statpopgen_q05/duckdb:vortex-compact 582177783 573347395 1.02
statpopgen_q06/duckdb:vortex-compact 1482957046 1497687509 0.99
statpopgen_q07/duckdb:vortex-compact 881605308 907607440 0.97
statpopgen_q08/duckdb:vortex-compact 913492042 930188166 0.98
statpopgen_q09/duckdb:vortex-compact 946279527 965468273 0.98
statpopgen_q10/duckdb:vortex-compact 2605923496 2627200674 0.99
duckdb / parquet (0.977x ➖, 0↑ 0↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
statpopgen_q00/duckdb:parquet 292759921 311952908 0.94
statpopgen_q01/duckdb:parquet 376006903 383250719 0.98
statpopgen_q02/duckdb:parquet 750566154 773508140 0.97
statpopgen_q03/duckdb:parquet 1196859827 1218382862 0.98
statpopgen_q04/duckdb:parquet 1181527899 1195653581 0.99
statpopgen_q05/duckdb:parquet 802663156 817837877 0.98
statpopgen_q06/duckdb:parquet 1426614152 1432191548 1.00
statpopgen_q07/duckdb:parquet 845931950 867783526 0.97
statpopgen_q08/duckdb:parquet 854944266 886217334 0.96
statpopgen_q09/duckdb:parquet 1008016601 1043015473 0.97
statpopgen_q10/duckdb:parquet 2232652138 2214483452 1.01

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 -0.6% -6.2% +5.9% +10.0% ➖ noise
0 duckdb:vortex-file-compressed -3.1% -6.2% +3.3% +10.0% ➖ noise
1 duckdb:vortex-compact -0.3% -1.9% +1.7% +48.5% ➖ noise
1 duckdb:vortex-file-compressed -0.5% -1.9% +1.4% +217.4% ➖ noise
2 duckdb:vortex-compact +1.2% -3.0% +4.3% +10.0% ➖ noise
2 duckdb:vortex-file-compressed -4.0% -3.0% -1.1% +10.0% ➖ noise
3 duckdb:vortex-compact +1.4% -1.8% +3.2% +10.0% ➖ noise
3 duckdb:vortex-file-compressed -2.1% -1.8% -0.3% +10.0% ➖ noise
4 duckdb:vortex-compact -0.4% -1.2% +0.8% +10.0% ➖ noise
4 duckdb:vortex-file-compressed +0.5% -1.2% +1.7% +10.0% ➖ noise
5 duckdb:vortex-compact +1.5% -1.9% +3.5% +10.0% ➖ noise
5 duckdb:vortex-file-compressed -3.4% -1.9% -1.5% +10.0% ➖ noise
6 duckdb:vortex-compact -1.0% -0.4% -0.6% +10.0% ➖ noise
6 duckdb:vortex-file-compressed -0.5% -0.4% -0.1% +10.0% ➖ noise
7 duckdb:vortex-compact -2.9% -2.5% -0.4% +10.0% ➖ noise
7 duckdb:vortex-file-compressed -6.2% -2.5% -3.8% +10.0% ➖ noise
8 duckdb:vortex-compact -1.8% -3.5% +1.8% +10.0% ➖ noise
8 duckdb:vortex-file-compressed -0.9% -3.5% +2.7% +10.4% ➖ noise
9 duckdb:vortex-compact -2.0% -3.4% +1.4% +10.0% ➖ noise
9 duckdb:vortex-file-compressed -2.2% -3.4% +1.2% +10.0% ➖ noise
10 duckdb:vortex-compact -0.8% +0.8% -1.6% +10.0% ➖ noise
10 duckdb:vortex-file-compressed -0.9% +0.8% -1.7% +10.0% ➖ noise

@github-actions
Copy link
Copy Markdown
Contributor

Benchmarks: Random Access

Vortex (geomean): 0.968x ➖
Parquet (geomean): 1.012x ➖

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 ➖, 1↑ 3↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
random-access/feature-vectors/correlated/lance-tokio-local-disk 396082 379475 1.04
random-access/feature-vectors/correlated/lance-tokio-local-disk-footer 1044115 1025576 1.02
random-access/feature-vectors/correlated/parquet-tokio-local-disk 8370257006 8655626167 0.97
random-access/feature-vectors/correlated/parquet-tokio-local-disk-footer 8295480176 8485301203 0.98
random-access/feature-vectors/correlated/vortex-tokio-local-disk 7777446 8447037 0.92
random-access/feature-vectors/correlated/vortex-tokio-local-disk-footer 7194864 7671602 0.94
random-access/feature-vectors/uniform/lance-tokio-local-disk 1193167 1190068 1.00
random-access/feature-vectors/uniform/lance-tokio-local-disk-footer 1917709 1853490 1.03
random-access/feature-vectors/uniform/parquet-tokio-local-disk 8320597213 8526619483 0.98
random-access/feature-vectors/uniform/parquet-tokio-local-disk-footer 8292908867 8479386525 0.98
random-access/feature-vectors/uniform/vortex-tokio-local-disk 13356638 13610399 0.98
random-access/feature-vectors/uniform/vortex-tokio-local-disk-footer 13041297 13441957 0.97
random-access/lance-tokio-local-disk 643892 630310 1.02
random-access/lance-tokio-local-disk-footer 1319535 1303673 1.01
random-access/nested-lists/correlated/lance-tokio-local-disk 240652 241550 1.00
random-access/nested-lists/correlated/lance-tokio-local-disk-footer 595744 589593 1.01
random-access/nested-lists/correlated/parquet-tokio-local-disk 140694077 128806190 1.09
random-access/nested-lists/correlated/parquet-tokio-local-disk-footer 🚨 143195757 128941865 1.11
random-access/nested-lists/correlated/vortex-tokio-local-disk 670746 641605 1.05
random-access/nested-lists/correlated/vortex-tokio-local-disk-footer 🚨 681872 609308 1.12
random-access/nested-lists/uniform/lance-tokio-local-disk 1010968 989123 1.02
random-access/nested-lists/uniform/lance-tokio-local-disk-footer 1382258 1355155 1.02
random-access/nested-lists/uniform/parquet-tokio-local-disk 141506273 128731419 1.10
random-access/nested-lists/uniform/parquet-tokio-local-disk-footer 🚨 143186381 128725083 1.11
random-access/nested-lists/uniform/vortex-tokio-local-disk 2074775 2199665 0.94
random-access/nested-lists/uniform/vortex-tokio-local-disk-footer 2063012 2185932 0.94
random-access/nested-structs/correlated/lance-tokio-local-disk 371467 371320 1.00
random-access/nested-structs/correlated/lance-tokio-local-disk-footer 553914 553300 1.00
random-access/nested-structs/correlated/parquet-tokio-local-disk 23410732 23329023 1.00
random-access/nested-structs/correlated/parquet-tokio-local-disk-footer 22999075 23665172 0.97
random-access/nested-structs/correlated/vortex-tokio-local-disk 746057 752349 0.99
random-access/nested-structs/correlated/vortex-tokio-local-disk-footer 791127 782967 1.01
random-access/nested-structs/uniform/lance-tokio-local-disk 2643240 2590830 1.02
random-access/nested-structs/uniform/lance-tokio-local-disk-footer 2830285 2724747 1.04
random-access/nested-structs/uniform/parquet-tokio-local-disk 22840726 23567915 0.97
random-access/nested-structs/uniform/parquet-tokio-local-disk-footer 22783365 23529192 0.97
random-access/nested-structs/uniform/vortex-tokio-local-disk 1679406 1651072 1.02
random-access/nested-structs/uniform/vortex-tokio-local-disk-footer 1654121 1632480 1.01
random-access/parquet-tokio-local-disk 168352857 165750346 1.02
random-access/parquet-tokio-local-disk-footer 167476693 167915170 1.00
random-access/taxi/correlated/lance-tokio-local-disk 945149 938394 1.01
random-access/taxi/correlated/lance-tokio-local-disk-footer 1839261 1837976 1.00
random-access/taxi/correlated/parquet-tokio-local-disk 250488568 250572969 1.00
random-access/taxi/correlated/parquet-tokio-local-disk-footer 252005742 253345635 0.99
random-access/taxi/correlated/vortex-tokio-local-disk 🚀 1545008 1799055 0.86
random-access/taxi/correlated/vortex-tokio-local-disk-footer 1725140 1824884 0.95
random-access/taxi/uniform/lance-tokio-local-disk 9335553 9369373 1.00
random-access/taxi/uniform/lance-tokio-local-disk-footer 9923101 9958530 1.00
random-access/taxi/uniform/parquet-tokio-local-disk 267131868 266960189 1.00
random-access/taxi/uniform/parquet-tokio-local-disk-footer 268050013 267898161 1.00
random-access/taxi/uniform/vortex-tokio-local-disk 4577863 4763344 0.96
random-access/taxi/uniform/vortex-tokio-local-disk-footer 4517029 4788896 0.94
random-access/vortex-tokio-local-disk 1187095 1262225 0.94
random-access/vortex-tokio-local-disk-footer 1179484 1285358 0.92

@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.843x ✅
Parquet (geomean): 0.889x ✅
Shifts: Parquet (control) -11.1% · Median polish -15.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.812x ✅, 22↑ 0↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/datafusion:vortex-file-compressed 🚀 388231820 467597435 0.83
tpch_q02/datafusion:vortex-file-compressed 🚀 111766279 137688718 0.81
tpch_q03/datafusion:vortex-file-compressed 🚀 216312199 261356783 0.83
tpch_q04/datafusion:vortex-file-compressed 🚀 114010002 141287176 0.81
tpch_q05/datafusion:vortex-file-compressed 🚀 386137317 474073797 0.81
tpch_q06/datafusion:vortex-file-compressed 🚀 38415856 44364498 0.87
tpch_q07/datafusion:vortex-file-compressed 🚀 505681765 637022206 0.79
tpch_q08/datafusion:vortex-file-compressed 🚀 372972369 463603736 0.80
tpch_q09/datafusion:vortex-file-compressed 🚀 651025607 820025746 0.79
tpch_q10/datafusion:vortex-file-compressed 🚀 231054184 282195335 0.82
tpch_q11/datafusion:vortex-file-compressed 🚀 87050423 101569680 0.86
tpch_q12/datafusion:vortex-file-compressed 🚀 115734247 145273377 0.80
tpch_q13/datafusion:vortex-file-compressed 🚀 216436253 261488505 0.83
tpch_q14/datafusion:vortex-file-compressed 🚀 52541955 64884971 0.81
tpch_q15/datafusion:vortex-file-compressed 🚀 99558104 122952130 0.81
tpch_q16/datafusion:vortex-file-compressed 🚀 77182698 93269537 0.83
tpch_q17/datafusion:vortex-file-compressed 🚀 645696992 821812876 0.79
tpch_q18/datafusion:vortex-file-compressed 🚀 863469079 1099883853 0.79
tpch_q19/datafusion:vortex-file-compressed 🚀 70469609 86159698 0.82
tpch_q20/datafusion:vortex-file-compressed 🚀 162479029 207029859 0.78
tpch_q21/datafusion:vortex-file-compressed 🚀 664128049 848499541 0.78
tpch_q22/datafusion:vortex-file-compressed 🚀 64286225 78372818 0.82
datafusion / vortex-compact (0.827x ✅, 22↑ 0↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/datafusion:vortex-compact 🚀 452072965 510791775 0.89
tpch_q02/datafusion:vortex-compact 🚀 115938711 138846984 0.84
tpch_q03/datafusion:vortex-compact 🚀 215496982 268081868 0.80
tpch_q04/datafusion:vortex-compact 🚀 122105983 144808965 0.84
tpch_q05/datafusion:vortex-compact 🚀 385159610 476193060 0.81
tpch_q06/datafusion:vortex-compact 🚀 60581904 72241981 0.84
tpch_q07/datafusion:vortex-compact 🚀 527450356 646949837 0.82
tpch_q08/datafusion:vortex-compact 🚀 378198716 469692429 0.81
tpch_q09/datafusion:vortex-compact 🚀 660954683 820006828 0.81
tpch_q10/datafusion:vortex-compact 🚀 250247097 305030272 0.82
tpch_q11/datafusion:vortex-compact 🚀 86995286 107232751 0.81
tpch_q12/datafusion:vortex-compact 🚀 158555757 192047643 0.83
tpch_q13/datafusion:vortex-compact 🚀 270622437 316225456 0.86
tpch_q14/datafusion:vortex-compact 🚀 70159546 85642230 0.82
tpch_q15/datafusion:vortex-compact 🚀 157241029 185967091 0.85
tpch_q16/datafusion:vortex-compact 🚀 80618908 96212025 0.84
tpch_q17/datafusion:vortex-compact 🚀 655119352 817672862 0.80
tpch_q18/datafusion:vortex-compact 🚀 864257090 1093262645 0.79
tpch_q19/datafusion:vortex-compact 🚀 122920599 142754453 0.86
tpch_q20/datafusion:vortex-compact 🚀 189137647 226556914 0.83
tpch_q21/datafusion:vortex-compact 🚀 680621972 865413459 0.79
tpch_q22/datafusion:vortex-compact 🚀 76418086 86964088 0.88
datafusion / parquet (0.850x ✅, 20↑ 0↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/datafusion:parquet 🚀 484662532 538676638 0.90
tpch_q02/datafusion:parquet 🚀 172888974 201069689 0.86
tpch_q03/datafusion:parquet 🚀 287807443 345338597 0.83
tpch_q04/datafusion:parquet 🚀 130422917 154877230 0.84
tpch_q05/datafusion:parquet 🚀 442060600 544511731 0.81
tpch_q06/datafusion:parquet 🚀 122123583 139511242 0.88
tpch_q07/datafusion:parquet 🚀 612580628 752259619 0.81
tpch_q08/datafusion:parquet 🚀 470001598 571798280 0.82
tpch_q09/datafusion:parquet 🚀 762857129 924529206 0.83
tpch_q10/datafusion:parquet 🚀 508456801 588718366 0.86
tpch_q11/datafusion:parquet 🚀 119702285 140345488 0.85
tpch_q12/datafusion:parquet 🚀 195158710 224684884 0.87
tpch_q13/datafusion:parquet 🚀 336278146 376428761 0.89
tpch_q14/datafusion:parquet 🚀 160861236 180618135 0.89
tpch_q15/datafusion:parquet 🚀 251923994 302960518 0.83
tpch_q16/datafusion:parquet 124809086 137283261 0.91
tpch_q17/datafusion:parquet 🚀 689326071 859035095 0.80
tpch_q18/datafusion:parquet 🚀 909167127 1127389904 0.81
tpch_q19/datafusion:parquet 🚀 264480048 297180291 0.89
tpch_q20/datafusion:parquet 🚀 294267742 359279178 0.82
tpch_q21/datafusion:parquet 🚀 703682654 884660065 0.80
tpch_q22/datafusion:parquet 216492191 236318467 0.92
datafusion / arrow (0.834x ✅, 22↑ 0↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/datafusion:arrow 🚀 585513519 707021640 0.83
tpch_q02/datafusion:arrow 🚀 168074250 191829426 0.88
tpch_q03/datafusion:arrow 🚀 461244911 564049728 0.82
tpch_q04/datafusion:arrow 🚀 336067881 409374196 0.82
tpch_q05/datafusion:arrow 🚀 928488689 1115928122 0.83
tpch_q06/datafusion:arrow 🚀 283475957 338121856 0.84
tpch_q07/datafusion:arrow 🚀 1167515816 1418625150 0.82
tpch_q08/datafusion:arrow 🚀 1136627914 1349636948 0.84
tpch_q09/datafusion:arrow 🚀 1344538927 1582787055 0.85
tpch_q10/datafusion:arrow 🚀 598418011 725817391 0.82
tpch_q11/datafusion:arrow 🚀 138904155 164282311 0.85
tpch_q12/datafusion:arrow 🚀 665334476 904253467 0.74
tpch_q13/datafusion:arrow 🚀 511050893 577209005 0.89
tpch_q14/datafusion:arrow 🚀 324604839 379513130 0.86
tpch_q15/datafusion:arrow 🚀 688253128 851676507 0.81
tpch_q16/datafusion:arrow 🚀 107237911 123854208 0.87
tpch_q17/datafusion:arrow 🚀 1336873654 1626686803 0.82
tpch_q18/datafusion:arrow 🚀 1930942526 2363681917 0.82
tpch_q19/datafusion:arrow 🚀 486378534 576766574 0.84
tpch_q20/datafusion:arrow 🚀 492368045 603736613 0.82
tpch_q21/datafusion:arrow 🚀 3002415495 3369818605 0.89
tpch_q22/datafusion:arrow 🚀 130232173 157460278 0.83
duckdb / vortex-file-compressed (0.866x ✅, 18↑ 0↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/duckdb:vortex-file-compressed 169823306 186117753 0.91
tpch_q02/duckdb:vortex-file-compressed 51705626 55442508 0.93
tpch_q03/duckdb:vortex-file-compressed 🚀 123105999 142591219 0.86
tpch_q04/duckdb:vortex-file-compressed 🚀 159545288 184005379 0.87
tpch_q05/duckdb:vortex-file-compressed 🚀 138896124 162480607 0.85
tpch_q06/duckdb:vortex-file-compressed 🚀 35038344 42216636 0.83
tpch_q07/duckdb:vortex-file-compressed 🚀 133205599 160948707 0.83
tpch_q08/duckdb:vortex-file-compressed 🚀 170477871 200402403 0.85
tpch_q09/duckdb:vortex-file-compressed 🚀 392127703 452616042 0.87
tpch_q10/duckdb:vortex-file-compressed 🚀 191871684 224662745 0.85
tpch_q11/duckdb:vortex-file-compressed 🚀 32191975 36684890 0.88
tpch_q12/duckdb:vortex-file-compressed 🚀 99701026 121100879 0.82
tpch_q13/duckdb:vortex-file-compressed 🚀 271941630 315588173 0.86
tpch_q14/duckdb:vortex-file-compressed 🚀 53637259 61937988 0.87
tpch_q15/duckdb:vortex-file-compressed 🚀 88412570 107906235 0.82
tpch_q16/duckdb:vortex-file-compressed 🚀 77422413 90831864 0.85
tpch_q17/duckdb:vortex-file-compressed 🚀 93431268 111060952 0.84
tpch_q18/duckdb:vortex-file-compressed 🚀 288719243 329999482 0.87
tpch_q19/duckdb:vortex-file-compressed 81602344 86643586 0.94
tpch_q20/duckdb:vortex-file-compressed 🚀 142287483 165227707 0.86
tpch_q21/duckdb:vortex-file-compressed 🚀 501603568 578170519 0.87
tpch_q22/duckdb:vortex-file-compressed 64243311 70634302 0.91
duckdb / vortex-compact (0.869x ✅, 22↑ 0↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/duckdb:vortex-compact 🚀 232086423 259642890 0.89
tpch_q02/duckdb:vortex-compact 🚀 57004583 63686130 0.90
tpch_q03/duckdb:vortex-compact 🚀 135559735 164092820 0.83
tpch_q04/duckdb:vortex-compact 🚀 170232606 195820327 0.87
tpch_q05/duckdb:vortex-compact 🚀 164328642 190327791 0.86
tpch_q06/duckdb:vortex-compact 🚀 55933848 67191432 0.83
tpch_q07/duckdb:vortex-compact 🚀 173019441 199682803 0.87
tpch_q08/duckdb:vortex-compact 🚀 185772823 221215851 0.84
tpch_q09/duckdb:vortex-compact 🚀 429351702 505811395 0.85
tpch_q10/duckdb:vortex-compact 🚀 221755005 254880455 0.87
tpch_q11/duckdb:vortex-compact 🚀 38319755 43479582 0.88
tpch_q12/duckdb:vortex-compact 🚀 162113443 190011138 0.85
tpch_q13/duckdb:vortex-compact 🚀 325693290 373146026 0.87
tpch_q14/duckdb:vortex-compact 🚀 72320706 81052178 0.89
tpch_q15/duckdb:vortex-compact 🚀 114334550 131316358 0.87
tpch_q16/duckdb:vortex-compact 🚀 80585138 90072039 0.89
tpch_q17/duckdb:vortex-compact 🚀 107881953 123186878 0.88
tpch_q18/duckdb:vortex-compact 🚀 292149836 332598270 0.88
tpch_q19/duckdb:vortex-compact 🚀 96392343 107144821 0.90
tpch_q20/duckdb:vortex-compact 🚀 177119020 203984883 0.87
tpch_q21/duckdb:vortex-compact 🚀 517690725 604658569 0.86
tpch_q22/duckdb:vortex-compact 🚀 71479846 81357954 0.88
duckdb / parquet (0.929x ➖, 3↑ 0↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/duckdb:parquet 265287697 279085064 0.95
tpch_q02/duckdb:parquet 105059944 106250184 0.99
tpch_q03/duckdb:parquet 211422139 226236866 0.93
tpch_q04/duckdb:parquet 🚀 135579690 151174253 0.90
tpch_q05/duckdb:parquet 222954966 241370857 0.92
tpch_q06/duckdb:parquet 73624228 78907869 0.93
tpch_q07/duckdb:parquet 185371533 203237418 0.91
tpch_q08/duckdb:parquet 265222982 285809944 0.93
tpch_q09/duckdb:parquet 🚀 465957611 538670965 0.87
tpch_q10/duckdb:parquet 624334297 668312734 0.93
tpch_q11/duckdb:parquet 65135045 68337827 0.95
tpch_q12/duckdb:parquet 131476257 139633433 0.94
tpch_q13/duckdb:parquet 443873760 477511353 0.93
tpch_q14/duckdb:parquet 177118468 191495231 0.92
tpch_q15/duckdb:parquet 105026890 113971000 0.92
tpch_q16/duckdb:parquet 161674177 176184135 0.92
tpch_q17/duckdb:parquet 185022671 196066399 0.94
tpch_q18/duckdb:parquet 364854217 401974112 0.91
tpch_q19/duckdb:parquet 286688682 301314415 0.95
tpch_q20/duckdb:parquet 227312850 243513203 0.93
tpch_q21/duckdb:parquet 🚀 555243219 628284688 0.88
tpch_q22/duckdb:parquet 293144357 304784177 0.96
duckdb / duckdb (0.900x ➖, 11↑ 0↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/duckdb:duckdb 120102825 127750762 0.94
tpch_q02/duckdb:duckdb 🚀 48138981 54105946 0.89
tpch_q03/duckdb:duckdb 🚀 103167112 114873219 0.90
tpch_q04/duckdb:duckdb 🚀 138019445 160105218 0.86
tpch_q05/duckdb:duckdb 🚀 119208498 137075295 0.87
tpch_q06/duckdb:duckdb 44484236 48941416 0.91
tpch_q07/duckdb:duckdb 🚀 91218899 101366700 0.90
tpch_q08/duckdb:duckdb 118810935 131592185 0.90
tpch_q09/duckdb:duckdb 🚀 279002584 317449212 0.88
tpch_q10/duckdb:duckdb 🚀 211161573 238885809 0.88
tpch_q11/duckdb:duckdb 19160497 20526690 0.93
tpch_q12/duckdb:duckdb 🚀 89833308 99849287 0.90
tpch_q13/duckdb:duckdb 🚀 228183397 263448555 0.87
tpch_q14/duckdb:duckdb 🚀 77548755 87205869 0.89
tpch_q15/duckdb:duckdb 82393119 89280404 0.92
tpch_q16/duckdb:duckdb 75771785 83246911 0.91
tpch_q17/duckdb:duckdb 87679434 94932286 0.92
tpch_q18/duckdb:duckdb 🚀 235902020 263976913 0.89
tpch_q19/duckdb:duckdb 123382682 136944397 0.90
tpch_q20/duckdb:duckdb 117185227 127418879 0.92
tpch_q21/duckdb:duckdb 305117988 332608877 0.92
tpch_q22/duckdb:duckdb 66801928 74143363 0.90

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 -17.2% -7.5% -10.5% +10.0% ✅ faster
1 datafusion:vortex-compact -11.5% -7.5% -4.3% +10.0% ➖ noise
1 datafusion:vortex-file-compressed -17.0% -7.5% -10.2% +10.0% ✅ faster
1 duckdb:duckdb -6.0% -7.5% +1.7% +10.0% ➖ noise
1 duckdb:vortex-compact -10.6% -7.5% -3.3% +10.0% ➖ noise
1 duckdb:vortex-file-compressed -8.8% -7.5% -1.3% +10.0% ➖ noise
2 datafusion:arrow -12.4% -7.8% -5.0% +10.0% ➖ noise
2 datafusion:vortex-compact -16.5% -7.8% -9.4% +10.0% ✅ faster
2 datafusion:vortex-file-compressed -18.8% -7.8% -12.0% +10.0% ✅ faster
2 duckdb:duckdb -11.0% -7.8% -3.5% +10.0% ➖ noise
2 duckdb:vortex-compact -10.5% -7.8% -2.9% +10.0% ➖ noise
2 duckdb:vortex-file-compressed -6.7% -7.8% +1.1% +12.3% ➖ noise
3 datafusion:arrow -18.2% -11.7% -7.3% +10.0% ➖ noise
3 datafusion:vortex-compact -19.6% -11.7% -8.9% +10.0% ➖ noise
3 datafusion:vortex-file-compressed -17.2% -11.7% -6.2% +10.0% ➖ noise
3 duckdb:duckdb -10.2% -11.7% +1.8% +10.0% ➖ noise
3 duckdb:vortex-compact -17.4% -11.7% -6.4% +10.0% ➖ noise
3 duckdb:vortex-file-compressed -13.7% -11.7% -2.2% +10.0% ➖ noise
4 datafusion:arrow -17.9% -13.1% -5.5% +10.0% ➖ noise
4 datafusion:vortex-compact -15.7% -13.1% -3.0% +10.0% ➖ noise
4 datafusion:vortex-file-compressed -19.3% -13.1% -7.1% +10.0% ➖ noise
4 duckdb:duckdb -13.8% -13.1% -0.8% +10.0% ➖ noise
4 duckdb:vortex-compact -13.1% -13.1% +0.0% +10.0% ➖ noise
4 duckdb:vortex-file-compressed -13.3% -13.1% -0.2% +10.0% ➖ noise
5 datafusion:arrow -16.8% -13.4% -3.9% +10.0% ➖ noise
5 datafusion:vortex-compact -19.1% -13.4% -6.6% +10.0% ➖ noise
5 datafusion:vortex-file-compressed -18.5% -13.4% -5.9% +10.0% ➖ noise
5 duckdb:duckdb -13.0% -13.4% +0.4% +10.0% ➖ noise
5 duckdb:vortex-compact -13.7% -13.4% -0.3% +10.0% ➖ noise
5 duckdb:vortex-file-compressed -14.5% -13.4% -1.3% +10.0% ➖ noise
6 datafusion:arrow -16.2% -9.6% -7.2% +10.0% ➖ noise
6 datafusion:vortex-compact -16.1% -9.6% -7.2% +10.0% ➖ noise
6 datafusion:vortex-file-compressed -13.4% -9.6% -4.2% +10.0% ➖ noise
6 duckdb:duckdb -9.1% -9.6% +0.6% +10.0% ➖ noise
6 duckdb:vortex-compact -16.8% -9.6% -7.9% +10.9% ➖ noise
6 duckdb:vortex-file-compressed -17.0% -9.6% -8.2% +10.7% ➖ noise
7 datafusion:arrow -17.7% -13.8% -4.5% +10.0% ➖ noise
7 datafusion:vortex-compact -18.5% -13.8% -5.4% +10.0% ➖ noise
7 datafusion:vortex-file-compressed -20.6% -13.8% -7.9% +10.0% ➖ noise
7 duckdb:duckdb -10.0% -13.8% +4.4% +10.0% ➖ noise
7 duckdb:vortex-compact -13.4% -13.8% +0.5% +10.0% ➖ noise
7 duckdb:vortex-file-compressed -17.2% -13.8% -4.0% +10.0% ➖ noise
8 datafusion:arrow -15.8% -12.7% -3.6% +10.0% ➖ noise
8 datafusion:vortex-compact -19.5% -12.7% -7.8% +10.0% ➖ noise
8 datafusion:vortex-file-compressed -19.5% -12.7% -7.9% +10.0% ➖ noise
8 duckdb:duckdb -9.7% -12.7% +3.4% +10.0% ➖ noise
8 duckdb:vortex-compact -16.0% -12.7% -3.8% +10.0% ➖ noise
8 duckdb:vortex-file-compressed -14.9% -12.7% -2.6% +10.0% ➖ noise
9 datafusion:arrow -15.1% -15.5% +0.5% +10.0% ➖ noise
9 datafusion:vortex-compact -19.4% -15.5% -4.6% +10.0% ➖ noise
9 datafusion:vortex-file-compressed -20.6% -15.5% -6.0% +10.0% ➖ noise
9 duckdb:duckdb -12.1% -15.5% +4.0% +10.0% ➖ noise
9 duckdb:vortex-compact -15.1% -15.5% +0.5% +10.0% ➖ noise
9 duckdb:vortex-file-compressed -13.4% -15.5% +2.5% +10.0% ➖ noise
10 datafusion:arrow -17.6% -10.2% -8.2% +10.0% ➖ noise
10 datafusion:vortex-compact -18.0% -10.2% -8.7% +10.0% ➖ noise
10 datafusion:vortex-file-compressed -18.1% -10.2% -8.8% +10.0% ➖ noise
10 duckdb:duckdb -11.6% -10.2% -1.6% +10.0% ➖ noise
10 duckdb:vortex-compact -13.0% -10.2% -3.1% +10.0% ➖ noise
10 duckdb:vortex-file-compressed -14.6% -10.2% -4.9% +10.0% ➖ noise
11 datafusion:arrow -15.4% -9.8% -6.2% +11.8% ➖ noise
11 datafusion:vortex-compact -18.9% -9.8% -10.0% +10.0% ✅ faster
11 datafusion:vortex-file-compressed -14.3% -9.8% -4.9% +10.0% ➖ noise
11 duckdb:duckdb -6.7% -9.8% +3.5% +10.0% ➖ noise
11 duckdb:vortex-compact -11.9% -9.8% -2.3% +10.0% ➖ noise
11 duckdb:vortex-file-compressed -12.2% -9.8% -2.7% +10.0% ➖ noise
12 datafusion:arrow -26.4% -9.6% -18.6% +37.9% ➖ noise
12 datafusion:vortex-compact -17.4% -9.6% -8.7% +10.0% ➖ noise
12 datafusion:vortex-file-compressed -20.3% -9.6% -11.9% +10.0% ✅ faster
12 duckdb:duckdb -10.0% -9.6% -0.5% +10.0% ➖ noise
12 duckdb:vortex-compact -14.7% -9.6% -5.7% +10.0% ➖ noise
12 duckdb:vortex-file-compressed -17.7% -9.6% -9.0% +10.0% ➖ noise
13 datafusion:arrow -11.5% -8.9% -2.8% +10.0% ➖ noise
13 datafusion:vortex-compact -14.4% -8.9% -6.1% +10.0% ➖ noise
13 datafusion:vortex-file-compressed -17.2% -8.9% -9.2% +10.0% ✅ faster
13 duckdb:duckdb -13.4% -8.9% -5.0% +10.0% ➖ noise
13 duckdb:vortex-compact -12.7% -8.9% -4.2% +10.0% ➖ noise
13 duckdb:vortex-file-compressed -13.8% -8.9% -5.4% +10.0% ➖ noise
14 datafusion:arrow -14.5% -9.2% -5.8% +10.0% ➖ noise
14 datafusion:vortex-compact -18.1% -9.2% -9.7% +10.0% ✅ faster
14 datafusion:vortex-file-compressed -19.0% -9.2% -10.8% +10.0% ✅ faster
14 duckdb:duckdb -11.1% -9.2% -2.0% +10.0% ➖ noise
14 duckdb:vortex-compact -10.8% -9.2% -1.7% +11.0% ➖ noise
14 duckdb:vortex-file-compressed -13.4% -9.2% -4.6% +10.9% ➖ noise
15 datafusion:arrow -19.2% -12.5% -7.7% +10.0% ➖ noise
15 datafusion:vortex-compact -15.4% -12.5% -3.4% +10.0% ➖ noise
15 datafusion:vortex-file-compressed -19.0% -12.5% -7.5% +10.0% ➖ noise
15 duckdb:duckdb -7.7% -12.5% +5.4% +10.0% ➖ noise
15 duckdb:vortex-compact -12.9% -12.5% -0.5% +10.0% ➖ noise
15 duckdb:vortex-file-compressed -18.1% -12.5% -6.4% +10.0% ➖ noise
16 datafusion:arrow -13.4% -8.7% -5.2% +10.0% ➖ noise
16 datafusion:vortex-compact -16.2% -8.7% -8.3% +10.0% ➖ noise
16 datafusion:vortex-file-compressed -17.2% -8.7% -9.4% +10.0% ✅ faster
16 duckdb:duckdb -9.0% -8.7% -0.3% +10.0% ➖ noise
16 duckdb:vortex-compact -10.5% -8.7% -2.0% +10.0% ➖ noise
16 duckdb:vortex-file-compressed -14.8% -8.7% -6.7% +10.0% ➖ noise
17 datafusion:arrow -17.8% -13.0% -5.6% +10.0% ➖ noise
17 datafusion:vortex-compact -19.9% -13.0% -7.9% +10.0% ➖ noise
17 datafusion:vortex-file-compressed -21.4% -13.0% -9.7% +10.0% ✅ faster
17 duckdb:duckdb -7.6% -13.0% +6.1% +10.0% ➖ noise
17 duckdb:vortex-compact -12.4% -13.0% +0.6% +10.0% ➖ noise
17 duckdb:vortex-file-compressed -15.9% -13.0% -3.3% +10.0% ➖ noise
18 datafusion:arrow -18.3% -14.4% -4.5% +10.0% ➖ noise
18 datafusion:vortex-compact -20.9% -14.4% -7.6% +10.0% ➖ noise
18 datafusion:vortex-file-compressed -21.5% -14.4% -8.2% +10.0% ➖ noise
18 duckdb:duckdb -10.6% -14.4% +4.5% +10.0% ➖ noise
18 duckdb:vortex-compact -12.2% -14.4% +2.7% +10.0% ➖ noise
18 duckdb:vortex-file-compressed -12.5% -14.4% +2.3% +10.0% ➖ noise
19 datafusion:arrow -15.7% -8.0% -8.4% +10.0% ➖ noise
19 datafusion:vortex-compact -13.9% -8.0% -6.4% +10.0% ➖ noise
19 datafusion:vortex-file-compressed -18.2% -8.0% -11.1% +10.0% ✅ faster
19 duckdb:duckdb -9.9% -8.0% -2.1% +10.0% ➖ noise
19 duckdb:vortex-compact -10.0% -8.0% -2.2% +10.0% ➖ noise
19 duckdb:vortex-file-compressed -5.8% -8.0% +2.3% +10.0% ➖ noise
20 datafusion:arrow -18.4% -12.6% -6.7% +10.0% ➖ noise
20 datafusion:vortex-compact -16.5% -12.6% -4.5% +10.0% ➖ noise
20 datafusion:vortex-file-compressed -21.5% -12.6% -10.2% +10.0% ✅ faster
20 duckdb:duckdb -8.0% -12.6% +5.2% +10.0% ➖ noise
20 duckdb:vortex-compact -13.2% -12.6% -0.7% +10.0% ➖ noise
20 duckdb:vortex-file-compressed -13.9% -12.6% -1.5% +10.0% ➖ noise
21 datafusion:arrow -10.9% -16.2% +6.3% +10.0% ➖ noise
21 datafusion:vortex-compact -21.4% -16.2% -6.2% +10.0% ➖ noise
21 datafusion:vortex-file-compressed -21.7% -16.2% -6.6% +10.0% ➖ noise
21 duckdb:duckdb -8.3% -16.2% +9.4% +10.0% ➖ noise
21 duckdb:vortex-compact -14.4% -16.2% +2.1% +10.0% ➖ noise
21 duckdb:vortex-file-compressed -13.2% -16.2% +3.5% +10.0% ➖ noise
22 datafusion:arrow -17.3% -6.1% -11.9% +11.3% ✅ faster
22 datafusion:vortex-compact -12.1% -6.1% -6.4% +10.0% ➖ noise
22 datafusion:vortex-file-compressed -18.0% -6.1% -12.6% +10.0% ✅ faster
22 duckdb:duckdb -9.9% -6.1% -4.0% +10.0% ➖ noise
22 duckdb:vortex-compact -12.1% -6.1% -6.4% +10.0% ➖ noise
22 duckdb:vortex-file-compressed -9.0% -6.1% -3.1% +10.0% ➖ noise

@github-actions
Copy link
Copy Markdown
Contributor

Benchmarks: Clickbench on NVME

Verdict: No clear signal (low confidence)
Attributed Vortex impact: +0.2%
Engines: DataFusion No clear signal (+0.2%, low confidence) · DuckDB No clear signal (+0.8%, low confidence)
Vortex (geomean): 1.038x ➖
Parquet (geomean): 1.037x ➖
Shifts: Parquet (control) +3.7% · Median polish +3.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 (1.052x ➖, 0↑ 6↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
clickbench_q00/datafusion:vortex-file-compressed 1805955 1668490 1.08
clickbench_q01/datafusion:vortex-file-compressed 17121208 17723250 0.97
clickbench_q02/datafusion:vortex-file-compressed 40154383 40213631 1.00
clickbench_q03/datafusion:vortex-file-compressed 45740113 44370759 1.03
clickbench_q04/datafusion:vortex-file-compressed 309611477 288002413 1.08
clickbench_q05/datafusion:vortex-file-compressed 333942241 310145846 1.08
clickbench_q06/datafusion:vortex-file-compressed 1723431 1742072 0.99
clickbench_q07/datafusion:vortex-file-compressed 🚨 24455380 22054199 1.11
clickbench_q08/datafusion:vortex-file-compressed 375801437 349923971 1.07
clickbench_q09/datafusion:vortex-file-compressed 590836222 547645128 1.08
clickbench_q10/datafusion:vortex-file-compressed 76654406 74037590 1.04
clickbench_q11/datafusion:vortex-file-compressed 89974318 87460304 1.03
clickbench_q12/datafusion:vortex-file-compressed 288803517 265445132 1.09
clickbench_q13/datafusion:vortex-file-compressed 457072190 431709156 1.06
clickbench_q14/datafusion:vortex-file-compressed 278003911 265483489 1.05
clickbench_q15/datafusion:vortex-file-compressed 347643643 331257574 1.05
clickbench_q16/datafusion:vortex-file-compressed 🚨 741227916 671793333 1.10
clickbench_q17/datafusion:vortex-file-compressed 697938870 650443513 1.07
clickbench_q18/datafusion:vortex-file-compressed 1457245469 1411727319 1.03
clickbench_q19/datafusion:vortex-file-compressed 32316503 32717676 0.99
clickbench_q20/datafusion:vortex-file-compressed 361760822 356617734 1.01
clickbench_q21/datafusion:vortex-file-compressed 403909297 388521270 1.04
clickbench_q22/datafusion:vortex-file-compressed 485473340 464833364 1.04
clickbench_q23/datafusion:vortex-file-compressed 692769297 703919716 0.98
clickbench_q24/datafusion:vortex-file-compressed 55953052 55732880 1.00
clickbench_q25/datafusion:vortex-file-compressed 79256348 75786141 1.05
clickbench_q26/datafusion:vortex-file-compressed 🚨 48694244 43372274 1.12
clickbench_q27/datafusion:vortex-file-compressed 772895772 732778065 1.05
clickbench_q28/datafusion:vortex-file-compressed 6902304561 6721207437 1.03
clickbench_q29/datafusion:vortex-file-compressed 250699747 244681064 1.02
clickbench_q30/datafusion:vortex-file-compressed 🚨 247503529 224404997 1.10
clickbench_q31/datafusion:vortex-file-compressed 276231381 264545222 1.04
clickbench_q32/datafusion:vortex-file-compressed 1231782654 1135988842 1.08
clickbench_q33/datafusion:vortex-file-compressed 1443468330 1374932240 1.05
clickbench_q34/datafusion:vortex-file-compressed 1484495785 1375254824 1.08
clickbench_q35/datafusion:vortex-file-compressed 509674363 477313974 1.07
clickbench_q36/datafusion:vortex-file-compressed 76722870 76446569 1.00
clickbench_q37/datafusion:vortex-file-compressed 🚨 40923108 36415354 1.12
clickbench_q38/datafusion:vortex-file-compressed 19658369 19252189 1.02
clickbench_q39/datafusion:vortex-file-compressed 142461298 133996826 1.06
clickbench_q40/datafusion:vortex-file-compressed 🚨 18549180 15753641 1.18
clickbench_q41/datafusion:vortex-file-compressed 16161686 15326609 1.05
clickbench_q42/datafusion:vortex-file-compressed 17650769 17051177 1.04
datafusion / parquet (1.050x ➖, 0↑ 2↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
clickbench_q00/datafusion:parquet 1605182 1514892 1.06
clickbench_q01/datafusion:parquet 19622437 19136102 1.03
clickbench_q02/datafusion:parquet 47002440 48134924 0.98
clickbench_q03/datafusion:parquet 39293829 38113863 1.03
clickbench_q04/datafusion:parquet 308520414 307986408 1.00
clickbench_q05/datafusion:parquet 378531356 345601965 1.10
clickbench_q06/datafusion:parquet 1600720 1578533 1.01
clickbench_q07/datafusion:parquet 23666139 22822029 1.04
clickbench_q08/datafusion:parquet 396647799 373633866 1.06
clickbench_q09/datafusion:parquet 661204555 611802494 1.08
clickbench_q10/datafusion:parquet 110082025 106192728 1.04
clickbench_q11/datafusion:parquet 138016360 130173807 1.06
clickbench_q12/datafusion:parquet 363563006 341854870 1.06
clickbench_q13/datafusion:parquet 545779732 509038237 1.07
clickbench_q14/datafusion:parquet 362736003 343664787 1.06
clickbench_q15/datafusion:parquet 354670614 339530755 1.04
clickbench_q16/datafusion:parquet 🚨 738726605 661594837 1.12
clickbench_q17/datafusion:parquet 700451230 652433763 1.07
clickbench_q18/datafusion:parquet 1475568887 1375056709 1.07
clickbench_q19/datafusion:parquet 29483596 29509394 1.00
clickbench_q20/datafusion:parquet 630923540 599294842 1.05
clickbench_q21/datafusion:parquet 697430501 662094677 1.05
clickbench_q22/datafusion:parquet 1039173249 960278521 1.08
clickbench_q23/datafusion:parquet 3855212758 3657669917 1.05
clickbench_q24/datafusion:parquet 87331382 83066207 1.05
clickbench_q25/datafusion:parquet 136034370 133688875 1.02
clickbench_q26/datafusion:parquet 83732543 81470125 1.03
clickbench_q27/datafusion:parquet 1103968605 1063706312 1.04
clickbench_q28/datafusion:parquet 6760151286 6538231043 1.03
clickbench_q29/datafusion:parquet 236558893 232510194 1.02
clickbench_q30/datafusion:parquet 340691239 327805006 1.04
clickbench_q31/datafusion:parquet 393072689 381158727 1.03
clickbench_q32/datafusion:parquet 🚨 1371493489 1194520679 1.15
clickbench_q33/datafusion:parquet 1597804872 1507614102 1.06
clickbench_q34/datafusion:parquet 1562701499 1511134560 1.03
clickbench_q35/datafusion:parquet 492724276 468124151 1.05
clickbench_q36/datafusion:parquet 155114999 146141419 1.06
clickbench_q37/datafusion:parquet 62232093 57816915 1.08
clickbench_q38/datafusion:parquet 90645689 85982876 1.05
clickbench_q39/datafusion:parquet 277856110 265090985 1.05
clickbench_q40/datafusion:parquet 32398726 31236531 1.04
clickbench_q41/datafusion:parquet 28840661 27470558 1.05
clickbench_q42/datafusion:parquet 30993225 29433027 1.05
duckdb / vortex-file-compressed (1.025x ➖, 1↑ 1↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
clickbench_q00/duckdb:vortex-file-compressed 6660699 6565690 1.01
clickbench_q01/duckdb:vortex-file-compressed 11464621 11172294 1.03
clickbench_q02/duckdb:vortex-file-compressed 27242023 26274425 1.04
clickbench_q03/duckdb:vortex-file-compressed 31454148 30288987 1.04
clickbench_q04/duckdb:vortex-file-compressed 200211196 189039753 1.06
clickbench_q05/duckdb:vortex-file-compressed 183436292 176749443 1.04
clickbench_q06/duckdb:vortex-file-compressed 22082793 20495169 1.08
clickbench_q07/duckdb:vortex-file-compressed 14506855 14115796 1.03
clickbench_q08/duckdb:vortex-file-compressed 273072347 265091474 1.03
clickbench_q09/duckdb:vortex-file-compressed 357476747 343686212 1.04
clickbench_q10/duckdb:vortex-file-compressed 70815268 68266274 1.04
clickbench_q11/duckdb:vortex-file-compressed 81312348 79481550 1.02
clickbench_q12/duckdb:vortex-file-compressed 205849072 198683910 1.04
clickbench_q13/duckdb:vortex-file-compressed 429083575 411421489 1.04
clickbench_q14/duckdb:vortex-file-compressed 246669047 234253604 1.05
clickbench_q15/duckdb:vortex-file-compressed 246474874 249766501 0.99
clickbench_q16/duckdb:vortex-file-compressed 549452378 527788297 1.04
clickbench_q17/duckdb:vortex-file-compressed 458158902 421588479 1.09
clickbench_q18/duckdb:vortex-file-compressed 991297594 960463902 1.03
clickbench_q19/duckdb:vortex-file-compressed 22853076 22898853 1.00
clickbench_q20/duckdb:vortex-file-compressed 335901831 340992160 0.99
clickbench_q21/duckdb:vortex-file-compressed 389521524 363120886 1.07
clickbench_q22/duckdb:vortex-file-compressed 🚨 611713205 510104564 1.20
clickbench_q23/duckdb:vortex-file-compressed 195937571 186109862 1.05
clickbench_q24/duckdb:vortex-file-compressed 38148996 35574074 1.07
clickbench_q25/duckdb:vortex-file-compressed 76699181 76959104 1.00
clickbench_q26/duckdb:vortex-file-compressed 🚀 48319915 53915816 0.90
clickbench_q27/duckdb:vortex-file-compressed 503803151 495807531 1.02
clickbench_q28/duckdb:vortex-file-compressed 3112030918 3047150521 1.02
clickbench_q29/duckdb:vortex-file-compressed 29635868 29755837 1.00
clickbench_q30/duckdb:vortex-file-compressed 195552480 197908753 0.99
clickbench_q31/duckdb:vortex-file-compressed 294940553 295244338 1.00
clickbench_q32/duckdb:vortex-file-compressed 1163456829 1130935151 1.03
clickbench_q33/duckdb:vortex-file-compressed 1128467482 1121388785 1.01
clickbench_q34/duckdb:vortex-file-compressed 1248338777 1179925880 1.06
clickbench_q35/duckdb:vortex-file-compressed 392912240 377434296 1.04
clickbench_q36/duckdb:vortex-file-compressed 26358340 27390356 0.96
clickbench_q37/duckdb:vortex-file-compressed 19124541 18592713 1.03
clickbench_q38/duckdb:vortex-file-compressed 20788733 20042674 1.04
clickbench_q39/duckdb:vortex-file-compressed 43024149 41667728 1.03
clickbench_q40/duckdb:vortex-file-compressed 18615757 20555504 0.91
clickbench_q41/duckdb:vortex-file-compressed 19307598 18642121 1.04
clickbench_q42/duckdb:vortex-file-compressed 20075258 20410870 0.98
duckdb / parquet (1.024x ➖, 0↑ 0↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
clickbench_q00/duckdb:parquet 23807384 23712728 1.00
clickbench_q01/duckdb:parquet 29097091 28980523 1.00
clickbench_q02/duckdb:parquet 50257313 49474826 1.02
clickbench_q03/duckdb:parquet 40673671 39926486 1.02
clickbench_q04/duckdb:parquet 208155291 201739827 1.03
clickbench_q05/duckdb:parquet 269902372 256116713 1.05
clickbench_q06/duckdb:parquet 47811452 47341536 1.01
clickbench_q07/duckdb:parquet 31584916 31030445 1.02
clickbench_q08/duckdb:parquet 287508647 270623620 1.06
clickbench_q09/duckdb:parquet 415515951 396771291 1.05
clickbench_q10/duckdb:parquet 84468059 81504089 1.04
clickbench_q11/duckdb:parquet 101693443 100140767 1.02
clickbench_q12/duckdb:parquet 285181035 278842957 1.02
clickbench_q13/duckdb:parquet 493559890 470489812 1.05
clickbench_q14/duckdb:parquet 325541559 314709792 1.03
clickbench_q15/duckdb:parquet 264728171 253712818 1.04
clickbench_q16/duckdb:parquet 622250498 589824372 1.05
clickbench_q17/duckdb:parquet 519040118 495406919 1.05
clickbench_q18/duckdb:parquet 1096588300 1030098854 1.06
clickbench_q19/duckdb:parquet 28321110 26624078 1.06
clickbench_q20/duckdb:parquet 424013550 412546954 1.03
clickbench_q21/duckdb:parquet 548963658 529645187 1.04
clickbench_q22/duckdb:parquet 951305360 920525774 1.03
clickbench_q23/duckdb:parquet 277122661 268848262 1.03
clickbench_q24/duckdb:parquet 72618636 69847663 1.04
clickbench_q25/duckdb:parquet 164101768 162213800 1.01
clickbench_q26/duckdb:parquet 54720060 56910270 0.96
clickbench_q27/duckdb:parquet 656495025 645092636 1.02
clickbench_q28/duckdb:parquet 4976655974 4883003115 1.02
clickbench_q29/duckdb:parquet 42322075 42042342 1.01
clickbench_q30/duckdb:parquet 317566519 311127931 1.02
clickbench_q31/duckdb:parquet 390199831 376506646 1.04
clickbench_q32/duckdb:parquet 1154509986 1113554082 1.04
clickbench_q33/duckdb:parquet 1163612622 1115130761 1.04
clickbench_q34/duckdb:parquet 1209738930 1202450688 1.01
clickbench_q35/duckdb:parquet 379029343 375591393 1.01
clickbench_q36/duckdb:parquet 48144959 45336005 1.06
clickbench_q37/duckdb:parquet 33479615 35118747 0.95
clickbench_q38/duckdb:parquet 36438424 37962128 0.96
clickbench_q39/duckdb:parquet 87320251 86622326 1.01
clickbench_q40/duckdb:parquet 20698159 20368052 1.02
clickbench_q41/duckdb:parquet 20475286 20393829 1.00
clickbench_q42/duckdb:parquet 22411408 22236469 1.01
duckdb / duckdb (1.040x ➖, 0↑ 1↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
clickbench_q00/duckdb:duckdb 18265861 17578699 1.04
clickbench_q01/duckdb:duckdb 36000431 34838241 1.03
clickbench_q02/duckdb:duckdb 53201201 51865462 1.03
clickbench_q03/duckdb:duckdb 58459783 55842648 1.05
clickbench_q04/duckdb:duckdb 229690224 212055588 1.08
clickbench_q05/duckdb:duckdb 303088755 283593785 1.07
clickbench_q06/duckdb:duckdb 36331060 35791195 1.02
clickbench_q07/duckdb:duckdb 36752563 35535510 1.03
clickbench_q08/duckdb:duckdb 279035852 275595510 1.01
clickbench_q09/duckdb:duckdb 402518091 392752093 1.02
clickbench_q10/duckdb:duckdb 119593173 116803266 1.02
clickbench_q11/duckdb:duckdb 129577286 125875703 1.03
clickbench_q12/duckdb:duckdb 266512493 262496163 1.02
clickbench_q13/duckdb:duckdb 459799075 444129268 1.04
clickbench_q14/duckdb:duckdb 294861163 286237489 1.03
clickbench_q15/duckdb:duckdb 245772517 242116073 1.02
clickbench_q16/duckdb:duckdb 589518283 562470876 1.05
clickbench_q17/duckdb:duckdb 495129744 476940020 1.04
clickbench_q18/duckdb:duckdb 1038999382 1024199417 1.01
clickbench_q19/duckdb:duckdb 35167119 35017320 1.00
clickbench_q20/duckdb:duckdb 480900362 457960962 1.05
clickbench_q21/duckdb:duckdb 486456539 487891121 1.00
clickbench_q22/duckdb:duckdb 565435844 542330345 1.04
clickbench_q23/duckdb:duckdb 264176081 249179545 1.06
clickbench_q24/duckdb:duckdb 62207462 61701963 1.01
clickbench_q25/duckdb:duckdb 151053828 150248907 1.01
clickbench_q26/duckdb:duckdb 63507430 61930625 1.03
clickbench_q27/duckdb:duckdb 567782046 545799191 1.04
clickbench_q28/duckdb:duckdb 4626736511 4511175014 1.03
clickbench_q29/duckdb:duckdb 51910362 50571833 1.03
clickbench_q30/duckdb:duckdb 284730946 278141919 1.02
clickbench_q31/duckdb:duckdb 378406673 364849256 1.04
clickbench_q32/duckdb:duckdb 1156820896 1114880645 1.04
clickbench_q33/duckdb:duckdb 1199260375 1114966436 1.08
clickbench_q34/duckdb:duckdb 1255639111 1179221895 1.06
clickbench_q35/duckdb:duckdb 311289626 298231059 1.04
clickbench_q36/duckdb:duckdb 🚨 59760431 48589377 1.23
clickbench_q37/duckdb:duckdb 29324309 28908793 1.01
clickbench_q38/duckdb:duckdb 35281356 32722934 1.08
clickbench_q39/duckdb:duckdb 87236806 79459567 1.10
clickbench_q40/duckdb:duckdb 28874086 27870108 1.04
clickbench_q41/duckdb:duckdb 27861230 27518075 1.01
clickbench_q42/duckdb:duckdb 31336492 29504666 1.06

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 +8.2% +3.1% +4.9% +759.7% ➖ noise
0 duckdb:duckdb +3.9% +3.1% +0.7% +276.9% ➖ noise
0 duckdb:vortex-file-compressed +1.4% +3.1% -1.6% +479.5% ➖ noise
1 datafusion:vortex-file-compressed -3.4% +1.5% -4.8% +22.9% ➖ noise
1 duckdb:duckdb +3.3% +1.5% +1.8% +42.7% ➖ noise
1 duckdb:vortex-file-compressed +2.6% +1.5% +1.1% +23.8% ➖ noise
2 datafusion:vortex-file-compressed -0.1% -0.4% +0.3% +17.6% ➖ noise
2 duckdb:duckdb +2.6% -0.4% +3.0% +21.1% ➖ noise
2 duckdb:vortex-file-compressed +3.7% -0.4% +4.1% +10.0% ➖ noise
3 datafusion:vortex-file-compressed +3.1% +2.5% +0.6% +138.6% ➖ noise
3 duckdb:duckdb +4.7% +2.5% +2.2% +43.5% ➖ noise
3 duckdb:vortex-file-compressed +3.8% +2.5% +1.3% +68.3% ➖ noise
4 datafusion:vortex-file-compressed +7.5% +1.7% +5.7% +12.2% ➖ noise
4 duckdb:duckdb +8.3% +1.7% +6.5% +10.0% ➖ noise
4 duckdb:vortex-file-compressed +5.9% +1.7% +4.2% +10.0% ➖ noise
5 datafusion:vortex-file-compressed +7.7% +7.4% +0.2% +10.0% ➖ noise
5 duckdb:duckdb +6.9% +7.4% -0.5% +10.0% ➖ noise
5 duckdb:vortex-file-compressed +3.8% +7.4% -3.4% +10.0% ➖ noise
6 datafusion:vortex-file-compressed -1.1% +1.2% -2.2% +38.5% ➖ noise
6 duckdb:duckdb +1.5% +1.2% +0.3% +14.4% ➖ noise
6 duckdb:vortex-file-compressed +7.7% +1.2% +6.5% +21.4% ➖ noise
7 datafusion:vortex-file-compressed +10.9% +2.7% +7.9% +38.9% ➖ noise
7 duckdb:duckdb +3.4% +2.7% +0.7% +10.0% ➖ noise
7 duckdb:vortex-file-compressed +2.8% +2.7% +0.0% +10.0% ➖ noise
8 datafusion:vortex-file-compressed +7.4% +6.2% +1.1% +10.0% ➖ noise
8 duckdb:duckdb +1.2% +6.2% -4.7% +10.0% ➖ noise
8 duckdb:vortex-file-compressed +3.0% +6.2% -3.0% +10.0% ➖ noise
9 datafusion:vortex-file-compressed +7.9% +6.4% +1.4% +10.0% ➖ noise
9 duckdb:duckdb +2.5% +6.4% -3.7% +10.0% ➖ noise
9 duckdb:vortex-file-compressed +4.0% +6.4% -2.2% +10.0% ➖ noise
10 datafusion:vortex-file-compressed +3.5% +3.6% -0.1% +11.3% ➖ noise
10 duckdb:duckdb +2.4% +3.6% -1.2% +10.0% ➖ noise
10 duckdb:vortex-file-compressed +3.7% +3.6% +0.1% +11.3% ➖ noise
11 datafusion:vortex-file-compressed +2.9% +3.8% -0.9% +10.0% ➖ noise
11 duckdb:duckdb +2.9% +3.8% -0.8% +10.0% ➖ noise
11 duckdb:vortex-file-compressed +2.3% +3.8% -1.4% +10.0% ➖ noise
12 datafusion:vortex-file-compressed +8.8% +4.3% +4.3% +10.0% ➖ noise
12 duckdb:duckdb +1.5% +4.3% -2.6% +10.0% ➖ noise
12 duckdb:vortex-file-compressed +3.6% +4.3% -0.7% +10.0% ➖ noise
13 datafusion:vortex-file-compressed +5.9% +6.1% -0.2% +10.0% ➖ noise
13 duckdb:duckdb +3.5% +6.1% -2.4% +10.0% ➖ noise
13 duckdb:vortex-file-compressed +4.3% +6.1% -1.7% +10.0% ➖ noise
14 datafusion:vortex-file-compressed +4.7% +4.5% +0.2% +10.0% ➖ noise
14 duckdb:duckdb +3.0% +4.5% -1.4% +10.0% ➖ noise
14 duckdb:vortex-file-compressed +5.3% +4.5% +0.8% +10.0% ➖ noise
15 datafusion:vortex-file-compressed +4.9% +4.4% +0.5% +10.0% ➖ noise
15 duckdb:duckdb +1.5% +4.4% -2.8% +10.0% ➖ noise
15 duckdb:vortex-file-compressed -1.3% +4.4% -5.5% +10.0% ➖ noise
16 datafusion:vortex-file-compressed +10.3% +8.5% +1.7% +10.0% ➖ noise
16 duckdb:duckdb +4.8% +8.5% -3.4% +10.0% ➖ noise
16 duckdb:vortex-file-compressed +4.1% +8.5% -4.1% +10.0% ➖ noise
17 datafusion:vortex-file-compressed +7.3% +6.1% +1.2% +10.0% ➖ noise
17 duckdb:duckdb +3.8% +6.1% -2.1% +10.0% ➖ noise
17 duckdb:vortex-file-compressed +8.7% +6.1% +2.5% +10.0% ➖ noise
18 datafusion:vortex-file-compressed +3.2% +6.9% -3.4% +10.0% ➖ noise
18 duckdb:duckdb +1.4% +6.9% -5.1% +10.0% ➖ noise
18 duckdb:vortex-file-compressed +3.2% +6.9% -3.4% +10.0% ➖ noise
19 datafusion:vortex-file-compressed -1.2% +3.1% -4.2% +45.9% ➖ noise
19 duckdb:duckdb +0.4% +3.1% -2.6% +25.7% ➖ noise
19 duckdb:vortex-file-compressed -0.2% +3.1% -3.2% +31.0% ➖ noise
20 datafusion:vortex-file-compressed +1.4% +4.0% -2.5% +196.3% ➖ noise
20 duckdb:duckdb +5.0% +4.0% +0.9% +71.5% ➖ noise
20 duckdb:vortex-file-compressed -1.5% +4.0% -5.3% +42.1% ➖ noise
21 datafusion:vortex-file-compressed +4.0% +4.5% -0.5% +10.0% ➖ noise
21 duckdb:duckdb -0.3% +4.5% -4.6% +10.0% ➖ noise
21 duckdb:vortex-file-compressed +7.3% +4.5% +2.7% +11.7% ➖ noise
22 datafusion:vortex-file-compressed +4.4% +5.8% -1.2% +11.0% ➖ noise
22 duckdb:duckdb +4.3% +5.8% -1.4% +34.4% ➖ noise
22 duckdb:vortex-file-compressed +19.9% +5.8% +13.4% +23.4% ➖ noise
23 datafusion:vortex-file-compressed -1.6% +4.2% -5.6% +54.4% ➖ noise
23 duckdb:duckdb +6.0% +4.2% +1.7% +10.0% ➖ noise
23 duckdb:vortex-file-compressed +5.3% +4.2% +1.0% +30.8% ➖ noise
24 datafusion:vortex-file-compressed +0.4% +4.5% -4.0% +29.2% ➖ noise
24 duckdb:duckdb +0.8% +4.5% -3.6% +33.4% ➖ noise
24 duckdb:vortex-file-compressed +7.2% +4.5% +2.6% +27.5% ➖ noise
25 datafusion:vortex-file-compressed +4.6% +1.5% +3.1% +10.0% ➖ noise
25 duckdb:duckdb +0.5% +1.5% -0.9% +10.0% ➖ noise
25 duckdb:vortex-file-compressed -0.3% +1.5% -1.8% +15.8% ➖ noise
26 datafusion:vortex-file-compressed +12.3% -0.6% +12.9% +12.2% 🚨 regression
26 duckdb:duckdb +2.5% -0.6% +3.2% +10.0% ➖ noise
26 duckdb:vortex-file-compressed -10.4% -0.6% -9.8% +14.0% ➖ noise
27 datafusion:vortex-file-compressed +5.5% +2.8% +2.6% +10.0% ➖ noise
27 duckdb:duckdb +4.0% +2.8% +1.2% +10.0% ➖ noise
27 duckdb:vortex-file-compressed +1.6% +2.8% -1.1% +10.0% ➖ noise
28 datafusion:vortex-file-compressed +2.7% +2.7% +0.0% +10.0% ➖ noise
28 duckdb:duckdb +2.6% +2.7% -0.1% +10.0% ➖ noise
28 duckdb:vortex-file-compressed +2.1% +2.7% -0.5% +12.3% ➖ noise
29 datafusion:vortex-file-compressed +2.5% +1.2% +1.2% +10.0% ➖ noise
29 duckdb:duckdb +2.6% +1.2% +1.4% +10.0% ➖ noise
29 duckdb:vortex-file-compressed -0.4% +1.2% -1.6% +54.9% ➖ noise
30 datafusion:vortex-file-compressed +10.3% +3.0% +7.1% +10.2% ➖ noise
30 duckdb:duckdb +2.4% +3.0% -0.6% +10.0% ➖ noise
30 duckdb:vortex-file-compressed -1.2% +3.0% -4.1% +10.0% ➖ noise
31 datafusion:vortex-file-compressed +4.4% +3.4% +1.0% +10.0% ➖ noise
31 duckdb:duckdb +3.7% +3.4% +0.3% +10.0% ➖ noise
31 duckdb:vortex-file-compressed -0.1% +3.4% -3.4% +10.0% ➖ noise
32 datafusion:vortex-file-compressed +8.4% +9.1% -0.6% +10.0% ➖ noise
32 duckdb:duckdb +3.8% +9.1% -4.9% +10.0% ➖ noise
32 duckdb:vortex-file-compressed +2.9% +9.1% -5.7% +10.0% ➖ noise
33 datafusion:vortex-file-compressed +5.0% +5.2% -0.2% +10.0% ➖ noise
33 duckdb:duckdb +7.6% +5.2% +2.3% +10.0% ➖ noise
33 duckdb:vortex-file-compressed +0.6% +5.2% -4.3% +10.0% ➖ noise
34 datafusion:vortex-file-compressed +7.9% +2.0% +5.8% +10.0% ➖ noise
34 duckdb:duckdb +6.5% +2.0% +4.4% +10.0% ➖ noise
34 duckdb:vortex-file-compressed +5.8% +2.0% +3.7% +10.0% ➖ noise
35 datafusion:vortex-file-compressed +6.8% +3.1% +3.6% +10.0% ➖ noise
35 duckdb:duckdb +4.4% +3.1% +1.3% +10.0% ➖ noise
35 duckdb:vortex-file-compressed +4.1% +3.1% +1.0% +10.0% ➖ noise
36 datafusion:vortex-file-compressed +0.4% +6.2% -5.5% +11.8% ➖ noise
36 duckdb:duckdb +23.0% +6.2% +15.8% +20.2% ➖ noise
36 duckdb:vortex-file-compressed -3.8% +6.2% -9.4% +10.0% ✅ faster
37 datafusion:vortex-file-compressed +12.4% +1.3% +10.9% +17.7% ➖ noise
37 duckdb:duckdb +1.4% +1.3% +0.1% +10.0% ➖ noise
37 duckdb:vortex-file-compressed +2.9% +1.3% +1.5% +13.1% ➖ noise
38 datafusion:vortex-file-compressed +2.1% +0.6% +1.5% +17.9% ➖ noise
38 duckdb:duckdb +7.8% +0.6% +7.2% +10.0% ➖ noise
38 duckdb:vortex-file-compressed +3.7% +0.6% +3.1% +11.1% ➖ noise
39 datafusion:vortex-file-compressed +6.3% +2.8% +3.4% +10.8% ➖ noise
39 duckdb:duckdb +9.8% +2.8% +6.8% +19.8% ➖ noise
39 duckdb:vortex-file-compressed +3.3% +2.8% +0.5% +10.4% ➖ noise
40 datafusion:vortex-file-compressed +17.7% +2.7% +14.7% +15.8% ➖ noise
40 duckdb:duckdb +3.6% +2.7% +0.9% +10.0% ➖ noise
40 duckdb:vortex-file-compressed -9.4% +2.7% -11.8% +17.6% ➖ noise
41 datafusion:vortex-file-compressed +5.4% +2.7% +2.7% +26.6% ➖ noise
41 duckdb:duckdb +1.2% +2.7% -1.4% +10.0% ➖ noise
41 duckdb:vortex-file-compressed +3.6% +2.7% +0.9% +10.2% ➖ noise
42 datafusion:vortex-file-compressed +3.5% +3.0% +0.5% +17.0% ➖ noise
42 duckdb:duckdb +6.2% +3.0% +3.1% +12.3% ➖ noise
42 duckdb:vortex-file-compressed -1.6% +3.0% -4.5% +15.1% ➖ noise

@github-actions
Copy link
Copy Markdown
Contributor

Benchmarks: Appian on NVME

Verdict: No clear signal (low confidence)
Attributed Vortex impact: +1.1%
Engines: DataFusion No clear signal (-0.0%, low confidence) · DuckDB No clear signal (+1.1%, low confidence)
Vortex (geomean): 0.943x ➖
Parquet (geomean): 0.938x ➖
Shifts: Parquet (control) -6.2% · 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.928x ➖, 1↑ 0↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
appian_q01/datafusion:vortex-file-compressed 128174182 141882806 0.90
appian_q02/datafusion:vortex-file-compressed 660874886 710437248 0.93
appian_q03/datafusion:vortex-file-compressed 360354523 386995292 0.93
appian_q04/datafusion:vortex-file-compressed 27702019677 29439584924 0.94
appian_q05/datafusion:vortex-file-compressed 🚀 263451569 296119573 0.89
appian_q06/datafusion:vortex-file-compressed 423180615 445199812 0.95
appian_q07/datafusion:vortex-file-compressed 456054923 483620039 0.94
appian_q08/datafusion:vortex-file-compressed 1856587335 1976033074 0.94
datafusion / parquet (0.928x ➖, 1↑ 0↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
appian_q01/datafusion:parquet 🚀 128537107 147466459 0.87
appian_q02/datafusion:parquet 674942311 724550327 0.93
appian_q03/datafusion:parquet 355652382 384020728 0.93
appian_q04/datafusion:parquet 27694762043 29527444526 0.94
appian_q05/datafusion:parquet 297158244 314936974 0.94
appian_q06/datafusion:parquet 435581380 468097514 0.93
appian_q07/datafusion:parquet 461499147 489021958 0.94
appian_q08/datafusion:parquet 1856196551 1966123841 0.94
duckdb / vortex-file-compressed (0.959x ➖, 0↑ 0↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
appian_q01/duckdb:vortex-file-compressed 192722600 203992258 0.94
appian_q02/duckdb:vortex-file-compressed 612032268 645405898 0.95
appian_q03/duckdb:vortex-file-compressed 263659541 276599192 0.95
appian_q04/duckdb:vortex-file-compressed 1321032065 1355195501 0.97
appian_q05/duckdb:vortex-file-compressed 290896717 307281185 0.95
appian_q06/duckdb:vortex-file-compressed 805395131 810285895 0.99
appian_q07/duckdb:vortex-file-compressed 334852898 350350418 0.96
appian_q08/duckdb:vortex-file-compressed 1275100250 1336851452 0.95
duckdb / parquet (0.948x ➖, 0↑ 0↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
appian_q01/duckdb:parquet 200795638 215595569 0.93
appian_q02/duckdb:parquet 601549468 645617572 0.93
appian_q03/duckdb:parquet 290103101 304359378 0.95
appian_q04/duckdb:parquet 1326324007 1381138884 0.96
appian_q05/duckdb:parquet 307875155 335545200 0.92
appian_q06/duckdb:parquet 785825062 796771431 0.99
appian_q07/duckdb:parquet 361416574 381536193 0.95
appian_q08/duckdb:parquet 1271568310 1328387714 0.96
duckdb / duckdb (0.957x ➖, 0↑ 0↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
appian_q01/duckdb:duckdb 169755800 182437330 0.93
appian_q02/duckdb:duckdb 545530084 573492198 0.95
appian_q03/duckdb:duckdb 384573352 407230045 0.94
appian_q04/duckdb:duckdb 1297271959 1343456495 0.97
appian_q05/duckdb:duckdb 284826572 298007648 0.96
appian_q06/duckdb:duckdb 787071439 792789105 0.99
appian_q07/duckdb:duckdb 328012709 341132783 0.96
appian_q08/duckdb:duckdb 1215307253 1270903630 0.96

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 -9.7% -9.9% +0.3% +10.0% ➖ noise
1 duckdb:duckdb -7.0% -9.9% +3.3% +10.0% ➖ noise
1 duckdb:vortex-file-compressed -5.5% -9.9% +4.9% +10.0% ➖ noise
2 datafusion:vortex-file-compressed -7.0% -6.8% -0.2% +10.0% ➖ noise
2 duckdb:duckdb -4.9% -6.8% +2.1% +10.0% ➖ noise
2 duckdb:vortex-file-compressed -5.2% -6.8% +1.8% +10.0% ➖ noise
3 datafusion:vortex-file-compressed -6.9% -6.0% -0.9% +10.0% ➖ noise
3 duckdb:duckdb -5.6% -6.0% +0.5% +10.0% ➖ noise
3 duckdb:vortex-file-compressed -4.7% -6.0% +1.5% +10.0% ➖ noise
4 datafusion:vortex-file-compressed -5.9% -5.1% -0.9% +10.0% ➖ noise
4 duckdb:duckdb -3.4% -5.1% +1.7% +10.0% ➖ noise
4 duckdb:vortex-file-compressed -2.5% -5.1% +2.7% +10.0% ➖ noise
5 datafusion:vortex-file-compressed -11.0% -7.0% -4.4% +13.0% ➖ noise
5 duckdb:duckdb -4.4% -7.0% +2.7% +10.0% ➖ noise
5 duckdb:vortex-file-compressed -5.3% -7.0% +1.7% +10.0% ➖ noise
6 datafusion:vortex-file-compressed -4.9% -4.2% -0.8% +10.0% ➖ noise
6 duckdb:duckdb -0.7% -4.2% +3.6% +10.0% ➖ noise
6 duckdb:vortex-file-compressed -0.6% -4.2% +3.8% +10.0% ➖ noise
7 datafusion:vortex-file-compressed -5.7% -5.5% -0.3% +10.0% ➖ noise
7 duckdb:duckdb -3.8% -5.5% +1.7% +10.0% ➖ noise
7 duckdb:vortex-file-compressed -4.4% -5.5% +1.1% +10.0% ➖ noise
8 datafusion:vortex-file-compressed -6.0% -4.9% -1.2% +10.0% ➖ noise
8 duckdb:duckdb -4.4% -4.9% +0.6% +10.0% ➖ noise
8 duckdb:vortex-file-compressed -4.6% -4.9% +0.3% +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: -1.3%
Engines: DataFusion No clear signal (-6.2%, environment too noisy confidence) · DuckDB No clear signal (+4.0%, environment too noisy confidence)
Vortex (geomean): 1.039x ➖
Parquet (geomean): 1.052x ➖
Shifts: Parquet (control) +5.2% · Median polish +3.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 (1.065x ➖, 1↑ 4↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/datafusion:vortex-file-compressed 308437057 313904772 0.98
tpch_q02/datafusion:vortex-file-compressed 🚨 779166681 473932514 1.64
tpch_q03/datafusion:vortex-file-compressed 655230876 551554085 1.19
tpch_q04/datafusion:vortex-file-compressed 332166407 275723025 1.20
tpch_q05/datafusion:vortex-file-compressed 573777849 605723966 0.95
tpch_q06/datafusion:vortex-file-compressed 382893844 341641882 1.12
tpch_q07/datafusion:vortex-file-compressed 451483074 623756935 0.72
tpch_q08/datafusion:vortex-file-compressed 934008599 807021517 1.16
tpch_q09/datafusion:vortex-file-compressed 🚨 867994029 602733530 1.44
tpch_q10/datafusion:vortex-file-compressed 🚨 1058718001 658200454 1.61
tpch_q11/datafusion:vortex-file-compressed 🚨 541071568 360188672 1.50
tpch_q12/datafusion:vortex-file-compressed 613804516 472803006 1.30
tpch_q13/datafusion:vortex-file-compressed 215525132 237048415 0.91
tpch_q14/datafusion:vortex-file-compressed 347864277 368590231 0.94
tpch_q15/datafusion:vortex-file-compressed 602202686 606405264 0.99
tpch_q16/datafusion:vortex-file-compressed 242136411 311132824 0.78
tpch_q17/datafusion:vortex-file-compressed 590364947 678019641 0.87
tpch_q18/datafusion:vortex-file-compressed 🚀 506091378 723167616 0.70
tpch_q19/datafusion:vortex-file-compressed 688892832 724150957 0.95
tpch_q20/datafusion:vortex-file-compressed 521120183 572333466 0.91
tpch_q21/datafusion:vortex-file-compressed 839757281 854353802 0.98
tpch_q22/datafusion:vortex-file-compressed 169404546 135485484 1.25
datafusion / vortex-compact (1.055x ➖, 1↑ 4↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/datafusion:vortex-compact 282267825 250387248 1.13
tpch_q02/datafusion:vortex-compact 🚨 566173561 433336411 1.31
tpch_q03/datafusion:vortex-compact 405149411 396088542 1.02
tpch_q04/datafusion:vortex-compact 334653238 263894133 1.27
tpch_q05/datafusion:vortex-compact 551276508 637127866 0.87
tpch_q06/datafusion:vortex-compact 417900725 585419385 0.71
tpch_q07/datafusion:vortex-compact 513622498 654924708 0.78
tpch_q08/datafusion:vortex-compact 830574723 698513948 1.19
tpch_q09/datafusion:vortex-compact 509485220 623363839 0.82
tpch_q10/datafusion:vortex-compact 🚨 851854752 546201370 1.56
tpch_q11/datafusion:vortex-compact 414441043 345643170 1.20
tpch_q12/datafusion:vortex-compact 557744171 453168529 1.23
tpch_q13/datafusion:vortex-compact 199042956 246211346 0.81
tpch_q14/datafusion:vortex-compact 432571169 398875448 1.08
tpch_q15/datafusion:vortex-compact 644768629 592728689 1.09
tpch_q16/datafusion:vortex-compact 260380930 246705329 1.06
tpch_q17/datafusion:vortex-compact 411911299 531808764 0.77
tpch_q18/datafusion:vortex-compact 🚀 350841900 523335163 0.67
tpch_q19/datafusion:vortex-compact 612530065 717771760 0.85
tpch_q20/datafusion:vortex-compact 515609517 551574634 0.93
tpch_q21/datafusion:vortex-compact 🚨 944393117 717857288 1.32
tpch_q22/datafusion:vortex-compact 🚨 296024899 104116008 2.84
datafusion / parquet (1.130x ➖, 0↑ 8↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/datafusion:parquet 240890260 297271561 0.81
tpch_q02/datafusion:parquet 🚨 703134333 479487193 1.47
tpch_q03/datafusion:parquet 527940448 493298200 1.07
tpch_q04/datafusion:parquet 🚨 287276608 208962323 1.37
tpch_q05/datafusion:parquet 598001085 629412120 0.95
tpch_q06/datafusion:parquet 🚨 209424522 156412590 1.34
tpch_q07/datafusion:parquet 🚨 736998057 494041323 1.49
tpch_q08/datafusion:parquet 🚨 938540161 585207173 1.60
tpch_q09/datafusion:parquet 🚨 772877860 486268070 1.59
tpch_q10/datafusion:parquet 634183392 669302760 0.95
tpch_q11/datafusion:parquet 329098517 345931402 0.95
tpch_q12/datafusion:parquet 283637744 227291420 1.25
tpch_q13/datafusion:parquet 428283807 433294903 0.99
tpch_q14/datafusion:parquet 277200882 236180130 1.17
tpch_q15/datafusion:parquet 456334809 389963766 1.17
tpch_q16/datafusion:parquet 176103998 246241123 0.72
tpch_q17/datafusion:parquet 🚨 551797301 400207232 1.38
tpch_q18/datafusion:parquet 🚨 634440435 436949806 1.45
tpch_q19/datafusion:parquet 426932284 398944436 1.07
tpch_q20/datafusion:parquet 426776623 451699962 0.94
tpch_q21/datafusion:parquet 568178681 678937902 0.84
tpch_q22/datafusion:parquet 153998590 163243760 0.94
duckdb / vortex-file-compressed (0.981x ➖, 0↑ 0↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/duckdb:vortex-file-compressed 308155878 356056488 0.87
tpch_q02/duckdb:vortex-file-compressed 1011792395 1132743386 0.89
tpch_q03/duckdb:vortex-file-compressed 851919140 774677834 1.10
tpch_q04/duckdb:vortex-file-compressed 480308854 531260379 0.90
tpch_q05/duckdb:vortex-file-compressed 883531811 836595604 1.06
tpch_q06/duckdb:vortex-file-compressed 356088864 373108572 0.95
tpch_q07/duckdb:vortex-file-compressed 1078789836 1032084533 1.05
tpch_q08/duckdb:vortex-file-compressed 1201210815 1025866420 1.17
tpch_q09/duckdb:vortex-file-compressed 983551629 1072236782 0.92
tpch_q10/duckdb:vortex-file-compressed 802147552 790090015 1.02
tpch_q11/duckdb:vortex-file-compressed 517603943 508022492 1.02
tpch_q12/duckdb:vortex-file-compressed 691792033 667783273 1.04
tpch_q13/duckdb:vortex-file-compressed 457578753 396479062 1.15
tpch_q14/duckdb:vortex-file-compressed 463675441 405321097 1.14
tpch_q15/duckdb:vortex-file-compressed 339713066 370262018 0.92
tpch_q16/duckdb:vortex-file-compressed 349474326 357650999 0.98
tpch_q17/duckdb:vortex-file-compressed 858142037 814623283 1.05
tpch_q18/duckdb:vortex-file-compressed 700870948 631261639 1.11
tpch_q19/duckdb:vortex-file-compressed 485371257 611166669 0.79
tpch_q20/duckdb:vortex-file-compressed 811124012 995622803 0.81
tpch_q21/duckdb:vortex-file-compressed 1143488607 1134420241 1.01
tpch_q22/duckdb:vortex-file-compressed 288125291 370405308 0.78
duckdb / vortex-compact (1.058x ➖, 0↑ 0↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/duckdb:vortex-compact 307777757 299462520 1.03
tpch_q02/duckdb:vortex-compact 1031828711 955238532 1.08
tpch_q03/duckdb:vortex-compact 656206713 656574155 1.00
tpch_q04/duckdb:vortex-compact 438870774 459717917 0.95
tpch_q05/duckdb:vortex-compact 929609383 878311800 1.06
tpch_q06/duckdb:vortex-compact 380683093 338920033 1.12
tpch_q07/duckdb:vortex-compact 992649648 1014331827 0.98
tpch_q08/duckdb:vortex-compact 1119297810 1016938210 1.10
tpch_q09/duckdb:vortex-compact 1027830334 1018942163 1.01
tpch_q10/duckdb:vortex-compact 762475047 736601621 1.04
tpch_q11/duckdb:vortex-compact 519208192 510193019 1.02
tpch_q12/duckdb:vortex-compact 781877373 667140992 1.17
tpch_q13/duckdb:vortex-compact 429127049 452612504 0.95
tpch_q14/duckdb:vortex-compact 421240166 400495314 1.05
tpch_q15/duckdb:vortex-compact 347628103 290542540 1.20
tpch_q16/duckdb:vortex-compact 328746548 312354252 1.05
tpch_q17/duckdb:vortex-compact 700872227 642844347 1.09
tpch_q18/duckdb:vortex-compact 541701496 570071230 0.95
tpch_q19/duckdb:vortex-compact 590040323 465404655 1.27
tpch_q20/duckdb:vortex-compact 886399670 794398645 1.12
tpch_q21/duckdb:vortex-compact 1025530287 1028284032 1.00
tpch_q22/duckdb:vortex-compact 320224709 284869025 1.12
duckdb / parquet (0.980x ➖, 0↑ 0↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/duckdb:parquet 585017164 551092469 1.06
tpch_q02/duckdb:parquet 1130498885 1309746454 0.86
tpch_q03/duckdb:parquet 1104849568 1241898579 0.89
tpch_q04/duckdb:parquet 714838762 758580162 0.94
tpch_q05/duckdb:parquet 1400270865 1537558059 0.91
tpch_q06/duckdb:parquet 546130859 519552238 1.05
tpch_q07/duckdb:parquet 1348026585 1414837158 0.95
tpch_q08/duckdb:parquet 1899785218 1878971464 1.01
tpch_q09/duckdb:parquet 1551458408 1522252386 1.02
tpch_q10/duckdb:parquet 1373527179 1357098463 1.01
tpch_q11/duckdb:parquet 936064371 794102329 1.18
tpch_q12/duckdb:parquet 868916417 786172521 1.11
tpch_q13/duckdb:parquet 1043005287 968721315 1.08
tpch_q14/duckdb:parquet 893297146 833822368 1.07
tpch_q15/duckdb:parquet 599279499 730056239 0.82
tpch_q16/duckdb:parquet 684905077 701719380 0.98
tpch_q17/duckdb:parquet 861645069 942648595 0.91
tpch_q18/duckdb:parquet 906240405 1083397786 0.84
tpch_q19/duckdb:parquet 849825371 840642827 1.01
tpch_q20/duckdb:parquet 1267244573 1310823406 0.97
tpch_q21/duckdb:parquet 1183810768 1297959961 0.91
tpch_q22/duckdb:parquet 684456576 641563098 1.07
Full attributed analysis
Query Config Raw Δ Control Δ Attributed α Noise floor Significant?
1 datafusion:vortex-compact +12.7% -7.3% +21.5% +72.4% ➖ noise
1 datafusion:vortex-file-compressed -1.7% -7.3% +5.9% +71.2% ➖ noise
1 duckdb:vortex-compact +2.8% -7.3% +10.8% +56.6% ➖ noise
1 duckdb:vortex-file-compressed -13.5% -7.3% -6.7% +52.8% ➖ noise
2 datafusion:vortex-compact +30.7% +12.5% +16.1% +34.8% ➖ noise
2 datafusion:vortex-file-compressed +64.4% +12.5% +46.1% +37.2% 🚨 regression
2 duckdb:vortex-compact +8.0% +12.5% -4.0% +34.8% ➖ noise
2 duckdb:vortex-file-compressed -10.7% +12.5% -20.6% +34.8% ➖ noise
3 datafusion:vortex-compact +2.3% -2.4% +4.8% +47.0% ➖ noise
3 datafusion:vortex-file-compressed +18.8% -2.4% +21.7% +49.3% ➖ noise
3 duckdb:vortex-compact -0.1% -2.4% +2.4% +39.0% ➖ noise
3 duckdb:vortex-file-compressed +10.0% -2.4% +12.7% +34.8% ➖ noise
4 datafusion:vortex-compact +26.8% +13.8% +11.4% +39.4% ➖ noise
4 datafusion:vortex-file-compressed +20.5% +13.8% +5.8% +34.8% ➖ noise
4 duckdb:vortex-compact -4.5% +13.8% -16.1% +34.8% ➖ noise
4 duckdb:vortex-file-compressed -9.6% +13.8% -20.6% +35.1% ➖ noise
5 datafusion:vortex-compact -13.5% -7.0% -7.0% +36.6% ➖ noise
5 datafusion:vortex-file-compressed -5.3% -7.0% +1.8% +34.8% ➖ noise
5 duckdb:vortex-compact +5.8% -7.0% +13.8% +34.8% ➖ noise
5 duckdb:vortex-file-compressed +5.6% -7.0% +13.5% +34.8% ➖ noise
6 datafusion:vortex-compact -28.6% +18.6% -39.8% +39.5% ✅ faster
6 datafusion:vortex-file-compressed +12.1% +18.6% -5.5% +34.8% ➖ noise
6 duckdb:vortex-compact +12.3% +18.6% -5.3% +34.8% ➖ noise
6 duckdb:vortex-file-compressed -4.6% +18.6% -19.6% +34.8% ➖ noise
7 datafusion:vortex-compact -21.6% +19.2% -34.2% +36.8% ✅ faster
7 datafusion:vortex-file-compressed -27.6% +19.2% -39.3% +34.8% ✅ faster
7 duckdb:vortex-compact -2.1% +19.2% -17.9% +34.8% ➖ noise
7 duckdb:vortex-file-compressed +4.5% +19.2% -12.3% +34.8% ➖ noise
8 datafusion:vortex-compact +18.9% +27.3% -6.6% +34.8% ➖ noise
8 datafusion:vortex-file-compressed +15.7% +27.3% -9.1% +52.3% ➖ noise
8 duckdb:vortex-compact +10.1% +27.3% -13.6% +34.8% ➖ noise
8 duckdb:vortex-file-compressed +17.1% +27.3% -8.0% +34.8% ➖ noise
9 datafusion:vortex-compact -18.3% +27.3% -35.8% +34.8% ✅ faster
9 datafusion:vortex-file-compressed +44.0% +27.3% +13.1% +34.8% ➖ noise
9 duckdb:vortex-compact +0.9% +27.3% -20.7% +34.8% ➖ noise
9 duckdb:vortex-file-compressed -8.3% +27.3% -27.9% +34.8% ✅ faster
10 datafusion:vortex-compact +56.0% -2.1% +59.3% +34.8% 🚨 regression
10 datafusion:vortex-file-compressed +60.9% -2.1% +64.3% +40.5% 🚨 regression
10 duckdb:vortex-compact +3.5% -2.1% +5.7% +34.8% ➖ noise
10 duckdb:vortex-file-compressed +1.5% -2.1% +3.7% +34.8% ➖ noise
11 datafusion:vortex-compact +19.9% +5.9% +13.2% +34.8% ➖ noise
11 datafusion:vortex-file-compressed +50.2% +5.9% +41.9% +34.8% 🚨 regression
11 duckdb:vortex-compact +1.8% +5.9% -3.9% +34.8% ➖ noise
11 duckdb:vortex-file-compressed +1.9% +5.9% -3.8% +34.8% ➖ noise
12 datafusion:vortex-compact +23.1% +17.4% +4.8% +40.7% ➖ noise
12 datafusion:vortex-file-compressed +29.8% +17.4% +10.5% +34.8% ➖ noise
12 duckdb:vortex-compact +17.2% +17.4% -0.2% +34.8% ➖ noise
12 duckdb:vortex-file-compressed +3.6% +17.4% -11.8% +34.8% ➖ noise
13 datafusion:vortex-compact -19.2% +3.2% -21.6% +50.7% ➖ noise
13 datafusion:vortex-file-compressed -9.1% +3.2% -11.9% +50.6% ➖ noise
13 duckdb:vortex-compact -5.2% +3.2% -8.1% +34.8% ➖ noise
13 duckdb:vortex-file-compressed +15.4% +3.2% +11.9% +34.8% ➖ noise
14 datafusion:vortex-compact +8.4% +12.1% -3.3% +43.5% ➖ noise
14 datafusion:vortex-file-compressed -5.6% +12.1% -15.8% +37.9% ➖ noise
14 duckdb:vortex-compact +5.2% +12.1% -6.2% +34.8% ➖ noise
14 duckdb:vortex-file-compressed +14.4% +12.1% +2.0% +34.8% ➖ noise
15 datafusion:vortex-compact +8.8% -2.0% +11.0% +38.0% ➖ noise
15 datafusion:vortex-file-compressed -0.7% -2.0% +1.3% +34.8% ➖ noise
15 duckdb:vortex-compact +19.6% -2.0% +22.1% +34.8% ➖ noise
15 duckdb:vortex-file-compressed -8.3% -2.0% -6.4% +34.8% ➖ noise
16 datafusion:vortex-compact +5.5% -16.5% +26.3% +37.5% ➖ noise
16 datafusion:vortex-file-compressed -22.2% -16.5% -6.9% +34.8% ➖ noise
16 duckdb:vortex-compact +5.2% -16.5% +26.0% +34.8% ➖ noise
16 duckdb:vortex-file-compressed -2.3% -16.5% +17.0% +34.8% ➖ noise
17 datafusion:vortex-compact -22.5% +12.3% -31.0% +34.8% ✅ faster
17 datafusion:vortex-file-compressed -12.9% +12.3% -22.4% +34.8% ➖ noise
17 duckdb:vortex-compact +9.0% +12.3% -2.9% +34.8% ➖ noise
17 duckdb:vortex-file-compressed +5.3% +12.3% -6.2% +34.8% ➖ noise
18 datafusion:vortex-compact -33.0% +10.2% -39.2% +34.8% ✅ faster
18 datafusion:vortex-file-compressed -30.0% +10.2% -36.5% +34.8% ✅ faster
18 duckdb:vortex-compact -5.0% +10.2% -13.8% +34.8% ➖ noise
18 duckdb:vortex-file-compressed +11.0% +10.2% +0.7% +34.8% ➖ noise
19 datafusion:vortex-compact -14.7% +4.0% -18.0% +34.8% ➖ noise
19 datafusion:vortex-file-compressed -4.9% +4.0% -8.5% +34.8% ➖ noise
19 duckdb:vortex-compact +26.8% +4.0% +21.9% +34.8% ➖ noise
19 duckdb:vortex-file-compressed -20.6% +4.0% -23.6% +34.8% ➖ noise
20 datafusion:vortex-compact -6.5% -4.4% -2.2% +42.4% ➖ noise
20 datafusion:vortex-file-compressed -8.9% -4.4% -4.7% +34.8% ➖ noise
20 duckdb:vortex-compact +11.6% -4.4% +16.8% +34.8% ➖ noise
20 duckdb:vortex-file-compressed -18.5% -4.4% -14.8% +34.8% ➖ noise
21 datafusion:vortex-compact +31.6% -12.6% +50.6% +34.8% 🚨 regression
21 datafusion:vortex-file-compressed -1.7% -12.6% +12.5% +34.8% ➖ noise
21 duckdb:vortex-compact -0.3% -12.6% +14.2% +34.8% ➖ noise
21 duckdb:vortex-file-compressed +0.8% -12.6% +15.4% +34.8% ➖ noise
22 datafusion:vortex-compact +184.3% +0.3% +183.4% +42.7% 🚨 regression
22 datafusion:vortex-file-compressed +25.0% +0.3% +24.6% +34.8% ➖ noise
22 duckdb:vortex-compact +12.4% +0.3% +12.1% +34.8% ➖ noise
22 duckdb:vortex-file-compressed -22.2% +0.3% -22.5% +34.8% ➖ noise

@github-actions
Copy link
Copy Markdown
Contributor

Benchmarks: Compression

Vortex (geomean): 0.994x ➖
Parquet (geomean): 1.010x ➖

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.013x ➖, 2↑ 9↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
compress time/Arade 1134619868 1137775603 1.00
compress time/Bimbo 5884163245 5796530321 1.02
compress time/CMSprovider 2813171969 2755159437 1.02
compress time/Euro2016 438800503 427970891 1.03
compress time/Food 375122151 383738892 0.98
compress time/HashTags 806764351 771082056 1.05
compress time/TPC-H l_comment canonical 1238534917 1206496512 1.03
compress time/TPC-H l_comment chunked 1249512844 1191497742 1.05
compress time/taxi 674577314 670565204 1.01
compress time/wide table cols=100 chunks=1 rows=1000 11169220 12312904 0.91
compress time/wide table cols=100 chunks=50 rows=1000 11748215 11606599 1.01
compress time/wide table cols=1000 chunks=1 rows=1000 128731368 125514345 1.03
compress time/wide table cols=1000 chunks=50 rows=1000 124620836 131225722 0.95
compress time/wide table cols=10000 chunks=1 rows=1000 1519233471 1456823775 1.04
compress time/wide table cols=10000 chunks=50 rows=1000 1540836953 1473528118 1.05
decompress time/Arade 26930839 26693357 1.01
decompress time/Bimbo 85859146 85430962 1.01
decompress time/CMSprovider 80669654 75030356 1.08
decompress time/Euro2016 19846126 19365506 1.02
decompress time/Food 8334000 8360989 1.00
decompress time/HashTags 90029304 85659915 1.05
decompress time/TPC-H l_comment canonical 40129231 39652046 1.01
decompress time/TPC-H l_comment chunked 41438472 39401140 1.05
decompress time/taxi 14331532 14760766 0.97
decompress time/wide table cols=100 chunks=1 rows=1000 🚨 2769005 2472339 1.12
decompress time/wide table cols=100 chunks=50 rows=1000 2856197 2645571 1.08
decompress time/wide table cols=1000 chunks=1 rows=1000 23985672 23733761 1.01
decompress time/wide table cols=1000 chunks=50 rows=1000 24799792 23381363 1.06
decompress time/wide table cols=10000 chunks=1 rows=1000 🚨 285658828 238772753 1.20
decompress time/wide table cols=10000 chunks=50 rows=1000 🚨 294601007 261821331 1.13
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 2704152291 2614174992 1.03
parquet_rs-zstd compress time/Bimbo 13497106982 12969757674 1.04
parquet_rs-zstd compress time/CMSprovider 7403934761 7224158386 1.02
parquet_rs-zstd compress time/Euro2016 1366126188 1303699930 1.05
parquet_rs-zstd compress time/Food 824845934 812602806 1.02
parquet_rs-zstd compress time/HashTags 2337632604 2183336658 1.07
parquet_rs-zstd compress time/TPC-H l_comment canonical 3374933367 3186611295 1.06
parquet_rs-zstd compress time/TPC-H l_comment chunked 3363821453 3218405831 1.05
parquet_rs-zstd compress time/taxi 1260026055 1189724338 1.06
parquet_rs-zstd compress time/wide table cols=100 chunks=1 rows=1000 🚨 6877886 6169737 1.11
parquet_rs-zstd compress time/wide table cols=100 chunks=50 rows=1000 🚨 7603140 6055550 1.26
parquet_rs-zstd compress time/wide table cols=1000 chunks=1 rows=1000 76294613 74396711 1.03
parquet_rs-zstd compress time/wide table cols=1000 chunks=50 rows=1000 77451438 75686325 1.02
parquet_rs-zstd compress time/wide table cols=10000 chunks=1 rows=1000 810716459 809747911 1.00
parquet_rs-zstd compress time/wide table cols=10000 chunks=50 rows=1000 789836080 777774907 1.02
parquet_rs-zstd decompress time/Arade 636839889 624707431 1.02
parquet_rs-zstd decompress time/Bimbo 1719517926 1698135151 1.01
parquet_rs-zstd decompress time/CMSprovider 1765767084 1710360396 1.03
parquet_rs-zstd decompress time/Euro2016 385939696 380089648 1.02
parquet_rs-zstd decompress time/Food 204077351 196051481 1.04
parquet_rs-zstd decompress time/HashTags 🚨 693803052 627630455 1.11
parquet_rs-zstd decompress time/TPC-H l_comment canonical 601974769 582146548 1.03
parquet_rs-zstd decompress time/TPC-H l_comment chunked 606809792 586041004 1.04
parquet_rs-zstd decompress time/taxi 248703482 243380932 1.02
parquet_rs-zstd decompress time/wide table cols=100 chunks=1 rows=1000 2828497 2816506 1.00
parquet_rs-zstd decompress time/wide table cols=100 chunks=50 rows=1000 3044382 2803683 1.09
parquet_rs-zstd decompress time/wide table cols=1000 chunks=1 rows=1000 33421055 31932286 1.05
parquet_rs-zstd decompress time/wide table cols=1000 chunks=50 rows=1000 33564942 33146501 1.01
parquet_rs-zstd decompress time/wide table cols=10000 chunks=1 rows=1000 352851979 349607094 1.01
parquet_rs-zstd decompress time/wide table cols=10000 chunks=50 rows=1000 349824522 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.98
vortex:parquet-zstd ratio compress time/CMSprovider 0 0 1.00
vortex:parquet-zstd ratio compress time/Euro2016 0 0 0.98
vortex:parquet-zstd ratio compress time/Food 0 0 0.96
vortex:parquet-zstd ratio compress time/HashTags 0 0 0.98
vortex:parquet-zstd ratio compress time/TPC-H l_comment canonical 0 0 0.97
vortex:parquet-zstd ratio compress time/TPC-H l_comment chunked 0 0 1.00
vortex:parquet-zstd ratio compress time/taxi 0 0 0.95
vortex:parquet-zstd ratio compress time/wide table cols=100 chunks=1 rows=1000 🚀 1 1 0.81
vortex:parquet-zstd ratio compress time/wide table cols=100 chunks=50 rows=1000 🚀 1 1 0.81
vortex:parquet-zstd ratio compress time/wide table cols=1000 chunks=1 rows=1000 1 1 1.00
vortex:parquet-zstd ratio compress time/wide table cols=1000 chunks=50 rows=1000 1 1 0.93
vortex:parquet-zstd ratio compress time/wide table cols=10000 chunks=1 rows=1000 1 1 1.04
vortex:parquet-zstd ratio compress time/wide table cols=10000 chunks=50 rows=1000 1 1 1.03
vortex:parquet-zstd ratio decompress time/Arade 0 0 0.99
vortex:parquet-zstd ratio decompress time/Bimbo 0 0 0.99
vortex:parquet-zstd ratio decompress time/CMSprovider 0 0 1.04
vortex:parquet-zstd ratio decompress time/Euro2016 0 0 1.01
vortex:parquet-zstd ratio decompress time/Food 0 0 0.96
vortex:parquet-zstd ratio decompress time/HashTags 0 0 0.95
vortex:parquet-zstd ratio decompress time/TPC-H l_comment canonical 0 0 0.98
vortex:parquet-zstd ratio decompress time/TPC-H l_comment chunked 0 0 1.02
vortex:parquet-zstd ratio decompress time/taxi 0 0 0.95
vortex:parquet-zstd ratio decompress time/wide table cols=100 chunks=1 rows=1000 🚨 0 0 1.12
vortex:parquet-zstd ratio decompress time/wide table cols=100 chunks=50 rows=1000 0 0 0.99
vortex:parquet-zstd ratio decompress time/wide table cols=1000 chunks=1 rows=1000 0 0 0.97
vortex:parquet-zstd ratio decompress time/wide table cols=1000 chunks=50 rows=1000 0 0 1.05
vortex:parquet-zstd ratio decompress time/wide table cols=10000 chunks=1 rows=1000 🚨 0 0 1.19
vortex:parquet-zstd ratio decompress time/wide table cols=10000 chunks=50 rows=1000 🚨 0 0 1.13
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: -12.6%
Engines: DataFusion No clear signal (-13.9%, environment too noisy confidence) · DuckDB No clear signal (-11.2%, environment too noisy confidence)
Vortex (geomean): 0.973x ➖
Parquet (geomean): 1.113x ➖
Shifts: Parquet (control) +11.3% · Median polish +0.5%

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.049x ➖, 0↑ 1↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/datafusion:vortex-file-compressed 707615056 752017962 0.94
tpch_q02/datafusion:vortex-file-compressed 1213588939 1003846728 1.21
tpch_q03/datafusion:vortex-file-compressed 926435289 940965122 0.98
tpch_q04/datafusion:vortex-file-compressed 702050664 617515196 1.14
tpch_q05/datafusion:vortex-file-compressed 1119682400 974269861 1.15
tpch_q06/datafusion:vortex-file-compressed 626985292 554307173 1.13
tpch_q07/datafusion:vortex-file-compressed 1224783805 1098382945 1.12
tpch_q08/datafusion:vortex-file-compressed 1414296252 1626482352 0.87
tpch_q09/datafusion:vortex-file-compressed 1433332905 1487915006 0.96
tpch_q10/datafusion:vortex-file-compressed 996553585 1140897924 0.87
tpch_q11/datafusion:vortex-file-compressed 568166154 468761235 1.21
tpch_q12/datafusion:vortex-file-compressed 1144832142 1018384359 1.12
tpch_q13/datafusion:vortex-file-compressed 473568989 494057745 0.96
tpch_q14/datafusion:vortex-file-compressed 🚨 887462789 632416863 1.40
tpch_q15/datafusion:vortex-file-compressed 1045303682 1070224894 0.98
tpch_q16/datafusion:vortex-file-compressed 458220034 571909463 0.80
tpch_q17/datafusion:vortex-file-compressed 1208048421 1164891951 1.04
tpch_q18/datafusion:vortex-file-compressed 1269996432 1225366196 1.04
tpch_q19/datafusion:vortex-file-compressed 868945854 801705399 1.08
tpch_q20/datafusion:vortex-file-compressed 1044549493 972382280 1.07
tpch_q21/datafusion:vortex-file-compressed 1700979344 1729719123 0.98
tpch_q22/datafusion:vortex-file-compressed 590524820 487561929 1.21
datafusion / vortex-compact (0.990x ➖, 0↑ 2↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/datafusion:vortex-compact 666953469 741895675 0.90
tpch_q02/datafusion:vortex-compact 853456983 1201711394 0.71
tpch_q03/datafusion:vortex-compact 979296750 900167918 1.09
tpch_q04/datafusion:vortex-compact 602504219 517357654 1.16
tpch_q05/datafusion:vortex-compact 1059292522 881861305 1.20
tpch_q06/datafusion:vortex-compact 589304636 558567569 1.06
tpch_q07/datafusion:vortex-compact 945129045 1068160197 0.88
tpch_q08/datafusion:vortex-compact 1144166729 1087190134 1.05
tpch_q09/datafusion:vortex-compact 1181494839 1634159452 0.72
tpch_q10/datafusion:vortex-compact 793295628 1029499937 0.77
tpch_q11/datafusion:vortex-compact 412863833 511398852 0.81
tpch_q12/datafusion:vortex-compact 752107657 904452462 0.83
tpch_q13/datafusion:vortex-compact 408519477 424923817 0.96
tpch_q14/datafusion:vortex-compact 532561542 632025838 0.84
tpch_q15/datafusion:vortex-compact 930466039 1198838062 0.78
tpch_q16/datafusion:vortex-compact 🚨 705610363 495972168 1.42
tpch_q17/datafusion:vortex-compact 1138343821 1396790573 0.81
tpch_q18/datafusion:vortex-compact 1120621661 1107842012 1.01
tpch_q19/datafusion:vortex-compact 953033696 801458512 1.19
tpch_q20/datafusion:vortex-compact 955310964 913554115 1.05
tpch_q21/datafusion:vortex-compact 1953688525 1609219452 1.21
tpch_q22/datafusion:vortex-compact 🚨 683508826 336440385 2.03
datafusion / parquet (1.185x ➖, 1↑ 8↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/datafusion:parquet 861017154 831024356 1.04
tpch_q02/datafusion:parquet 🚀 814756273 1197851566 0.68
tpch_q03/datafusion:parquet 1346396182 1130109024 1.19
tpch_q04/datafusion:parquet 613957076 542073244 1.13
tpch_q05/datafusion:parquet 🚨 2428049575 1323808473 1.83
tpch_q06/datafusion:parquet 🚨 1114482178 615648207 1.81
tpch_q07/datafusion:parquet 🚨 2412132220 1515603169 1.59
tpch_q08/datafusion:parquet 🚨 2903622559 2158031339 1.35
tpch_q09/datafusion:parquet 🚨 3346137228 2191182185 1.53
tpch_q10/datafusion:parquet 3299318789 2661183493 1.24
tpch_q11/datafusion:parquet 789579559 917800787 0.86
tpch_q12/datafusion:parquet 992081619 771106535 1.29
tpch_q13/datafusion:parquet 🚨 1550336494 880664896 1.76
tpch_q14/datafusion:parquet 🚨 1329253097 896165716 1.48
tpch_q15/datafusion:parquet 🚨 2261061935 1503589352 1.50
tpch_q16/datafusion:parquet 390200523 504898972 0.77
tpch_q17/datafusion:parquet 1391229044 1508041008 0.92
tpch_q18/datafusion:parquet 1694383532 1844038151 0.92
tpch_q19/datafusion:parquet 971495398 1107785857 0.88
tpch_q20/datafusion:parquet 1993538325 1554455649 1.28
tpch_q21/datafusion:parquet 1991473930 2054746846 0.97
tpch_q22/datafusion:parquet 805774567 769935539 1.05
duckdb / vortex-file-compressed (0.987x ➖, 0↑ 0↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/duckdb:vortex-file-compressed 595308035 695706114 0.86
tpch_q02/duckdb:vortex-file-compressed 1270939142 1264445286 1.01
tpch_q03/duckdb:vortex-file-compressed 1004937521 957913504 1.05
tpch_q04/duckdb:vortex-file-compressed 778839658 882733124 0.88
tpch_q05/duckdb:vortex-file-compressed 1249636776 1227341412 1.02
tpch_q06/duckdb:vortex-file-compressed 589143441 558253671 1.06
tpch_q07/duckdb:vortex-file-compressed 1201655142 1275097944 0.94
tpch_q08/duckdb:vortex-file-compressed 1640198886 1562775060 1.05
tpch_q09/duckdb:vortex-file-compressed 1816967002 1765489427 1.03
tpch_q10/duckdb:vortex-file-compressed 1351323028 1282038244 1.05
tpch_q11/duckdb:vortex-file-compressed 724779361 707915082 1.02
tpch_q12/duckdb:vortex-file-compressed 1232355543 1355268408 0.91
tpch_q13/duckdb:vortex-file-compressed 864000187 907908539 0.95
tpch_q14/duckdb:vortex-file-compressed 636845820 652633376 0.98
tpch_q15/duckdb:vortex-file-compressed 541287128 537827058 1.01
tpch_q16/duckdb:vortex-file-compressed 555618098 545454589 1.02
tpch_q17/duckdb:vortex-file-compressed 949796581 967167499 0.98
tpch_q18/duckdb:vortex-file-compressed 951068411 1021306348 0.93
tpch_q19/duckdb:vortex-file-compressed 843448903 819187549 1.03
tpch_q20/duckdb:vortex-file-compressed 1327599915 1332003926 1.00
tpch_q21/duckdb:vortex-file-compressed 2011114204 1974382374 1.02
tpch_q22/duckdb:vortex-file-compressed 426334722 446918942 0.95
duckdb / vortex-compact (0.874x ➖, 0↑ 0↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/duckdb:vortex-compact 597448499 634093507 0.94
tpch_q02/duckdb:vortex-compact 1124323171 1276039648 0.88
tpch_q03/duckdb:vortex-compact 871757431 933094883 0.93
tpch_q04/duckdb:vortex-compact 589442505 768414792 0.77
tpch_q05/duckdb:vortex-compact 1143040679 1250302410 0.91
tpch_q06/duckdb:vortex-compact 549383942 614257425 0.89
tpch_q07/duckdb:vortex-compact 1163990723 1510649659 0.77
tpch_q08/duckdb:vortex-compact 1404908683 1421176599 0.99
tpch_q09/duckdb:vortex-compact 1597136130 1773521210 0.90
tpch_q10/duckdb:vortex-compact 1121771004 1443828760 0.78
tpch_q11/duckdb:vortex-compact 671194811 743750549 0.90
tpch_q12/duckdb:vortex-compact 1038133975 1220156461 0.85
tpch_q13/duckdb:vortex-compact 830780411 793213935 1.05
tpch_q14/duckdb:vortex-compact 666839761 691430236 0.96
tpch_q15/duckdb:vortex-compact 546740154 639945390 0.85
tpch_q16/duckdb:vortex-compact 398238511 462803348 0.86
tpch_q17/duckdb:vortex-compact 835710582 1037126069 0.81
tpch_q18/duckdb:vortex-compact 743064442 1054320213 0.70
tpch_q19/duckdb:vortex-compact 758452802 942308698 0.80
tpch_q20/duckdb:vortex-compact 1214379515 1279586107 0.95
tpch_q21/duckdb:vortex-compact 1678497586 1856606017 0.90
tpch_q22/duckdb:vortex-compact 482928440 543489362 0.89
duckdb / parquet (1.045x ➖, 0↑ 1↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
tpch_q01/duckdb:parquet 🚨 1088487430 828801172 1.31
tpch_q02/duckdb:parquet 1532949747 1342151895 1.14
tpch_q03/duckdb:parquet 1747842224 1833263361 0.95
tpch_q04/duckdb:parquet 1049452425 1070797376 0.98
tpch_q05/duckdb:parquet 2180735056 1985016317 1.10
tpch_q06/duckdb:parquet 1036539773 842759873 1.23
tpch_q07/duckdb:parquet 2035959741 1831925383 1.11
tpch_q08/duckdb:parquet 2512982846 2602481027 0.97
tpch_q09/duckdb:parquet 2696507136 2651951234 1.02
tpch_q10/duckdb:parquet 3299255670 3389606370 0.97
tpch_q11/duckdb:parquet 1122436785 956228422 1.17
tpch_q12/duckdb:parquet 1264360988 1294239072 0.98
tpch_q13/duckdb:parquet 1426626888 1369490716 1.04
tpch_q14/duckdb:parquet 1435550440 1301053806 1.10
tpch_q15/duckdb:parquet 1032359615 1035874542 1.00
tpch_q16/duckdb:parquet 1017502845 980239998 1.04
tpch_q17/duckdb:parquet 1437568642 1411157754 1.02
tpch_q18/duckdb:parquet 1682740590 1502107372 1.12
tpch_q19/duckdb:parquet 1554437798 1515978376 1.03
tpch_q20/duckdb:parquet 2015689594 2197875790 0.92
tpch_q21/duckdb:parquet 1896846757 2058356613 0.92
tpch_q22/duckdb:parquet 1046011027 1072869735 0.97
Full attributed analysis
Query Config Raw Δ Control Δ Attributed α Noise floor Significant?
1 datafusion:vortex-compact -10.1% +16.7% -22.9% +46.8% ➖ noise
1 datafusion:vortex-file-compressed -5.9% +16.7% -19.3% +46.8% ➖ noise
1 duckdb:vortex-compact -5.8% +16.7% -19.2% +46.8% ➖ noise
1 duckdb:vortex-file-compressed -14.4% +16.7% -26.6% +46.8% ➖ noise
2 datafusion:vortex-compact -29.0% -11.9% -19.4% +46.8% ➖ noise
2 datafusion:vortex-file-compressed +20.9% -11.9% +37.2% +46.8% ➖ noise
2 duckdb:vortex-compact -11.9% -11.9% -0.0% +46.8% ➖ noise
2 duckdb:vortex-file-compressed +0.5% -11.9% +14.0% +46.8% ➖ noise
3 datafusion:vortex-compact +8.8% +6.6% +2.1% +46.8% ➖ noise
3 datafusion:vortex-file-compressed -1.5% +6.6% -7.6% +46.8% ➖ noise
3 duckdb:vortex-compact -6.6% +6.6% -12.3% +46.8% ➖ noise
3 duckdb:vortex-file-compressed +4.9% +6.6% -1.6% +46.8% ➖ noise
4 datafusion:vortex-compact +16.5% +5.4% +10.5% +46.8% ➖ noise
4 datafusion:vortex-file-compressed +13.7% +5.4% +7.9% +46.8% ➖ noise
4 duckdb:vortex-compact -23.3% +5.4% -27.2% +46.8% ➖ noise
4 duckdb:vortex-file-compressed -11.8% +5.4% -16.3% +46.8% ➖ noise
5 datafusion:vortex-compact +20.1% +42.0% -15.4% +46.8% ➖ noise
5 datafusion:vortex-file-compressed +14.9% +42.0% -19.0% +46.8% ➖ noise
5 duckdb:vortex-compact -8.6% +42.0% -35.6% +46.8% ✅ faster
5 duckdb:vortex-file-compressed +1.8% +42.0% -28.3% +46.8% ➖ noise
6 datafusion:vortex-compact +5.5% +49.2% -29.3% +46.8% ➖ noise
6 datafusion:vortex-file-compressed +13.1% +49.2% -24.2% +46.8% ➖ noise
6 duckdb:vortex-compact -10.6% +49.2% -40.1% +46.8% ✅ faster
6 duckdb:vortex-file-compressed +5.5% +49.2% -29.3% +46.8% ➖ noise
7 datafusion:vortex-compact -11.5% +33.0% -33.5% +46.8% ✅ faster
7 datafusion:vortex-file-compressed +11.5% +33.0% -16.2% +46.8% ➖ noise
7 duckdb:vortex-compact -22.9% +33.0% -42.1% +46.8% ✅ faster
7 duckdb:vortex-file-compressed -5.8% +33.0% -29.1% +46.8% ➖ noise
8 datafusion:vortex-compact +5.2% +14.0% -7.7% +46.8% ➖ noise
8 datafusion:vortex-file-compressed -13.0% +14.0% -23.7% +46.8% ➖ noise
8 duckdb:vortex-compact -1.1% +14.0% -13.3% +46.8% ➖ noise
8 duckdb:vortex-file-compressed +5.0% +14.0% -7.9% +46.8% ➖ noise
9 datafusion:vortex-compact -27.7% +24.6% -42.0% +54.0% ✅ faster
9 datafusion:vortex-file-compressed -3.7% +24.6% -22.7% +46.8% ➖ noise
9 duckdb:vortex-compact -9.9% +24.6% -27.7% +46.8% ➖ noise
9 duckdb:vortex-file-compressed +2.9% +24.6% -17.4% +46.8% ➖ noise
10 datafusion:vortex-compact -22.9% +9.9% -29.9% +46.8% ➖ noise
10 datafusion:vortex-file-compressed -12.7% +9.9% -20.5% +81.2% ➖ noise
10 duckdb:vortex-compact -22.3% +9.9% -29.3% +46.8% ➖ noise
10 duckdb:vortex-file-compressed +5.4% +9.9% -4.0% +46.8% ➖ noise
11 datafusion:vortex-compact -19.3% +0.5% -19.7% +46.8% ➖ noise
11 datafusion:vortex-file-compressed +21.2% +0.5% +20.6% +46.8% ➖ noise
11 duckdb:vortex-compact -9.8% +0.5% -10.2% +46.8% ➖ noise
11 duckdb:vortex-file-compressed +2.4% +0.5% +1.9% +46.8% ➖ noise
12 datafusion:vortex-compact -16.8% +12.1% -25.8% +46.8% ➖ noise
12 datafusion:vortex-file-compressed +12.4% +12.1% +0.3% +46.8% ➖ noise
12 duckdb:vortex-compact -14.9% +12.1% -24.1% +46.8% ➖ noise
12 duckdb:vortex-file-compressed -9.1% +12.1% -18.9% +46.8% ➖ noise
13 datafusion:vortex-compact -3.9% +35.4% -29.0% +46.8% ➖ noise
13 datafusion:vortex-file-compressed -4.1% +35.4% -29.2% +46.8% ➖ noise
13 duckdb:vortex-compact +4.7% +35.4% -22.7% +84.6% ➖ noise
13 duckdb:vortex-file-compressed -4.8% +35.4% -29.7% +46.8% ➖ noise
14 datafusion:vortex-compact -15.7% +27.9% -34.1% +46.8% ✅ faster
14 datafusion:vortex-file-compressed +40.3% +27.9% +9.7% +46.8% ➖ noise
14 duckdb:vortex-compact -3.6% +27.9% -24.6% +46.8% ➖ noise
14 duckdb:vortex-file-compressed -2.4% +27.9% -23.7% +46.8% ➖ noise
15 datafusion:vortex-compact -22.4% +22.4% -36.6% +46.8% ✅ faster
15 datafusion:vortex-file-compressed -2.3% +22.4% -20.2% +46.8% ➖ noise
15 duckdb:vortex-compact -14.6% +22.4% -30.2% +46.8% ➖ noise
15 duckdb:vortex-file-compressed +0.6% +22.4% -17.8% +46.8% ➖ noise
16 datafusion:vortex-compact +42.3% -10.4% +58.8% +46.8% 🚨 regression
16 datafusion:vortex-file-compressed -19.9% -10.4% -10.5% +46.8% ➖ noise
16 duckdb:vortex-compact -14.0% -10.4% -3.9% +46.8% ➖ noise
16 duckdb:vortex-file-compressed +1.9% -10.4% +13.7% +46.8% ➖ noise
17 datafusion:vortex-compact -18.5% -3.1% -15.9% +46.8% ➖ noise
17 datafusion:vortex-file-compressed +3.7% -3.1% +7.0% +46.8% ➖ noise
17 duckdb:vortex-compact -19.4% -3.1% -16.9% +46.8% ➖ noise
17 duckdb:vortex-file-compressed -1.8% -3.1% +1.3% +46.8% ➖ noise
18 datafusion:vortex-compact +1.2% +1.5% -0.3% +46.8% ➖ noise
18 datafusion:vortex-file-compressed +3.6% +1.5% +2.2% +46.8% ➖ noise
18 duckdb:vortex-compact -29.5% +1.5% -30.5% +46.8% ➖ noise
18 duckdb:vortex-file-compressed -6.9% +1.5% -8.2% +46.8% ➖ noise
19 datafusion:vortex-compact +18.9% -5.2% +25.4% +46.8% ➖ noise
19 datafusion:vortex-file-compressed +8.4% -5.2% +14.3% +46.8% ➖ noise
19 duckdb:vortex-compact -19.5% -5.2% -15.1% +46.8% ➖ noise
19 duckdb:vortex-file-compressed +3.0% -5.2% +8.6% +46.8% ➖ noise
20 datafusion:vortex-compact +4.6% +8.5% -3.6% +46.8% ➖ noise
20 datafusion:vortex-file-compressed +7.4% +8.5% -0.9% +46.8% ➖ noise
20 duckdb:vortex-compact -5.1% +8.5% -12.5% +46.8% ➖ noise
20 duckdb:vortex-file-compressed -0.3% +8.5% -8.1% +46.8% ➖ noise
21 datafusion:vortex-compact +21.4% -5.5% +28.5% +46.8% ➖ noise
21 datafusion:vortex-file-compressed -1.7% -5.5% +4.1% +46.8% ➖ noise
21 duckdb:vortex-compact -9.6% -5.5% -4.3% +46.8% ➖ noise
21 duckdb:vortex-file-compressed +1.9% -5.5% +7.8% +46.8% ➖ noise
22 datafusion:vortex-compact +103.2% +1.0% +101.1% +46.8% 🚨 regression
22 datafusion:vortex-file-compressed +21.1% +1.0% +19.9% +46.8% ➖ noise
22 duckdb:vortex-compact -11.1% +1.0% -12.0% +46.8% ➖ noise
22 duckdb:vortex-file-compressed -4.6% +1.0% -5.6% +46.8% ➖ noise

@github-actions
Copy link
Copy Markdown
Contributor

Benchmarks: TPC-DS SF=1 on NVME

Verdict: No clear signal (low confidence)
Attributed Vortex impact: -0.5%
Engines: DataFusion No clear signal (+0.8%, low confidence) · DuckDB No clear signal (-2.0%, low confidence)
Vortex (geomean): 0.918x ➖
Parquet (geomean): 0.922x ➖
Shifts: Parquet (control) -7.8% · Median polish -7.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 (0.904x ➖, 43↑ 0↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
tpcds_q01/datafusion:vortex-file-compressed 🚀 25241808 28083645 0.90
tpcds_q02/datafusion:vortex-file-compressed 47327866 51622725 0.92
tpcds_q03/datafusion:vortex-file-compressed 16109153 17001972 0.95
tpcds_q04/datafusion:vortex-file-compressed 265057659 293668485 0.90
tpcds_q05/datafusion:vortex-file-compressed 🚀 42433220 48875626 0.87
tpcds_q06/datafusion:vortex-file-compressed 61825435 63992697 0.97
tpcds_q07/datafusion:vortex-file-compressed 46310875 48677189 0.95
tpcds_q08/datafusion:vortex-file-compressed 🚀 28615722 32497326 0.88
tpcds_q09/datafusion:vortex-file-compressed 🚀 38850500 43522247 0.89
tpcds_q10/datafusion:vortex-file-compressed 🚀 37589744 42354853 0.89
tpcds_q11/datafusion:vortex-file-compressed 🚀 129954336 147510343 0.88
tpcds_q12/datafusion:vortex-file-compressed 🚀 18746936 22559786 0.83
tpcds_q13/datafusion:vortex-file-compressed 47084139 49261649 0.96
tpcds_q14/datafusion:vortex-file-compressed 171446439 187741016 0.91
tpcds_q15/datafusion:vortex-file-compressed 🚀 28095547 31824900 0.88
tpcds_q16/datafusion:vortex-file-compressed 28999973 31907872 0.91
tpcds_q17/datafusion:vortex-file-compressed 64547511 69050207 0.93
tpcds_q18/datafusion:vortex-file-compressed 68881650 73741866 0.93
tpcds_q19/datafusion:vortex-file-compressed 🚀 21577109 24549081 0.88
tpcds_q20/datafusion:vortex-file-compressed 22046392 24328206 0.91
tpcds_q21/datafusion:vortex-file-compressed 36141232 40092273 0.90
tpcds_q22/datafusion:vortex-file-compressed 🚀 111493123 131876221 0.85
tpcds_q23/datafusion:vortex-file-compressed 152381665 164876403 0.92
tpcds_q24/datafusion:vortex-file-compressed 81418185 89360465 0.91
tpcds_q25/datafusion:vortex-file-compressed 71985716 71298940 1.01
tpcds_q26/datafusion:vortex-file-compressed 33603595 36621049 0.92
tpcds_q27/datafusion:vortex-file-compressed 🚀 101611527 117519328 0.86
tpcds_q28/datafusion:vortex-file-compressed 36271027 35099323 1.03
tpcds_q29/datafusion:vortex-file-compressed 62078981 67462901 0.92
tpcds_q30/datafusion:vortex-file-compressed 🚀 23549774 27999635 0.84
tpcds_q31/datafusion:vortex-file-compressed 73937816 81646705 0.91
tpcds_q32/datafusion:vortex-file-compressed 20885539 21973229 0.95
tpcds_q33/datafusion:vortex-file-compressed 30612664 31450793 0.97
tpcds_q34/datafusion:vortex-file-compressed 24111373 26091258 0.92
tpcds_q35/datafusion:vortex-file-compressed 🚀 44672317 50465224 0.89
tpcds_q36/datafusion:vortex-file-compressed 58035579 62222553 0.93
tpcds_q37/datafusion:vortex-file-compressed 24098864 26444206 0.91
tpcds_q38/datafusion:vortex-file-compressed 🚀 45192966 50800123 0.89
tpcds_q39/datafusion:vortex-file-compressed 🚀 101971786 121078446 0.84
tpcds_q40/datafusion:vortex-file-compressed 33269656 35966210 0.93
tpcds_q41/datafusion:vortex-file-compressed 🚀 14982108 17133619 0.87
tpcds_q42/datafusion:vortex-file-compressed 🚀 14452828 16332592 0.88
tpcds_q43/datafusion:vortex-file-compressed 🚀 18939531 21133547 0.90
tpcds_q44/datafusion:vortex-file-compressed 30650533 33808648 0.91
tpcds_q45/datafusion:vortex-file-compressed 27030507 29891859 0.90
tpcds_q46/datafusion:vortex-file-compressed 34159442 36834497 0.93
tpcds_q47/datafusion:vortex-file-compressed 131925835 142368963 0.93
tpcds_q48/datafusion:vortex-file-compressed 35617391 36958515 0.96
tpcds_q49/datafusion:vortex-file-compressed 58728137 60982535 0.96
tpcds_q50/datafusion:vortex-file-compressed 39795747 42193934 0.94
tpcds_q51/datafusion:vortex-file-compressed 86893059 94707586 0.92
tpcds_q52/datafusion:vortex-file-compressed 🚀 14099523 16319214 0.86
tpcds_q53/datafusion:vortex-file-compressed 🚀 20903535 23580833 0.89
tpcds_q54/datafusion:vortex-file-compressed 34941927 38507461 0.91
tpcds_q55/datafusion:vortex-file-compressed 🚀 13513872 15773428 0.86
tpcds_q56/datafusion:vortex-file-compressed 30303108 31511453 0.96
tpcds_q57/datafusion:vortex-file-compressed 🚀 102925077 119532175 0.86
tpcds_q58/datafusion:vortex-file-compressed 52702254 56755488 0.93
tpcds_q59/datafusion:vortex-file-compressed 56610622 60289325 0.94
tpcds_q60/datafusion:vortex-file-compressed 🚀 29007455 32345875 0.90
tpcds_q61/datafusion:vortex-file-compressed 🚀 40173818 45596395 0.88
tpcds_q62/datafusion:vortex-file-compressed 🚀 20941237 28823066 0.73
tpcds_q63/datafusion:vortex-file-compressed 🚀 20859772 23809223 0.88
tpcds_q64/datafusion:vortex-file-compressed 🚀 410669341 463695405 0.89
tpcds_q65/datafusion:vortex-file-compressed 40581583 42691907 0.95
tpcds_q66/datafusion:vortex-file-compressed 70861040 76043158 0.93
tpcds_q67/datafusion:vortex-file-compressed 149254228 152641214 0.98
tpcds_q68/datafusion:vortex-file-compressed 🚀 32556834 37716036 0.86
tpcds_q69/datafusion:vortex-file-compressed 🚀 35433934 39767333 0.89
tpcds_q70/datafusion:vortex-file-compressed 🚀 82486639 95847587 0.86
tpcds_q71/datafusion:vortex-file-compressed 23105083 25266725 0.91
tpcds_q72/datafusion:vortex-file-compressed 🚀 2158974637 2622297915 0.82
tpcds_q73/datafusion:vortex-file-compressed 23794489 25469757 0.93
tpcds_q74/datafusion:vortex-file-compressed 81391447 86775713 0.94
tpcds_q75/datafusion:vortex-file-compressed 109397798 121422214 0.90
tpcds_q76/datafusion:vortex-file-compressed 31843867 34508507 0.92
tpcds_q77/datafusion:vortex-file-compressed 39512573 42321981 0.93
tpcds_q78/datafusion:vortex-file-compressed 129068088 139022913 0.93
tpcds_q79/datafusion:vortex-file-compressed 28243918 30809185 0.92
tpcds_q80/datafusion:vortex-file-compressed 🚀 93313888 104289032 0.89
tpcds_q81/datafusion:vortex-file-compressed 25704034 28522397 0.90
tpcds_q82/datafusion:vortex-file-compressed 27590012 28147814 0.98
tpcds_q83/datafusion:vortex-file-compressed 33874050 37106085 0.91
tpcds_q84/datafusion:vortex-file-compressed 🚀 12689407 14280771 0.89
tpcds_q85/datafusion:vortex-file-compressed 🚀 88461105 100896621 0.88
tpcds_q86/datafusion:vortex-file-compressed 18295134 18874750 0.97
tpcds_q87/datafusion:vortex-file-compressed 44506298 48050254 0.93
tpcds_q88/datafusion:vortex-file-compressed 🚀 55379893 62461013 0.89
tpcds_q89/datafusion:vortex-file-compressed 🚀 24539808 28768672 0.85
tpcds_q90/datafusion:vortex-file-compressed 🚀 14986905 17456880 0.86
tpcds_q91/datafusion:vortex-file-compressed 🚀 17695915 21627227 0.82
tpcds_q92/datafusion:vortex-file-compressed 🚀 18009363 21001571 0.86
tpcds_q93/datafusion:vortex-file-compressed 🚀 33337495 39731823 0.84
tpcds_q94/datafusion:vortex-file-compressed 🚀 22901290 26018535 0.88
tpcds_q95/datafusion:vortex-file-compressed 🚀 60933750 69884295 0.87
tpcds_q96/datafusion:vortex-file-compressed 13502716 14406890 0.94
tpcds_q97/datafusion:vortex-file-compressed 🚀 31615895 35874533 0.88
tpcds_q98/datafusion:vortex-file-compressed 24272867 26354840 0.92
tpcds_q99/datafusion:vortex-file-compressed 29642980 32143193 0.92
datafusion / vortex-compact (0.919x ➖, 26↑ 1↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
tpcds_q01/datafusion:vortex-compact 25932191 28613860 0.91
tpcds_q02/datafusion:vortex-compact 54101755 57704889 0.94
tpcds_q03/datafusion:vortex-compact 19845153 21174611 0.94
tpcds_q04/datafusion:vortex-compact 305493008 308634840 0.99
tpcds_q05/datafusion:vortex-compact 🚀 47697290 60523732 0.79
tpcds_q06/datafusion:vortex-compact 61495840 62775657 0.98
tpcds_q07/datafusion:vortex-compact 52047178 57603569 0.90
tpcds_q08/datafusion:vortex-compact 36008915 39811765 0.90
tpcds_q09/datafusion:vortex-compact 🚀 52616440 58663994 0.90
tpcds_q10/datafusion:vortex-compact 48674967 53852840 0.90
tpcds_q11/datafusion:vortex-compact 🚀 145043466 165466072 0.88
tpcds_q12/datafusion:vortex-compact 22975656 24001209 0.96
tpcds_q13/datafusion:vortex-compact 124001506 135102093 0.92
tpcds_q14/datafusion:vortex-compact 203231534 208901324 0.97
tpcds_q15/datafusion:vortex-compact 31094535 32304511 0.96
tpcds_q16/datafusion:vortex-compact 32641001 35979325 0.91
tpcds_q17/datafusion:vortex-compact 76691811 84940667 0.90
tpcds_q18/datafusion:vortex-compact 79183477 83645400 0.95
tpcds_q19/datafusion:vortex-compact 29947420 31001436 0.97
tpcds_q20/datafusion:vortex-compact 25811192 27577367 0.94
tpcds_q21/datafusion:vortex-compact 🚀 40015191 46466609 0.86
tpcds_q22/datafusion:vortex-compact 🚨 146782512 132336682 1.11
tpcds_q23/datafusion:vortex-compact 🚀 167179349 192152655 0.87
tpcds_q24/datafusion:vortex-compact 🚀 99377513 111040759 0.89
tpcds_q25/datafusion:vortex-compact 79293510 87364304 0.91
tpcds_q26/datafusion:vortex-compact 43974702 47038236 0.93
tpcds_q27/datafusion:vortex-compact 126422893 139880634 0.90
tpcds_q28/datafusion:vortex-compact 97119008 107339605 0.90
tpcds_q29/datafusion:vortex-compact 73895184 80302017 0.92
tpcds_q30/datafusion:vortex-compact 🚀 27715779 30833840 0.90
tpcds_q31/datafusion:vortex-compact 98463823 104189807 0.95
tpcds_q32/datafusion:vortex-compact 25522861 27520644 0.93
tpcds_q33/datafusion:vortex-compact 37593740 38516215 0.98
tpcds_q34/datafusion:vortex-compact 33726411 35949927 0.94
tpcds_q35/datafusion:vortex-compact 50471982 55936719 0.90
tpcds_q36/datafusion:vortex-compact 🚀 74444523 86886643 0.86
tpcds_q37/datafusion:vortex-compact 34580700 37015632 0.93
tpcds_q38/datafusion:vortex-compact 🚀 49955230 57221189 0.87
tpcds_q39/datafusion:vortex-compact 113625299 124260064 0.91
tpcds_q40/datafusion:vortex-compact 🚀 35926915 40276597 0.89
tpcds_q41/datafusion:vortex-compact 18622081 19452015 0.96
tpcds_q42/datafusion:vortex-compact 17947190 19533033 0.92
tpcds_q43/datafusion:vortex-compact 24390782 25919729 0.94
tpcds_q44/datafusion:vortex-compact 47301515 49311559 0.96
tpcds_q45/datafusion:vortex-compact 32918194 32429477 1.02
tpcds_q46/datafusion:vortex-compact 45261113 49692999 0.91
tpcds_q47/datafusion:vortex-compact 152228813 163518634 0.93
tpcds_q48/datafusion:vortex-compact 79617404 87188637 0.91
tpcds_q49/datafusion:vortex-compact 🚀 70154526 78022191 0.90
tpcds_q50/datafusion:vortex-compact 48100060 52615383 0.91
tpcds_q51/datafusion:vortex-compact 🚀 93626485 106405029 0.88
tpcds_q52/datafusion:vortex-compact 18739951 19712992 0.95
tpcds_q53/datafusion:vortex-compact 28461980 30007073 0.95
tpcds_q54/datafusion:vortex-compact 🚀 42221946 49092156 0.86
tpcds_q55/datafusion:vortex-compact 18186977 19120144 0.95
tpcds_q56/datafusion:vortex-compact 36347676 39106456 0.93
tpcds_q57/datafusion:vortex-compact 116226492 128401605 0.91
tpcds_q58/datafusion:vortex-compact 64178790 66609007 0.96
tpcds_q59/datafusion:vortex-compact 68105275 72835973 0.94
tpcds_q60/datafusion:vortex-compact 36463734 39088286 0.93
tpcds_q61/datafusion:vortex-compact 57409726 59605849 0.96
tpcds_q62/datafusion:vortex-compact 🚀 25074612 29627055 0.85
tpcds_q63/datafusion:vortex-compact 28181249 29373944 0.96
tpcds_q64/datafusion:vortex-compact 464892307 503110928 0.92
tpcds_q65/datafusion:vortex-compact 59101040 55696823 1.06
tpcds_q66/datafusion:vortex-compact 75350749 82357812 0.91
tpcds_q67/datafusion:vortex-compact 155423410 170968585 0.91
tpcds_q68/datafusion:vortex-compact 🚀 45411552 55410097 0.82
tpcds_q69/datafusion:vortex-compact 46453274 49693733 0.93
tpcds_q70/datafusion:vortex-compact 97849006 103167246 0.95
tpcds_q71/datafusion:vortex-compact 🚀 30202255 33637173 0.90
tpcds_q72/datafusion:vortex-compact 🚀 2204322700 2598161052 0.85
tpcds_q73/datafusion:vortex-compact 30425078 33068205 0.92
tpcds_q74/datafusion:vortex-compact 🚀 92708505 105091504 0.88
tpcds_q75/datafusion:vortex-compact 130441699 138734159 0.94
tpcds_q76/datafusion:vortex-compact 32159411 34623057 0.93
tpcds_q77/datafusion:vortex-compact 50899981 55778696 0.91
tpcds_q78/datafusion:vortex-compact 140047898 151994586 0.92
tpcds_q79/datafusion:vortex-compact 🚀 38484920 43415152 0.89
tpcds_q80/datafusion:vortex-compact 🚀 104065712 117084867 0.89
tpcds_q81/datafusion:vortex-compact 27389844 29990572 0.91
tpcds_q82/datafusion:vortex-compact 34747008 38069171 0.91
tpcds_q83/datafusion:vortex-compact 34022874 36026708 0.94
tpcds_q84/datafusion:vortex-compact 🚀 14230245 16696224 0.85
tpcds_q85/datafusion:vortex-compact 177635471 175634869 1.01
tpcds_q86/datafusion:vortex-compact 19298170 20252443 0.95
tpcds_q87/datafusion:vortex-compact 51948427 55829437 0.93
tpcds_q88/datafusion:vortex-compact 77012356 83938736 0.92
tpcds_q89/datafusion:vortex-compact 31319160 34224583 0.92
tpcds_q90/datafusion:vortex-compact 14798626 16348205 0.91
tpcds_q91/datafusion:vortex-compact 33818791 34101067 0.99
tpcds_q92/datafusion:vortex-compact 23721408 26154528 0.91
tpcds_q93/datafusion:vortex-compact 40862805 42002022 0.97
tpcds_q94/datafusion:vortex-compact 🚀 25977463 30392774 0.85
tpcds_q95/datafusion:vortex-compact 🚀 64512284 76012465 0.85
tpcds_q96/datafusion:vortex-compact 🚀 17400411 19437221 0.90
tpcds_q97/datafusion:vortex-compact 🚀 35693287 42958561 0.83
tpcds_q98/datafusion:vortex-compact 🚀 29836449 34962969 0.85
tpcds_q99/datafusion:vortex-compact 34620607 37932334 0.91
datafusion / parquet (0.904x ➖, 39↑ 0↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
tpcds_q01/datafusion:parquet 🚀 28174592 33021182 0.85
tpcds_q02/datafusion:parquet 44155787 45743268 0.97
tpcds_q03/datafusion:parquet 🚀 12888394 14522547 0.89
tpcds_q04/datafusion:parquet 🚀 256712078 307416561 0.84
tpcds_q05/datafusion:parquet 🚀 39622299 50314404 0.79
tpcds_q06/datafusion:parquet 58057612 60199484 0.96
tpcds_q07/datafusion:parquet 78741900 86456549 0.91
tpcds_q08/datafusion:parquet 26961794 27171143 0.99
tpcds_q09/datafusion:parquet 46829937 50863639 0.92
tpcds_q10/datafusion:parquet 71732379 74802450 0.96
tpcds_q11/datafusion:parquet 🚀 142827743 162437932 0.88
tpcds_q12/datafusion:parquet 🚀 16609234 18834168 0.88
tpcds_q13/datafusion:parquet 76071816 79113537 0.96
tpcds_q14/datafusion:parquet 165268487 182746766 0.90
tpcds_q15/datafusion:parquet 🚀 21399945 24184014 0.88
tpcds_q16/datafusion:parquet 23461914 25574809 0.92
tpcds_q17/datafusion:parquet 63667291 67407985 0.94
tpcds_q18/datafusion:parquet 113387936 123610529 0.92
tpcds_q19/datafusion:parquet 22076448 23781959 0.93
tpcds_q20/datafusion:parquet 16843699 18490359 0.91
tpcds_q21/datafusion:parquet 18221654 20112421 0.91
tpcds_q22/datafusion:parquet 153389812 162737675 0.94
tpcds_q23/datafusion:parquet 🚀 147707445 172293148 0.86
tpcds_q24/datafusion:parquet 88321312 97603390 0.90
tpcds_q25/datafusion:parquet 66121991 68837988 0.96
tpcds_q26/datafusion:parquet 64665844 70649950 0.92
tpcds_q27/datafusion:parquet 🚀 147034114 163690310 0.90
tpcds_q28/datafusion:parquet 45377655 49567216 0.92
tpcds_q29/datafusion:parquet 66234501 68960053 0.96
tpcds_q30/datafusion:parquet 35507440 37352668 0.95
tpcds_q31/datafusion:parquet 63499045 70090418 0.91
tpcds_q32/datafusion:parquet 18017749 19812835 0.91
tpcds_q33/datafusion:parquet 26536345 29148337 0.91
tpcds_q34/datafusion:parquet 21226270 23302224 0.91
tpcds_q35/datafusion:parquet 🚀 68794093 80829966 0.85
tpcds_q36/datafusion:parquet 56264073 61648492 0.91
tpcds_q37/datafusion:parquet 🚀 18313097 20777597 0.88
tpcds_q38/datafusion:parquet 🚀 39611619 44226980 0.90
tpcds_q39/datafusion:parquet 75913116 84193117 0.90
tpcds_q40/datafusion:parquet 24009775 24399606 0.98
tpcds_q41/datafusion:parquet 🚀 13152537 15212470 0.86
tpcds_q42/datafusion:parquet 11711951 12527195 0.93
tpcds_q43/datafusion:parquet 17013489 18369732 0.93
tpcds_q44/datafusion:parquet 34060666 34909722 0.98
tpcds_q45/datafusion:parquet 🚀 28350828 32564730 0.87
tpcds_q46/datafusion:parquet 31765625 33742784 0.94
tpcds_q47/datafusion:parquet 123063005 135427989 0.91
tpcds_q48/datafusion:parquet 67631252 73859762 0.92
tpcds_q49/datafusion:parquet 🚀 54283986 60958193 0.89
tpcds_q50/datafusion:parquet 43269050 47331179 0.91
tpcds_q51/datafusion:parquet 🚀 86354027 99510884 0.87
tpcds_q52/datafusion:parquet 🚀 11561989 13015971 0.89
tpcds_q53/datafusion:parquet 18749835 18606106 1.01
tpcds_q54/datafusion:parquet 34313489 37953349 0.90
tpcds_q55/datafusion:parquet 🚀 11442610 13112118 0.87
tpcds_q56/datafusion:parquet 27116568 29762373 0.91
tpcds_q57/datafusion:parquet 101307342 104341772 0.97
tpcds_q58/datafusion:parquet 🚀 48176906 53820005 0.90
tpcds_q59/datafusion:parquet 🚀 56505019 63066667 0.90
tpcds_q60/datafusion:parquet 27014059 29573737 0.91
tpcds_q61/datafusion:parquet 44120213 46842192 0.94
tpcds_q62/datafusion:parquet 🚀 23773272 28523479 0.83
tpcds_q63/datafusion:parquet 🚀 17428634 20147200 0.87
tpcds_q64/datafusion:parquet 519775228 557085103 0.93
tpcds_q65/datafusion:parquet 37208224 40869893 0.91
tpcds_q66/datafusion:parquet 70257402 77827672 0.90
tpcds_q67/datafusion:parquet 🚀 150095680 167986703 0.89
tpcds_q68/datafusion:parquet 31704939 34870589 0.91
tpcds_q69/datafusion:parquet 🚀 64346563 72899693 0.88
tpcds_q70/datafusion:parquet 🚀 86836648 101486171 0.86
tpcds_q71/datafusion:parquet 21669781 23921492 0.91
tpcds_q72/datafusion:parquet 🚀 615248694 737755964 0.83
tpcds_q73/datafusion:parquet 20139964 22134347 0.91
tpcds_q74/datafusion:parquet 🚀 81793375 94798537 0.86
tpcds_q75/datafusion:parquet 🚀 99727910 112233205 0.89
tpcds_q76/datafusion:parquet 🚀 29531698 33731427 0.88
tpcds_q77/datafusion:parquet 38913072 43226667 0.90
tpcds_q78/datafusion:parquet 🚀 112706455 126291046 0.89
tpcds_q79/datafusion:parquet 25738227 28466633 0.90
tpcds_q80/datafusion:parquet 80679727 86833741 0.93
tpcds_q81/datafusion:parquet 31933130 34851016 0.92
tpcds_q82/datafusion:parquet 19456436 20811266 0.93
tpcds_q83/datafusion:parquet 36327263 39875709 0.91
tpcds_q84/datafusion:parquet 38822682 42459933 0.91
tpcds_q85/datafusion:parquet 150567485 161709456 0.93
tpcds_q86/datafusion:parquet 🚀 15583054 18216033 0.86
tpcds_q87/datafusion:parquet 🚀 40138861 45910530 0.87
tpcds_q88/datafusion:parquet 60220890 64972758 0.93
tpcds_q89/datafusion:parquet 🚀 21145118 24111762 0.88
tpcds_q90/datafusion:parquet 🚀 14289601 16387623 0.87
tpcds_q91/datafusion:parquet 🚀 56308974 63523503 0.89
tpcds_q92/datafusion:parquet 🚀 16661530 20426527 0.82
tpcds_q93/datafusion:parquet 32155276 35481010 0.91
tpcds_q94/datafusion:parquet 🚀 19818760 22454531 0.88
tpcds_q95/datafusion:parquet 59280123 64249996 0.92
tpcds_q96/datafusion:parquet 🚀 11756730 13087012 0.90
tpcds_q97/datafusion:parquet 29632555 31401539 0.94
tpcds_q98/datafusion:parquet 20664308 22241187 0.93
tpcds_q99/datafusion:parquet 🚀 25316798 31393451 0.81
duckdb / vortex-file-compressed (0.924x ➖, 24↑ 0↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
tpcds_q01/duckdb:vortex-file-compressed 24958034 25002812 1.00
tpcds_q02/duckdb:vortex-file-compressed 🚀 27356542 33514665 0.82
tpcds_q03/duckdb:vortex-file-compressed 21834746 22370920 0.98
tpcds_q04/duckdb:vortex-file-compressed 91101625 100604476 0.91
tpcds_q05/duckdb:vortex-file-compressed 🚀 31436569 37427942 0.84
tpcds_q06/duckdb:vortex-file-compressed 🚀 32188405 36395558 0.88
tpcds_q07/duckdb:vortex-file-compressed 21204840 22666591 0.94
tpcds_q08/duckdb:vortex-file-compressed 🚀 25512285 29632039 0.86
tpcds_q09/duckdb:vortex-file-compressed 16032176 17137246 0.94
tpcds_q10/duckdb:vortex-file-compressed 37190220 40098055 0.93
tpcds_q11/duckdb:vortex-file-compressed 64113818 68932897 0.93
tpcds_q12/duckdb:vortex-file-compressed 15415467 16622272 0.93
tpcds_q13/duckdb:vortex-file-compressed 32879606 34089645 0.96
tpcds_q14/duckdb:vortex-file-compressed 95692016 104856890 0.91
tpcds_q15/duckdb:vortex-file-compressed 🚀 26284390 30123800 0.87
tpcds_q16/duckdb:vortex-file-compressed 🚀 26040498 29881533 0.87
tpcds_q17/duckdb:vortex-file-compressed 43894007 47389188 0.93
tpcds_q18/duckdb:vortex-file-compressed 🚀 36433796 40750419 0.89
tpcds_q19/duckdb:vortex-file-compressed 🚀 31322817 35450421 0.88
tpcds_q20/duckdb:vortex-file-compressed 17063060 18507544 0.92
tpcds_q21/duckdb:vortex-file-compressed 18187195 17558330 1.04
tpcds_q22/duckdb:vortex-file-compressed 🚀 76794535 86338929 0.89
tpcds_q23/duckdb:vortex-file-compressed 99604775 97110277 1.03
tpcds_q24/duckdb:vortex-file-compressed 🚀 46441040 53572028 0.87
tpcds_q25/duckdb:vortex-file-compressed 40422759 43698092 0.93
tpcds_q26/duckdb:vortex-file-compressed 21663966 20318875 1.07
tpcds_q27/duckdb:vortex-file-compressed 25146576 24655380 1.02
tpcds_q28/duckdb:vortex-file-compressed 🚀 11927926 13520025 0.88
tpcds_q29/duckdb:vortex-file-compressed 🚀 39881295 44421809 0.90
tpcds_q30/duckdb:vortex-file-compressed 25373646 26427746 0.96
tpcds_q31/duckdb:vortex-file-compressed 30167402 30936327 0.98
tpcds_q32/duckdb:vortex-file-compressed 13231089 14323441 0.92
tpcds_q33/duckdb:vortex-file-compressed 24671827 27009969 0.91
tpcds_q34/duckdb:vortex-file-compressed 24990788 27080269 0.92
tpcds_q35/duckdb:vortex-file-compressed 63721842 69145867 0.92
tpcds_q36/duckdb:vortex-file-compressed 🚀 25145189 28399544 0.89
tpcds_q37/duckdb:vortex-file-compressed 19128543 21011436 0.91
tpcds_q38/duckdb:vortex-file-compressed 38569441 39199612 0.98
tpcds_q39/duckdb:vortex-file-compressed 35164692 36229082 0.97
tpcds_q40/duckdb:vortex-file-compressed 21203679 20965895 1.01
tpcds_q41/duckdb:vortex-file-compressed 10103069 10913426 0.93
tpcds_q42/duckdb:vortex-file-compressed 13707708 15008627 0.91
tpcds_q43/duckdb:vortex-file-compressed 20995749 23261347 0.90
tpcds_q44/duckdb:vortex-file-compressed 🚀 20515795 23174581 0.89
tpcds_q45/duckdb:vortex-file-compressed 29664767 32734815 0.91
tpcds_q46/duckdb:vortex-file-compressed 30229699 32013857 0.94
tpcds_q47/duckdb:vortex-file-compressed 52388396 55925228 0.94
tpcds_q48/duckdb:vortex-file-compressed 28746756 29717216 0.97
tpcds_q49/duckdb:vortex-file-compressed 🚀 29656358 34584823 0.86
tpcds_q50/duckdb:vortex-file-compressed 28068440 27923346 1.01
tpcds_q51/duckdb:vortex-file-compressed 104672368 106796523 0.98
tpcds_q52/duckdb:vortex-file-compressed 🚀 12968939 14541675 0.89
tpcds_q53/duckdb:vortex-file-compressed 21873992 24163198 0.91
tpcds_q54/duckdb:vortex-file-compressed 28353164 29631321 0.96
tpcds_q55/duckdb:vortex-file-compressed 12577133 13364401 0.94
tpcds_q56/duckdb:vortex-file-compressed 24308059 26631593 0.91
tpcds_q57/duckdb:vortex-file-compressed 41400356 44376314 0.93
tpcds_q58/duckdb:vortex-file-compressed 🚀 29069983 33003723 0.88
tpcds_q59/duckdb:vortex-file-compressed 55986679 58371101 0.96
tpcds_q60/duckdb:vortex-file-compressed 🚀 24819939 28617539 0.87
tpcds_q61/duckdb:vortex-file-compressed 30576491 33257549 0.92
tpcds_q62/duckdb:vortex-file-compressed 15262328 16208847 0.94
tpcds_q63/duckdb:vortex-file-compressed 20515874 21890823 0.94
tpcds_q64/duckdb:vortex-file-compressed 93783806 101807714 0.92
tpcds_q65/duckdb:vortex-file-compressed 22768063 23778499 0.96
tpcds_q66/duckdb:vortex-file-compressed 28997188 31808473 0.91
tpcds_q67/duckdb:vortex-file-compressed 141233915 150987633 0.94
tpcds_q68/duckdb:vortex-file-compressed 30816890 32347954 0.95
tpcds_q69/duckdb:vortex-file-compressed 🚀 39232631 43892206 0.89
tpcds_q70/duckdb:vortex-file-compressed 36917364 38962216 0.95
tpcds_q71/duckdb:vortex-file-compressed 21760763 22561947 0.96
tpcds_q72/duckdb:vortex-file-compressed 167788626 179433971 0.94
tpcds_q73/duckdb:vortex-file-compressed 🚀 24231404 28899579 0.84
tpcds_q74/duckdb:vortex-file-compressed 44071468 47056983 0.94
tpcds_q75/duckdb:vortex-file-compressed 50286420 53937664 0.93
tpcds_q76/duckdb:vortex-file-compressed 🚀 19959582 24727737 0.81
tpcds_q77/duckdb:vortex-file-compressed 🚀 23323536 27535634 0.85
tpcds_q78/duckdb:vortex-file-compressed 77621283 83230999 0.93
tpcds_q79/duckdb:vortex-file-compressed 25396988 24802739 1.02
tpcds_q80/duckdb:vortex-file-compressed 48524270 53566021 0.91
tpcds_q81/duckdb:vortex-file-compressed 28593271 31660351 0.90
tpcds_q82/duckdb:vortex-file-compressed 45230505 49741725 0.91
tpcds_q83/duckdb:vortex-file-compressed 25669048 28318640 0.91
tpcds_q84/duckdb:vortex-file-compressed 17003865 17628808 0.96
tpcds_q85/duckdb:vortex-file-compressed 40076843 43826502 0.91
tpcds_q86/duckdb:vortex-file-compressed 16425196 18171598 0.90
tpcds_q87/duckdb:vortex-file-compressed 40467905 44668855 0.91
tpcds_q88/duckdb:vortex-file-compressed 53368466 54967027 0.97
tpcds_q89/duckdb:vortex-file-compressed 21560354 23029183 0.94
tpcds_q90/duckdb:vortex-file-compressed 10018035 11087942 0.90
tpcds_q91/duckdb:vortex-file-compressed 🚀 21285070 26082438 0.82
tpcds_q92/duckdb:vortex-file-compressed 20061581 20799420 0.96
tpcds_q93/duckdb:vortex-file-compressed 31208949 31489584 0.99
tpcds_q94/duckdb:vortex-file-compressed 21594969 23431951 0.92
tpcds_q95/duckdb:vortex-file-compressed 158234142 164687693 0.96
tpcds_q96/duckdb:vortex-file-compressed 12541185 13448740 0.93
tpcds_q97/duckdb:vortex-file-compressed 🚀 38935629 44215063 0.88
tpcds_q98/duckdb:vortex-file-compressed 18871043 20769427 0.91
tpcds_q99/duckdb:vortex-file-compressed 21962891 24234832 0.91
duckdb / vortex-compact (0.924x ➖, 30↑ 1↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
tpcds_q01/duckdb:vortex-compact 26012299 26917309 0.97
tpcds_q02/duckdb:vortex-compact 🚀 36692585 43959757 0.83
tpcds_q03/duckdb:vortex-compact 49280086 51575911 0.96
tpcds_q04/duckdb:vortex-compact 🚀 99496078 115379991 0.86
tpcds_q05/duckdb:vortex-compact 39417241 42951360 0.92
tpcds_q06/duckdb:vortex-compact 39207545 42103009 0.93
tpcds_q07/duckdb:vortex-compact 35203371 36564183 0.96
tpcds_q08/duckdb:vortex-compact 40128504 41387509 0.97
tpcds_q09/duckdb:vortex-compact 19413047 21015879 0.92
tpcds_q10/duckdb:vortex-compact 53857907 56221737 0.96
tpcds_q11/duckdb:vortex-compact 🚀 71723731 81881561 0.88
tpcds_q12/duckdb:vortex-compact 🚀 21304594 24695455 0.86
tpcds_q13/duckdb:vortex-compact 53865766 55315486 0.97
tpcds_q14/duckdb:vortex-compact 115839587 121943424 0.95
tpcds_q15/duckdb:vortex-compact 30910943 33180000 0.93
tpcds_q16/duckdb:vortex-compact 28842303 31521170 0.92
tpcds_q17/duckdb:vortex-compact 56156162 62245424 0.90
tpcds_q18/duckdb:vortex-compact 51920568 56824601 0.91
tpcds_q19/duckdb:vortex-compact 43679403 46248882 0.94
tpcds_q20/duckdb:vortex-compact 🚀 20541240 23050951 0.89
tpcds_q21/duckdb:vortex-compact 17806598 19269999 0.92
tpcds_q22/duckdb:vortex-compact 77402457 82629216 0.94
tpcds_q23/duckdb:vortex-compact 97967748 106153859 0.92
tpcds_q24/duckdb:vortex-compact 56788956 61308821 0.93
tpcds_q25/duckdb:vortex-compact 53252674 55497443 0.96
tpcds_q26/duckdb:vortex-compact 🚀 30599931 36624025 0.84
tpcds_q27/duckdb:vortex-compact 39550800 38713723 1.02
tpcds_q28/duckdb:vortex-compact 🚨 33743955 26721156 1.26
tpcds_q29/duckdb:vortex-compact 52071175 56119667 0.93
tpcds_q30/duckdb:vortex-compact 🚀 28351055 32441377 0.87
tpcds_q31/duckdb:vortex-compact 38386892 39078359 0.98
tpcds_q32/duckdb:vortex-compact 20802482 22916969 0.91
tpcds_q33/duckdb:vortex-compact 🚀 31441085 37665897 0.83
tpcds_q34/duckdb:vortex-compact 🚀 29969960 33318934 0.90
tpcds_q35/duckdb:vortex-compact 75018571 80269751 0.93
tpcds_q36/duckdb:vortex-compact 35904235 38035701 0.94
tpcds_q37/duckdb:vortex-compact 23597978 25601059 0.92
tpcds_q38/duckdb:vortex-compact 🚀 39604503 45509726 0.87
tpcds_q39/duckdb:vortex-compact 🚀 37771696 41997461 0.90
tpcds_q40/duckdb:vortex-compact 🚀 24034916 28483840 0.84
tpcds_q41/duckdb:vortex-compact 11949076 12790220 0.93
tpcds_q42/duckdb:vortex-compact 🚀 18378098 21238484 0.87
tpcds_q43/duckdb:vortex-compact 31334909 34558350 0.91
tpcds_q44/duckdb:vortex-compact 30471642 31241482 0.98
tpcds_q45/duckdb:vortex-compact 35439343 39242570 0.90
tpcds_q46/duckdb:vortex-compact 45949713 46591287 0.99
tpcds_q47/duckdb:vortex-compact 63096884 65214052 0.97
tpcds_q48/duckdb:vortex-compact 46394312 47795490 0.97
tpcds_q49/duckdb:vortex-compact 47234989 48737802 0.97
tpcds_q50/duckdb:vortex-compact 39730939 41261558 0.96
tpcds_q51/duckdb:vortex-compact 112409944 117430441 0.96
tpcds_q52/duckdb:vortex-compact 19769688 21950884 0.90
tpcds_q53/duckdb:vortex-compact 32526831 34000190 0.96
tpcds_q54/duckdb:vortex-compact 36533978 39478819 0.93
tpcds_q55/duckdb:vortex-compact 18522071 20068683 0.92
tpcds_q56/duckdb:vortex-compact 🚀 32572004 37233731 0.87
tpcds_q57/duckdb:vortex-compact 45565738 49248190 0.93
tpcds_q58/duckdb:vortex-compact 37064603 36502927 1.02
tpcds_q59/duckdb:vortex-compact 67057594 67946394 0.99
tpcds_q60/duckdb:vortex-compact 🚀 35828062 40362066 0.89
tpcds_q61/duckdb:vortex-compact 54316507 57036652 0.95
tpcds_q62/duckdb:vortex-compact 🚀 21297239 23742563 0.90
tpcds_q63/duckdb:vortex-compact 30701333 33000608 0.93
tpcds_q64/duckdb:vortex-compact 123107800 135151845 0.91
tpcds_q65/duckdb:vortex-compact 30969502 31183472 0.99
tpcds_q66/duckdb:vortex-compact 36357612 38570795 0.94
tpcds_q67/duckdb:vortex-compact 🚀 149869308 166524005 0.90
tpcds_q68/duckdb:vortex-compact 44631238 48787453 0.91
tpcds_q69/duckdb:vortex-compact 54089688 59130071 0.91
tpcds_q70/duckdb:vortex-compact 57729196 59852545 0.96
tpcds_q71/duckdb:vortex-compact 🚀 29316634 33644065 0.87
tpcds_q72/duckdb:vortex-compact 185506600 193373835 0.96
tpcds_q73/duckdb:vortex-compact 🚀 27555360 31607402 0.87
tpcds_q74/duckdb:vortex-compact 🚀 48720956 54843759 0.89
tpcds_q75/duckdb:vortex-compact 🚀 59823104 67895687 0.88
tpcds_q76/duckdb:vortex-compact 🚀 28910487 32617429 0.89
tpcds_q77/duckdb:vortex-compact 39700452 40320733 0.98
tpcds_q78/duckdb:vortex-compact 84148862 93284045 0.90
tpcds_q79/duckdb:vortex-compact 41551696 43765202 0.95
tpcds_q80/duckdb:vortex-compact 🚀 68864053 76572655 0.90
tpcds_q81/duckdb:vortex-compact 🚀 32661090 37631650 0.87
tpcds_q82/duckdb:vortex-compact 49928271 54681285 0.91
tpcds_q83/duckdb:vortex-compact 35860001 38482065 0.93
tpcds_q84/duckdb:vortex-compact 🚀 21269568 24770100 0.86
tpcds_q85/duckdb:vortex-compact 🚀 50880852 58746367 0.87
tpcds_q86/duckdb:vortex-compact 🚀 21943062 24435849 0.90
tpcds_q87/duckdb:vortex-compact 46871038 50320570 0.93
tpcds_q88/duckdb:vortex-compact 🚀 74734063 84613958 0.88
tpcds_q89/duckdb:vortex-compact 33470692 34966731 0.96
tpcds_q90/duckdb:vortex-compact 10969288 12014580 0.91
tpcds_q91/duckdb:vortex-compact 41488050 44173623 0.94
tpcds_q92/duckdb:vortex-compact 44482175 48451996 0.92
tpcds_q93/duckdb:vortex-compact 34261699 37085563 0.92
tpcds_q94/duckdb:vortex-compact 🚀 27636076 30839512 0.90
tpcds_q95/duckdb:vortex-compact 163539318 164396023 0.99
tpcds_q96/duckdb:vortex-compact 16830383 17907806 0.94
tpcds_q97/duckdb:vortex-compact 🚀 40733197 47137443 0.86
tpcds_q98/duckdb:vortex-compact 27801303 30853582 0.90
tpcds_q99/duckdb:vortex-compact 26418610 28129651 0.94
duckdb / parquet (0.941x ➖, 10↑ 1↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
tpcds_q01/duckdb:parquet 29228104 31679670 0.92
tpcds_q02/duckdb:parquet 24478609 25884800 0.95
tpcds_q03/duckdb:parquet 12573524 13741447 0.92
tpcds_q04/duckdb:parquet 170059801 178223385 0.95
tpcds_q05/duckdb:parquet 31587401 33243730 0.95
tpcds_q06/duckdb:parquet 33654868 34087598 0.99
tpcds_q07/duckdb:parquet 24039184 25191365 0.95
tpcds_q08/duckdb:parquet 29043020 30678092 0.95
tpcds_q09/duckdb:parquet 44719793 47694347 0.94
tpcds_q10/duckdb:parquet 🚀 37399244 42152328 0.89
tpcds_q11/duckdb:parquet 88353741 97623658 0.91
tpcds_q12/duckdb:parquet 17344980 17866771 0.97
tpcds_q13/duckdb:parquet 34915864 36892477 0.95
tpcds_q14/duckdb:parquet 104149139 111051031 0.94
tpcds_q15/duckdb:parquet 🚀 30351320 34093942 0.89
tpcds_q16/duckdb:parquet 22723718 23632378 0.96
tpcds_q17/duckdb:parquet 38182219 40316983 0.95
tpcds_q18/duckdb:parquet 49013904 50463548 0.97
tpcds_q19/duckdb:parquet 31505813 33282579 0.95
tpcds_q20/duckdb:parquet 18684220 19700752 0.95
tpcds_q21/duckdb:parquet 11753113 12287235 0.96
tpcds_q22/duckdb:parquet 🚀 70530204 80652777 0.87
tpcds_q23/duckdb:parquet 🚀 81446636 91694301 0.89
tpcds_q24/duckdb:parquet 46724689 51736928 0.90
tpcds_q25/duckdb:parquet 35848718 38376518 0.93
tpcds_q26/duckdb:parquet 39200163 41946351 0.93
tpcds_q27/duckdb:parquet 52800320 55424224 0.95
tpcds_q28/duckdb:parquet 42438566 46433083 0.91
tpcds_q29/duckdb:parquet 38905266 38153382 1.02
tpcds_q30/duckdb:parquet 37512104 39809688 0.94
tpcds_q31/duckdb:parquet 27825189 30457621 0.91
tpcds_q32/duckdb:parquet 🚀 12387425 13836601 0.90
tpcds_q33/duckdb:parquet 24231480 25645321 0.94
tpcds_q34/duckdb:parquet 23039026 24782844 0.93
tpcds_q35/duckdb:parquet 61512799 65907421 0.93
tpcds_q36/duckdb:parquet 22190247 23880878 0.93
tpcds_q37/duckdb:parquet 🚀 14117567 15997697 0.88
tpcds_q38/duckdb:parquet 36634200 40046500 0.91
tpcds_q39/duckdb:parquet 33194766 33821861 0.98
tpcds_q40/duckdb:parquet 🚀 19314338 21704664 0.89
tpcds_q41/duckdb:parquet 8702782 9512881 0.91
tpcds_q42/duckdb:parquet 12433310 12972285 0.96
tpcds_q43/duckdb:parquet 🚀 16809265 19255235 0.87
tpcds_q44/duckdb:parquet 26689502 28670630 0.93
tpcds_q45/duckdb:parquet 29303576 31416764 0.93
tpcds_q46/duckdb:parquet 47015174 51151391 0.92
tpcds_q47/duckdb:parquet 49976195 53593050 0.93
tpcds_q48/duckdb:parquet 32193025 34665138 0.93
tpcds_q49/duckdb:parquet 28447560 30892126 0.92
tpcds_q50/duckdb:parquet 25923916 27537888 0.94
tpcds_q51/duckdb:parquet 🚨 128306457 108940148 1.18
tpcds_q52/duckdb:parquet 13031739 13892136 0.94
tpcds_q53/duckdb:parquet 19200125 19657013 0.98
tpcds_q54/duckdb:parquet 28680983 30598296 0.94
tpcds_q55/duckdb:parquet 12720679 13911292 0.91
tpcds_q56/duckdb:parquet 23606974 25795330 0.92
tpcds_q57/duckdb:parquet 38079187 40760205 0.93
tpcds_q58/duckdb:parquet 26515141 27080150 0.98
tpcds_q59/duckdb:parquet 35766514 37957809 0.94
tpcds_q60/duckdb:parquet 25701990 26467685 0.97
tpcds_q61/duckdb:parquet 34079007 35901704 0.95
tpcds_q62/duckdb:parquet 12574438 13094449 0.96
tpcds_q63/duckdb:parquet 17579872 19199729 0.92
tpcds_q64/duckdb:parquet 75560717 80108745 0.94
tpcds_q65/duckdb:parquet 24003117 23452674 1.02
tpcds_q66/duckdb:parquet 32273824 30440085 1.06
tpcds_q67/duckdb:parquet 135701932 148508881 0.91
tpcds_q68/duckdb:parquet 39457193 40168827 0.98
tpcds_q69/duckdb:parquet 38358414 39154865 0.98
tpcds_q70/duckdb:parquet 22378505 24731064 0.90
tpcds_q71/duckdb:parquet 23815908 25378236 0.94
tpcds_q72/duckdb:parquet 168228359 174348171 0.96
tpcds_q73/duckdb:parquet 20134191 21176545 0.95
tpcds_q74/duckdb:parquet 127319432 134444156 0.95
tpcds_q75/duckdb:parquet 58485081 63626595 0.92
tpcds_q76/duckdb:parquet 22533078 23697314 0.95
tpcds_q77/duckdb:parquet 24826843 27481847 0.90
tpcds_q78/duckdb:parquet 🚀 77184807 87054314 0.89
tpcds_q79/duckdb:parquet 30411206 31255940 0.97
tpcds_q80/duckdb:parquet 🚀 43605467 48519718 0.90
tpcds_q81/duckdb:parquet 35766840 36896037 0.97
tpcds_q82/duckdb:parquet 16984042 18021224 0.94
tpcds_q83/duckdb:parquet 18387985 19544853 0.94
tpcds_q84/duckdb:parquet 20673686 21595843 0.96
tpcds_q85/duckdb:parquet 42367049 44733772 0.95
tpcds_q86/duckdb:parquet 13806275 14870660 0.93
tpcds_q87/duckdb:parquet 39149553 41934201 0.93
tpcds_q88/duckdb:parquet 54188511 54985839 0.99
tpcds_q89/duckdb:parquet 22060993 23120486 0.95
tpcds_q90/duckdb:parquet 8547670 9374083 0.91
tpcds_q91/duckdb:parquet 24546545 27247581 0.90
tpcds_q92/duckdb:parquet 13063324 13999581 0.93
tpcds_q93/duckdb:parquet 31972778 34652709 0.92
tpcds_q94/duckdb:parquet 18021113 19216894 0.94
tpcds_q95/duckdb:parquet 133693059 139411077 0.96
tpcds_q96/duckdb:parquet 10798933 11249047 0.96
tpcds_q97/duckdb:parquet 37966252 40316356 0.94
tpcds_q98/duckdb:parquet 24679752 25450588 0.97
tpcds_q99/duckdb:parquet 20444527 21136516 0.97
duckdb / duckdb (0.918x ➖, 29↑ 0↓)
name PR 4256223 (ns) base 7a93d3e (ns) ratio (PR/base)
tpcds_q01/duckdb:duckdb 21508775 23531703 0.91
tpcds_q02/duckdb:duckdb 19170485 21194653 0.90
tpcds_q03/duckdb:duckdb 10363685 11278653 0.92
tpcds_q04/duckdb:duckdb 176643514 191267586 0.92
tpcds_q05/duckdb:duckdb 21588319 22338391 0.97
tpcds_q06/duckdb:duckdb 27818368 30507719 0.91
tpcds_q07/duckdb:duckdb 39869285 42954647 0.93
tpcds_q08/duckdb:duckdb 119859434 122936119 0.97
tpcds_q09/duckdb:duckdb 20431165 21800253 0.94
tpcds_q10/duckdb:duckdb 27686066 30144209 0.92
tpcds_q11/duckdb:duckdb 95281001 97795632 0.97
tpcds_q12/duckdb:duckdb 🚀 13661908 15194146 0.90
tpcds_q13/duckdb:duckdb 26582717 28323469 0.94
tpcds_q14/duckdb:duckdb 93937188 99839973 0.94
tpcds_q15/duckdb:duckdb 🚀 24692592 28033331 0.88
tpcds_q16/duckdb:duckdb 20954615 21618280 0.97
tpcds_q17/duckdb:duckdb 24099596 26771823 0.90
tpcds_q18/duckdb:duckdb 46644948 51009960 0.91
tpcds_q19/duckdb:duckdb 20516940 21331644 0.96
tpcds_q20/duckdb:duckdb 14030036 15202954 0.92
tpcds_q21/duckdb:duckdb 7476022 8271373 0.90
tpcds_q22/duckdb:duckdb 🚀 61298455 74631190 0.82
tpcds_q23/duckdb:duckdb 🚀 73968788 93638576 0.79
tpcds_q24/duckdb:duckdb 🚀 24933346 27840559 0.90
tpcds_q25/duckdb:duckdb 🚀 18199745 20869065 0.87
tpcds_q26/duckdb:duckdb 🚀 27822555 32038376 0.87
tpcds_q27/duckdb:duckdb 41714835 45635071 0.91
tpcds_q28/duckdb:duckdb 🚀 26191883 29983792 0.87
tpcds_q29/duckdb:duckdb 23518387 25195916 0.93
tpcds_q30/duckdb:duckdb 30782518 33386405 0.92
tpcds_q31/duckdb:duckdb 🚀 51544485 58677653 0.88
tpcds_q32/duckdb:duckdb 🚀 8023736 9451219 0.85
tpcds_q33/duckdb:duckdb 16569704 17515299 0.95
tpcds_q34/duckdb:duckdb 🚀 17504792 20545030 0.85
tpcds_q35/duckdb:duckdb 🚀 35849856 42175599 0.85
tpcds_q36/duckdb:duckdb 🚀 71488492 81293916 0.88
tpcds_q37/duckdb:duckdb 🚀 8624197 9684577 0.89
tpcds_q38/duckdb:duckdb 33698665 36033068 0.94
tpcds_q39/duckdb:duckdb 🚀 27237716 30832685 0.88
tpcds_q40/duckdb:duckdb 🚀 14611871 16788774 0.87
tpcds_q41/duckdb:duckdb 10188308 10402729 0.98
tpcds_q42/duckdb:duckdb 9707225 10550787 0.92
tpcds_q43/duckdb:duckdb 🚀 13585441 15687130 0.87
tpcds_q44/duckdb:duckdb 🚀 14756763 16683922 0.88
tpcds_q45/duckdb:duckdb 18288706 20118649 0.91
tpcds_q46/duckdb:duckdb 🚀 38292071 42852541 0.89
tpcds_q47/duckdb:duckdb 🚀 46459535 53466482 0.87
tpcds_q48/duckdb:duckdb 24694612 26745424 0.92
tpcds_q49/duckdb:duckdb 🚀 20625214 23434269 0.88
tpcds_q50/duckdb:duckdb 17592934 17611319 1.00
tpcds_q51/duckdb:duckdb 101184647 107651585 0.94
tpcds_q52/duckdb:duckdb 10072553 10388430 0.97
tpcds_q53/duckdb:duckdb 18186730 18928450 0.96
tpcds_q54/duckdb:duckdb 18759932 20124676 0.93
tpcds_q55/duckdb:duckdb 10871745 10117411 1.07
tpcds_q56/duckdb:duckdb 16784320 17854167 0.94
tpcds_q57/duckdb:duckdb 37481253 38458134 0.97
tpcds_q58/duckdb:duckdb 17810747 17902725 0.99
tpcds_q59/duckdb:duckdb 36558267 39113671 0.93
tpcds_q60/duckdb:duckdb 19714455 19404575 1.02
tpcds_q61/duckdb:duckdb 17360923 18059071 0.96
tpcds_q62/duckdb:duckdb 9739701 10673535 0.91
tpcds_q63/duckdb:duckdb 16492090 17737295 0.93
tpcds_q64/duckdb:duckdb 58401835 62923536 0.93
tpcds_q65/duckdb:duckdb 🚀 36152149 40265644 0.90
tpcds_q66/duckdb:duckdb 26370048 28124156 0.94
tpcds_q67/duckdb:duckdb 🚀 134345078 149290690 0.90
tpcds_q68/duckdb:duckdb 27372607 28544864 0.96
tpcds_q69/duckdb:duckdb 28773903 29422885 0.98
tpcds_q70/duckdb:duckdb 16990452 18159876 0.94
tpcds_q71/duckdb:duckdb 16921066 18299315 0.92
tpcds_q72/duckdb:duckdb 46100154 49502724 0.93
tpcds_q73/duckdb:duckdb 14074442 15510053 0.91
tpcds_q74/duckdb:duckdb 144233380 153571616 0.94
tpcds_q75/duckdb:duckdb 46646036 51181361 0.91
tpcds_q76/duckdb:duckdb 🚀 14549692 16976521 0.86
tpcds_q77/duckdb:duckdb 15714736 16743719 0.94
tpcds_q78/duckdb:duckdb 66983427 70726707 0.95
tpcds_q79/duckdb:duckdb 19793166 21228590 0.93
tpcds_q80/duckdb:duckdb 33028459 35298371 0.94
tpcds_q81/duckdb:duckdb 39562138 43063629 0.92
tpcds_q82/duckdb:duckdb 11129109 11338324 0.98
tpcds_q83/duckdb:duckdb 🚀 10647942 12137100 0.88
tpcds_q84/duckdb:duckdb 15011594 15645687 0.96
tpcds_q85/duckdb:duckdb 26073399 27883540 0.94
tpcds_q86/duckdb:duckdb 12021212 13073720 0.92
tpcds_q87/duckdb:duckdb 35488851 38086652 0.93
tpcds_q88/duckdb:duckdb 30621110 33631048 0.91
tpcds_q89/duckdb:duckdb 🚀 21558200 24324745 0.89
tpcds_q90/duckdb:duckdb 🚀 6097227 7182960 0.85
tpcds_q91/duckdb:duckdb 14972380 16394691 0.91
tpcds_q92/duckdb:duckdb 9857928 10715931 0.92
tpcds_q93/duckdb:duckdb 23503518 25464563 0.92
tpcds_q94/duckdb:duckdb 14109397 15239341 0.93
tpcds_q95/duckdb:duckdb 🚀 110295610 140457964 0.79
tpcds_q96/duckdb:duckdb 🚀 5825664 6494712 0.90
tpcds_q97/duckdb:duckdb 31860801 34058172 0.94
tpcds_q98/duckdb:duckdb 20876137 21127401 0.99
tpcds_q99/duckdb:duckdb 16564627 18258679 0.91

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 -9.4% -11.3% +2.1% +23.2% ➖ noise
1 datafusion:vortex-file-compressed -10.1% -11.3% +1.3% +20.2% ➖ noise
1 duckdb:duckdb -8.6% -11.3% +3.0% +24.6% ➖ noise
1 duckdb:vortex-compact -3.4% -11.3% +8.9% +21.6% ➖ noise
1 duckdb:vortex-file-compressed -0.2% -11.3% +12.5% +27.1% ➖ noise
2 datafusion:vortex-compact -6.2% -4.5% -1.9% +12.5% ➖ noise
2 datafusion:vortex-file-compressed -8.3% -4.5% -4.0% +10.2% ➖ noise
2 duckdb:duckdb -9.6% -4.5% -5.3% +12.4% ➖ noise
2 duckdb:vortex-compact -16.5% -4.5% -12.6% +25.5% ➖ noise
2 duckdb:vortex-file-compressed -18.4% -4.5% -14.6% +33.5% ➖ noise
3 datafusion:vortex-compact -6.3% -9.9% +4.0% +10.0% ➖ noise
3 datafusion:vortex-file-compressed -5.3% -9.9% +5.1% +10.2% ➖ noise
3 duckdb:duckdb -8.1% -9.9% +2.0% +10.0% ➖ noise
3 duckdb:vortex-compact -4.5% -9.9% +6.0% +10.0% ➖ noise
3 duckdb:vortex-file-compressed -2.4% -9.9% +8.3% +17.2% ➖ noise
4 datafusion:vortex-compact -1.0% -10.7% +10.9% +10.0% 🚨 regression
4 datafusion:vortex-file-compressed -9.7% -10.7% +1.1% +10.4% ➖ noise
4 duckdb:duckdb -7.6% -10.7% +3.5% +10.0% ➖ noise
4 duckdb:vortex-compact -13.8% -10.7% -3.4% +15.3% ➖ noise
4 duckdb:vortex-file-compressed -9.4% -10.7% +1.4% +10.0% ➖ noise
5 datafusion:vortex-compact -21.2% -13.5% -8.9% +18.8% ➖ noise
5 datafusion:vortex-file-compressed -13.2% -13.5% +0.4% +10.3% ➖ noise
5 duckdb:duckdb -3.4% -13.5% +11.7% +11.2% 🚨 regression
5 duckdb:vortex-compact -8.2% -13.5% +6.1% +10.2% ➖ noise
5 duckdb:vortex-file-compressed -16.0% -13.5% -2.9% +10.0% ➖ noise
6 datafusion:vortex-compact -2.0% -2.4% +0.4% +10.0% ➖ noise
6 datafusion:vortex-file-compressed -3.4% -2.4% -1.0% +13.8% ➖ noise
6 duckdb:duckdb -8.8% -2.4% -6.6% +10.0% ➖ noise
6 duckdb:vortex-compact -6.9% -2.4% -4.6% +15.6% ➖ noise
6 duckdb:vortex-file-compressed -11.6% -2.4% -9.4% +10.0% ✅ faster
7 datafusion:vortex-compact -9.6% -6.8% -3.1% +22.3% ➖ noise
7 datafusion:vortex-file-compressed -4.9% -6.8% +2.1% +14.7% ➖ noise
7 duckdb:duckdb -7.2% -6.8% -0.4% +10.0% ➖ noise
7 duckdb:vortex-compact -3.7% -6.8% +3.3% +14.2% ➖ noise
7 duckdb:vortex-file-compressed -6.4% -6.8% +0.3% +10.0% ➖ noise
8 datafusion:vortex-compact -9.6% -3.1% -6.7% +10.0% ➖ noise
8 datafusion:vortex-file-compressed -11.9% -3.1% -9.1% +17.3% ➖ noise
8 duckdb:duckdb -2.5% -3.1% +0.6% +10.0% ➖ noise
8 duckdb:vortex-compact -3.0% -3.1% +0.0% +10.0% ➖ noise
8 duckdb:vortex-file-compressed -13.9% -3.1% -11.2% +11.9% ✅ faster
9 datafusion:vortex-compact -10.3% -7.1% -3.5% +16.0% ➖ noise
9 datafusion:vortex-file-compressed -10.7% -7.1% -3.9% +10.6% ➖ noise
9 duckdb:duckdb -6.3% -7.1% +0.9% +10.0% ➖ noise
9 duckdb:vortex-compact -7.6% -7.1% -0.6% +10.0% ➖ noise
9 duckdb:vortex-file-compressed -6.4% -7.1% +0.7% +41.8% ➖ noise
10 datafusion:vortex-compact -9.6% -7.8% -2.0% +10.0% ➖ noise
10 datafusion:vortex-file-compressed -11.3% -7.8% -3.8% +10.0% ➖ noise
10 duckdb:duckdb -8.2% -7.8% -0.4% +10.0% ➖ noise
10 duckdb:vortex-compact -4.2% -7.8% +3.9% +11.2% ➖ noise
10 duckdb:vortex-file-compressed -7.3% -7.8% +0.6% +10.0% ➖ noise
11 datafusion:vortex-compact -12.3% -10.8% -1.7% +13.7% ➖ noise
11 datafusion:vortex-file-compressed -11.9% -10.8% -1.2% +11.4% ➖ noise
11 duckdb:duckdb -2.6% -10.8% +9.2% +10.0% ➖ noise
11 duckdb:vortex-compact -12.4% -10.8% -1.8% +10.0% ➖ noise
11 duckdb:vortex-file-compressed -7.0% -10.8% +4.3% +10.2% ➖ noise
12 datafusion:vortex-compact -4.3% -7.5% +3.5% +15.6% ➖ noise
12 datafusion:vortex-file-compressed -16.9% -7.5% -10.2% +10.0% ✅ faster
12 duckdb:duckdb -10.1% -7.5% -2.8% +10.0% ➖ noise
12 duckdb:vortex-compact -13.7% -7.5% -6.8% +10.0% ➖ noise
12 duckdb:vortex-file-compressed -7.3% -7.5% +0.2% +10.0% ➖ noise
13 datafusion:vortex-compact -8.2% -4.6% -3.8% +20.6% ➖ noise
13 datafusion:vortex-file-compressed -4.4% -4.6% +0.2% +10.0% ➖ noise
13 duckdb:duckdb -6.1% -4.6% -1.6% +10.0% ➖ noise
13 duckdb:vortex-compact -2.6% -4.6% +2.1% +10.0% ➖ noise
13 duckdb:vortex-file-compressed -3.5% -4.6% +1.1% +23.9% ➖ noise
14 datafusion:vortex-compact -2.7% -7.9% +5.6% +10.6% ➖ noise
14 datafusion:vortex-file-compressed -8.7% -7.9% -0.8% +10.0% ➖ noise
14 duckdb:duckdb -5.9% -7.9% +2.2% +10.0% ➖ noise
14 duckdb:vortex-compact -5.0% -7.9% +3.1% +10.0% ➖ noise
14 duckdb:vortex-file-compressed -8.7% -7.9% -0.9% +10.0% ➖ noise
15 datafusion:vortex-compact -3.7% -11.2% +8.4% +11.9% ➖ noise
15 datafusion:vortex-file-compressed -11.7% -11.2% -0.5% +11.0% ➖ noise
15 duckdb:duckdb -11.9% -11.2% -0.8% +11.1% ➖ noise
15 duckdb:vortex-compact -6.8% -11.2% +5.0% +20.6% ➖ noise
15 duckdb:vortex-file-compressed -12.7% -11.2% -1.7% +12.4% ➖ noise
16 datafusion:vortex-compact -9.3% -6.1% -3.4% +11.1% ➖ noise
16 datafusion:vortex-file-compressed -9.1% -6.1% -3.2% +21.2% ➖ noise
16 duckdb:duckdb -3.1% -6.1% +3.2% +10.4% ➖ noise
16 duckdb:vortex-compact -8.5% -6.1% -2.6% +10.0% ➖ noise
16 duckdb:vortex-file-compressed -12.9% -6.1% -7.2% +19.4% ➖ noise
17 datafusion:vortex-compact -9.7% -5.4% -4.5% +16.2% ➖ noise
17 datafusion:vortex-file-compressed -6.5% -5.4% -1.2% +13.6% ➖ noise
17 duckdb:duckdb -10.0% -5.4% -4.8% +10.0% ➖ noise
17 duckdb:vortex-compact -9.8% -5.4% -4.6% +10.0% ➖ noise
17 duckdb:vortex-file-compressed -7.4% -5.4% -2.1% +14.1% ➖ noise
18 datafusion:vortex-compact -5.3% -5.6% +0.3% +10.0% ➖ noise
18 datafusion:vortex-file-compressed -6.6% -5.6% -1.0% +12.3% ➖ noise
18 duckdb:duckdb -8.6% -5.6% -3.1% +10.0% ➖ noise
18 duckdb:vortex-compact -8.6% -5.6% -3.2% +10.0% ➖ noise
18 duckdb:vortex-file-compressed -10.6% -5.6% -5.3% +10.2% ➖ noise
19 datafusion:vortex-compact -3.4% -6.3% +3.1% +10.0% ➖ noise
19 datafusion:vortex-file-compressed -12.1% -6.3% -6.2% +10.0% ➖ noise
19 duckdb:duckdb -3.8% -6.3% +2.6% +10.0% ➖ noise
19 duckdb:vortex-compact -5.6% -6.3% +0.8% +10.0% ➖ noise
19 duckdb:vortex-file-compressed -11.6% -6.3% -5.7% +10.0% ➖ noise
20 datafusion:vortex-compact -6.4% -7.1% +0.7% +10.0% ➖ noise
20 datafusion:vortex-file-compressed -9.4% -7.1% -2.5% +15.5% ➖ noise
20 duckdb:duckdb -7.7% -7.1% -0.7% +10.0% ➖ noise
20 duckdb:vortex-compact -10.9% -7.1% -4.1% +10.0% ➖ noise
20 duckdb:vortex-file-compressed -7.8% -7.1% -0.8% +23.6% ➖ noise
21 datafusion:vortex-compact -13.9% -6.9% -7.5% +28.1% ➖ noise
21 datafusion:vortex-file-compressed -9.9% -6.9% -3.2% +20.2% ➖ noise
21 duckdb:duckdb -9.6% -6.9% -2.9% +14.4% ➖ noise
21 duckdb:vortex-compact -7.6% -6.9% -0.7% +10.9% ➖ noise
21 duckdb:vortex-file-compressed +3.6% -6.9% +11.3% +10.2% 🚨 regression
22 datafusion:vortex-compact +10.9% -9.2% +22.2% +23.9% ➖ noise
22 datafusion:vortex-file-compressed -15.5% -9.2% -6.9% +25.8% ➖ noise
22 duckdb:duckdb -17.9% -9.2% -9.5% +14.4% ➖ noise
22 duckdb:vortex-compact -6.3% -9.2% +3.2% +14.3% ➖ noise
22 duckdb:vortex-file-compressed -11.1% -9.2% -2.0% +16.4% ➖ noise
23 datafusion:vortex-compact -13.0% -12.7% -0.3% +16.0% ➖ noise
23 datafusion:vortex-file-compressed -7.6% -12.7% +5.9% +10.6% ➖ noise
23 duckdb:duckdb -21.0% -12.7% -9.5% +15.2% ➖ noise
23 duckdb:vortex-compact -7.7% -12.7% +5.8% +15.0% ➖ noise
23 duckdb:vortex-file-compressed +2.6% -12.7% +17.5% +10.0% 🚨 regression
24 datafusion:vortex-compact -10.5% -9.6% -1.0% +16.8% ➖ noise
24 datafusion:vortex-file-compressed -8.9% -9.6% +0.8% +10.0% ➖ noise
24 duckdb:duckdb -10.4% -9.6% -0.9% +10.0% ➖ noise
24 duckdb:vortex-compact -7.4% -9.6% +2.5% +10.0% ➖ noise
24 duckdb:vortex-file-compressed -13.3% -9.6% -4.1% +10.1% ➖ noise
25 datafusion:vortex-compact -9.2% -5.3% -4.2% +10.0% ➖ noise
25 datafusion:vortex-file-compressed +1.0% -5.3% +6.6% +15.5% ➖ noise
25 duckdb:duckdb -12.8% -5.3% -7.9% +10.0% ➖ noise
25 duckdb:vortex-compact -4.0% -5.3% +1.3% +10.0% ➖ noise
25 duckdb:vortex-file-compressed -7.5% -5.3% -2.3% +10.0% ➖ noise
26 datafusion:vortex-compact -6.5% -7.5% +1.1% +23.5% ➖ noise
26 datafusion:vortex-file-compressed -8.2% -7.5% -0.8% +18.4% ➖ noise
26 duckdb:duckdb -13.2% -7.5% -6.1% +10.0% ➖ noise
26 duckdb:vortex-compact -16.4% -7.5% -9.7% +21.2% ➖ noise
26 duckdb:vortex-file-compressed +6.6% -7.5% +15.3% +25.0% ➖ noise
27 datafusion:vortex-compact -9.6% -7.5% -2.3% +16.1% ➖ noise
27 datafusion:vortex-file-compressed -13.5% -7.5% -6.5% +11.6% ➖ noise
27 duckdb:duckdb -8.6% -7.5% -1.2% +10.0% ➖ noise
27 duckdb:vortex-compact +2.2% -7.5% +10.4% +17.7% ➖ noise
27 duckdb:vortex-file-compressed +2.0% -7.5% +10.3% +12.2% ➖ noise
28 datafusion:vortex-compact -9.5% -8.5% -1.1% +13.6% ➖ noise
28 datafusion:vortex-file-compressed +3.3% -8.5% +13.0% +23.0% ➖ noise
28 duckdb:duckdb -12.6% -8.5% -4.5% +10.0% ➖ noise
28 duckdb:vortex-compact +26.3% -8.5% +38.1% +28.8% 🚨 regression
28 duckdb:vortex-file-compressed -11.8% -8.5% -3.6% +34.8% ➖ noise
29 datafusion:vortex-compact -8.0% -1.0% -7.0% +18.3% ➖ noise
29 datafusion:vortex-file-compressed -8.0% -1.0% -7.0% +13.5% ➖ noise
29 duckdb:duckdb -6.7% -1.0% -5.7% +10.0% ➖ noise
29 duckdb:vortex-compact -7.2% -1.0% -6.2% +11.6% ➖ noise
29 duckdb:vortex-file-compressed -10.2% -1.0% -9.3% +11.6% ➖ noise
30 datafusion:vortex-compact -10.1% -5.4% -5.0% +10.2% ➖ noise
30 datafusion:vortex-file-compressed -15.9% -5.4% -11.1% +21.0% ➖ noise
30 duckdb:duckdb -7.8% -5.4% -2.6% +10.0% ➖ noise
30 duckdb:vortex-compact -12.6% -5.4% -7.7% +11.7% ➖ noise
30 duckdb:vortex-file-compressed -4.0% -5.4% +1.4% +11.3% ➖ noise
31 datafusion:vortex-compact -5.5% -9.0% +3.9% +19.0% ➖ noise
31 datafusion:vortex-file-compressed -9.4% -9.0% -0.5% +10.0% ➖ noise
31 duckdb:duckdb -12.2% -9.0% -3.4% +10.0% ➖ noise
31 duckdb:vortex-compact -1.8% -9.0% +8.0% +14.5% ➖ noise
31 duckdb:vortex-file-compressed -2.5% -9.0% +7.2% +13.9% ➖ noise
32 datafusion:vortex-compact -7.3% -9.8% +2.8% +10.0% ➖ noise
32 datafusion:vortex-file-compressed -5.0% -9.8% +5.3% +19.6% ➖ noise
32 duckdb:duckdb -15.1% -9.8% -5.9% +13.6% ➖ noise
32 duckdb:vortex-compact -9.2% -9.8% +0.6% +13.4% ➖ noise
32 duckdb:vortex-file-compressed -7.6% -9.8% +2.4% +13.9% ➖ noise
33 datafusion:vortex-compact -2.4% -7.3% +5.2% +10.0% ➖ noise
33 datafusion:vortex-file-compressed -2.7% -7.3% +4.9% +13.1% ➖ noise
33 duckdb:duckdb -5.4% -7.3% +2.0% +10.0% ➖ noise
33 duckdb:vortex-compact -16.5% -7.3% -10.0% +10.0% ✅ faster
33 duckdb:vortex-file-compressed -8.7% -7.3% -1.5% +10.7% ➖ noise
34 datafusion:vortex-compact -6.2% -8.0% +1.9% +10.0% ➖ noise
34 datafusion:vortex-file-compressed -7.6% -8.0% +0.4% +10.6% ➖ noise
34 duckdb:duckdb -14.8% -8.0% -7.4% +11.5% ➖ noise
34 duckdb:vortex-compact -10.1% -8.0% -2.3% +10.0% ➖ noise
34 duckdb:vortex-file-compressed -7.7% -8.0% +0.3% +10.0% ➖ noise
35 datafusion:vortex-compact -9.8% -10.9% +1.2% +21.7% ➖ noise
35 datafusion:vortex-file-compressed -11.5% -10.9% -0.7% +12.1% ➖ noise
35 duckdb:duckdb -15.0% -10.9% -4.6% +10.0% ➖ noise
35 duckdb:vortex-compact -6.5% -10.9% +4.9% +10.0% ➖ noise
35 duckdb:vortex-file-compressed -7.8% -10.9% +3.4% +10.7% ➖ noise
36 datafusion:vortex-compact -14.3% -7.9% -7.0% +11.1% ➖ noise
36 datafusion:vortex-file-compressed -6.7% -7.9% +1.3% +10.0% ➖ noise
36 duckdb:duckdb -12.1% -7.9% -4.5% +10.0% ➖ noise
36 duckdb:vortex-compact -5.6% -7.9% +2.5% +10.0% ➖ noise
36 duckdb:vortex-file-compressed -11.5% -7.9% -3.9% +15.3% ➖ noise
37 datafusion:vortex-compact -6.6% -11.8% +5.9% +21.0% ➖ noise
37 datafusion:vortex-file-compressed -8.9% -11.8% +3.3% +24.8% ➖ noise
37 duckdb:duckdb -10.9% -11.8% +1.0% +10.3% ➖ noise
37 duckdb:vortex-compact -7.8% -11.8% +4.5% +11.4% ➖ noise
37 duckdb:vortex-file-compressed -9.0% -11.8% +3.2% +11.7% ➖ noise
38 datafusion:vortex-compact -12.7% -9.5% -3.6% +13.6% ➖ noise
38 datafusion:vortex-file-compressed -11.0% -9.5% -1.7% +10.0% ➖ noise
38 duckdb:duckdb -6.5% -9.5% +3.3% +10.0% ➖ noise
38 duckdb:vortex-compact -13.0% -9.5% -3.9% +13.4% ➖ noise
38 duckdb:vortex-file-compressed -1.6% -9.5% +8.7% +10.0% ➖ noise
39 datafusion:vortex-compact -8.6% -5.9% -2.8% +12.7% ➖ noise
39 datafusion:vortex-file-compressed -15.8% -5.9% -10.5% +11.4% ✅ faster
39 duckdb:duckdb -11.7% -5.9% -6.1% +15.3% ➖ noise
39 duckdb:vortex-compact -10.1% -5.9% -4.4% +22.2% ➖ noise
39 duckdb:vortex-file-compressed -2.9% -5.9% +3.2% +14.5% ➖ noise
40 datafusion:vortex-compact -10.8% -6.4% -4.7% +18.8% ➖ noise
40 datafusion:vortex-file-compressed -7.5% -6.4% -1.1% +10.0% ➖ noise
40 duckdb:duckdb -13.0% -6.4% -7.0% +10.0% ➖ noise
40 duckdb:vortex-compact -15.6% -6.4% -9.8% +10.0% ✅ faster
40 duckdb:vortex-file-compressed +1.1% -6.4% +8.1% +13.6% ➖ noise
41 datafusion:vortex-compact -4.3% -11.1% +7.6% +10.0% ➖ noise
41 datafusion:vortex-file-compressed -12.6% -11.1% -1.7% +41.2% ➖ noise
41 duckdb:duckdb -2.1% -11.1% +10.1% +10.0% 🚨 regression
41 duckdb:vortex-compact -6.6% -11.1% +5.0% +10.9% ➖ noise
41 duckdb:vortex-file-compressed -7.4% -11.1% +4.1% +10.0% ➖ noise
42 datafusion:vortex-compact -8.1% -5.3% -2.9% +12.2% ➖ noise
42 datafusion:vortex-file-compressed -11.5% -5.3% -6.5% +10.0% ➖ noise
42 duckdb:duckdb -8.0% -5.3% -2.8% +20.4% ➖ noise
42 duckdb:vortex-compact -13.5% -5.3% -8.6% +26.2% ➖ noise
42 duckdb:vortex-file-compressed -8.7% -5.3% -3.5% +10.4% ➖ noise
43 datafusion:vortex-compact -5.9% -10.1% +4.7% +10.0% ➖ noise
43 datafusion:vortex-file-compressed -10.4% -10.1% -0.3% +10.7% ➖ noise
43 duckdb:duckdb -13.4% -10.1% -3.7% +10.0% ➖ noise
43 duckdb:vortex-compact -9.3% -10.1% +0.8% +23.5% ➖ noise
43 duckdb:vortex-file-compressed -9.7% -10.1% +0.4% +26.0% ➖ noise
44 datafusion:vortex-compact -4.1% -4.7% +0.7% +10.0% ➖ noise
44 datafusion:vortex-file-compressed -9.3% -4.7% -4.9% +10.0% ➖ noise
44 duckdb:duckdb -11.6% -4.7% -7.2% +11.8% ➖ noise
44 duckdb:vortex-compact -2.5% -4.7% +2.3% +10.9% ➖ noise
44 duckdb:vortex-file-compressed -11.5% -4.7% -7.1% +13.4% ➖ noise
45 datafusion:vortex-compact +1.5% -9.9% +12.6% +19.8% ➖ noise
45 datafusion:vortex-file-compressed -9.6% -9.9% +0.3% +10.0% ➖ noise
45 duckdb:duckdb -9.1% -9.9% +0.9% +10.0% ➖ noise
45 duckdb:vortex-compact -9.7% -9.9% +0.2% +11.0% ➖ noise
45 duckdb:vortex-file-compressed -9.4% -9.9% +0.6% +10.0% ➖ noise
46 datafusion:vortex-compact -8.9% -7.0% -2.1% +16.5% ➖ noise
46 datafusion:vortex-file-compressed -7.3% -7.0% -0.3% +10.0% ➖ noise
46 duckdb:duckdb -10.6% -7.0% -3.9% +10.0% ➖ noise
46 duckdb:vortex-compact -1.4% -7.0% +6.0% +10.0% ➖ noise
46 duckdb:vortex-file-compressed -5.6% -7.0% +1.5% +25.8% ➖ noise
47 datafusion:vortex-compact -6.9% -7.9% +1.1% +10.0% ➖ noise
47 datafusion:vortex-file-compressed -7.3% -7.9% +0.7% +10.0% ➖ noise
47 duckdb:duckdb -13.1% -7.9% -5.6% +10.0% ➖ noise
47 duckdb:vortex-compact -3.2% -7.9% +5.1% +10.0% ➖ noise
47 duckdb:vortex-file-compressed -6.3% -7.9% +1.8% +10.0% ➖ noise
48 datafusion:vortex-compact -8.7% -7.8% -1.0% +19.7% ➖ noise
48 datafusion:vortex-file-compressed -3.6% -7.8% +4.5% +10.0% ➖ noise
48 duckdb:duckdb -7.7% -7.8% +0.1% +10.0% ➖ noise
48 duckdb:vortex-compact -2.9% -7.8% +5.3% +10.0% ➖ noise
48 duckdb:vortex-file-compressed -3.3% -7.8% +4.9% +10.0% ➖ noise
49 datafusion:vortex-compact -10.1% -9.4% -0.7% +10.0% ➖ noise
49 datafusion:vortex-file-compressed -3.7% -9.4% +6.3% +10.0% ➖ noise
49 duckdb:duckdb -12.0% -9.4% -2.8% +11.1% ➖ noise
49 duckdb:vortex-compact -3.1% -9.4% +7.0% +20.4% ➖ noise
49 duckdb:vortex-file-compressed -14.3% -9.4% -5.3% +28.2% ➖ noise
50 datafusion:vortex-compact -8.6% -7.2% -1.5% +18.5% ➖ noise
50 datafusion:vortex-file-compressed -5.7% -7.2% +1.7% +19.0% ➖ noise
50 duckdb:duckdb -0.1% -7.2% +7.7% +12.7% ➖ noise
50 duckdb:vortex-compact -3.7% -7.2% +3.8% +11.0% ➖ noise
50 duckdb:vortex-file-compressed +0.5% -7.2% +8.4% +11.6% ➖ noise
51 datafusion:vortex-compact -12.0% +1.1% -13.0% +10.7% ✅ faster
51 datafusion:vortex-file-compressed -8.3% +1.1% -9.2% +12.3% ➖ noise
51 duckdb:duckdb -6.0% +1.1% -7.0% +10.9% ➖ noise
51 duckdb:vortex-compact -4.3% +1.1% -5.3% +17.1% ➖ noise
51 duckdb:vortex-file-compressed -2.0% +1.1% -3.1% +19.2% ➖ noise
52 datafusion:vortex-compact -4.9% -8.7% +4.1% +14.8% ➖ noise
52 datafusion:vortex-file-compressed -13.6% -8.7% -5.4% +13.1% ➖ noise
52 duckdb:duckdb -3.0% -8.7% +6.2% +17.0% ➖ noise
52 duckdb:vortex-compact -9.9% -8.7% -1.3% +27.1% ➖ noise
52 duckdb:vortex-file-compressed -10.8% -8.7% -2.3% +21.9% ➖ noise
53 datafusion:vortex-compact -5.1% -0.8% -4.4% +10.0% ➖ noise
53 datafusion:vortex-file-compressed -11.4% -0.8% -10.6% +10.0% ✅ faster
53 duckdb:duckdb -3.9% -0.8% -3.2% +10.0% ➖ noise
53 duckdb:vortex-compact -4.3% -0.8% -3.6% +10.0% ➖ noise
53 duckdb:vortex-file-compressed -9.5% -0.8% -8.8% +10.0% ➖ noise
54 datafusion:vortex-compact -14.0% -7.9% -6.6% +20.4% ➖ noise
54 datafusion:vortex-file-compressed -9.3% -7.9% -1.4% +17.8% ➖ noise
54 duckdb:duckdb -6.8% -7.9% +1.3% +10.0% ➖ noise
54 duckdb:vortex-compact -7.5% -7.9% +0.5% +10.0% ➖ noise
54 duckdb:vortex-file-compressed -4.3% -7.9% +3.9% +10.0% ➖ noise
55 datafusion:vortex-compact -4.9% -10.7% +6.5% +14.1% ➖ noise
55 datafusion:vortex-file-compressed -14.3% -10.7% -4.1% +19.7% ➖ noise
55 duckdb:duckdb +7.5% -10.7% +20.3% +17.2% 🚨 regression
55 duckdb:vortex-compact -7.7% -10.7% +3.3% +11.6% ➖ noise
55 duckdb:vortex-file-compressed -5.9% -10.7% +5.4% +11.2% ➖ noise
56 datafusion:vortex-compact -7.1% -8.7% +1.8% +11.7% ➖ noise
56 datafusion:vortex-file-compressed -3.8% -8.7% +5.3% +16.5% ➖ noise
56 duckdb:duckdb -6.0% -8.7% +3.0% +28.9% ➖ noise
56 duckdb:vortex-compact -12.5% -8.7% -4.2% +24.7% ➖ noise
56 duckdb:vortex-file-compressed -8.7% -8.7% -0.0% +10.0% ➖ noise
57 datafusion:vortex-compact -9.5% -4.8% -5.0% +10.0% ➖ noise
57 datafusion:vortex-file-compressed -13.9% -4.8% -9.6% +10.0% ✅ faster
57 duckdb:duckdb -2.5% -4.8% +2.3% +17.2% ➖ noise
57 duckdb:vortex-compact -7.5% -4.8% -2.9% +12.4% ➖ noise
57 duckdb:vortex-file-compressed -6.7% -4.8% -2.0% +17.8% ➖ noise
58 datafusion:vortex-compact -3.6% -6.4% +2.9% +11.4% ➖ noise
58 datafusion:vortex-file-compressed -7.1% -6.4% -0.8% +10.0% ➖ noise
58 duckdb:duckdb -0.5% -6.4% +6.3% +10.0% ➖ noise
58 duckdb:vortex-compact +1.5% -6.4% +8.5% +13.5% ➖ noise
58 duckdb:vortex-file-compressed -11.9% -6.4% -5.9% +11.0% ➖ noise
59 datafusion:vortex-compact -6.5% -8.1% +1.8% +10.0% ➖ noise
59 datafusion:vortex-file-compressed -6.1% -8.1% +2.2% +10.0% ➖ noise
59 duckdb:duckdb -6.5% -8.1% +1.7% +10.0% ➖ noise
59 duckdb:vortex-compact -1.3% -8.1% +7.4% +20.6% ➖ noise
59 duckdb:vortex-file-compressed -4.1% -8.1% +4.4% +24.7% ➖ noise
60 datafusion:vortex-compact -6.7% -5.8% -1.0% +15.9% ➖ noise
60 datafusion:vortex-file-compressed -10.3% -5.8% -4.8% +10.0% ➖ noise
60 duckdb:duckdb +1.6% -5.8% +7.9% +10.0% ➖ noise
60 duckdb:vortex-compact -11.2% -5.8% -5.7% +10.0% ➖ noise
60 duckdb:vortex-file-compressed -13.3% -5.8% -7.9% +19.4% ➖ noise
61 datafusion:vortex-compact -3.7% -5.4% +1.9% +12.9% ➖ noise
61 datafusion:vortex-file-compressed -11.9% -5.4% -6.8% +13.6% ➖ noise
61 duckdb:duckdb -3.9% -5.4% +1.7% +27.9% ➖ noise
61 duckdb:vortex-compact -4.8% -5.4% +0.7% +10.0% ➖ noise
61 duckdb:vortex-file-compressed -8.1% -5.4% -2.8% +17.5% ➖ noise
62 datafusion:vortex-compact -15.4% -10.5% -5.4% +29.3% ➖ noise
62 datafusion:vortex-file-compressed -27.3% -10.5% -18.8% +20.9% ✅ faster
62 duckdb:duckdb -8.7% -10.5% +2.0% +18.3% ➖ noise
62 duckdb:vortex-compact -10.3% -10.5% +0.3% +17.1% ➖ noise
62 duckdb:vortex-file-compressed -5.8% -10.5% +5.3% +28.8% ➖ noise
63 datafusion:vortex-compact -4.1% -11.0% +7.8% +10.0% ➖ noise
63 datafusion:vortex-file-compressed -12.4% -11.0% -1.6% +15.3% ➖ noise
63 duckdb:duckdb -7.0% -11.0% +4.5% +10.0% ➖ noise
63 duckdb:vortex-compact -7.0% -11.0% +4.5% +13.7% ➖ noise
63 duckdb:vortex-file-compressed -6.3% -11.0% +5.3% +10.0% ➖ noise
64 datafusion:vortex-compact -7.6% -6.2% -1.5% +10.0% ➖ noise
64 datafusion:vortex-file-compressed -11.4% -6.2% -5.6% +10.0% ➖ noise
64 duckdb:duckdb -7.2% -6.2% -1.1% +10.0% ➖ noise
64 duckdb:vortex-compact -8.9% -6.2% -2.9% +10.0% ➖ noise
64 duckdb:vortex-file-compressed -7.9% -6.2% -1.8% +10.0% ➖ noise
65 datafusion:vortex-compact +6.1% -3.5% +9.9% +15.4% ➖ noise
65 datafusion:vortex-file-compressed -4.9% -3.5% -1.5% +22.3% ➖ noise
65 duckdb:duckdb -10.2% -3.5% -7.0% +10.0% ➖ noise
65 duckdb:vortex-compact -0.7% -3.5% +2.9% +20.7% ➖ noise
65 duckdb:vortex-file-compressed -4.2% -3.5% -0.8% +10.0% ➖ noise
66 datafusion:vortex-compact -8.5% -2.2% -6.5% +10.4% ➖ noise
66 datafusion:vortex-file-compressed -6.8% -2.2% -4.7% +16.2% ➖ noise
66 duckdb:duckdb -6.2% -2.2% -4.2% +10.0% ➖ noise
66 duckdb:vortex-compact -5.7% -2.2% -3.6% +19.1% ➖ noise
66 duckdb:vortex-file-compressed -8.8% -2.2% -6.8% +14.9% ➖ noise
67 datafusion:vortex-compact -9.1% -9.6% +0.6% +11.2% ➖ noise
67 datafusion:vortex-file-compressed -2.2% -9.6% +8.2% +13.2% ➖ noise
67 duckdb:duckdb -10.0% -9.6% -0.4% +10.0% ➖ noise
67 duckdb:vortex-compact -10.0% -9.6% -0.4% +10.0% ➖ noise
67 duckdb:vortex-file-compressed -6.5% -9.6% +3.5% +10.0% ➖ noise
68 datafusion:vortex-compact -18.0% -5.5% -13.3% +21.6% ➖ noise
68 datafusion:vortex-file-compressed -13.7% -5.5% -8.7% +13.4% ➖ noise
68 duckdb:duckdb -4.1% -5.5% +1.5% +10.0% ➖ noise
68 duckdb:vortex-compact -8.5% -5.5% -3.2% +10.0% ➖ noise
68 duckdb:vortex-file-compressed -4.7% -5.5% +0.8% +20.7% ➖ noise
69 datafusion:vortex-compact -6.5% -7.0% +0.5% +10.0% ➖ noise
69 datafusion:vortex-file-compressed -10.9% -7.0% -4.2% +10.0% ➖ noise
69 duckdb:duckdb -2.2% -7.0% +5.2% +10.0% ➖ noise
69 duckdb:vortex-compact -8.5% -7.0% -1.6% +13.2% ➖ noise
69 duckdb:vortex-file-compressed -10.6% -7.0% -3.9% +10.0% ➖ noise
70 datafusion:vortex-compact -5.2% -12.0% +7.8% +10.0% ➖ noise
70 datafusion:vortex-file-compressed -13.9% -12.0% -2.2% +17.4% ➖ noise
70 duckdb:duckdb -6.4% -12.0% +6.3% +10.4% ➖ noise
70 duckdb:vortex-compact -3.5% -12.0% +9.6% +10.9% ➖ noise
70 duckdb:vortex-file-compressed -5.2% -12.0% +7.7% +13.3% ➖ noise
71 datafusion:vortex-compact -10.2% -7.8% -2.6% +18.6% ➖ noise
71 datafusion:vortex-file-compressed -8.6% -7.8% -0.8% +21.7% ➖ noise
71 duckdb:duckdb -7.5% -7.8% +0.3% +14.3% ➖ noise
71 duckdb:vortex-compact -12.9% -7.8% -5.5% +21.3% ➖ noise
71 duckdb:vortex-file-compressed -3.6% -7.8% +4.6% +11.7% ➖ noise
72 datafusion:vortex-compact -15.2% -10.3% -5.4% +10.0% ➖ noise
72 datafusion:vortex-file-compressed -17.7% -10.3% -8.2% +10.0% ➖ noise
72 duckdb:duckdb -6.9% -10.3% +3.8% +10.0% ➖ noise
72 duckdb:vortex-compact -4.1% -10.3% +6.9% +10.0% ➖ noise
72 duckdb:vortex-file-compressed -6.5% -10.3% +4.2% +10.0% ➖ noise
73 datafusion:vortex-compact -8.0% -7.0% -1.1% +34.6% ➖ noise
73 datafusion:vortex-file-compressed -6.6% -7.0% +0.4% +14.5% ➖ noise
73 duckdb:duckdb -9.3% -7.0% -2.4% +10.0% ➖ noise
73 duckdb:vortex-compact -12.8% -7.0% -6.3% +10.0% ➖ noise
73 duckdb:vortex-file-compressed -16.2% -7.0% -9.9% +14.0% ➖ noise
74 datafusion:vortex-compact -11.8% -9.6% -2.4% +10.0% ➖ noise
74 datafusion:vortex-file-compressed -6.2% -9.6% +3.8% +10.0% ➖ noise
74 duckdb:duckdb -6.1% -9.6% +3.9% +10.0% ➖ noise
74 duckdb:vortex-compact -11.2% -9.6% -1.7% +15.1% ➖ noise
74 duckdb:vortex-file-compressed -6.3% -9.6% +3.6% +10.3% ➖ noise
75 datafusion:vortex-compact -6.0% -9.6% +4.0% +18.4% ➖ noise
75 datafusion:vortex-file-compressed -9.9% -9.6% -0.3% +19.4% ➖ noise
75 duckdb:duckdb -8.9% -9.6% +0.8% +10.0% ➖ noise
75 duckdb:vortex-compact -11.9% -9.6% -2.5% +14.7% ➖ noise
75 duckdb:vortex-file-compressed -6.8% -9.6% +3.2% +16.3% ➖ noise
76 datafusion:vortex-compact -7.1% -8.8% +1.8% +10.0% ➖ noise
76 datafusion:vortex-file-compressed -7.7% -8.8% +1.1% +10.0% ➖ noise
76 duckdb:duckdb -14.3% -8.8% -6.1% +11.7% ➖ noise
76 duckdb:vortex-compact -11.4% -8.8% -2.9% +11.8% ➖ noise
76 duckdb:vortex-file-compressed -19.3% -8.8% -11.5% +12.4% ✅ faster
77 datafusion:vortex-compact -8.7% -9.8% +1.2% +18.6% ➖ noise
77 datafusion:vortex-file-compressed -6.6% -9.8% +3.5% +10.0% ➖ noise
77 duckdb:duckdb -6.1% -9.8% +4.1% +10.0% ➖ noise
77 duckdb:vortex-compact -1.5% -9.8% +9.2% +12.0% ➖ noise
77 duckdb:vortex-file-compressed -15.3% -9.8% -6.1% +13.6% ➖ noise
78 datafusion:vortex-compact -7.9% -11.0% +3.6% +10.0% ➖ noise
78 datafusion:vortex-file-compressed -7.2% -11.0% +4.4% +11.5% ➖ noise
78 duckdb:duckdb -5.3% -11.0% +6.5% +10.0% ➖ noise
78 duckdb:vortex-compact -9.8% -11.0% +1.4% +11.0% ➖ noise
78 duckdb:vortex-file-compressed -6.7% -11.0% +4.8% +10.0% ➖ noise
79 datafusion:vortex-compact -11.4% -6.2% -5.5% +13.8% ➖ noise
79 datafusion:vortex-file-compressed -8.3% -6.2% -2.3% +10.0% ➖ noise
79 duckdb:duckdb -6.8% -6.2% -0.6% +10.0% ➖ noise
79 duckdb:vortex-compact -5.1% -6.2% +1.2% +10.0% ➖ noise
79 duckdb:vortex-file-compressed +2.4% -6.2% +9.2% +18.3% ➖ noise
80 datafusion:vortex-compact -11.1% -8.6% -2.7% +18.4% ➖ noise
80 datafusion:vortex-file-compressed -10.5% -8.6% -2.1% +10.4% ➖ noise
80 duckdb:duckdb -6.4% -8.6% +2.4% +13.3% ➖ noise
80 duckdb:vortex-compact -10.1% -8.6% -1.6% +14.7% ➖ noise
80 duckdb:vortex-file-compressed -9.4% -8.6% -0.9% +12.4% ➖ noise
81 datafusion:vortex-compact -8.7% -5.8% -3.1% +10.0% ➖ noise
81 datafusion:vortex-file-compressed -9.9% -5.8% -4.4% +41.2% ➖ noise
81 duckdb:duckdb -8.1% -5.8% -2.5% +10.0% ➖ noise
81 duckdb:vortex-compact -13.2% -5.8% -7.9% +10.0% ➖ noise
81 duckdb:vortex-file-compressed -9.7% -5.8% -4.2% +10.0% ➖ noise
82 datafusion:vortex-compact -8.7% -6.1% -2.8% +10.0% ➖ noise
82 datafusion:vortex-file-compressed -2.0% -6.1% +4.4% +13.9% ➖ noise
82 duckdb:duckdb -1.8% -6.1% +4.6% +10.2% ➖ noise
82 duckdb:vortex-compact -8.7% -6.1% -2.7% +14.8% ➖ noise
82 duckdb:vortex-file-compressed -9.1% -6.1% -3.1% +10.9% ➖ noise
83 datafusion:vortex-compact -5.6% -7.4% +2.0% +30.6% ➖ noise
83 datafusion:vortex-file-compressed -8.7% -7.4% -1.4% +10.0% ➖ noise
83 duckdb:duckdb -12.3% -7.4% -5.2% +10.0% ➖ noise
83 duckdb:vortex-compact -6.8% -7.4% +0.7% +15.5% ➖ noise
83 duckdb:vortex-file-compressed -9.4% -7.4% -2.1% +10.0% ➖ noise
84 datafusion:vortex-compact -14.8% -6.4% -8.9% +10.0% ➖ noise
84 datafusion:vortex-file-compressed -11.1% -6.4% -5.0% +10.0% ➖ noise
84 duckdb:duckdb -4.1% -6.4% +2.6% +10.0% ➖ noise
84 duckdb:vortex-compact -14.1% -6.4% -8.2% +14.5% ➖ noise
84 duckdb:vortex-file-compressed -3.5% -6.4% +3.1% +10.4% ➖ noise
85 datafusion:vortex-compact +1.1% -6.1% +7.7% +14.5% ➖ noise
85 datafusion:vortex-file-compressed -12.3% -6.1% -6.6% +10.0% ➖ noise
85 duckdb:duckdb -6.5% -6.1% -0.4% +10.0% ➖ noise
85 duckdb:vortex-compact -13.4% -6.1% -7.8% +10.0% ➖ noise
85 duckdb:vortex-file-compressed -8.6% -6.1% -2.6% +10.0% ➖ noise
86 datafusion:vortex-compact -4.7% -10.9% +6.9% +35.8% ➖ noise
86 datafusion:vortex-file-compressed -3.1% -10.9% +8.8% +26.9% ➖ noise
86 duckdb:duckdb -8.1% -10.9% +3.2% +10.0% ➖ noise
86 duckdb:vortex-compact -10.2% -10.9% +0.8% +22.3% ➖ noise
86 duckdb:vortex-file-compressed -9.6% -10.9% +1.4% +14.2% ➖ noise
87 datafusion:vortex-compact -7.0% -9.7% +3.0% +10.0% ➖ noise
87 datafusion:vortex-file-compressed -7.4% -9.7% +2.5% +10.0% ➖ noise
87 duckdb:duckdb -6.8% -9.7% +3.1% +12.8% ➖ noise
87 duckdb:vortex-compact -6.9% -9.7% +3.1% +12.3% ➖ noise
87 duckdb:vortex-file-compressed -9.4% -9.7% +0.3% +10.0% ➖ noise
88 datafusion:vortex-compact -8.3% -4.4% -4.0% +10.0% ➖ noise
88 datafusion:vortex-file-compressed -11.3% -4.4% -7.2% +10.0% ➖ noise
88 duckdb:duckdb -8.9% -4.4% -4.7% +10.0% ➖ noise
88 duckdb:vortex-compact -11.7% -4.4% -7.6% +10.0% ➖ noise
88 duckdb:vortex-file-compressed -2.9% -4.4% +1.6% +10.0% ➖ noise
89 datafusion:vortex-compact -8.5% -8.5% +0.0% +22.1% ➖ noise
89 datafusion:vortex-file-compressed -14.7% -8.5% -6.8% +18.1% ➖ noise
89 duckdb:duckdb -11.4% -8.5% -3.1% +10.1% ➖ noise
89 duckdb:vortex-compact -4.3% -8.5% +4.6% +15.5% ➖ noise
89 duckdb:vortex-file-compressed -6.4% -8.5% +2.3% +10.0% ➖ noise
90 datafusion:vortex-compact -9.5% -10.8% +1.5% +11.1% ➖ noise
90 datafusion:vortex-file-compressed -14.1% -10.8% -3.7% +20.6% ➖ noise
90 duckdb:duckdb -15.1% -10.8% -4.8% +11.7% ➖ noise
90 duckdb:vortex-compact -8.7% -10.8% +2.4% +12.2% ➖ noise
90 duckdb:vortex-file-compressed -9.6% -10.8% +1.3% +17.1% ➖ noise
91 datafusion:vortex-compact -0.8% -10.6% +11.0% +16.0% ➖ noise
91 datafusion:vortex-file-compressed -18.2% -10.6% -8.4% +10.0% ➖ noise
91 duckdb:duckdb -8.7% -10.6% +2.2% +10.0% ➖ noise
91 duckdb:vortex-compact -6.1% -10.6% +5.1% +10.0% ➖ noise
91 duckdb:vortex-file-compressed -18.4% -10.6% -8.7% +10.0% ➖ noise
92 datafusion:vortex-compact -9.3% -12.8% +4.0% +16.2% ➖ noise
92 datafusion:vortex-file-compressed -14.2% -12.8% -1.7% +13.4% ➖ noise
92 duckdb:duckdb -8.0% -12.8% +5.4% +10.5% ➖ noise
92 duckdb:vortex-compact -8.2% -12.8% +5.2% +21.5% ➖ noise
92 duckdb:vortex-file-compressed -3.5% -12.8% +10.6% +24.3% ➖ noise
93 datafusion:vortex-compact -2.7% -8.6% +6.4% +10.0% ➖ noise
93 datafusion:vortex-file-compressed -16.1% -8.6% -8.2% +17.9% ➖ noise
93 duckdb:duckdb -7.7% -8.6% +0.9% +14.6% ➖ noise
93 duckdb:vortex-compact -7.6% -8.6% +1.0% +11.2% ➖ noise
93 duckdb:vortex-file-compressed -0.9% -8.6% +8.4% +12.3% ➖ noise
94 datafusion:vortex-compact -14.5% -9.0% -6.1% +14.6% ➖ noise
94 datafusion:vortex-file-compressed -12.0% -9.0% -3.3% +17.9% ➖ noise
94 duckdb:duckdb -7.4% -9.0% +1.8% +10.0% ➖ noise
94 duckdb:vortex-compact -10.4% -9.0% -1.5% +12.7% ➖ noise
94 duckdb:vortex-file-compressed -7.8% -9.0% +1.3% +10.9% ➖ noise
95 datafusion:vortex-compact -15.1% -5.9% -9.8% +10.0% ✅ faster
95 datafusion:vortex-file-compressed -12.8% -5.9% -7.3% +10.7% ➖ noise
95 duckdb:duckdb -21.5% -5.9% -16.5% +19.8% ✅ faster
95 duckdb:vortex-compact -0.5% -5.9% +5.8% +16.8% ➖ noise
95 duckdb:vortex-file-compressed -3.9% -5.9% +2.1% +19.1% ➖ noise
96 datafusion:vortex-compact -10.5% -7.1% -3.6% +26.1% ➖ noise
96 datafusion:vortex-file-compressed -6.3% -7.1% +0.9% +21.9% ➖ noise
96 duckdb:duckdb -10.3% -7.1% -3.4% +20.5% ➖ noise
96 duckdb:vortex-compact -6.0% -7.1% +1.2% +10.5% ➖ noise
96 duckdb:vortex-file-compressed -6.7% -7.1% +0.4% +10.3% ➖ noise
97 datafusion:vortex-compact -16.9% -5.7% -11.9% +10.0% ✅ faster
97 datafusion:vortex-file-compressed -11.9% -5.7% -6.5% +10.0% ➖ noise
97 duckdb:duckdb -6.5% -5.7% -0.8% +10.0% ➖ noise
97 duckdb:vortex-compact -13.6% -5.7% -8.3% +10.0% ➖ noise
97 duckdb:vortex-file-compressed -11.9% -5.7% -6.6% +10.0% ➖ noise
98 datafusion:vortex-compact -14.7% -5.1% -10.1% +10.0% ✅ faster
98 datafusion:vortex-file-compressed -7.9% -5.1% -3.0% +11.4% ➖ noise
98 duckdb:duckdb -1.2% -5.1% +4.1% +10.0% ➖ noise
98 duckdb:vortex-compact -9.9% -5.1% -5.1% +10.0% ➖ noise
98 duckdb:vortex-file-compressed -9.1% -5.1% -4.3% +10.0% ➖ noise
99 datafusion:vortex-compact -8.7% -11.7% +3.3% +25.7% ➖ noise
99 datafusion:vortex-file-compressed -7.8% -11.7% +4.4% +27.5% ➖ noise
99 duckdb:duckdb -9.3% -11.7% +2.7% +19.4% ➖ noise
99 duckdb:vortex-compact -6.1% -11.7% +6.3% +26.7% ➖ noise
99 duckdb:vortex-file-compressed -9.4% -11.7% +2.6% +22.9% ➖ noise

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

Labels

changelog/feature A new feature

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants