There are three filter modes available for ListHDFS that determine how the regular expression in the File Filter
property will be applied to listings in HDFS.
Directories and Files
Recurse Subdirectories
is set to true, only subdirectories with a matching name will be searched for files that match the regular expression defined in File Filter
.
Files Only
Recurse Subdirectories
is set to true, the entire subdirectory tree will be searched for files that match the regular expression defined in File Filter
.
Full Path
Recurse Subdirectories
is set to true, the entire subdirectory tree will be searched for files in which the full path of the file matches the regular expression defined in File Filter
.scheme
and authority
, if a given file has a full path of hdfs://hdfscluster:8020/data/txt/1.txt
, the filter will evaluate the regular expression defined in File Filter
against two cases, matching if either is true:hdfs
), authority (hdfscluster:8020
), and the remaining path components (/data/txt/1.txt
)/data/txt/1.txt
)
File Filter
. When Recurse Subdirectories
is true, this mode allows the user to filter for files in subdirectories with names that match the regular expression defined in File Filter
.
Property | Value |
---|---|
Directory | /data |
Recurse Subdirectories | true |
File Filter | .*txt.* |
Filter Mode | Directories and Files |
ListHDFS results:
File Filter
. Directory names will not be matched against the regular expression defined in File Filter
. When Recurse Subdirectories
is true, this mode allows the user to filter for files in the entire subdirectory tree of the directory specified in the Directory
property.
Property | Value |
---|---|
Directory | /data |
Recurse Subdirectories | true |
File Filter | [^\.].*\.txt |
Filter Mode | Files Only |
ListHDFS results:
File Filter
. When Recurse Subdirectories
is true, this mode allows the user to filter for files in the entire subdirectory tree of the directory specified in the Directory
property while allowing filtering based on the full path of each file.
Property | Value |
---|---|
Directory | /data |
Recurse Subdirectories | true |
File Filter | (/.*/)*csv/.* |
Filter Mode | Full Path |
ListHDFS results:
ListHDFS performs a listing of all files that it encounters in the configured HDFS directory. There are two common, broadly defined use cases.
By default, the Processor will create a separate FlowFile for each file in the directory and add attributes for filename, path, etc. A common use case is to connect ListHDFS to the FetchHDFS processor. These two processors used in conjunction with one another provide the ability to easily monitor a directory and fetch the contents of any new file as it lands in HDFS in an efficient streaming fashion.
Another common use case is the desire to process all newly arriving files in a given directory, and to then perform some action only when all files have completed their processing. The above approach of streaming the data makes this difficult, because NiFi is inherently a streaming platform in that there is no "job" that has a beginning and an end. Data is simply picked up as it becomes available.
To solve this, the ListHDFS Processor can optionally be configured with a Record Writer. When a Record Writer is configured, a single FlowFile will be created that will contain a Record for each file in the directory, instead of a separate FlowFile per file. See the documentation for ListFile for an example of how to build a dataflow that allows for processing all of the files before proceeding with any other step.
One important difference between the data produced by ListFile and ListHDFS, though, is the structure of the Records that are emitted. The Records emitted by ListFile have a different schema than those emitted by ListHDFS. ListHDFS emits records that follow the following schema (in Avro format):
{
"type": "record",
"name": "nifiRecord",
"namespace": "org.apache.nifi",
"fields": [{
"name": "filename",
"type": "string"
}, {
"name": "path",
"type": "string"
}, {
"name": "directory",
"type": "boolean"
}, {
"name": "size",
"type": "long"
}, {
"name": "lastModified",
"type": {
"type": "long",
"logicalType": "timestamp-millis"
}
}, {
"name": "permissions",
"type": ["null", "string"]
}, {
"name": "owner",
"type": ["null", "string"]
}, {
"name": "group",
"type": ["null", "string"]
}, {
"name": "replication",
"type": ["null", "int"]
}, {
"name": "symLink",
"type": ["null", "boolean"]
}, {
"name": "encrypted",
"type": ["null", "boolean"]
}, {
"name": "erasureCoded",
"type": ["null", "boolean"]
}]
}