Example usage for org.apache.hadoop.mapred JobConfigurable interface-usage

List of usage examples for org.apache.hadoop.mapred JobConfigurable interface-usage

Introduction

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

Usage

From source file cascading.hbase.helper.TableInputFormat.java

/**
 * Convert HBase tabular data into a format that is consumable by Map/Reduce.
 */
public class TableInputFormat extends TableInputFormatBase implements JobConfigurable {
    private final Log LOG = LogFactory.getLog(TableInputFormat.class);

From source file cascading.jdbc.db.DBInputFormat.java

/**
 * A InputFormat that reads input data from an SQL table.
 * <p/>
 * DBInputFormat emits LongWritables containing the record number as
 * key and DBWritables as value.
 * <p/>

From source file cascading.tap.hadoop.io.MultiInputSplit.java

/** Class MultiInputSplit is used by MultiInputFormat */
public class MultiInputSplit implements InputSplit, JobConfigurable {
    public static final String CASCADING_SOURCE_PATH = "cascading.source.path";
    private static final Logger LOG = LoggerFactory.getLogger(MultiInputSplit.class);

    /** Field jobConf */

From source file cascading.tap.hadoop.MultiInputSplit.java

/** Class MultiInputSplit is used by MultiInputFormat */
public class MultiInputSplit implements InputSplit, JobConfigurable {
    private static final Logger LOG = Logger.getLogger(MultiInputSplit.class);

    /** Field jobConf */
    private transient JobConf jobConf;

From source file cascading.tap.hadoop.ZipInputFormat.java

/**
 * Class ZipInputFormat is an {@link InputFormat} for zip files. Each file within a zip file is broken
 * into lines. Either line-feed or carriage-return are used to signal end of
 * line. Keys are the position in the file, and values are the line of text.
 * <p/>
 * If the underlying {@link FileSystem} is HDFS or FILE, each {@link ZipEntry} is returned

From source file com.alexholmes.hadooputils.sort.SortInputFormat.java

/**
 * The {@link org.apache.hadoop.mapred.InputFormat} used for reading the source files. The key
 * is the sort key, and the value is the entire sort line.
 */
public class SortInputFormat extends DeprecatedLzoTextInputFormat implements JobConfigurable {

From source file com.alexholmes.hadooputils.sort.SortInputFormatOld.java

/**
 * The {@link InputFormat} used for reading the source files. The key is the sort key, and the value
 * is the entire sort line.
 */
public class SortInputFormatOld extends FileInputFormat<Text, Text> implements JobConfigurable {

From source file com.bianfeng.bfas.hive.io.RealtimeInputFormat2.java

/** 
 * A base class for file-based {@link InputFormat}.
 * 
 * <p><code>FileInputFormat</code> is the base class for all file-based 
 * <code>InputFormat</code>s. This provides a generic implementation of
 * {@link #getSplits(JobConf, int)}.

From source file com.conductor.s3.S3TextFileInputFormatMRV1.java

/**
 * Copied directly from {@link org.apache.hadoop.mapred.TextInputFormat}, but inherits from the S3 optimized input
 * format {@link S3OptimizedFileInputFormatMRV1}.
 *
 * @author cgreen
 * @see S3OptimizedFileInputFormatMRV1

From source file com.dappervision.hbase.mapred.TypedBytesTableInputFormat.java

/**
 * Convert HBase tabular data into a format that is consumable by Map/Reduce.
 */
@Deprecated
public class TypedBytesTableInputFormat extends TypedBytesTableInputFormatBase implements JobConfigurable {
    private final Log LOG = LogFactory.getLog(TypedBytesTableInputFormat.class);