Is it possible to specify DB snapshot in AWS Lake Formation?

0

When defining blueprints in AWS Lake Formation, can we specify a particular snapshot? Does Lake Formation always uses the recent snapshot by default?

已提問 3 年前檢視次數 504 次
2 個答案
0
已接受的答案

AWS Lake Formation blueprints make a JDBC connection to your database and effectively do a "select *" on the tables you want to import. It's referred to as a database snapshot because it brings full tables over at a point in time. It does not use RDS backup snapshots to import data.

Lake Formation enables you to create a workflow from a blueprint, creating workflows is much simpler and more automated in Lake Formation. The other option is to create workflows in AWS Glue. Lake Formation provides the following types of blueprints:

Database snapshot – Loads or reloads data from all tables into the data lake from a JDBC source. You can exclude some data from the source based on an exclude pattern.

Incremental database – Loads only new data into the data lake from a JDBC source, based on previously set bookmarks. You specify the individual tables in the JDBC source database to include. For each table, you choose the bookmark columns and bookmark sort order to keep track of data that has previously been loaded. The first time that you run an incremental database blueprint against a set of tables, the workflow loads all data from the tables and sets bookmarks for the next incremental database blueprint run. You can therefore use an incremental database blueprint instead of the database snapshot blueprint to load all data, provided that you specify each table in the data source as a parameter.

Log file – Bulk loads data from log file sources, including AWS CloudTrail, Elastic Load Balancing logs, and Application Load Balancer logs.

This is not to be confused with the functionality in Amazon RDS that can take data from an RDS backup snapshot and load that into S3. For more information on this see: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_ExportSnapshot.html

AWS
已回答 3 年前
0

No, Lake Formation BluePrint read data from table and not from the previously created RDS backup snapshots.

AWS
Rahul_S
已回答 3 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南