* pardot * plaid * quickbooks * appfollow * appstore * cloudtrail * clickup * clockify * coda * Coinmarketcap * cooper * dixa * dv-360 * exchange-rates * file * gridly * Hellobaton * kustomer * mailersend * microsoft dataverse * n8n * PersistIq * Survey Sparrow * Twilio Taskrouter * YouTube Analytics Business * Younium * Yahoo Finance Price * Yandex Metrica * Xero * WooCommerce * XKCD * Webflow * US Census API * Qonto * Pivotal Tracker * KVDB * Firestore * Ignore even more connectors * test run * SFTP JSON * cleanup * move pardot changelog * update links * remove testing HACK * Update docs/integrations/sources/dixa.md Co-authored-by: Augustin <augustin@airbyte.io> * Update docs/integrations/sources/kustomer-singer.md Co-authored-by: Augustin <augustin@airbyte.io> * Update docs/integrations/sources/pardot.md Co-authored-by: Augustin <augustin@airbyte.io> * Update docs/integrations/sources/kustomer-singer.md Co-authored-by: Augustin <augustin@airbyte.io> * Update docs/integrations/sources/pardot.md Co-authored-by: Augustin <augustin@airbyte.io> Co-authored-by: Augustin <augustin@airbyte.io>
43 lines
1.5 KiB
Markdown
43 lines
1.5 KiB
Markdown
# SFTP JSON
|
|
|
|
## Overview
|
|
|
|
This destination writes data to a directory on an SFTP server.
|
|
|
|
### Sync Overview
|
|
|
|
#### Output schema
|
|
|
|
Each stream will be output into its own file.
|
|
Each file will contain a collection of `json` objects which correspond directly with the data supplied by the source.
|
|
|
|
#### Features
|
|
|
|
| Feature | Supported |
|
|
| :------------------------ | :-------- |
|
|
| Full Refresh Sync | Yes |
|
|
| Incremental - Append Sync | Yes |
|
|
| Namespaces | No |
|
|
|
|
#### Performance considerations
|
|
|
|
This integration will be constrained by the connection speed to the SFTP server and speed at which that server accepts writes.
|
|
|
|
## Getting Started
|
|
|
|
The `destination_path` can refer to any path that the associated account has write permissions to.
|
|
|
|
The `filename` **should not** have an extension in the configuration, as `.jsonl` will be added on by the connector.
|
|
|
|
### Example:
|
|
|
|
If `destination_path` is set to `/myfolder/files` and `filename` is set to `mydata`, the resulting file will be `/myfolder/files/mydata.jsonl`.
|
|
|
|
These files can then be accessed by creating an SFTP connection to the server and navigating to the `destination_path`.
|
|
|
|
## Changelog
|
|
|
|
| Version | Date | Pull Request | Subject |
|
|
| :------ | :--------- | :----------------------------------------------------- | :---------------------------- |
|
|
| 0.1.0 | 2022-11-24 | [4924](https://github.com/airbytehq/airbyte/pull/4924) | 🎉 New Destination: SFTP JSON |
|