tpctools 0.1.0

Tools for generating TPC-H and TPC-DS data sets and converting them to Parquet
tpctools-0.1.0 is not a library.
Visit the last successful build: tpctools-0.7.0

TPC Tools

Tools for generating TPC-H and TPC-DS data sets.

TPC-DS

Install dependencies.

sudo apt install gcc make flex bison byacc git
git clone https://github.com/databricks/tpcds-kit.git

Generate data.

cargo run --release -- --benchmark tpcds --scale 1000 --partitions 48 --generator_path ~/git/tpcds-kit/tools/ --output /mnt/bigdata/tpcds/tbl-sf1000/

Example output.

Generated TPC-DS data at scale factor 1000 with 48 partitions in: 6247.155671938s

TPC-H

Install dependencies.

git clone // git@github.com:databricks/tpch-dbgen.git

Generate data.

cargo run --release -- --benchmark tpch --scale 100 --partitions 24 --generator_path ~/git/tpch-dbgen/ --output /mnt/bigdata/tpcds/tbl-sf1000/