Example usage for org.apache.hadoop.mapreduce.lib.output FileOutputFormat subclass-usage

List of usage examples for org.apache.hadoop.mapreduce.lib.output FileOutputFormat subclass-usage

Introduction

In this page you can find the example usage for org.apache.hadoop.mapreduce.lib.output FileOutputFormat subclass-usage.

Usage

From source file microbench.TeraSortOnHDFSDataLocal.java

class TeraOutputFormat extends FileOutputFormat<Text, Text> {
    static final String FINAL_SYNC_ATTRIBUTE = "mapreduce.terasort.final.sync";
    private OutputCommitter committer = null;

    /**
     * Set the requirement for a final sync before the stream is closed.

From source file modClasses.extraKeyTextWriter.java

/** An {@link OutputFormat} that writes plain text files. */
public class extraKeyTextWriter<K, V> extends FileOutputFormat<K, V> {
    protected static class LineRecordWriter<K, V> extends RecordWriter<K, V> {
        private static final String utf8 = "UTF-8";
        private static final byte[] newline;
        static {

From source file modClasses.LongArrayWriter.java

/** An {@link OutputFormat} that writes plain text files. */
public class LongArrayWriter<K, V> extends FileOutputFormat<K, V> {
    protected static class LineRecordWriter<K, V> extends RecordWriter<K, V> {
        private static final String utf8 = "UTF-8";
        private static final byte[] newline;
        static {

From source file modClasses.LongArrayWriter2.java

/** An {@link OutputFormat} that writes plain text files. */
public class LongArrayWriter2<K, V> extends FileOutputFormat<K, V> {
    protected static class LineRecordWriter<K, V> extends RecordWriter<K, V> {
        private static final String utf8 = "UTF-8";
        private static final byte[] newline;
        static {

From source file modClasses.LongArrayWriterJSON.java

/** An {@link OutputFormat} that writes plain text files. */
public class LongArrayWriterJSON<K, V> extends FileOutputFormat<K, V> {
    protected static class LineRecordWriter<K, V> extends RecordWriter<K, V> {
        private static final String utf8 = "UTF-8";
        private static final byte[] newline;
        static {

From source file modClasses.noKeyLongWriter.java

/** An {@link OutputFormat} that writes plain text files. */
public class noKeyLongWriter<K, V> extends FileOutputFormat<K, V> {
    protected static class LineRecordWriter<K, V> extends RecordWriter<K, V> {
        private static final String utf8 = "UTF-8";
        private static final byte[] newline;
        static {

From source file nl.bioinf.wvanhelvoirt.HadoopPhredCalculator.FastqFileOutputFormat.java

/**
 * FastqFileOutputFormat
 *
 * This is a custom OutputFormat class for fastqc files.
 *
 * @author Wout van Helvoirt

From source file org.apache.accumulo.core.client.mapreduce.AccumuloFileOutputFormat.java

/**
 * This class allows MapReduce jobs to write output in the Accumulo data file format.<br>
 * Care should be taken to write only sorted data (sorted by {@link Key}), as this is an important requirement of Accumulo data files.
 *
 * <p>
 * The output path to be created must be specified via {@link AccumuloFileOutputFormat#setOutputPath(Job, Path)}. This is inherited from

From source file org.apache.accumulo.hadoop.mapreduce.AccumuloFileOutputFormat.java

/**
 * This class allows MapReduce jobs to write output in the Accumulo data file format.<br>
 * Care should be taken to write only sorted data (sorted by {@link Key}), as this is an important
 * requirement of Accumulo data files. The output path to be created must be specified via
 * {@link #configure()}, which uses a fluent API. For Example:
 *

From source file org.apache.accumulo.server.metanalysis.LogFileOutputFormat.java

/**
 * Output format for Accumulo write ahead logs.
 */
public class LogFileOutputFormat extends FileOutputFormat<LogFileKey, LogFileValue> {

    private static class LogFileRecordWriter extends RecordWriter<LogFileKey, LogFileValue> {