Package org.apache.storm.hdfs.common
Class HdfsUtils
java.lang.Object
org.apache.storm.hdfs.common.HdfsUtils
-
Nested Class Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic ArrayList<org.apache.hadoop.fs.Path>
listFilesByModificationTime
(org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.fs.Path directory, long olderThan) list files sorted by modification time that have not been modified since 'olderThan'.static org.apache.hadoop.fs.FSDataOutputStream
tryCreateFile
(org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.fs.Path file) Returns null if file already exists.
-
Constructor Details
-
HdfsUtils
public HdfsUtils()
-
-
Method Details
-
listFilesByModificationTime
public static ArrayList<org.apache.hadoop.fs.Path> listFilesByModificationTime(org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.fs.Path directory, long olderThan) throws IOException list files sorted by modification time that have not been modified since 'olderThan'. if 'olderThan' is <= 0 then the filtering is disabled- Throws:
IOException
-
tryCreateFile
public static org.apache.hadoop.fs.FSDataOutputStream tryCreateFile(org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.fs.Path file) throws IOException Returns null if file already exists. throws if there was unexpected problem- Throws:
IOException
-