The Airbyte Redshift destination allows you to sync data to Redshift.
This Redshift destination connector has two replication strategies:
- INSERT: Replicates data via SQL INSERT queries. This is built on top of the destination-jdbc code base and is configured to rely on JDBC 4.2 standard drivers provided by Amazon via Mulesoft here as described in Redshift documentation here. Not recommended for production workloads as this does not scale well.
- COPY: Replicates data by first uploading data to an S3 bucket and issuing a COPY command. This is the recommended loading approach described by Redshift best practices. Requires an S3 bucket and credentials.
Airbyte automatically picks an approach depending on the given configuration - if S3 configuration is present, Airbyte will use the COPY strategy and vice versa.
We recommend users use INSERT for testing, to avoid any additional setup, and switch to COPY for production workloads.
Each stream will be output into its own raw table in Redshift. Each table will contain 3 columns:
_airbyte_ab_id
: a uuid assigned by Airbyte to each event that is processed. The column type in Redshift isVARCHAR
._airbyte_emitted_at
: a timestamp representing when the event was pulled from the data source. The column type in Redshift isTIMESTAMP WITH TIME ZONE
._airbyte_data
: a json blob representing with the event data. The column type in Redshift isVARCHAR
but can be be parsed with JSON functions.
Feature | Supported?(Yes/No) | Notes |
---|---|---|
Full Refresh Sync | Yes | |
Incremental - Append Sync | Yes | |
Incremental - Deduped History | Yes | |
Namespaces | Yes | |
SSL Support | Yes |
You will need to choose an existing database or create a new database that will be used to store synced data from Airbyte.
- Active Redshift cluster
- Allow connections from Airbyte to your Redshift cluster (if they exist in separate VPCs)
- A staging S3 bucket with credentials (for the COPY strategy).
{% hint style="info" %} Even if your Airbyte instance is running on a server in the same VPC as your Redshift cluster, you may need to place them in the same security group to allow connections between the two. {% endhint %}
This is dependent on your networking setup. The easiest way to verify if Airbyte is able to connect to your Redshift cluster is via the check connection tool in the UI. You can check AWS Redshift documentation with a tutorial on how to properly configure your cluster's access here
Next is to provide the necessary information on how to connect to your cluster such as the host
whcih is part of the connection string or Endpoint accessible here without the port
and database
name (it typically includes the cluster-id, region and end with .redshift.amazonaws.com
).
You should have all the requirements needed to configure Redshift as a destination in the UI. You'll need the following information to configure the destination:
- Host
- Port
- Username
- Password
- Schema
- Database
- This database needs to exist within the cluster provided.
Provide the required S3 info.
- S3 Bucket Name
- See this to create an S3 bucket.
- S3 Bucket Region
- Place the S3 bucket and the Redshift cluster in the same region to save on networking costs.
- Access Key Id
- See this on how to generate an access key.
- We recommend creating an Airbyte-specific user. This user will require read and write permissions to objects in the staging bucket.
- Secret Access Key
- Corresponding key to the above key id.
- Part Size
- Affects the size limit of an individual Redshift table. Optional. Increase this if syncing tables larger than 100GB. Files are streamed to S3 in parts. This determines the size of each part, in MBs. As S3 has a limit of 10,000 parts per file, part size affects the table size. This is 10MB by default, resulting in a default table limit of 100GB. Note, a larger part size will result in larger memory requirements. A rule of thumb is to multiply the part size by 10 to get the memory requirement. Modify this with care.
From Redshift Names & Identifiers:
- Begin with an ASCII single-byte alphabetic character or underscore character, or a UTF-8 multibyte character two to four bytes long.
- Subsequent characters can be ASCII single-byte alphanumeric characters, underscores, or dollar signs, or UTF-8 multibyte characters two to four bytes long.
- Be between 1 and 127 bytes in length, not including quotation marks for delimited identifiers.
- Contain no quotation marks and no spaces.
Delimited identifiers (also known as quoted identifiers) begin and end with double quotation marks ("). If you use a delimited identifier, you must use the double quotation marks for every reference to that object. The identifier can contain any standard UTF-8 printable characters other than the double quotation mark itself. Therefore, you can create column or table names that include otherwise illegal characters, such as spaces or the percent symbol. ASCII letters in delimited identifiers are case-insensitive and are folded to lowercase. To use a double quotation mark in a string, you must precede it with another double quotation mark character.
Therefore, Airbyte Redshift destination will create tables and schemas using the Unquoted identifiers when possible or fallback to Quoted Identifiers if the names are containing special characters.
Redshift specifies a maximum limit of 65535 bytes to store the raw JSON record data. Thus, when a row is too big to fit, the Redshift destination fails to load such data and currently ignores that record.
See docs
Version | Date | Pull Request | Subject |
---|---|---|---|
0.3.17 | 2021-10-12 | 6965 | Added SSL Support |
0.3.16 | 2021-10-11 | 6949 | Each stream was split into files of 10,000 records each for copying using S3 or GCS |
0.3.14 | 2021-10-08 | 5924 | Fixed AWS S3 Staging COPY is writing records from different table in the same raw table |
0.3.13 | 2021-09-02 | 5745 | Disable STATUPDATE flag when using S3 staging to speed up performance |
0.3.12 | 2021-07-21 | 3555 | Enable partial checkpointing for halfway syncs |
0.3.11 | 2021-07-20 | 4874 | allow additionalProperties in connector spec |