
com.thinkaurelius.titan.hadoop.compat.h2.MapredJarConfigurer Maven / Gradle / Ivy
package com.thinkaurelius.titan.hadoop.compat.h2;
import java.io.IOException;
import com.thinkaurelius.titan.hadoop.config.job.JobClasspathConfigurer;
import org.apache.hadoop.mapreduce.Job;
public class MapredJarConfigurer implements JobClasspathConfigurer {
private final String mapredJar;
public MapredJarConfigurer(String mapredJar) {
this.mapredJar = mapredJar;
}
@Override
public void configure(Job job) throws IOException {
job.setJar(mapredJar);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy