Continuously replicate AWS Aurora MySQL to Redshift

0

Is there an easy way to tell Glue to copy entire Aurora MySQL schema/all tables only over to Redshift? Also, how do I tell it to run continuously and update Redshift?

jeffph
質問済み 5年前711ビュー
1回答
0
承認された回答

This answer assumes you already have Glue connections to both Aurora and Redshift set up and have created a crawler for the Aurora database with an include path similar to "schema/%" to fetch all tables in that schema.

Given that, when you create a Glue Job in the console, you select a single table from the Glue Data Catalog as the source. As the target, you choose to "Create tables in your data target" and select the Redshift connection previously created and specify the target table. Once that Glue Job is created, you can create a Trigger to run it on a scheduled basis.

Now you're set up for one table, but if you wanted to do this for every table in that schema, you would have to modify the Glue script and either hard-code the list of tables that you want to sync and loop through them in the code, or you could also fetch the list of tables from the Glue API using the boto3 client if you're using pyspark.

If you want to run this continuously, there are a couple things to mention:

  1. For tables that have sequential primary keys, you can enable job bookmarks as mentioned here such that only new data is inserted into Redshift: https://docs.aws.amazon.com/glue/latest/dg/monitor-continuations.html
  2. If that's not an option, you'll likely need to truncate the table on every run. You can do this by adding a "preactions" key to the connection options when writing the dynamic frame.
"preactions":"truncate table target_table;"

Without doing one of those, duplicate data will continue to get loaded into Redshift.

For ongoing replication, Database Migration Service may be an option here. I realize there's more infrastructure to set up, but it replicates data using the binary logs and can be more efficient as a result. It can also do this continuously if near-real-time replication is important to you.

AWS
dacort
回答済み 5年前
profile picture
エキスパート
レビュー済み 10ヶ月前
  • Hi, I have the duplication problem, but I am using MySQL instead of Redshift as a target, I tried to use preactions but that doesn't work, is there any similar option or another way to avoid this problem?

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ