Package com.intel.hadoop.graphbuilder.preprocess.inputformat.XMLInputFormat

Examples of com.intel.hadoop.graphbuilder.preprocess.inputformat.XMLInputFormat.XMLRecordReader


  @Override
  public RecordReader<LongWritable, Text> getRecordReader(InputSplit split,
      JobConf conf, Reporter reporter) throws IOException {
    conf.set(XMLInputFormat.START_TAG_KEY, START_TAG);
    conf.set(XMLInputFormat.END_TAG_KEY, END_TAG);
    return new XMLRecordReader((FileSplit) split, conf);
  }
View Full Code Here

TOP

Related Classes of com.intel.hadoop.graphbuilder.preprocess.inputformat.XMLInputFormat.XMLRecordReader

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.