Overview
New in v21.1: CockroachDB has improved multi-region capabilities that make it easier to run global applications. It is intended that these capabilities will supersede the current set of Multi-region Topology Patterns. The capabilities described here are still in development; they are available in testing releases of v21.1.
To take advantage of these improved capabilities, you will need to understand the following concepts:
- Cluster Regions are geographic regions that a user specifies at node start time.
- Database Regions are geographic regions that a given database operates within. A database region must be chosen from the list of available cluster regions.
- Survival Goals, which dictate how many simultaneous failure(s) that a database can survive.
- Table Localities, which tell CockroachDB how to optimize access to a table's data.
At a high level, the simplest process for running a multi-region cluster is:
- Set region information for each node in the cluster at startup using node startup locality options.
- Add one or more regions to a database, making it a "multi-region" database. One of these regions must be the primary region.
- (Optional) Change table localities (global, regional by table, regional by row). This step is optional because by default the tables in a database will be homed in the database's primary region (as set during Step 1).
- (Optional) Change the database's survival goals (zone or region). This step is optional because by default multi-region databases will be configured to survive zone failures.
The steps above describe the simplest case, where you accept all of the default settings. If your application has performance or availability needs that are different than what the default settings provide, there are customization options to explore.
For more information about CockroachDB's multi-region capabilities and the customization options that are available, see below.
The documentation for the new multi-region features described below is still in development. More documentation on these features will be published in the run-up to the v21.1 release.
Cluster Regions
Regions and zones are defined at the node level using the following node startup locality options:
- Regions are specified using the
region
key. - Zones through the use of the
zone
key.
For example, the command below adds us-east-1
to the list of cluster regions, and us-east-1b
to the list of zones:
cockroach start --locality=region=us-east-1,zone=us-east-1b # ... other required flags go here
To show all of a cluster's regions, execute the following SQL statement:
SHOW REGIONS FROM CLUSTER;
Database Regions
Database regions are a high-level abstraction for a geographic region. Each region is broken into multiple zones. These terms are meant to correspond directly to the region and zone terminology used by cloud providers.
The regions added during node startup become Database Regions when they are added to a database. To add the first region, use the ALTER DATABASE ... PRIMARY REGION
statement.
While the database has only one region assigned to it, it is considered a "multi-region database." This means that all data in that database is stored within its assigned regions, and CockroachDB optimizes access to the database's data from the primary region.
To add another database region, use the ALTER DATABASE ... ADD REGION
statement.
To show all of a database's regions, execute the SHOW REGIONS FROM DATABASE
statement.
If the default Survival Goals and Table Localities meet your needs, there is nothing else you need to do once you have set a database's primary region.
Survival goals
All tables within the same database operate with the same survival goal. Each database is allowed to have its own survival goal setting.
The following survival goals are available:
- Zone failure
- Region failure
Surviving zone failures is the default. You can upgrade a database to survive region failures at the cost of slower write performance (due to network hops) using the following statement:
ALTER DATABASE <db> SURVIVE REGION FAILURE;
For more information about the survival goals supported by CockroachDB, see the following sections:
Surviving zone failures
With the zone level survival goal, the database will remain fully available for reads and writes, even if a zone goes down. However, the database may not remain fully available if multiple zones fail in the same region.
You can configure a database to survive zone failures using the ALTER DATABASE ... SURVIVE ZONE FAILURE
statement.
Surviving zone failures is the default setting for multi-region databases.
If your application has performance or availability needs that are different than what the default settings provide, you can explore the other customization options described on this page.
Surviving region failures
The region level survival goal has the property that the database will remain fully available for reads and writes, even if an entire region goes down. This added survival comes at a cost: write latency will be increased by at least as much as the round-trip time to the nearest region. Read performance will be unaffected. In other words, you are adding network hops and making writes slower in exchange for robustness.
You can configure a database to survive region failures using the ALTER DATABASE ... SURVIVE REGION FAILURE
statement.
In order to survive region failures, you must have added at least 3 database regions
Table locality
Every table in a multi-region database has a "table locality setting" applied to it. CockroachDB uses the table locality setting to determine how to optimize access to the table's data from that locality.
By default, all tables in a multi-region database are regional tables -- that is, CockroachDB optimizes access to the table's data from a single region (by default, the database's primary region).
For more information about the table localities CockroachDB supports, see the following sections:
- Regional tables provide low-latency reads and writes for an entire table from a single region.
- Regional by row tables provide low-latency reads and writes for one or more rows of a table from a single region. Different rows in the table can be optimized for access from different regions.
- Global tables are optimized for low-latency reads from all regions.
Regardless of table locality, you can access all data in a multi-region database with low latency from any database region by using stale follower reads.
Table locality settings are used for optimizing latency under different read/write patterns. If you are optimizing for read/write access to all of your tables from a single region (the primary region), there is nothing else you need to do once you set your database's primary region.
Regional tables
Regional tables work well when your application requires low-latency reads and writes for an entire table from a single region.
For regional tables, access to the table will be fast in the table's "home region" and slower in other regions. In other words, CockroachDB optimizes access to data in regional tables from a single region. By default, a regional table's home region is the database's primary region, but that can be changed to use any region added to the database.
For instructions showing how to set a table's locality to REGIONAL BY TABLE
, see ALTER TABLE ... SET LOCALITY
By default, all tables in a multi-region database are regional tables that use the database's primary region. Unless you know your application needs different performance characteristics than regional tables provide, there is no need to change this setting.
Regional by row tables
In regional by row tables, individual rows are optimized for access from different regions. This setting divides a table and all of its indexes into partitions, with each partition optimized for access from a different region. Like regional tables, regional by row tables are optimized for access from a single region. However, that region is specified at the row level instead of applying to the whole table.
Use regional by row tables when your application requires low-latency reads and writes at a row level where individual rows are primarily accessed from a single region. For example, a users table in a global application may need to keep some users' data in specific regions due to regulations (such as GDPR), for better performance, or both.
For an example of a table that can benefit from the regional by row setting in a multi-region deployment, see the users
table from the MovR application.
For instructions showing how to set a table's locality to REGIONAL BY ROW
, see ALTER TABLE ... SET LOCALITY
Global tables
Global tables are optimized for low-latency reads from every region in the database. The tradeoff is that writes will incur higher latencies from any given region, since writes have to be replicated across every region to make the global low-latency reads possible.
Use global tables when your application has a "read-mostly" table of reference data that is rarely updated, and needs to be available to all regions.
For an example of a table that can benefit from the global table locality setting in a multi-region deployment, see the promo_codes
table from the MovR application.
For instructions showing how to set a table's locality to GLOBAL
, see ALTER TABLE ... SET LOCALITY
Additional Features
The features listed in this section are designed to make working with multi-region clusters easier.
Indexes on REGIONAL BY ROW
tables
New in v21.1: In multi-region deployments, most users should use REGIONAL BY ROW
tables instead of explicit index partitioning. When you add an index to a REGIONAL BY ROW
table, it is automatically partitioned on the crdb_region
column. Explicit index partitioning is not required.
For an example that uses unique indexes, see Add a unique index to a REGIONAL BY ROW
table.