content/operate/rs/databases/active-active/develop/develop-for-aa.md
Developing geo-distributed, multi-master applications can be difficult. Application developers may have to understand a large number of race conditions between updates to various sites, network, and cluster failures that could reorder the events and change the outcome of the updates performed across geo-distributed writes.
Active-Active databases (formerly known as CRDB) are geo-distributed databases that span multiple Redis Software clusters.
Active-Active databases depend on multi-master replication and conflict-free
replicated data types (CRDTs) to power a simple development experience
for geo-distributed applications. Active-Active databases allow developers to use existing
Redis data types and commands, but automatically handle conflicting concurrent writes to the same key
across multiple geographies. For example, developers can simply use the
INCR or INCRBY method in Redis in all instances of the geo-distributed
application, and Active-Active databases handle the additive nature of INCR to reflect the
correct final value.
The following example displays a sequence of events over time: t1 to t9. This Active-Active database has two member Active-Active databases: member CRDB1 and member CRDB2. The local operations running in each member Active-Active database are listed under the member Active-Active database name. The sync events represent the moment when synchronization catches up to distribute all local member Active-Active database updates to other participating clusters and other member Active-Active databases.
| Time | Member CRDB1 | Member CRDB2 |
|---|---|---|
| t1 | INCRBY key1 7 | |
| t2 | INCRBY key1 3 | |
| t3 | GET key1 | |
| 7 | GET key1 | |
| 3 | ||
| t4 | — Sync — | — Sync — |
| t5 | GET key1 | |
| 10 | GET key1 | |
| 10 | ||
| t6 | DECRBY key1 3 | |
| t7 | INCRBY key1 6 | |
| t8 | — Sync — | — Sync — |
| t9 | GET key1 | |
| 13 | GET key1 | |
| 13 |
Databases provide various approaches to address some of these concerns:
Even though types and commands in Active-Active databases look identical to standard Redis types and commands, the underlying types in Redis Software are enhanced to maintain more metadata to create the conflict-free data type experience. This section explains what you need to know about developing with Active-Active databases on Redis Software.
Active-Active databases support Lua scripts, but unlike standard Redis, Lua scripts always execute in effects replication mode. There is currently no way to execute them in script-replication mode.
The default policy for Active-Active databases is noeviction mode. Redis Software version 6.0.20 and later support all eviction policies for Active-Active databases, unless [Auto Tiering]({{< relref "/operate/rs/databases/auto-tiering" >}}) (previously known as Redis on Flash) is enabled.
For details, see [eviction for Active-Active databases (Redis Software)]({{< relref "/operate/rs/databases/memory-performance/eviction-policy#active-active-database-eviction" >}}) or [eviction for Active-Active databases (Redis Cloud)]({{< relref "/operate/rc/databases/configuration/data-eviction-policies#active-active-replication-considerations" >}}).
Expiration is supported with special multi-master semantics.
If a key's expiration time is changed at the same time on different members of the Active-Active database, the longer extended time set via TTL on a key is preserved.
If this command was performed on key1 on cluster #1:
127.0.0.1:6379> EXPIRE key1 10
If this command was performed on key1 on cluster #2:
127.0.0.1:6379> EXPIRE key1 50
The EXPIRE command setting the key to 50 would win.
And if this command was performed on key1 on cluster #3:
127.0.0.1:6379> PERSIST key1
It would win out of the three clusters hosting the Active-Active database as it sets the TTL on key1 to an infinite time.
The replica responsible for the winning expire value is also
responsible for expiring the key and propagating a DEL effect when this
happens. From this point on, a losing replica is not responsible
for expiring the key, unless another EXPIRE command resets the TTL.
Furthermore, a replica that is not the owner of the expired value:
Silently ignores the key if a user attempts to access it in READ mode, for example, treating it as if it was expired but not propagating a DEL.
Expires it (sending a DEL) before making any modifications if a user attempts to access it in WRITE mode.
{{< note >}} Expiration values are in the range of [0, 2^49] for Active-Active databases and [0, 2^64] for regular databases. {{< /note >}}
For conflict resolution purposes, Active-Active databases cannot immediately release a deleted key. Instead, the key is logically deleted but remains in memory as a tombstone until the garbage collector can safely remove it.
When a deleted key becomes a tombstone, it frees some memory previously consumed by the key. The size of each tombstone varies depending on the data type and the key's history.
The garbage collector automatically removes a tombstone when all instances in the Active-Active database have observed the deletion operation.
To monitor tombstones, you can use shard-level metrics exposed by INFO crdt and Grafana.
If a member Active-Active database is out of memory, that member is marked as "inconsistent", the member stops responding to user traffic, and the syncer initiates full reconciliation with other peers in the Active-Active database.
Keys are counted differently for Active-Active databases:
shard-cli dbsize) reports key header instances
that represent multiple potential values of a key before a replication conflict is resolved.bdb-cli info) can be more than the keys count in DBSIZE (in shard-cli dbsize)
because expires are not always removed when a key becomes a tombstone.bdb-cli info) is computed for local expires only.The INFO command has an additional CRDT section that provides advanced troubleshooting information:
| Section | Field | Description |
|---|---|---|
| CRDT Context | crdt_config_version | Current Active-Active database configuration version. |
| crdt_slots | Hash slots assigned and reported by this shard. | |
| crdt_replid | Unique replica/shard IDs. | |
| crdt_clock | Clock value of local vector clock. | |
| crdt_ovc | Locally observed Active-Active database vector clock. | |
| Peers | A list of currently connected peer replication peers. This is similar to the replicas list reported by Redis. | |
| Backlogs | A list of peer replication backlogs currently maintained. Typically in a full mesh topology, only a single backlog is used for all peers, as the requested IDs are identical. | |
| CRDT Stats | crdt_sync_full | Number of inbound full synchronization processes performed. |
| crdt_sync_partial_ok | Number of partial (backlog based) re-synchronization processes performed. | |
| crdt_sync_partial-err | Number of partial re-synchronization processes failed due to exhausted backlog. | |
| crdt_merge_reqs | Number of inbound merge requests processed. | |
| crdt_effect_reqs | Number of inbound effect requests processed. | |
| crdt_ovc_filtered_effect_reqs | Number of inbound effect requests filtered due to old vector clock. | |
| crdt_gc_pending | Number of elements pending garbage collection. | |
| crdt_gc_attempted | Number of attempts to garbage collect tombstones. | |
| crdt_gc_collected | Number of tombstones garbage collected successfully. | |
| crdt_gc_gvc_min | The minimal globally observed vector clock, as computed locally from all received observed clocks. | |
| crdt_stale_released_with_merge | Indicates the last stale flag transition was a result of a complete full sync. | |
| CRDT Replicas | A list of crdt_replica <uid> entries, each describes the known state of a remote instance with the following fields: | |
| config_version | Last configuration version reported. | |
| shards | Number of shards. | |
| slots | Total number of hash slots. | |
| slot_coverage | A flag indicating remote shards provide full coverage (all shards are alive). | |
| max_ops_lag | Number of local operations not yet observed by the least updated remote shard. | |
| min_ops_lag | Number of local operations not yet observed by the most updated remote shard. |