All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.marklogic.mapreduce.test.ValueMatchTest Maven / Gradle / Ivy

There is a newer version: 11.3.1
Show newest version
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.PathReference;
import com.marklogic.mapreduce.functions.Reference;
import com.marklogic.mapreduce.functions.ValueMatch;

public class ValueMatchTest {
    public static class ValueMatchMapper 
    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: ValueMatchTest configFile outputDir");
            System.exit(2);
        }

        Job job = Job.getInstance(conf);
        job.setJarByClass(ValueMatchTest.class);
        job.setInputFormatClass(ValueInputFormat.class);
        job.setMapperClass(ValueMatchMapper.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, 
            ValueMatchFunction.class, ValueMatch.class);

        System.exit(job.waitForCompletion(true) ? 0 : 1);
    }
    
    static class ValueMatchFunction extends ValueMatch {      
        @Override
        public String getPattern() {
            return "\"?3\"";
        }

        @Override
        public Reference[] getReferences() {
            PathReference pathRef = new MyPathReference();
            return new Reference[] {pathRef};
        }
        
    }
    
    static class MyPathReference extends PathReference {

        @Override
        public String getPathExpression() {
            return "/my:a[@his:b='B1']/my:c";
        }
        
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy