Examples of TPCHQuery3


Examples of org.apache.flink.test.recordJobs.relational.TPCHQuery3

  private void testQueryGeneric(long orderSize, long lineItemSize,
      float ordersFilterFactor, float joinFilterFactor,
      boolean broadcastOkay, boolean partitionedOkay,
      boolean hashJoinFirstOkay, boolean hashJoinSecondOkay, boolean mergeJoinOkay)
  {
    TPCHQuery3 query = new TPCHQuery3();
    Plan p = query.getPlan(DEFAULT_PARALLELISM_STRING, IN_FILE, IN_FILE, OUT_FILE);
    testQueryGeneric(p, orderSize, lineItemSize, ordersFilterFactor, joinFilterFactor, broadcastOkay, partitionedOkay, hashJoinFirstOkay, hashJoinSecondOkay, mergeJoinOkay);
  }
View Full Code Here

Examples of org.apache.flink.test.recordJobs.relational.TPCHQuery3

  }

  @Override
  protected Plan getTestJob() {

    TPCHQuery3 tpch3 = new TPCHQuery3();
    return tpch3.getPlan(
        String.valueOf(config.getInteger("dop", 1)),
        ordersPath,
        lineitemsPath,
        resultPath);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.