Class LocalJobOutputFiles

java.lang.Object
org.apache.hadoop.mapred.nativetask.util.LocalJobOutputFiles
All Implemented Interfaces:
NativeTaskOutput

@Private public class LocalJobOutputFiles extends Object implements NativeTaskOutput
  • Constructor Summary

    Constructors
    Constructor
    Description
    LocalJobOutputFiles(org.apache.hadoop.conf.Configuration conf, String id)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    org.apache.hadoop.fs.Path
    getInputFile(int mapId)
    Return a local reduce input file created earlier
    org.apache.hadoop.fs.Path
    getInputFileForWrite(org.apache.hadoop.mapred.TaskID mapId, long size, org.apache.hadoop.conf.Configuration conf)
    Create a local reduce input file name.
    org.apache.hadoop.fs.Path
    Return the path to local map output file created earlier
    org.apache.hadoop.fs.Path
    Create a local map output file name.
    org.apache.hadoop.fs.Path
    Return the path to a local map output index file created earlier
    org.apache.hadoop.fs.Path
    Create a local map output index file name.
    getOutputName(int partition)
     
    org.apache.hadoop.fs.Path
    getSpillFile(int spillNumber)
    Return a local map spill file created earlier.
    org.apache.hadoop.fs.Path
    getSpillFileForWrite(int spillNumber, long size)
    Create a local map spill file name.
    org.apache.hadoop.fs.Path
    getSpillIndexFile(int spillNumber)
    Return a local map spill index file created earlier
    org.apache.hadoop.fs.Path
    getSpillIndexFileForWrite(int spillNumber, long size)
    Create a local map spill index file name.
    void
    Removes all of the files related to a task.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • LocalJobOutputFiles

      public LocalJobOutputFiles(org.apache.hadoop.conf.Configuration conf, String id)
  • Method Details