Detailed information about the syncer process and its role in distributed databases.
| Redis Enterprise Software |
|---|
Each node in a cluster containing an instance of an Active-Active database hosts a process called the syncer. The syncer process:
Some replication capabilities are also included in Redis Open Source.
The primary (also known as master) shard at the top of the primary-replica tree creates a replication ID. This replication ID is identical for all replicas in that tree. When a new primary is appointed, the replication ID changes, but a partial sync from the previous ID is still possible.
In a partial sync, the backlog of operations since the offset are transferred as raw operations. In a full sync, the data from the primary is transferred to the replica as an RDB file which is followed by a partial sync.
Partial synchronization requires a backlog large enough to store the data operations until connection is restored. See replication backlog for more info on changing the replication backlog size.
In the case of an Active-Active database:
An Active-Active database uses partial synchronization in the following situations:
Some syncer errors are unrecoverable and cause the syncer to exit with exit code 4. When this occurs, the Data Management Controller (DMC) automatically sets the crdt_sync or replica_sync value to stopped.
To restart a regular database's syncer after an unrecoverable error, update the database configuration with the REST API to enable sync:
curl -v -k -u <username>:<password> -X PUT \
-H "Content-Type: application/json" \
-d '{"sync": "enabled"}' \
https://<host>:<port>/v1/bdbs/<database-id>
To restart an Active-Active database's syncer after an unrecoverable error, use one of the following methods.
For each participating cluster, update the database configuration with the REST API to enable sync:
curl -v -k -u <username>:<password> -X PUT \
-H "Content-Type: application/json" \
-d '{"sync": "enabled"}' \
https://<host>:<port>/v1/bdbs/<database-id>
Run crdb-cli crdb update:
crdb-cli crdb update --crdb-guid <crdb-guid> --force
<username>, <password>, <host>, <port>, <database-id>, and <crdb-guid> with your actual values.