Package org.apache.pig.tools.pigstats.tez

Examples of org.apache.pig.tools.pigstats.tez.TezDAGStats$JobGraphBuilder


        TestGroupConstParallel.oneTimeSetup();
    }

    @Override
    public void checkGroupAllWithParallelGraphResult(JobGraph jGraph) {
        TezDAGStats ds = (TezDAGStats) jGraph.getJobList().get(0);
        jGraph = (JobGraph)ds.getPlan();
        TezVertexStats ts = (TezVertexStats)jGraph.getSinks().get(0);
        assertEquals(ts.getParallelism(), 1);
    }
View Full Code Here

TOP

Related Classes of org.apache.pig.tools.pigstats.tez.TezDAGStats$JobGraphBuilder

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.