You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem or challenge?
TPC-H is an important and well studied benchmark. It is used for testing many database optimizations and is well known and widely studied. TPCH This is especially important for academic research projects and classes. For example see the CMU optimizer class (see #14373)
Generating this dataset today is quite a pain as it requires compiling and running a very old c program dbgen.c (see XXX)
It requires docker, and takes quite a while to run
It makes CSV files which are almost never what is used in practice (people use parquet, etc)
It isn't part of datafusion-cli
Describe the solution you'd like
I would like it to be very easy to create data and run TPCH queries in datafusion-cli
Describe alternatives you've considered
Idea 1: Instructions + Precalculate the Data
The idea here would be to precalculate the data and find somewhere to host it (I am sure the ASF has places to host files, but we would need to research what the limits are, etc).
Another alternative that I explored is using DuckDB to generate the data, exporting that as Parquet, and then ingesting it into DataFusion (schema may require fixing):
Thanks @lmwnshn -- the Java implementation might be easier to transliterate to Rust...
Also BTW I am pretty sure other rust data projects would be interested in a Rust implementation of the TPCH data generator, so I bet we could get some others to help
Is your feature request related to a problem or challenge?
TPC-H is an important and well studied benchmark. It is used for testing many database optimizations and is well known and widely studied. TPCH This is especially important for academic research projects and classes. For example see the CMU optimizer class (see #14373)
Generating this dataset today is quite a pain as it requires compiling and running a very old c program dbgen.c (see XXX)
DuckDB has a TPCH extension that makes it very easy to create the dataset and queries: https://duckdb.org/docs/extensions/tpch.html
I also think this is another reason why DuckDB is so popular with Academic research as it lowers the barrier to getting this dataset
Today, to generate this dataset, the DataFusion bench.sh program
bench.sh runs tpdh dbgen from this container: https://github.com/scalytics/TPCH-Docker/pkgs/container/tpch-docker
And the eventual code is here: https://github.com/scalytics/TPCH-Docker/tree/main/data/tpch/2.18.0_rc2/dbgen
This setup is non ideal for several reasons:
Describe the solution you'd like
I would like it to be very easy to create data and run TPCH queries in datafusion-cli
Describe alternatives you've considered
Idea 1: Instructions + Precalculate the Data
The idea here would be to precalculate the data and find somewhere to host it (I am sure the ASF has places to host files, but we would need to research what the limits are, etc).
Here is an example repo: https://github.com/aleaugustoplus/tpch-data (maybe we can do the same or even use that one)
Then we would provide instructions / a script on how to download and use the files with
datafusion-cli
Ideally we would provide the data in parquet format
Idea 2: Integrate the dbgen function into
datafusion-cli
(like DuckDB)The idea here would be to implement some/all of the syntax from DuckDB: https://duckdb.org/docs/extensions/tpch.html
That would mean a command like this
That would create the 8 TPCH tables, along with command to show the queries and answers
The trick here is that
dbgen
is some ancient c program and there is no Rust version I could find. It is critical that that data is exactly the same.Transliterating dbgen.c from C to Rust might be a fun project (and maybe someone could figure out how to make it parallel while they are at it)
Additional context
No response
The text was updated successfully, but these errors were encountered: