AWS RDS 只读副本但具有不同的存储 class/type
AWS RDS Read Replica but with different storage class/type
我在一个区域有一个主数据库..我想在另一个区域创建它的只读副本以用于灾难恢复实践。
我不希望它如此昂贵,但我希望复制能够工作。
我当前的主数据库有 db.t2.medium。
我的问题是:
- 我应该为只读副本保留什么类型? db.t2.small 适合我的副本吗?
它应该不会有太大影响,因为只读副本 (RR) 复制是 asynchronous:
Amazon RDS then uses the asynchronous replication method for the DB engine to update the read replica whenever there is a change to the primary DB instance.
这意味着你的RR将永远落后在master后面。具体多少,这取决于您的设置。因此,您应该 监控滞后 ,如 Monitoring read replication 所示。这是必需的,因为您可能会发现对于 RR 而言,滞后对于 DR 目的有用(即大 RPO)是不可接受的。
我在一个区域有一个主数据库..我想在另一个区域创建它的只读副本以用于灾难恢复实践。
我不希望它如此昂贵,但我希望复制能够工作。 我当前的主数据库有 db.t2.medium。 我的问题是:
- 我应该为只读副本保留什么类型? db.t2.small 适合我的副本吗?
它应该不会有太大影响,因为只读副本 (RR) 复制是 asynchronous:
Amazon RDS then uses the asynchronous replication method for the DB engine to update the read replica whenever there is a change to the primary DB instance.
这意味着你的RR将永远落后在master后面。具体多少,这取决于您的设置。因此,您应该 监控滞后 ,如 Monitoring read replication 所示。这是必需的,因为您可能会发现对于 RR 而言,滞后对于 DR 目的有用(即大 RPO)是不可接受的。