SFTP

Supports:

  • ✅ Bulk sync source

Connection

Configuration

NameTypeDescriptionRequired
auth_modestringAuthentication method

Accepted values: private_key , password
true
is_single_tablebooleanFiles are time-based snapshots

Treat the files as a single table.
false
pathstringPath

The path to the directory on the SFTP server containing the files.
false
skip_linesintegerSkip first lines

Skip first N lines of each CSV file.
false
ssh_hoststringHostfalse
ssh_portintegerPortfalse
ssh_userstringUserfalse

is_single_table

When is_single_table is true
NameTypeDescriptionRequired
single_table_namestringCollection namefalse

auth_mode

When auth_mode is password
NameTypeDescriptionRequired
ssh_passwordstringPasswordtrue
When auth_mode is private_key
NameTypeDescriptionRequired
ssh_private_keystringPrivate keytrue

Example

{
"name": "SFTP connection",
"type": "sftp",
"configuration": {
"auth_mode": "private_key",
"is_single_table": false,
"path": "/path/to/files",
"skip_lines": 0,
"ssh_host": "sftp.example.net",
"ssh_port": 22,
"ssh_private_key": "",
"ssh_user": "user"
}
}

Bulk Sync

Source

SFTP connections may be used as a bulk sync source. No additional configuration options are required.