Package eu.stratosphere.test.recordJobs.relational.query9Util

Examples of eu.stratosphere.test.recordJobs.relational.query9Util.StringIntPairStringDataOutFormat


    /* Connect aggregate: */
    sumAmountAggregate.setInput(partListJoin);

    /* Connect sink: */
    FileDataSink result = new FileDataSink(new StringIntPairStringDataOutFormat(), this.outputPath, "Results sink");
    result.setInput(sumAmountAggregate);

    Plan p = new Plan(result, "TPC-H query 9");
    p.setDefaultParallelism(this.degreeOfParallelism);
    return p;
View Full Code Here

TOP

Related Classes of eu.stratosphere.test.recordJobs.relational.query9Util.StringIntPairStringDataOutFormat

Copyright © 2018 www.massapicom. 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.