Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TDL-24642 document encoding format option #987

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions _data/taps/extraction/file-systems/file-requirements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,9 @@ attributes:
all: *delimiters

- name: "Character encoding"
all: *encodings

amazon-s3-csv: *encodings
sftp: |
The default encoding is UTF-8, but it can be changed to any encoding format supported by Python 3.9. For more information, see the [Python documentation](https://docs.python.org/3.9/library/codecs.html#standard-encodings).

# ------------------------------- #
# SUPPORT TABLE #
Expand Down
9 changes: 8 additions & 1 deletion _database-integrations/sftp/v1/sftp-v1.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,13 @@ setup-steps:
anchor: "add-stitch-data-source"
content: |
{% include shared/database-connection-settings.html type="general" %}

- title: "Select an encoding format"
anchor: "select-encoding-format"
content: |
The default encoding format is `utf-8`, but you can update it by entering the name of the format in the **Encoding Format** field.

**Note**: The selected format will be used for all files selected. If a file is encoded in a different format, an error may occur. If you need to replicate data from files with different encoding formats, you should consider creating a different connection for each format.

- title: "Configure tables"
anchor: "configure-tables"
Expand All @@ -142,7 +149,7 @@ setup-steps:
In the following sections, we'll walk you through how to configure a table in Stitch:

{% for substep in step.substeps %}
- [Step 3.{{ forloop.index }}: {{ substep.title }}](#{{ substep.anchor }})
- [Step 5.{{ forloop.index }}: {{ substep.title }}](#{{ substep.anchor }})
{% endfor %}

substeps:
Expand Down