Read replica clusters
In a YugabyteDB deployment, replication of data between nodes of your primary cluster runs synchronously and guarantees strong consistency. Optionally, you can create a read replica cluster that asynchronously replicates data from the primary cluster and guarantees timeline consistency (with bounded staleness). A synchronously replicated primary cluster can accept writes to the system. Using a read replica cluster allows applications to serve low latency reads in remote regions.
In a read replica cluster, read replicas are observer nodes that do not participate in writes, but get a timeline-consistent copy of the data through asynchronous replication from the primary cluster.
This document describes how to deploy a read replica cluster using YugabyteDB. For information on deploying read replica clusters using Yugabyte Platform, see Read replicas.
Note
YSQL read replica support is currently in Beta.Deploy a read replica cluster
You can deploy a read replica cluster that asynchronously replicates data with a primary cluster as follows:
-
Start the primary
yb-master
services and let them form a quorum. -
Define the primary cluster placement using the
yb-admin modify_placement_info
command, as follows:./bin/yb-admin -master_addresses ip1:7100,ip2:7100,ip3:7100 modify_placement_info <placement_info> <replication_factor> [placement_uuid]
- placement_info: Comma-separated list of availability zones using the format
<cloud1.region1.zone1>,<cloud2.region2.zone2>, ...
- replication_factor: Replication factor (RF) of the primary cluster.
- placement_uuid: The placement identifier for the primary cluster, using a meaningful string.
- placement_info: Comma-separated list of availability zones using the format
-
Define the read replica placement using the
yb-admin add_read_replica_placement_info
command, as follows:./bin/yb-admin -master_addresses ip1:7100,ip2:7100,ip3:7100 add_read_replica_placement_info <placement_info> <replication_factor> [placement_uuid]
- placement_info: Comma-separated list of availability zones, using the format
<cloud1.region1.zone1>:<num_replicas_in_zone1>,<cloud2.region2.zone2>:<num_replicas_in_zone_2>,...
These read replica availability zones must be uniquely different from the primary availability zones defined in step 2. If you want to use the same cloud, region, and availability zone as a primary cluster, one option is to suffix the zone with_rr
(for read replica): for example,c1.r1.z1
vsc1.r1.z1_rr
. - replication_factor: The total number of read replicas.
- placement_uuid: The identifier for the read replica cluster, using a meaningful string.
- placement_info: Comma-separated list of availability zones, using the format
-
Start the primary
yb-tserver
services, including the following configuration flags:- --placement_cloud placement_cloud
- --placement_region placement_region
- --placement_zone placement_zone
- --placement_uuid live_id
The placements should match the information in step 2. You do not need to add these configuration flags to youryb-master
configurations. -
Start the read replica
yb-tserver
services, including the following configuration flags:- --placement_cloud placement_cloud
- --placement_region placement_region
- --placement_zone placement_zone
- --placement_uuid read_replica_id
The placements should match the information in step 3.
The primary cluster should begin asynchronous replication with the read replica cluster.