dvlpr
dvlpr

Reputation: 371

AWS Document DB MultiRegion replication

I know that the AWS DocumentDB doesnot support multiregion replication even the snapshot cannot be shared across regions.

Please suggest how we can manually do the replication

Upvotes: 1

Views: 3572

Answers (3)

tmcallaghan
tmcallaghan

Reputation: 1302

Amazon DocumentDB now supports global clusters. The primary cluster supports writes and read-scaling, up to 5 regions can be added as read-only, see https://aws.amazon.com/documentdb/global-clusters/

Upvotes: 0

Stanford S. Guillory
Stanford S. Guillory

Reputation: 21

Sam, AWS released cross-region snapshot copy today (7/10/20), so that should get you what you need. Good luck.

https://aws.amazon.com/about-aws/whats-new/2020/07/amazon-documentdb-support-cross-region-snapshot-copy/

Upvotes: 2

Joseph Idziorek
Joseph Idziorek

Reputation: 5071

Thank you for the feedback, Sam. A couple of options are to use change streams + Lambda/worker to replicate the data or to take take backups to S3 with mongodump and utilize S3's cross-region replication capabilities.

Upvotes: 1

Related Questions