Package com.intel.hadoop.graphbuilder.graph.simplegraph

Examples of com.intel.hadoop.graphbuilder.graph.simplegraph.SimpleGraphOutput


    super.configure(job);
    this.numProcs = job.getInt("numProcs", 1);
    this.subpartPerPartition = job.getInt("subpartPerPartition", 1);
    // Switch to GLGraph by uncommenting the next line.
    // graphOutput = new GLGraphOutput(numProcs);
    graphOutput = new SimpleGraphOutput();
    graphOutput.configure(job);
  }
View Full Code Here


    conf.setMapperClass(EdgeIngressMapper.class);
    conf.setCombinerClass(EdgeIngressCombiner.class);
    conf.setReducerClass(EdgeIngressReducer.class);

    // GraphOutput output = new GLGraphOutput(numProcs);
    GraphOutput output = new SimpleGraphOutput();
    output.init(conf);

    conf.setInputFormat(TextInputFormat.class);
    // conf.setOutputFormat(PartitionedGraphOutputFormat.class);

    if (gzip) {
View Full Code Here

TOP

Related Classes of com.intel.hadoop.graphbuilder.graph.simplegraph.SimpleGraphOutput

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.