General questions regarding RDS SQL Server Read Replicas

0
  1. Can I stop/resume replication for a RDS SQL Server Read Replica, like we do with on-prem SQL Server?
  2. is there any recommended max db size for a replication to occur smoothly?
  3. is there any recommended max source change rate for a replication to occur smoothly?
AWS
Antonio
已提問 4 年前檢視次數 940 次
1 個回答
1
已接受的答案
  1. No. Read replicas for RDS SQL Server are implemented using the built-in Distributed Availability Groups feature in SQL Server. Read replcias do not use the replication feature provided by Microsoft SQL Server.

  2. Read replicas have the same size limitations as the primary instance in terms of size. A read replica is created from a snapshot of the source instance upon creation and after that it's synchronized asynchronously. Recommendation is to make sure that the source DB instance and its read replicas are sized properly, in terms of computing power and storage, to suit their operational load. As long as you have comparable instance type/size (RAM, CPU) and storage type (EBS volume type and IOPs), synchronization should be smooth. Similar note in the documentation here.

  3. Note that read replicas use asynchronous data movement from the source. So make sure read replicas have similar resources to the primary instance so they can catchup with the rate of change on the primary.

已回答 4 年前
profile picture
專家
已審閱 11 天前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南