Uses of Interface
org.apache.hadoop.fs.PathFilter

Packages that use PathFilter
org.apache.hadoop.fs An abstract file system API. 
org.apache.hadoop.mapred A software framework for easily writing applications which process vast amounts of data (multi-terabyte data-sets) parallelly on large clusters (thousands of nodes) built of commodity hardware in a reliable, fault-tolerant manner. 
 

Uses of PathFilter in org.apache.hadoop.fs
 

Methods in org.apache.hadoop.fs with parameters of type PathFilter
 Path[] InMemoryFileSystem.getFiles(PathFilter filter)
          Deprecated.  
 int InMemoryFileSystem.getNumFiles(PathFilter filter)
          Deprecated.  
 FileStatus[] FileSystem.globStatus(Path pathPattern, PathFilter filter)
          Return an array of FileStatus objects whose path names match pathPattern and is accepted by the user-supplied path filter.
 FileStatus[] FileSystem.listStatus(Path[] files, PathFilter filter)
          Filter files/directories in the given list of paths using user-supplied path filter.
 FileStatus[] FileSystem.listStatus(Path f, PathFilter filter)
          Filter files/directories in the given path using the user-supplied path filter.
 

Uses of PathFilter in org.apache.hadoop.mapred
 

Classes in org.apache.hadoop.mapred that implement PathFilter
 class OutputLogFilter
          This class filters log files from directory given It doesnt accept paths having _logs.
 

Methods in org.apache.hadoop.mapred that return PathFilter
static PathFilter FileInputFormat.getInputPathFilter(JobConf conf)
          Get a PathFilter instance of the filter set for the input paths.
 

Method parameters in org.apache.hadoop.mapred with type arguments of type PathFilter
static void FileInputFormat.setInputPathFilter(JobConf conf, Class<? extends PathFilter> filter)
          Set a PathFilter to be applied to the input paths for the map-reduce job.
 



Copyright © 2008 The Apache Software Foundation