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

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

Introduction

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

Usage

From source file org.apache.avro.mapred.AvroTextOutputFormat.java

/** The equivalent of {@link org.apache.hadoop.mapred.TextOutputFormat} for
 * writing to Avro Data Files with a <code>"bytes"</code> schema. */
public class AvroTextOutputFormat<K, V> extends FileOutputFormat<K, V> {

    private static final String UTF8 = "UTF-8";

From source file org.apache.avro.mapred.tether.TetherOutputFormat.java

/** An {@link org.apache.hadoop.mapred.OutputFormat} for Avro data files. */
class TetherOutputFormat extends FileOutputFormat<TetherData, NullWritable> {

    /** Enable output compression using the deflate codec and specify its level.*/
    public static void setDeflateLevel(JobConf job, int level) {
        FileOutputFormat.setCompressOutput(job, true);

From source file org.apache.carbondata.hadoop.api.CarbonTableOutputFormat.java

/**
 * Base class for all output format for CarbonData file.
 * @param <T>
 */
public abstract class CarbonTableOutputFormat<T> extends FileOutputFormat<Void, T> {

From source file org.apache.carbondata.hive.MapredCarbonOutputFormat.java

/**
 * TODO : To extend CarbonOutputFormat
 */
class MapredCarbonOutputFormat<T> extends FileOutputFormat<Void, T> implements HiveOutputFormat<Void, T> {

    @Override

From source file org.apache.lens.lib.query.LensFileOutputFormat.java

/**
 * File output format which would write Text values in the charset enconding passed.
 */
public class LensFileOutputFormat extends FileOutputFormat<NullWritable, Text> {

    /**

From source file org.apache.mnemonic.hadoop.mapred.MneOutputFormat.java

/**
 * A Mnemonic output format that satisfies the org.apache.hadoop.mapred API.
 */

public class MneOutputFormat<MV extends MneDurableOutputValue<?>> extends FileOutputFormat<NullWritable, MV> {

From source file org.apache.orc.mapred.OrcOutputFormat.java

/**
 * An ORC output format that satisfies the org.apache.hadoop.mapred API.
 */
public class OrcOutputFormat<V extends Writable> extends FileOutputFormat<NullWritable, V> {

    /**

From source file org.apache.parquet.hadoop.mapred.DeprecatedParquetOutputFormat.java

public class DeprecatedParquetOutputFormat<V> extends org.apache.hadoop.mapred.FileOutputFormat<Void, V> {

    public static void setWriteSupportClass(Configuration configuration, Class<?> writeSupportClass) {
        configuration.set(ParquetOutputFormat.WRITE_SUPPORT_CLASS, writeSupportClass.getName());
    }

From source file org.apache.sysml.runtime.matrix.data.UnPaddedOutputFormat.java

public class UnPaddedOutputFormat<K extends Writable, V extends Writable> extends FileOutputFormat<K, V> {

    public static class UnpaddedRecordWriter<K extends Writable, V extends Writable> implements RecordWriter<K, V> {
        /** file input stream */
        private FSDataOutputStream out;

From source file org.apache.sysml.runtime.matrix.sort.CompactOutputFormat.java

public class CompactOutputFormat<K extends Writable, V extends Writable> extends FileOutputFormat<K, V> {
    static final String FINAL_SYNC_ATTRIBUTE = "final.sync";

    /**
     * Does the user want a final sync at close?
     *