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

com.ontology2.bakemono.baseKBToDBpedia.BaseKBToDBpediaReducer Maven / Gradle / Ivy

There is a newer version: 3.2
Show newest version
package com.ontology2.bakemono.baseKBToDBpedia;

import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.Reducer;

import java.io.IOException;

public class BaseKBToDBpediaReducer extends Reducer {
    @Override
    protected void reduce(Text key, Iterable values, Context context) throws IOException, InterruptedException {
        for(Text value:values)
            context.write(key,value);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy