Error creating RDS cluster: InvalidDBClusterStateFault ... doesn't have binlogs enabled. #124
-
A customer asked:
As far as I know, there is no such thing as binlogs in Postgresql? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
From the official AWS docs https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraPostgreSQL.Replication.html:
Note that setting up a global replica requires some additional configuration. Refer to the aurora-global-cluster for more info: https://github.com/gruntwork-io/terraform-aws-data-storage/blob/master/examples/aurora-global-cluster/main.tf I also recall migrating a regional replica to global has a few additional steps: you need to make sure the terraform config has global aurora clusters enabled, and then you need to import the relevant resources to avoid terraform creating new ones. This is because a global aurora cluster has different terraform resources to manage the overarching cluster. So while you can migrate the AWS state from regional to global, you will then need to make sure the terraform state is updated accordingly in order for everything to work. |
Beta Was this translation helpful? Give feedback.
-
credit for this solution goes to @yorinasub17 |
Beta Was this translation helpful? Give feedback.
-
Our customer responded to share the following:
|
Beta Was this translation helpful? Give feedback.
From the official AWS docs https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraPostgreSQL.Replication.html:
Note that setting up a global replica requires some addi…