blob: 624099e11999889e2ed37a4976f393f966539fc8 [file] [log] [blame]
<!DOCTYPE html>
<html lang="en">
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<head>
<meta charset="utf-8" />
<title>ListSFTP</title>
<link rel="stylesheet" href="../../../../../css/component-usage.css" type="text/css" />
</head>
<body>
<p>
ListSFTP performs a listing of all files that it encounters in the configured directory of an SFTP server.
There are two common, broadly defined use cases.
</p>
<h3>Streaming Use Case</h3>
<p>
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 ListSFTP to the FetchSFTP 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 on the SFTP server in an efficient streaming fashion.
</p>
<h3>Batch Use Case</h3>
<p>
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.
</p>
<p>
To solve this, the ListSFTP 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.
With this pattern, in order to fetch the contents of each file, the records must be split up into individual FlowFiles and then
fetched. So how does this help us?
</p>
<p>
We can still accomplish the desired use case of waiting until all files in the directory have been processed by splitting apart the FlowFile
and processing all of the data within a Process Group. Configuring the Process Group with a FlowFile Concurrency of "Single FlowFile per Node"
means that only one FlowFile will be brought into the Process Group. Once that happens, the FlowFile can be split apart and each part processed.
Configuring the Process Group with an Outbound Policy of "Batch Output" means that none of the FlowFiles will leave the Process Group until all have
finished processing. As a result, we can build a flow like the following:
</p>
<img src="ListSFTP-batch-high-level-flow.png" style="width: 50%; height: 50%" />
<p>
In this flow, we perform a listing of a directory with ListSFTP. The processor is configured with a Record Writer (in this case a CSV Writer, but any Record Writer can be used)
so that only a single FlowFile is generated for the entire listing. That listing is then sent to the "Process Listing" Process Group (shown below). Only after the contents of the entire directory
have been processed will data leave the "Process Listing" Process Group. At that point, when all data in the Process Group is ready to leave, each of the processed
files will be sent to the "Post-Processing" Process Group. At the same time, the original listing is to be sent to the "Processing Complete Notification" Process Group.
In order to accomplish this, the Process Group must be configured with a FlowFile Concurrency of "Single FlowFile per Node" and an Outbound Policy of "Batch Output."
</p>
<p>
The "Process Listing" Process Group that is described above looks like this:
</p>
<img src="ListSFTP-batch-processing.png" style="width: 50%; height: 50%" />
<p>
A listing is received via the "Listing" Input Port. This is then sent directly to the "Listing of Processed Data" Output Port so that when all processing completes,
the original listing will be sent out also.
</p>
<p>
Next, the listing is broken apart into an individual FlowFile per record. Because we want to use FetchSFTP to fetch the data, we need to get the file's filename
and path as FlowFile attributes. This can be done in a few different ways, but the easiest mechanism is to use the PartitionRecord processor.
This Processor is configured with a Record Reader that is able to read the data written by ListSFTP (in this case, a CSV Reader).
The Processor is also configured with two additional user-defined properties:
</p>
<ul>
<li><code>path: /path</code></li>
<li><code>filename: /filename</code></li>
</ul>
<p>
As a result, each record that comes into the PartitionRecord processor will be split into an individual FlowFile (because the combination of the "path" and "filename" fields will be unique
for each Record) and the "filename" and "path" record fields will become attributes on the FlowFile. FetchSFTP is configured to use a value of <code>${path}/${filename}</code>
for the "Remote File" property, making use of these attributes.
</p>
<p>
Finally, we process the data - in this example, simply by compressing it with GZIP compression - and send the output to the "Processed Data" Output Port. The data will queue up here
until all data is ready to leave the Process Group and then will be released.
</p>
<h3>Record Schema</h3>
<p>
When the Processor is configured to write the listing using a Record Writer, the Records will be written using the following schema (in Avro format):
</p>
<pre>
<code>
{
"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"]
}]
}
</code>
</pre>
</body>
</html>