Implementation of all TPC-H queries for Stratosphere, using Scala
TPC-H Specification: http://www.tpc.org/tpch/spec/tpch2.16.0.pdf
To run TPC-H query X, type
stratosphere-tpch QXX [options] <args>...
For a full list of the options and arguments supported by each query, type
stratosphere-tpch --help
To add a new query X:
- Add a class eu.stratosphere.tpch.query.TPCHQueryXX that extends the abstract base class eu.stratosphere.tpch.query.TPCHQuery (see TPCHQuery01 for a reference of a query implementation).
- Add the corrsponding case statement in the TPCHQuery.create() factory method.