Uses of Interface
org.apache.hadoop.util.Progressable

Packages that use Progressable
org.apache.hadoop.dfs A distributed implementation of FileSystem
org.apache.hadoop.fs An abstract file system API. 
org.apache.hadoop.io Generic i/o code for use when reading and writing data to the network, to databases, and to files. 
org.apache.hadoop.mapred A system for scalable, fault-tolerant, distributed computation over large data collections. 
 

Uses of Progressable in org.apache.hadoop.dfs
 

Methods in org.apache.hadoop.dfs with parameters of type Progressable
 FSOutputStream DistributedFileSystem.createRaw(Path f, boolean overwrite, short replication, long blockSize, Progressable progress)
           
 

Uses of Progressable in org.apache.hadoop.fs
 

Methods in org.apache.hadoop.fs with parameters of type Progressable
 FSDataOutputStream FileSystem.create(Path f, boolean overwrite, int bufferSize, Progressable progress)
          Opens an FSDataOutputStream at the indicated Path with write-progress reporting.
 FSDataOutputStream FileSystem.create(Path f, boolean overwrite, int bufferSize, short replication, long blockSize, Progressable progress)
          Opens an FSDataOutputStream at the indicated Path with write-progress reporting.
 FSDataOutputStream FileSystem.create(Path f, Progressable progress)
          Create an FSDataOutputStream at the indicated Path with write-progress reporting.
 FSDataOutputStream FileSystem.create(Path f, short replication, Progressable progress)
          Opens an FSDataOutputStream at the indicated Path with write-progress reporting.
 FSOutputStream LocalFileSystem.createRaw(Path f, boolean overwrite, short replication, long blockSize, Progressable progress)
           
abstract  FSOutputStream FileSystem.createRaw(Path f, boolean overwrite, short replication, long blockSize, Progressable progress)
          Opens an OutputStream at the indicated Path with write-progress reporting.
 

Constructors in org.apache.hadoop.fs with parameters of type Progressable
FSDataOutputStream(FileSystem fs, Path file, boolean overwrite, Configuration conf, int bufferSize, short replication, long blockSize, Progressable progress)
           
 

Uses of Progressable in org.apache.hadoop.io
 

Methods in org.apache.hadoop.io with parameters of type Progressable
static SequenceFile.Writer SequenceFile.createWriter(FileSystem fs, Configuration conf, Path name, Class keyClass, Class valClass, SequenceFile.CompressionType compressionType, CompressionCodec codec, Progressable progress)
          Construct the preferred type of SequenceFile Writer.
static SequenceFile.Writer SequenceFile.createWriter(FileSystem fs, Configuration conf, Path name, Class keyClass, Class valClass, SequenceFile.CompressionType compressionType, Progressable progress)
          Construct the preferred type of SequenceFile Writer.
 

Constructors in org.apache.hadoop.io with parameters of type Progressable
ArrayFile.Writer(Configuration conf, FileSystem fs, String file, Class valClass, SequenceFile.CompressionType compress, Progressable progress)
          Create the named file for values of the named class.
MapFile.Writer(Configuration conf, FileSystem fs, String dirName, Class keyClass, Class valClass, SequenceFile.CompressionType compress, Progressable progress)
          Create the named map for keys of the named class.
MapFile.Writer(Configuration conf, FileSystem fs, String dirName, WritableComparator comparator, Class valClass, SequenceFile.CompressionType compress, Progressable progress)
          Create the named map using the named key comparator.
SequenceFile.Writer(FileSystem fs, Configuration conf, Path name, Class keyClass, Class valClass, Progressable progress)
          Create the named file with write-progress reporter.
SequenceFile.Writer(FileSystem fs, Path name, Class keyClass, Class valClass, boolean compress, Progressable progress)
          Deprecated. Call SequenceFile.Writer.SequenceFile.Writer(FileSystem,Configuration,Path,Class,Class,Progressable).
SequenceFile.Writer(FileSystem fs, Path name, Class keyClass, Class valClass, Progressable progress)
          Deprecated. Call SequenceFile.Writer.SequenceFile.Writer(FileSystem,Configuration,Path,Class,Class,Progressable).
 

Uses of Progressable in org.apache.hadoop.mapred
 

Subinterfaces of Progressable in org.apache.hadoop.mapred
 interface Reporter
          Passed to application code to permit alteration of status.
 

Methods in org.apache.hadoop.mapred with parameters of type Progressable
 RecordWriter TextOutputFormat.getRecordWriter(FileSystem fs, JobConf job, String name, Progressable progress)
           
 RecordWriter SequenceFileOutputFormat.getRecordWriter(FileSystem fs, JobConf job, String name, Progressable progress)
           
abstract  RecordWriter OutputFormatBase.getRecordWriter(FileSystem fs, JobConf job, String name, Progressable progress)
           
 RecordWriter MapFileOutputFormat.getRecordWriter(FileSystem fs, JobConf job, String name, Progressable progress)
           
 RecordWriter OutputFormat.getRecordWriter(FileSystem fs, JobConf job, String name, Progressable progress)
          Construct a RecordWriter with Progressable.
 



Copyright © 2006 The Apache Software Foundation