Singer tap that extracts data from SFTP files and produces JSON-formatted data following the Singer spec.
First, make sure Python 3 is installed on your system or follow these installation instructions for Mac or Ubuntu.
It's recommended to use a virtualenv:
$ python3 -m venv venv
$ pip install tap-sftp
or
$ python3 -m venv venv
$ . venv/bin/activate
$ pip install --upgrade pip
$ pip install .
-
Create a
config.json
file with connection details to snowflake.{ "host": "SFTP_HOST_NAME", "port": 22, "username": "YOUR_USER", "password": "YOUR_PASS", "tables": [ { "table_name": "MyExportData", "search_prefix": "\/Export\/SubFolder", "search_pattern": "MyExportData.*\\.zip.gpg$", "key_properties": [], "delimiter": ",", "encoding": "utf-8" } ], "start_date":"2021-01-28", "decryption_configs": { "SSM_key_name": "SSM_PARAMETER_KEY_NAME", "gnupghome": "/your/dir/.gnupg", "passphrase": "your_gpg_passphrase" }, "private_key_file": "Optional_Path", }
If using the decryption feature you must pass the configs shown above, including the AWS SSM parameter name for where the decryption private key is stored. In order to retrieve this parameter the runtime environment must have access to SSM through IAM environment variables (AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, AWS_SESSION_TOKEN).
The private_key_file is optional.
The tap can be invoked in discovery mode to find the available tables and columns in the database:
$ tap-sftp --config config.json --discover > catalog.json
A discovered catalog is output, with a JSON-schema description of each table. A source table directly corresponds to a Singer stream.
Edit the catalog.json
and select the streams to replicate. Or use this helpful discovery utility.
Run the tap like any other singer compatible tap:
$ tap-sftp --config config.json --catalog catalog.json --state state.json
- Install python dependencies in a virtual env and run unit and integration tests
python3 -m venv venv
. venv/bin/activate
pip install --upgrade pip
pip install .
pip install tox
- To run unit tests:
tox
Apache License Version 2.0
See LICENSE to see the full text.