Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 922 Bytes

README.md

File metadata and controls

29 lines (19 loc) · 922 Bytes

TPC-H For Stratosphere

Implementation of all TPC-H queries for Stratosphere, using Scala

TPC-H Specification: http://www.tpc.org/tpch/spec/tpch2.16.0.pdf

Usage

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

Instructions for Developers

To add a new query X:

  1. 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).
  2. Add the corrsponding case statement in the TPCHQuery.create() factory method.