PutFile 2.3.0¶
BUNDLE¶
org.apache.nifi | nifi-standard-nar
DESCRIPTION¶
Writes the contents of a FlowFile to the local file system
INPUT REQUIREMENT¶
REQUIRED
Supports Sensitive Dynamic Properties¶
false
PROPERTIES¶
Property |
Description |
---|---|
Conflict Resolution Strategy |
Indicates what should happen when a file with the same name already exists in the output directory |
Create Missing Directories |
If true, then missing destination directories will be created. If false, flowfiles are penalized and sent to failure. |
Directory |
The directory to which files should be written. You may use expression language such as /aa/bb/${path} |
Group |
Sets the group on the output file to the value of this attribute. You may also use expression language such as ${file.group}. |
Last Modified Time |
Sets the lastModifiedTime on the output file to the value of this attribute. Format must be yyyy-MM-dd’T’HH:mm:ssZ. You may also use expression language such as ${file.lastModifiedTime}. |
Maximum File Count |
Specifies the maximum number of files that can exist in the output directory |
Owner |
Sets the owner on the output file to the value of this attribute. You may also use expression language such as ${file.owner}. Note on many operating systems Nifi must be running as a super-user to have the permissions to set the file owner. |
Permissions |
Sets the permissions on the output file to the value of this attribute. Format must be either UNIX rwxrwxrwx with a - in place of denied permissions (e.g. rw-r–r–) or an octal number (e.g. 644). You may also use expression language such as ${file.permissions}. |
RESTRICTIONS¶
REQUIRED PERMISSION |
EXPLANATION |
---|---|
write filesystem |
Provides operator the ability to write to any file that NiFi has access to. |
RELATIONSHIPS¶
NAME |
DESCRIPTION |
---|---|
failure |
Files that could not be written to the output directory for some reason are transferred to this relationship |
success |
Files that have been successfully written to the output directory are transferred to this relationship |