3

I created a read replica from Postgres DB in AWS RDS. Now if I run a migration in main DB will the read replica automatically migrate?

John Rotenstein
  • 241,921
  • 22
  • 380
  • 470
Sarwar
  • 415
  • 4
  • 10

1 Answers1

4

Yes, the read replica will be automatically updated after the migration is committed on the primary server. It is just using postgres' built-in replication features.

Jeremy
  • 6,313
  • 17
  • 20