Data filtering for Amazon RDS zero-ETL integrations with Amazon Redshift
You can use data filtering for Amazon RDS zero-ETL integrations to define the scope of replication from the source Amazon RDS database to the target Amazon Redshift data warehouse. Rather than replicating all data to the target, you can define one or more filters that selectively include or exclude certain tables from being replicated. Only filtering at the database and table level is available for zero-ETL integrations. You can't filter by columns or rows.
Data filtering can be useful when you want to:
-
Join certain tables from two or more different source databases and you don't need complete data from either database.
-
Save costs by performing analytics using only a subset of tables rather than an entire fleet of databases.
-
Filter out sensitive information—such as phone numbers, addresses, or credit card details—from certain tables.
You can add data filters to a zero-ETL integration using the AWS Management Console, the AWS Command Line Interface (AWS CLI), or the Amazon RDS API.
If the integration has a provisioned Amazon Redshift cluster as its target, the cluster must be on patch 180 or higher.
Topics
Format of a data filter
You can define multiple filters for a single integration. Each filter either includes or
excludes any existing and future database tables that match one of the patterns in the filter
expression. Amazon RDS zero-ETL integrations use Maxwell filter syntax
Each filter has the following elements:
Element | Description |
---|---|
Filter type |
An |
Filter expression |
A comma-separated list of patterns. Expressions must use Maxwell filter syntax |
Pattern |
A filter pattern in the format
You can't include column-level filters or denylists. A single integration can have a maximum of 99 total patterns. In the console, you can enter patterns within a single filter expression, or spread them out among multiple expressions. A single pattern can't exceed 256 characters in length. |
The following image shows the structure of data filters in the console:
Important
Do not include personally identifying, confidential, or sensitive information in your filter patterns.
Data filters in the AWS CLI
When using the AWS CLI to add a data filter, the syntax differs slightly compared to the
console. Each individual pattern must be associated with its own filter type
(Include
or Exclude
). You can't group multiple patterns with a
single filter type.
For example, in the console you can group the following comma-separated patterns within
a single Include
statement:
mydb
.mytable
,mydb
./table_\d+/
However, when using the AWS CLI, the same data filter must be in the following format:
'include:
mydb.mytable
, include:mydb./table_\d+/
'
Filter logic
If you don't specify any data filters in your integration, Amazon RDS assumes a default filter of
include:*.*
and replicates all tables to the target data warehouse. However, if
you specify at least one filter, the logic starts with an assumed exclude:*.*
,
meaning that all tables are automatically excluded from replication. This
allows you to directly define which tables and databases to include.
For example, if you define the following filter:
'include: db.table1, include: db.table2'
Amazon RDS evaluates the filter as follows:
'exclude:*.*, include: db.table1, include: db.table2'
Therefore, only table1
and table2
from the database named
db
are replicated to the target data warehouse.
Filter precedence
Amazon RDS evaluates data filters in the order in which they're specified. In the AWS Management Console, this means that Amazon RDS evaluates filter expressions from left to right and from top to bottom. If you specify a certain pattern for the first filter, then a second filter or even an individual pattern specified immediately after it can override it.
For example, your first filter might be Include
books.stephenking
, which includes a single table named stephenking
from within the books
database. However, if you add a second filter of
Exclude
books.*
, it overrides the Include
filter defined before it. Thus, no
tables from the books
index are replicated to Amazon Redshift.
If you specify at least one filter, the logic starts with an assumed
exclude:*.*
, meaning that all tables are automatically
excluded from replication. Therefore, as a general best practice,
define your filters from most broad to least broad. For example, use one or more
Include
statements to define all of the data that you want to replicate. Then,
begin adding Exclude
filters to selectively exclude certain tables from being
replicated.
The same principle applies to filters that you define using the AWS CLI. Amazon RDS evaluates these filter patterns in the order that they're specified, so a pattern might override one specified before it.
Examples
The following examples demonstrate how data filtering works for zero-ETL integrations:
-
Include all databases and all tables:
'include: *.*'
-
Include all tables within the
books
database:'include: books.*'
-
Exclude any tables named
mystery
:'include: *.*, exclude: *.mystery'
-
Include two specific tables within the
books
database:'include: books.stephen_king, include: books.carolyn_keene'
-
Include all tables in the
books
database, except for those containing the substringmystery
:'include: books.*, exclude: books./.*mystery.*/'
-
Include all tables in the
books
database, except those starting withmystery
:'include: books.*, exclude: books./mystery.*/'
-
Include all tables in the
books
database, except those ending withmystery
:'include: books.*, exclude: books./.*mystery/'
-
Include all tables in the
books
database that start withtable_
, except for the one namedtable_stephen_king
. For example,table_movies
ortable_books
would be replicated, but nottable_stephen_king
.'include: books./table_.*/, exclude: books.table_stephen_king'
Adding data filters to an integration
You can configure data filtering using the AWS Management Console, the AWS CLI, or the Amazon RDS API.
Important
If you add a filter after creating an integration, then Amazon RDS reevaluates the filter as if it always existed. It removes any data that is currently in the target Amazon Redshift data warehouse that doesn't match the new filtering criteria. This action causes all affected tables to resynchronize.
To add data filters to a zero-ETL integration
Sign in to the AWS Management Console and open the Amazon RDS console at https://console.aws.amazon.com/rds/
. -
In the navigation pane, choose Zero-ETL integrations. Select the integration that you want to add data filters to, and then choose Modify.
-
Under Source, add one or more
Include
andExclude
statements.The following image shows an example of data filters for an Aurora MySQL integration:
-
When all the changes are as you want them, choose Continue and Save changes.
To add data filters to a zero-ETL integration using the AWS CLI, call the modify-integration--data-filter
parameter with a comma-separated list of
Include
and Exclude
Maxwell filters.
The following example adds filter patterns to my-integration
.
For Linux, macOS, or Unix:
aws rds modify-integration \ --integration-identifier
my-integration
\ --data-filter'include: foodb.*, exclude: foodb.tbl, exclude: foodb./table_\d+/'
For Windows:
aws rds modify-integration ^ --integration-identifier
my-integration
^ --data-filter'include: foodb.*, exclude: foodb.tbl, exclude: foodb./table_\d+/'
To modify a zero-ETL integration using the RDS API, call the ModifyIntegration operation. Specify the integration identifier and provide a comma-separated list of filter patterns.
Removing data filters from an integration
When you remove a data filter from an integration, Amazon RDS reevaluates the remaining filters as if the removed filter never existed. Amazon RDS then replicates any data that previously didn't match the filtering criteria (but now does) into the target Amazon Redshift data warehouse.
Removing one or more data filters causes all affected tables to resynchronize.