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 edu.umn.cs.spatialHadoop.mapred.GridOutputFormat.java

public class GridOutputFormat<S extends Shape> extends FileOutputFormat<IntWritable, S> {

    @Override
    public RecordWriter<IntWritable, S> getRecordWriter(FileSystem ignored, JobConf job, String name,
            Progressable progress) throws IOException {
        // Get grid info

From source file edu.umn.cs.spatialHadoop.mapred.GridOutputFormat2.java

public class GridOutputFormat2<S extends Shape> extends FileOutputFormat<NullWritable, S> {

    @Override
    public RecordWriter<NullWritable, S> getRecordWriter(FileSystem ignored, JobConf job, String name,
            Progressable progress) throws IOException {
        // Get grid info

From source file edu.umn.cs.spatialHadoop.mapred.GridOutputFormat3.java

public class GridOutputFormat3<S extends Shape> extends FileOutputFormat<Rectangle, S> {

    @Override
    public RecordWriter<Rectangle, S> getRecordWriter(FileSystem ignored, JobConf job, String name,
            Progressable progress) throws IOException {
        // Get grid info

From source file edu.umn.cs.spatialHadoop.mapred.IndexOutputFormat.java

/**
 * @author Ahmed Eldawy
 *
 */
public class IndexOutputFormat<S extends Shape> extends FileOutputFormat<IntWritable, S> {

From source file edu.umn.cs.spatialHadoop.mapred.RTreeGridOutputFormat.java

public class RTreeGridOutputFormat<S extends Shape> extends FileOutputFormat<IntWritable, S> {

    @Override
    public RecordWriter<IntWritable, S> getRecordWriter(FileSystem ignored, JobConf job, String name,
            Progressable progress) throws IOException {
        // Get grid info

From source file edu.umn.cs.spatialHadoop.mapred.TextOutputFormat.java

/** An {@link OutputFormat} that writes plain text files. 
 */
public class TextOutputFormat<K, V> extends FileOutputFormat<K, V> {

    protected static class LineRecordWriter<K, V> implements RecordWriter<K, V> {
        private static final String utf8 = "UTF-8";

From source file edu.umn.cs.spatialHadoop.PyramidOutputFormat.java

/**
 * An output format that is used to plot ImageWritable to PNG image.
 * @author Ahmed Eldawy
 *
 */
public class PyramidOutputFormat extends FileOutputFormat<TileIndex, ImageWritable> {

From source file fm.last.feathers.output.PlainTypedBytes.java

public class PlainTypedBytes extends FileOutputFormat<TypedBytesWritable, TypedBytesWritable> {

    protected static class PairWriter implements RecordWriter<TypedBytesWritable, TypedBytesWritable> {

        private DataOutputStream out;

From source file fm.last.feathers.output.RawFileOutputFormat.java

public class RawFileOutputFormat<K, V> extends FileOutputFormat<K, V> {
    protected static class RawFileRecordWriter<K, V> implements RecordWriter<K, V> {
        protected DataOutputStream out;

        public RawFileRecordWriter(DataOutputStream out) {
            this.out = out;

From source file fm.last.hbase.mapred.TypedBytesTableOutputFormat.java

/**
 * This is a modified version of org.apache.hadoop.hbase.mapred.TableOutputFormat. Converts Map/Reduce typedbytes output
 * and write it to an HBase table
 */
@Deprecated
public class TypedBytesTableOutputFormat extends FileOutputFormat<TypedBytesWritable, TypedBytesWritable> {