Package com.intel.hadoop.graphbuilder.idnormalize.mapreduce

Examples of com.intel.hadoop.graphbuilder.idnormalize.mapreduce.SortEdgeMR


      job1.run(input + "/vdata", output);

      SortDictMR job2 = new SortDictMR(numParts, true, vidparser);
      job2.run(output + "/vidmap", output + "/temp/partitionedvidmap");

      SortEdgeMR job3 = new SortEdgeMR(numParts, graphparser, vidparser,
          edataparser);
      job3.run(input + "/edata", output + "/temp/partitionededata");

      TransEdgeMR job4 = new TransEdgeMR(numParts, output
          + "/temp/partitionedvidmap", graphparser, vidparser, edataparser);
      job4.run(output + "/temp/partitionededata", output + "/edata");
    } catch (Exception e) {
View Full Code Here


*
* @author Haijie Gu
*/
public class SortEdgeMapReduceTest {
  public static void main(String[] args) throws IOException {
    SortEdgeMR driver = new SortEdgeMR(32, new BasicGraphParser(),
        new StringParser(), new EmptyParser());
    driver.run(args[0], args[1]);
  }
View Full Code Here

TOP

Related Classes of com.intel.hadoop.graphbuilder.idnormalize.mapreduce.SortEdgeMR

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.