【发布时间】:2019-10-14 15:10:25
【问题描述】:
我能够使用 DMS 服务从本地数据库迁移到 AWS,但无法将数据库从 Azure 迁移到 AWS。
有没有更好的方法?
【问题讨论】:
-
为什么至少一些标准迁移技术不能在云环境中工作?
标签: postgresql amazon-web-services azure migration
我能够使用 DMS 服务从本地数据库迁移到 AWS,但无法将数据库从 Azure 迁移到 AWS。
有没有更好的方法?
【问题讨论】:
标签: postgresql amazon-web-services azure migration
一个相当低级但有效的方法是:使用 pg_dump 将 Azure 数据导出为 CSV, 将其复制到 AWS S3 存储桶(使用 Python awscli 包非常容易)和load from S3 into RDS Postgres。
如果文件可以直接从 blob 存储移动到 s3,那就太好了,但我认为 Azure Postgres 无论如何都不支持直接转储到 blob。
【讨论】: