在保持数据完整性的同时将数据从 Postgres (RDS) 复制到 AWS Redshift 的最有效方法是什么
What's the most efficient way to replicate data from Postgres (RDS) to AWS Redshift while keeping data integrity
我正在寻找一种将数据从 AWS RDS 复制到 Redshift 的有效方法。根据我的研究,复制到 s3 并从那里加载它似乎是推荐的方法。但是,这并不能保证数据完整性,因为它有时会产生需要重复数据删除的重复行。在不使用第三方供应商的情况下,是否有更好的方法?
如果需要,您可以使用 AWS Database Migration Service to continuously replicate from RDS Postgres to RedShift. You can even alter the schema with the Schema Conversion Tool。
我正在寻找一种将数据从 AWS RDS 复制到 Redshift 的有效方法。根据我的研究,复制到 s3 并从那里加载它似乎是推荐的方法。但是,这并不能保证数据完整性,因为它有时会产生需要重复数据删除的重复行。在不使用第三方供应商的情况下,是否有更好的方法?
如果需要,您可以使用 AWS Database Migration Service to continuously replicate from RDS Postgres to RedShift. You can even alter the schema with the Schema Conversion Tool。