docs/integrations/sources/sftp.md
This page contains the setup guide and reference information for the SFTP source connector.
To set up the SFTP connector, you will need to select one of the following authentication methods:
To set up key pair authentication, you may use the following steps as a guide:
Open your terminal or command prompt and use the ssh-keygen command to generate a new key pair.
:::note
If your operating system does not support the ssh-keygen command, you can use a third-party tool like PuTTYgen to generate the key pair instead.
:::
You will be prompted for a location to save the keys, and a passphrase to secure the private key. You can press enter to accept the default location and opt out of a passphrase if desired. Your two keys will be generated in the designated location as two separate files. The private key will usually be saved as id_rsa, while the public key will be saved with the .pub extension (id_rsa.pub).
Use the ssh-copy-id command in your terminal to copy the public key to the server.
ssh-copy-id <username>@<server_ip_address>
Be sure to replace your specific values for your username and the server's IP address.
:::note
Depending on factors such as your operating system and the specific SSH implementation your remote server uses, you may not be able to use the ssh-copy-id command. If so, please consult your server administrator for the appropriate steps to copy the public key to the server.
:::
You should now be able to connect to the server via the private key. You can test this by using the ssh command:
ssh <username>@<server_ip_address>
For more information on SSH key pair authentication, please refer to the official documentation.
If your SFTP server uses SSH key-based authentication, you'll need to provide your private key file (.pem or similar format) during setup. Follow these steps to create and upload it correctly:
Locate your private key text. This is the block of text that begins with -----BEGIN OPENSSH PRIVATE KEY----- or -----BEGIN RSA PRIVATE KEY----- and ends with -----END OPENSSH PRIVATE KEY----- or -----END RSA PRIVATE KEY-----.
Create a PEM file:
ssh.pem.(Optional but recommended) If you're on macOS or Linux, set restricted permissions so only you can read it:
chmod 600 ssh.pem
Upload the file in Airbyte:
ssh.pem file.Once uploaded, Airbyte uses this file to authenticate securely with your SFTP server.
:::note The file must be in PEM format, a plain text file containing your private key between the BEGIN and END lines. Do not paste the key directly into the field; Airbyte requires a file upload. :::
The Optional fields can be used to further configure the SFTP source connector. If you do not wish to set additional configurations, these fields can be left at their default settings.
File Types: Enter the desired file types to replicate as comma-separated values. Currently, only CSV and JSON are supported. The default value is csv,json.
Folder Path: Enter a folder path to specify the directory on the remote server to be synced. For example, given the file structure:
Root
| - logs
| | - 2021
| | - 2022
|
| - files
| | - 2021
| | - 2022
An input of /logs/2022 replicates only data contained within the specified folder, ignoring the /files and /logs/2021 folders. Leaving this field blank replicates all applicable files in the remote server's designated entry point.
File Pattern: Enter a regular expression to specify a naming pattern for the files to be replicated. Consider the following example:
log-([0-9]{4})([0-9]{2})([0-9]{2})
This pattern filters for files that match the format log-YYYYMMDD, where YYYY, MM, and DD represent four-digit, two-digit, and two-digit numbers, respectively. For example, log-20230713. Leaving this field blank replicates all files not filtered by the previous two fields.
The SFTP source connector supports the following sync modes:
| Feature | Support | Notes |
|---|---|---|
| Full Refresh - Overwrite | ✅ | Warning: this mode deletes all previously synced data in the configured bucket path. |
| Full Refresh - Append Sync | ❌ | |
| Incremental - Append | ❌ | |
| Incremental - Append + Deduped | ❌ | |
| Namespaces | ❌ |
This source provides a single stream per file with a dynamic schema. The current supported file types are CSV and JSON. More formats (e.g. Apache Avro) will be supported in the future.
| Version | Date | Pull Request | Subject |
|---|---|---|---|
| 0.2.4 | 2025-07-10 | 62924 | Convert to new gradle build flow |
| 0.2.3 | 2025-05-29 | 60849 | Upgrade sftp client package to use mwiede/jsch |
| 0.2.2 | 2024-02-13 | 35221 | Adopt CDK 0.20.4 |
| 0.2.1 | 2024-01-24 | 34453 | bump CDK version |
| 0.2.0 | 2024-01-15 | 34265 | Remove LEGACY state flag |
| 0.1.2 | 2022-06-17 | 13864 | Updated stacktrace format for any trace message errors |
| 0.1.0 | 2021-24-05 | Initial version |