linus5 / go-tpc

A toolbox to benchmark TPC workloads in Go

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Go TPC

A toolbox to benchmark workloads in TPC

Install

make

TPC-C

# Create 4 warehouses and use 4 partitions by HASH 
./bin/go-tpc tpcc --warehouses 4 --parts 4 prepare
# Run TPCC workloads
./bin/go-tpc tpcc --warehouses 4 run
# Cleanup 
./bin/go-tpc tpcc --warehouses 4 cleanup
# Check consistency 
./bin/go-tpc tpcc --warehouses 4 check

TPC-H

# Prepare data with scale factor 1
./bin/go-tpc tpch --sf=1 prepare
# Run TPCH workloads with result checking
./bin/go-tpc tpch --sf=1 --check=true run
# Run TPCH workloads without result checking
./bin/go-tpc tpch --sf=1 run
# Cleanup
./bin/go-tpc tpch cleanup

About

A toolbox to benchmark TPC workloads in Go

License:Apache License 2.0


Languages

Language:Go 99.9%Language:Python 0.1%Language:Makefile 0.1%