Create an Active-Active geo-replicated database

How to create an Active-Active database and things to consider when setting it up.

Active-Active geo-replicated databases (formerly known as CRDBs) give applications write access to replicas of the dataset in different geographical locations.

The participating Redis Enterprise Software clusters that host the instances can be distributed in different geographic locations. Every instance of an Active-Active database can receive write operations, and all operations are synchronized to all instances without conflict.

Steps to create an Active-Active database

  1. Create a service account - On each participating cluster, create a dedicated user account with the Admin role.
  2. Confirm connectivity - Confirm network connectivity between the participating clusters.
  3. Create Active-Active database - Connect to one of your clusters and create a new Active-Active database.
  4. Add participating clusters - Add the participating clusters to the Active-Active database with the user credentials for the service account.
  5. Verify creation - Log in to each of the participating clusters and verify your Active-Active database was created on them.
  6. Confirm Active-Active database synchronization - Test writing to one cluster and reading from a different cluster.

Prerequisites

  • Two or more machines with the same version of Redis Enterprise Software installed
  • Network connectivity and cluster FQDN name resolution between all participating clusters
  • Network time service listener (ntpd) configured and running on each node in all clusters

Create an Active-Active database

  1. Create service accounts on each participating cluster:

    1. In a browser, open the Cluster Manager UI for the participating cluster.

      The default address is: https://<RS_address>:8443

    2. Go to the Access Control > Users tab:

      Add role with name
    3. Click + Add user.

    4. Enter the username, email, and password for the user.

    5. Select the Admin role.

    6. Click Save.

  2. To verify network connectivity between participating clusters, run the following telnet command from each participating cluster to all other participating clusters:

    telnet <target FQDN> 9443
    
  3. In a browser, open the Cluster Manager UI of the cluster where you want to create the Active-Active database.

    The default address is: https://<RS_address>:8443

  4. Open the Create database menu with one of the following methods:

    • Click the + button next to Databases in the navigation menu:

      Create database menu has two options: Single Region and Active-Active database.
    • Go to the Databases screen and select Create database:

      Create database menu has two options: Single Region and Active-Active database.
  5. Select Active-Active database.

  6. Enter the cluster's local admin credentials, then click Save:

    Enter the cluster's admin username and password.
  7. Add participating clusters that will host instances of the Active-Active database:

    1. In the Participating clusters section, go to Other participating clusters and click + Add cluster.

    2. In the Add cluster configuration panel, enter the new cluster's URL, port number, and the admin username and password for the new participating cluster:

      Add cluster panel.
      Note:
      You cannot add RAM-only clusters and flash-enabled clusters to the same Active-Active configuration.
    3. Click Join cluster to add the cluster to the list of participating clusters.

  8. Enter a Database name.

  9. If your cluster supports Auto Tiering, in Runs on you can select Flash so that your database uses Flash memory. We recommend that you use AOF every 1 sec for the best performance during the initial Active-Active database sync of a new replica.

  10. To configure additional database settings, expand each relevant section to make changes.

    See Configuration settings for more information about each setting.

  11. Click Create.

Configuration settings

  • Database version - The Redis version used by your database.

  • Database name - The database name requirements are:

    • Maximum of 63 characters

    • Only letters, numbers, or hyphens (-) are valid characters

    • Must start and end with a letter or digit

    • Case-sensitive

  • Port - You can define the port number that clients use to connect to the database. Otherwise, a port is randomly selected.

    Note:
    You cannot change the port number after the database is created.
  • Memory limit - Database memory limits include all database replicas and shards, including replica shards in database replication and database shards in database clustering.

    If the total size of the database in the cluster reaches the memory limit, the data eviction policy for the database is enforced.

    Note:
    If you create a database with Auto Tiering enabled, you also need to set the RAM-to-Flash ratio for this database. Minimum RAM is 10%. Maximum RAM is 50%.
  • Capabilities (previously Modules) - When you create a new in-memory database, you can enable multiple Redis Stack capabilities in the database. For Auto Tiering databases, you can enable capabilities that support Auto Tiering. See Redis Enterprise and Redis Stack feature compatibility for compatibility details.

    Note:
    To use Redis Stack capabilities, enable them when you create a new database. You cannot enable them after database creation.

    To add capabilities to the database:

    1. In the Capabilities section, select one or more capabilities.

    2. To customize capabilities, select Parameters and enter the optional custom configuration.

    3. Select Done.

TLS

If you enable TLS when you create the Active-Active database, the nodes use the TLS mode Require TLS for CRDB communication only to require TLS authentication and encryption for communications between participating clusters.

After you create the Active-Active database, you can set the TLS mode to Require TLS for all communications so client communication from applications are also authenticated and encryption.

High availability & durability

  • Replication - We recommend that all Active-Active database use replication for best intercluster synchronization performance.

    When replication is enabled, every Active-Active database master shard is replicated to a corresponding replica shard. The replica shards are then used to synchronize data between the instances, and the master shards are dedicated to handling client requests.

    We also recommend that you enable replica HA to ensure that the replica shards are highly-available for this synchronization.

  • Data persistence - To protect against loss of data stored in RAM, you can enable data persistence to store a copy of the data on disk.

    Active-Active databases support append-only file (AOF) persistence only. Snapshot persistence is not supported for Active-Active databases.

  • Eviction policy - The default eviction policy for Active-Active databases is noeviction. Redis Enterprise version 6.0.20 and later support all eviction policies for Active-Active databases, unless Auto Tiering is enabled.

Clustering

  • In the Database clustering option, you can either:

    • Make sure the Database clustering is enabled and select the number of shards that you want to have in the database. When database clustering is enabled, databases are subject to limitations on Multi-key commands. You can increase the number of shards in the database at any time.

    • Clear the Database clustering option to use only one shard so that you can use Multi-key commands without the limitations.

    Note:
    You cannot enable or turn off database clustering after the Active-Active database is created.
  • OSS Cluster API -

    Redis OSS Cluster API reduces access times and latency with near-linear scalability. The Redis OSS Cluster API provides a simple mechanism for Redis clients to know the cluster topology.

    Clients must first connect to the master node to get the cluster topology, and then they connect directly to the Redis proxy on each node that hosts a master shard.

    Note:
    You must use a client that supports the OSS cluster API to connect to a database that has the OSS cluster API enabled.

Access control

  • Unauthenticated access - You can access the database as the default user without providing credentials.

  • Password-only authentication - When you configure a password for your database's default user, all connections to the database must authenticate with the AUTH command.

    If you also configure an access control list, connections can specify other users for authentication, and requests are allowed according to the Redis ACLs specified for that user.

    Creating a database without ACLs enables a default user with full access to the database. You can secure default user access by requiring a password.

  • Access Control List - You can specify the user roles that have access to the database and the Redis ACLs that apply to those connections.

    You can only configure access control after the Active-Active database is created. In each participating cluster, add ACLs after database creation.

    To define an access control list for a database:

    1. In Security > Access Control > Access Control List, select + Add ACL.

    2. Select a role to grant database access.

    3. Associate a Redis ACL with the role and database.

    4. Select the check mark to add the ACL.

Causal consistency

Causal consistency in an Active-Active database guarantees that the order of operations on a specific key is maintained across all instances of an Active-Active database.

To enable causal consistency for an existing Active-Active database, use the REST API.

Test Active-Active database connections

With the Redis database created, you are ready to connect to your database. See Connect to Active-Active databases for tutorials and examples of multiple connection methods.

RATE THIS PAGE
Back to top ↑