com.marklogic.mapreduce.test.ElementAttributeValuesTest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of marklogic-mapreduce2 Show documentation
Show all versions of marklogic-mapreduce2 Show documentation
MarkLogic Connector for Hadoop MapReduce
package com.marklogic.mapreduce.test;
import java.io.IOException;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.io.LongWritable;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.io.Writable;
import org.apache.hadoop.mapreduce.Job;
import org.apache.hadoop.mapreduce.Mapper;
import org.apache.hadoop.mapreduce.lib.output.FileOutputFormat;
import org.apache.hadoop.mapreduce.lib.output.TextOutputFormat;
import org.apache.hadoop.util.GenericOptionsParser;
import com.marklogic.mapreduce.MarkLogicConstants;
import com.marklogic.mapreduce.ValueInputFormat;
import com.marklogic.mapreduce.functions.ElementAttributeValues;
public class ElementAttributeValuesTest {
public static class ElementAttrValueMapper
extends Mapper {
public void map(LongWritable key, Text value, Context context)
throws IOException, InterruptedException {
context.write(key, value);
}
}
public static void main(String[] args) throws Exception {
Configuration conf = new Configuration();
String[] otherArgs = new GenericOptionsParser(conf, args).getRemainingArgs();
if (otherArgs.length < 2) {
System.err.println("Usage: ElementAttributeValuesTest configFile outputDir");
System.exit(2);
}
Job job = Job.getInstance(conf);
job.setJarByClass(ElementAttributeValuesTest.class);
job.setInputFormatClass(ValueInputFormat.class);
job.setMapperClass(ElementAttrValueMapper.class);
job.setMapOutputKeyClass(LongWritable.class);
job.setMapOutputValueClass(Text.class);
job.setOutputFormatClass(TextOutputFormat.class);
FileOutputFormat.setOutputPath(job, new Path(otherArgs[1]));
conf = job.getConfiguration();
conf.addResource(otherArgs[0]);
conf.setClass(MarkLogicConstants.INPUT_VALUE_CLASS, Text.class,
Writable.class);
conf.setClass(MarkLogicConstants.INPUT_LEXICON_FUNCTION_CLASS,
ElementAttributeValuesFunction.class, ElementAttributeValues.class);
System.exit(job.waitForCompletion(true) ? 0 : 1);
}
static class ElementAttributeValuesFunction extends ElementAttributeValues {
@Override
public String[] getElementNames() {
String[] names = {"xs:QName(\"wp:a\")"};
return names;
}
@Override
public String[] getAttributeNames() {
String[] names = {"xs:QName(\"title\"), xs:QName(\"href\")"};
return names;
}
@Override
public String[] getUserDefinedOptions() {
String[] options =
{"collation=http://marklogic.com/collation/codepoint"};
return options;
}
}
}