Skip to main content
ALTER PARTITION is used to add, modify, reset, or remove replication zones for . It is combined with the CONFIGURE ZONE subcommand. To view details about existing replication zones, use . For more information about replication zones, see . For instructions showing how to troubleshoot replication zones that may be misconfigured, see . You can use replication zones to control the number and location of replicas for specific sets of data, both when replicas are first added and when they are rebalanced to maintain cluster equilibrium.

Synopsis

alter_zone_partition syntax diagram

Required privileges

The user must have the privilege on the table.

Parameters

ParameterDescription
table_nameThe name of the with the to modify.
partition_nameThe name of the with the to modify.
index_nameThe name of the with the to modify.
variableThe name of the variable to change.
valueThe value of the variable to change.

Variables

VariableDescription
range_min_bytesThe minimum size, in bytes, for a range of data in the zone. When a range is less than this size, CockroachDB will merge it with an adjacent range.

Default: 134217728 (128 MiB)
range_max_bytesThe maximum size, in bytes, for a of data in the zone. When a range reaches this size, CockroachDB will into two ranges.

Default: 536870912 (512 MiB)
gc.ttlsecondsThe number of seconds overwritten will be retained before .

Default: 14400 (4 hours)

Smaller values can save disk space and improve performance if values are frequently overwritten or for queue-like workloads. The smallest value we regularly test is 600 (10 minutes); smaller values are unlikely to be beneficial because of the frequency with which GC runs. If you use , the GC TTL must be greater than the interval between incremental backups. Otherwise, your incremental backups will fail with . To avoid this problem, we recommend using instead, which automatically to ensure they succeed.

Larger values increase the interval allowed for queries and allow for less frequent incremental backups. The largest value we regularly test is 90000 (25 hours). Increasing the GC TTL is not meant to be a solution for long-term retention of history; for that you should handle versioning in the . Setting the GC TTL too high can cause problems if the retained versions of a single row approach the maximum range size. This is important because all versions of a row are stored in a single range that never .

num_replicasThe number of replicas in the zone, also called the “replication factor”.

Default: 3

For the system database and .meta, .liveness, and .system ranges, the default value is 5.

For , the default value is 5; this will include both voting and .
constraintsAn array of required (+) and/or prohibited (-) constraints influencing the location of replicas. See and for more details.

To prevent hard-to-detect typos, constraints placed on must match the values passed to at least one node in the cluster. If not, an error is signalled. To prevent this error, make sure at least one active node is configured to match the constraint. For example, apply constraints = '[+region=west]' only if you had set --locality=region=west for at least one node while starting the cluster.

Default: No constraints, with CockroachDB locating each replica on a unique node and attempting to spread replicas evenly across localities.
lease_preferencesAn ordered list of required and/or prohibited constraints influencing the location of . Whether each constraint is required or prohibited is expressed with a leading + or -, respectively. Note that lease preference constraints do not have to be shared with the constraints field. For example, it’s valid for your configuration to define a lease_preferences field that does not reference any values from the constraints field. It’s also valid to define a lease_preferences field with no constraints field at all.

If the first preference cannot be satisfied, CockroachDB will attempt to satisfy the second preference, and so on. If none of the preferences can be met, the lease will be placed using the default lease placement algorithm, which is to base lease placement decisions on how many leases each node already has, trying to make all the nodes have around the same amount.

Each value in the list can include multiple constraints. For example, the list [[+zone=us-east-1b, +ssd], [+zone=us-east-1a], [+zone=us-east-1c, +ssd]] means “prefer nodes with an SSD in us-east-1b, then any nodes in us-east-1a, then nodes in us-east-1c with an SSD.”

For a usage example, see .

Default: No lease location preferences are applied if this field is not specified.
global_readsIf true, transactions operating on the range(s) affected by this zone config should be , which slows down writes but allows reads from any replica in the range. Most users will not need to modify this setting; it is applied automatically when you .
num_votersSpecifies the number of . When set, num_replicas will be the sum of voting and . Most users will not need to modify this setting; it is part of the underlying machinery that enables .
voter_constraintsSpecifies the constraints that govern the placement of voting replicas. This differs from the constraints field, which will govern the placement of all voting and non-voting replicas. Most users will not need to modify this setting; it is part of the underlying machinery that enables .
If a value is not set, new zone configurations will inherit their values from their parent zone (e.g., a partition zone inherits from the table zone), which is not necessarily default.If a variable is set to COPY FROM PARENT (e.g., range_max_bytes = COPY FROM PARENT), the variable will copy its value from its parent . The COPY FROM PARENT value is a convenient shortcut to use so you do not have to look up the parent’s current value. For example, the range_max_bytes and range_min_bytes variables must be set together, so when editing one value, you can use COPY FROM PARENT for the other. Note that if the variable in the parent replication zone is changed after the child replication zone is copied, the change will not be reflected in the child zone.

Examples

Setup

The following examples use MovR, a fictional vehicle-sharing application, to demonstrate CockroachDB SQL statements. For more information about the MovR example application and dataset, see . To follow along, run with the --geo-partitioned-replicas flag. This command opens an interactive SQL shell to a temporary, 9-node in-memory cluster with the movr database.

Create a replication zone for a partition

Once , to control replication for a partition, use ALTER PARTITION <partition> OF INDEX <table@index> CONFIGURE ZONE:
To define replication zones for identically named partitions of a table and its secondary indexes, you can use the @* syntax to save several steps:
To view the zone configuration for a partition, use SHOW ZONE CONFIGURATION FROM PARTITION <partition> OF INDEX <table@index>:
You can also use the statement or statements to view details about all of the replication zones defined for the partitions of a table and its secondary indexes.
For instructions showing how to troubleshoot replication zones that may be misconfigured, see .

See also