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

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


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


        .getName());
    FieldParser edataparser = ParserFactory.getParserByClassName(edataClass()
        .getName());

    try {
      HashIdMR job1 = new HashIdMR(graphparser, vidparser, vdataparser);
      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,
View Full Code Here

TOP

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

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.