should be it

This commit is contained in:
2025-10-24 19:21:19 -05:00
parent a4b23fc57c
commit f09560c7b1
14047 changed files with 3161551 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
# name: benchmark/ingestion/persistent_storage/tpch/csv/ingest_lineitem.benchmark
# description: benchmark ingestion of lineitem
# group: [csv]
template benchmark/ingestion/persistent_storage/tpch/tpch_ingestion_persistent.benchmark.in
table_name=lineitem
format=csv

View File

@@ -0,0 +1,7 @@
# name: benchmark/ingestion/persistent_storage/tpch/csv/ingest_orders.benchmark
# description: benchmark ingestion of orders
# group: [csv]
template benchmark/ingestion/persistent_storage/tpch/tpch_ingestion_persistent.benchmark.in
table_name=orders
format=csv

View File

@@ -0,0 +1,7 @@
# name: benchmark/ingestion/persistent_storage/tpch/native/ingest_lineitem.benchmark
# description: benchmark ingestion of lineitem
# group: [native]
template benchmark/ingestion/persistent_storage/tpch/tpch_ingestion_persistent.benchmark.in
table_name=lineitem
format=native

View File

@@ -0,0 +1,7 @@
# name: benchmark/ingestion/persistent_storage/tpch/native/ingest_orders.benchmark
# description: benchmark ingestion of orders
# group: [native]
template benchmark/ingestion/persistent_storage/tpch/tpch_ingestion_persistent.benchmark.in
table_name=orders
format=native

View File

@@ -0,0 +1,7 @@
# name: benchmark/ingestion/persistent_storage/tpch/parquet/ingest_lineitem.benchmark
# description: benchmark ingestion of lineitem
# group: [parquet]
template benchmark/ingestion/persistent_storage/tpch/tpch_ingestion_persistent.benchmark.in
table_name=lineitem
format=parquet

View File

@@ -0,0 +1,7 @@
# name: benchmark/ingestion/persistent_storage/tpch/parquet/ingest_orders.benchmark
# description: benchmark ingestion of orders
# group: [parquet]
template benchmark/ingestion/persistent_storage/tpch/tpch_ingestion_persistent.benchmark.in
table_name=orders
format=parquet

View File

@@ -0,0 +1,21 @@
# name: ${FILE_PATH}
# description: ${DESCRIPTION}
# group: [ingestion]
name Q${table_name}
group ingestion
subgroup tpch
require parquet
require tpch
cache tpch_sf1_ingest.duckdb
load benchmark/ingestion/load_tpch.sql
run
create table ${table_name}_ingested as select * from ${table_name}_${format};
cleanup
DROP TABLE ${table_name}_ingested;