Example usage for org.apache.hadoop.mapred JobConf subclass-usage

List of usage examples for org.apache.hadoop.mapred JobConf subclass-usage

Introduction

In this page you can find the example usage for org.apache.hadoop.mapred JobConf subclass-usage.

Usage

From source file com.hazelcast.jet.connector.hadoop.SerializableJobConf.java

/**
 * This class is used to make {@link JobConf} object serializable
 */
final class SerializableJobConf extends JobConf implements Serializable {

    SerializableJobConf() {

From source file com.hazelcast.jet.hadoop.impl.SerializableJobConf.java

/**
 * This class is used to make {@link JobConf} object serializable
 */
public final class SerializableJobConf extends JobConf implements Serializable {

    SerializableJobConf() {

From source file com.hazelcast.jet.impl.connector.hadoop.SerializableJobConf.java

/**
 * This class is used to make {@link JobConf} object serializable
 */
public final class SerializableJobConf extends JobConf implements Serializable {

    SerializableJobConf() {

From source file com.iflytek.spider.util.SpiderJob.java

/** A {@link JobConf} for spider jobs. */
public class SpiderJob extends JobConf {

    public SpiderJob(Configuration conf) {
        super(conf, SpiderJob.class);
    }

From source file com.yolodata.tbana.hadoop.mapred.splunk.SplunkConf.java

public class SplunkConf extends JobConf {
    public static final String SPLUNK_USERNAME = "splunk.username";
    public static final String SPLUNK_PASSWORD = "splunk.password";
    public static final String SPLUNK_HOST = "splunk.host";
    public static final String SPLUNK_PORT = "splunk.port";
    public static final String SPLUNK_SEARCH_QUERY = "splunk.search.query";

From source file org.apache.cassandra.hadoop.trackers.CassandraJobConf.java

public class CassandraJobConf extends org.apache.hadoop.mapred.JobConf {
    private static final Logger logger = Logger.getLogger(CassandraJobConf.class);

    public String get(String name, String defaultValue) {
        if (name.equals("mapred.job.tracker") || name.equals("mapreduce.jobtracker.address")) {
            String address = getJobTrackerNode().getHostName() + ":8012";

From source file org.apache.nutch.util.NutchJobConf.java

/** A {@link JobConf} for Nutch jobs. */
public class NutchJobConf extends JobConf {

    public NutchJobConf(Configuration conf) {
        super(conf, NutchJobConf.class);
    }

From source file org.pentaho.hadoop.shim.common.ConfigurationProxy.java

/**
 * A common configuration object representing org.apache.hadoop.conf.Configuration. <p> This has been un-deprecated in
 * future version of Hadoop and thus the deprecation warning can be safely ignored. </p>
 */
@SuppressWarnings({ "unchecked", "rawtypes" })
public class ConfigurationProxy extends org.apache.hadoop.mapred.JobConf

From source file org.smartfrog.services.hadoop.operations.conf.ManagedConfiguration.java

/**
 * This is our extended configuration, which takes a Prim component as a source of information as well as (optionally)
 * the default values. This makes the reload process more complex, as it re-evaluates it from a component
 */
@SuppressWarnings({ "deprecation" })
public final class ManagedConfiguration extends JobConf implements PrimSource, ConfigurationAttributes, Cloneable {