Docs Cloud Redpanda Connect Components Outputs sftp sftp Type: OutputInput Available in: Cloud, Self-Managed Writes files to an SFTP server. # Config fields, showing default values output: label: "" sftp: address: "" # No default (required) path: "" # No default (required) codec: all-bytes credentials: username: "" password: "" private_key_file: "" private_key_pass: "" max_in_flight: 64 In order to have a different path for each object you should use function interpolations described here. Performance This output benefits from sending multiple messages in flight in parallel for improved performance. You can tune the max number of in flight messages (or message batches) with the field max_in_flight. Fields address The address of the server to connect to. Type: string path The file to save the messages to on the server. This field supports interpolation functions. Type: string codec The way in which the bytes of messages should be written out into the output data stream. It’s possible to write lines using a custom delimiter with the delim:x codec, where x is the character sequence custom delimiter. Type: string Default: "all-bytes" Option Summary all-bytes Only applicable to file based outputs. Writes each message to a file in full, if the file already exists the old content is deleted. append Append each message to the output stream without any delimiter or special encoding. delim:x Append each message to the output stream followed by a custom delimiter. lines Append each message to the output stream followed by a line break. # Examples codec: lines codec: "delim:\t" codec: delim:foobar credentials The credentials to use to log into the target server. Type: object credentials.username The username to connect to the SFTP server. Type: string Default: "" credentials.password The password for the username to connect to the SFTP server. This field contains sensitive information. Review your cluster security before adding it to your configuration. Type: string Default: "" credentials.private_key_file The private key for the username to connect to the SFTP server. Type: string Default: "" credentials.private_key_pass Optional passphrase for private key. This field contains sensitive information. Review your cluster security before adding it to your configuration. Type: string Default: "" max_in_flight The maximum number of messages to have in flight at a given time. Increase this to improve throughput. Type: int Default: 64 Back to top × Simple online edits For simple changes, such as fixing a typo, you can edit the content directly on GitHub. Edit on GitHub Or, open an issue to let us know about something that you want us to change. Open an issue Contribution guide For extensive content updates, or if you prefer to work locally, read our contribution guide . Was this helpful? thumb_up thumb_down group Ask in the community mail Share your feedback group_add Make a contribution schema_registry snowflake_put