Amazon Redshift
Table of Contents
- Standalone usage
- Usage with Meltano
- Capabilities
- Settings
-
Host (
host) -
Port (
port) -
Database Name (
dbname) -
User name (
user) -
Password (
password) -
S3 Bucket name (
s3_bucket) -
Default Target Schema (
default_target_schema) -
AWS Profile Name (
aws_profile) -
AWS S3 Access Key ID (
aws_access_key_id) -
AWS S3 Secret Access Key (
aws_secret_access_key) -
AWS S3 Session Token (
aws_session_token) -
AWS Redshift COPY role ARN (
aws_redshift_copy_role_arn) -
AWS S3 ACL (
s3_acl) -
S3 Key Prefix (
s3_key_prefix) -
COPY options (
copy_options) -
Batch Size Rows (
batch_size_rows) -
Flush All Streams (
flush_all_streams) -
Parallelism (
parallelism) -
Max Parallelism (
max_parallelism) -
Default Target Schema Select Permission (
default_target_schema_select_permissions) -
Scema Mapping (
schema_mapping) -
Disable Table Cache (
disable_table_cache) -
Add Metdata Columns (
add_metadata_columns) -
Hard Delete (
hard_delete) -
Data Flattening Max Level (
data_flattening_max_level) -
Primary Key Required (
primary_key_required) -
Validate Records (
validate_records) -
Skip Updates (
skip_updates) -
Compression (
compression) -
Slices (
slices) -
Temp Directory (
temp_dir)
-
Host (
- Looking for help?
The target-redshift Singer target sends data into Amazon Redshift after it was pulled from a source using a Singer tap.
-
- Repository: https://github.com/transferwise/pipelinewise-target-redshift
-
-
-
-
-
-
-
- Maintainer: Wise
- Meltano Stats:
-
-
-
-
Standalone usage #
Install the package using pip:
pip install pipelinewise-target-redshift
For additional instructions, refer to the README in the repository.
Usage with Meltano #
Meltano helps you manage your configuration, incremental replication, and scheduled pipelines.
View the Meltano-specific target-redshift instructions to learn more.
Capabilities #
Settings #
target-redshift requires the
configuration
of one of the following groups of settings:
-
hostportuserpassworddbnames3_bucketdefault_target_schemaaws_profile -
hostportuserpassworddbnames3_bucketdefault_target_schemaaws_access_key_idaws_secret_access_key -
hostportuserpassworddbnames3_bucketdefault_target_schemaaws_session_token
These and other supported settings are documented below. To quickly find the setting you're looking for, use the Table of Contents at the top of the page.
Host (host)
#
Redshift host
Port (port)
#
- Default:
5439
Redshift port
Database Name (dbname)
#
Redshift database name
User name (user)
#
Redshift user name
Password (password)
#
Redshift password
S3 Bucket name (s3_bucket)
#
AWS S3 bucket name
Default Target Schema (default_target_schema)
#
- Default:
$MELTANO_EXTRACT__LOAD_SCHEMA
Note $MELTANO_EXTRACT__LOAD_SCHEMA will expand to the value of the load_schema extra for the extractor used in the pipeline, which defaults to the extractor’s namespace, e.g. tap_gitlab for tap-gitlab.
Name of the schema where the tables will be created. If schema_mapping
is not defined then every stream sent by the tap is loaded into this schema.
AWS Profile Name (aws_profile)
#
AWS profile name for profile based authentication. If not provided, AWS_PROFILE environment variable will be used.
AWS S3 Access Key ID (aws_access_key_id)
#
S3 Access Key Id. Used for S3 and Redshift copy operations. If not provided, AWS_ACCESS_KEY_ID environment variable will be used.
AWS S3 Secret Access Key (aws_secret_access_key)
#
S3 Secret Access Key. Used for S3 and Redshift copy operations. If not provided, AWS_SECRET_ACCESS_KEY environment variable will be used.
AWS S3 Session Token (aws_session_token)
#
S3 AWS STS token for temporary credentials. If not provided, AWS_SESSION_TOKEN environment variable will be used.
AWS Redshift COPY role ARN (aws_redshift_copy_role_arn)
#
AWS Role ARN to be used for the Redshift COPY operation. Used instead of the given AWS keys for the COPY operation if provided - the keys are still used for other S3 operations
AWS S3 ACL (s3_acl)
#
S3 Object ACL
S3 Key Prefix (s3_key_prefix)
#
A static prefix before the generated S3 key names. Using prefixes you can upload files into specific directories in the S3 bucket. Default(None)
COPY options (copy_options)
#
- Default:
EMPTYASNULL BLANKSASNULL TRIMBLANKS TRUNCATECOLUMNS TIMEFORMAT 'auto' COMPUPDATE OFF STATUPDATE OFF
Parameters to use in the COPY command when loading data to Redshift.
Some basic file formatting parameters are fixed values and not recommended overriding them by custom values.
They are like: CSV GZIP DELIMITER ',' REMOVEQUOTES ESCAPE.
Batch Size Rows (batch_size_rows)
#
- Default:
100000
Maximum number of rows in each batch. At the end of each batch, the rows in the batch are loaded into Redshift.
Flush All Streams (flush_all_streams)
#
- Default:
false
Flush and load every stream into Redshift when one batch is full. Warning - This may trigger the COPY command to use files with low number of records, and may cause performance problems.
Parallelism (parallelism)
#
- Default:
0
The number of threads used to flush tables. 0 will create a thread for each stream, up to parallelism_max. -1 will create a thread for each CPU core. Any other positive number will create that number of threads, up to parallelism_max.
Max Parallelism (max_parallelism)
#
- Default:
16
Max number of parallel threads to use when flushing tables.
Default Target Schema Select Permission (default_target_schema_select_permissions)
#
Grant USAGE privilege on newly created schemas and grant SELECT privilege on newly created tables to a specific list of users or groups. If schema_mapping is not defined then every stream sent by the tap is granted accordingly.
Scema Mapping (schema_mapping)
#
Useful if you want to load multiple streams from one tap to multiple Redshift schemas.
If the tap sends the stream_id in <schema_name>-<table_name>
format then this option overwrites the default_target_schema value.
Note, that using schema_mapping you can overwrite the default_target_schema_select_permissions
value to grant SELECT permissions to different groups per schemas or optionally
you can create indices automatically for the replicated tables.
Disable Table Cache (disable_table_cache)
#
- Default:
false
By default the connector caches the available table structures in Redshift at startup. In this way it doesn’t need to run additional queries when ingesting data to check if altering the target tables is required. With disable_table_cache option you can turn off this caching. You will always see the most recent table structures but will cause an extra query runtime.
Add Metdata Columns (add_metadata_columns)
#
- Default:
false
Metadata columns add extra row level information about data ingestions,
(i.e. when was the row read in source, when was inserted or deleted in redshift
etc.) Metadata columns are creating automatically by adding extra columns to the
tables with a column prefix _SDC_.
The metadata columns are documented at https://transferwise.github.io/pipelinewise/data_structure/sdc-columns.html. Enabling metadata columns will flag the deleted rows by setting the _SDC_DELETED_AT metadata column.
Without the add_metadata_columns option the deleted rows from
singer taps will not be recongisable in Redshift.
Hard Delete (hard_delete)
#
- Default:
false
When hard_delete option is true then DELETE SQL commands will be performed in Redshift to delete rows in tables. It’s achieved by continuously checking the _SDC_DELETED_AT metadata column sent by the singer tap. Due to deleting rows requires metadata columns, hard_delete option automatically enables the add_metadata_columns option as well.
Data Flattening Max Level (data_flattening_max_level)
#
- Default:
0
Object type RECORD items from taps can be loaded into VARIANT columns as JSON (default) or we can flatten the schema by creating columns automatically. When value is 0 (default) then flattening functionality is turned off.
Primary Key Required (primary_key_required)
#
- Default:
true
Log based and Incremental replications on tables with no Primary Key cause duplicates when merging UPDATE events. When set to true, stop loading data if no Primary Key is defined.
Validate Records (validate_records)
#
- Default:
false
Validate every single record message to the corresponding JSON schema. This option is disabled by default and invalid RECORD messages will fail only at load time by Redshift. Enabling this option will detect invalid records earlier but could cause performance degradation.
Skip Updates (skip_updates)
#
- Default:
false
Do not update existing records when Primary Key is defined. Useful to improve performance when records are immutable, e.g. events
Compression (compression)
#
The compression method to use when writing files to S3 and running Redshift COPY.
Slices (slices)
#
- Default:
1
The number of slices to split files into prior to running COPY on Redshift. This should be set to the number of Redshift slices. The number of slices per node depends on the node size of the cluster - run SELECT COUNT(DISTINCT slice) slices FROM stv_slices to calculate this. Defaults to 1.
Temp Directory (temp_dir)
#
(Default: platform-dependent) Directory of temporary CSV files with RECORD messages.
Looking for help? #
If you're having trouble getting the
target-redshift target to work, look for an
existing issue in its repository, file a new issue,
or
join the Meltano Slack community
and ask for help in the #plugins-general channel.
Found an issue on this page? #
This page is generated from a YAML file that you can contribute changes to. Edit it on GitHub!