Multi-Data Center Architectures

Confluent Platform is often used across multiple data centers, for example for disaster recovery, migrations, or geographic locality. Confluent Platform contains several features and products that support multi-data center architectures.

The following sections describe common multi-data center architectures along with use cases and recommended high-level implementations.

Terms

Term Description
Recovery Point Objective (RPO) In the event of failure, at which point in the data’s history does the failover need to resume from? In other words, how much data can be lost during a failure? In order to have zero RPO, synchronous replication is required.
Recovery Time Objective (RTO) In the event of failure, how much time can elapse while a failover takes place? In other words, how long can a failover take? In order to have near-zero RTO, seamless client failover is required.
End user The humans or computers that use the application that is using Confluent.
Application The software that provides an interface to the end user and interacts with Confluent Cloud or Confluent Platform on the backend.
Disaster Recovery (DR) Umbrella term that encompasses architecture, implementation, tooling, policies, and procedures that all allow an application to recover from a disaster, and in the context of this document, a full data center failure.
High Availability (HA) A highly available system can operate continuously even amidst failure. In the context of multi-data center architectures, a highly available application built on Confluent Platform can operate even during a full data center failure. An HA application has a disaster recovery policy.
Event A single message produced or consumed to/from Confluent Cloud or Confluent Platform.
Millisecond (ms) 1/1,000th of a second

In addition to the above terminology, review the concepts in Multi-Region Clusters.

Why Multi-Data Center?

An application may benefit from a multi data center architecture for one or more of the following reasons:

  • Data center failure disaster recovery - When a data center experiences a region-wide failure, a multi-region architecture allows failover to a different region to decrease RTO and RPO.
  • Global operations with minimized latency - End users in one locality, for example in North America, will connect to a North American region, whereas end users in another locality, for example in Europe, will connect to a European region. This ensures each end user will experience the lowest possible latency.
  • Data sovereignty - End-user data within certain sovereignties must never leave the sovereignty or must be aggregated or anonymized when leaving the sovereignty.
  • Data governance - Similar to data sovereignty, some applications require that certain data never leave a certain region or network but perhaps not because of a sovereignty’s laws.
  • Network isolation - Some applications use Confluent Platform within or through a network DMZ to increase network security.

Why not Multi Data Center?

Not all applications require a multi-region architecture. For example, many startups don’t have SLAs that require low RPO and/or low RTO during a full region failure.

Further, single-region architectures are simpler and easier to operate and maintain.

Multi-Cluster Replication (Excluding Disaster Recovery)

In a multi-cluster replication architecture, some or all events in a region are replicated (mirrored) to another region. These regions are called the source and destination, respectively. This architecture is suitable for many use cases. While Disaster Recovery also can involve replication between multiple clusters, it will be covered in its own sections, below.

Use Cases

Self-managed Confluent Platform to Confluent Cloud Migration

When migrating an application’s Confluent usage from a self-managed Confluent Platform deployment to Confluent Cloud, use a replication architecture to migrate events and components of the application in a piecemeal fashion to Confluent Cloud. This piecemeal method allows for the migration to occur in smaller, more manageable chunks, and possibly decreases or removes any downtime that might have otherwise been caused by a migration.

Lift and Shift Migration

A lift-and-shift migration is very similar to a Self-managed Confluent Platform to Confluent Cloud Migration, except that the original application might be using an alternative messaging system.

In this use case, rather than using replication components such as Cluster Linking, Replicator, or MirrorMaker, which all replicate events from one Confluent Platform cluster to another, use a source Connector or Bridge designed to read from the alternative messaging system and produce to the Confluent cluster.

Network Isolation

Some applications require that certain events only be available within certain regions or networks, whereas other events can or must be available in separate regions or networks.

In such applications, often a separate Confluent cluster will be used in each region or network, one cluster replicating to the other.

Data Governance

The Data Governance use case is very similar to the Network Isolation use case above, except that events may be restricted in certain regions for reasons other than network security. See also the Aggregation architecture below.

Aggregation (Hub-and-Spoke)

An aggregation architecture has one or many regions, each running its own local Confluent cluster and application. All or a subset of the local events are replicated to a single, probably larger, aggregate Confluent cluster. Sometimes the aggregate cluster is referred to as the “hub,” and the other regions are referred to as “spokes.”

Aggregation architectures are generally used in one of the following categories:

  • To support global operations where each spoke region is serving customers in the local geography, yet where a global view of all events is required as well.
  • To support data governance, where each team uses an independent Confluent cluster, replicating events to an aggregate cluster for applications that require cross-team events. Note that these clusters could run in the same region or separate regions.
  • This architecture is common in Retail and Entertainment, which typically have many geographically dispersed locations where their customers come to do business in person. It is also used in Transportation, such as cruise ships, and Manufacturing, such as the automotive industry.

Implementation Recommendations

2-Cluster Active-Passive

A 2-cluster active-passive architecture involves two fully-operational clusters, each running a separate Confluent cluster, where one cluster is the “active” cluster serving all produce and consume requests and the second “passive” cluster is a copy of the “active” but without applications running against it. When the “active” data center fails, applications failover to the “passive” data center. The key difference between this and the 2-cluster active-active architecture is that the active-passive architecture has applications only running in one cluster during normal operating conditions.

This architecture provides RPO>0 and RTO>0. RPO is greater than 0 because cross-cluster replication is asynchronous. RTO is greater than 0 because applications need to failover to a different Confluent cluster.

In this architecture, the entire application is run within the active cluster. Every event produced to the local active cluster is replicated asynchronous to the passive backup cluster.

Then, when failover is triggered, applications are started in the passive cluster, producing and consuming from the passive cluster.

When to use?

Consider using this architecture when the data centers are far apart, have high network latency, or have unpredictable network latency.

When not to use?

Do not use this architecture when a small amount of data loss in the event of a data center failure would lead to a catastrophic cost (such as a breach of regulation).

Implementation Recommendations

Use Cluster Linking for Confluent Platform.

2+-Cluster Active-Active

A 2+-cluster active-active architecture involves two or more fully-independent clusters, each running a separate Confluent cluster, where each cluster is a copy of the other. When one of the data centers fails, applications failover to the other cluster.

This architecture provides RPO>0 and RTO either >0 or near 0, depending on your overall architecture. RPO is greater than 0 because cross-cluster replication is asynchronous. If the failure is irrecoverable, a small bit of data may be lost permanently. RTO can be very low because you have at least one cluster running at all times. Your architecture must detect a failure and divert traffic upstream (such as through a load balancer or DNS) to the remaining active cluster. Applications must be duplicated and deployed in both fully-operational data centers in order to achieve an RTO close to 0. If your applications only run in one data center at a time, then the RTO will depend on the amount of time it takes to restart them in the surviving data center.

When to use?

Consider using this architecture when two or more data centers are strategically located in areas of low-latency or low-cost, and thus there is a business advantage from running applications in multiple data centers at the same time. Additionally, consider this architecture when the data centers are far apart, have high network latency, or have unpredictable network latency.

When not to use?

Do not use this architecture when a small amount of data loss in the event of a data center failure would lead to a catastrophic cost (for example, breach of regulation).

Do not use this architecture if an active/passive one would work just as well.

Use Cases

Telecommunications

Telecommunications tend to require very low latency, and to be able to tolerate a low RPO and RTO.

Implementation Recommendations

Use Cluster Linking for Confluent Platform.

Stretched Cluster 3-Data Center

A stretched 3-data center cluster architecture involves three data centers that are connected by a low latency (sub-100ms) and stable (very tight p99s) network, usually a “dark fiber” network that is owned or leased privately by the company. Confluent Server and ZooKeeper are spread evenly across the three data centers to make a single, stretched cluster.

Stretched clusters can provide RPO=0 and RTO=0. They can also provide RPO>0 and RTO>0, depending on configuration.

The most common setup is to stretch between data centers in neighboring states, for example, New York, New Jersey, and Boston. This provides redundancy against a data center failure, power or cooling outage, or geographic disaster.

When to use?

  • Use a stretched cluster when extremely high availability is paramount (RPO=0 and RTO~0) and three data centers are connected by stable, low-latency network.
  • Stretched cluster architectures are most commonly used for applications located within a single geographic region (such as the Northeast USA)

When not to use?

  • Do not use a stretched cluster when data centers are far apart (for example, in distant geographic regions) or when network performance is poor or unknown.
  • Do not use a stretched cluster when fewer than three full-operational data centers are available, or when you don’t have a strict RPO=0 requirement. (for example, if your business can tolerate a small amount of data loss in the event of a failure without a catastrophic consequence).

Use Cases

Consumer Banking and High Frequency Trading

Many consumer banks or trading firms have low or zero RPO and RTO requirements and customers only within a single country or continent.

Tip

To learn more about how to achieve near zero RPO and RTO, see the following blog post, which supplements the use cases detailed below: Automatic Observer Promotion Brings Fast and Safe Multi-Datacenter Failover with Confluent Platform 6.1

Physical Infrastructure

If Kafka powers physical infrastructure, like trains, then downtime or data loss may put lives at risk.

Implementation Recommendations

Deploy Confluent with Multi-Region Clusters and three racks, one for each data center. Confluent Server and ZooKeeper hosts should be spread evenly across data centers.

Note

Please contact Confluent for guidance when considering these architectures. Working with Confluent Professional Services is highly recommended to ensure the proper tuning and configuration is done to achieve these strict requirements

Stretched Cluster 2.5 Data Center (Confluent Platform Only)

A stretched 2.5-data center architecture involves two fully-operational data centers and one light (0.5) data center running a single, stretched cluster. The fully operational data centers run an equal number of Confluent Server and ZooKeeper hosts, whereas the light data center runs a single ZooKeeper host. When any single data center fails, the ZooKeeper quorum will remain available. When a fully operational data center fails, applications failover to the other data center.

This architecture provides RPO =0 or >0 depending on configuration, and RTO=>0. RPO is greater than 0 when inter-data center replication is not guaranteed to be synchronous.

RTO is near zero when an application instance is running in each data center, and you have automatic-observer promotion with replicas in each data center, and a third data center with at least one ZooKeeper, as described this blog post: Automatic Observer Promotion Brings Fast and Safe Multi-Datacenter Failover with Confluent Platform. Otherwise, RTO is greater than 0 due to needing to failover applications to another data center.

You can achieve different RPO depending on replica configurations. To achieve RPO=0, you need at least two data centers with replicas, and the number of minimum in-sync replicas must be greater than the number of replicas in any given data center. For example, if you configure two replicas and one observer per location and min.ISR=3, there is synchronous replication across the two locations, and RPO=0 for a data center failure. Note that producers must be configured to acks=all to support this. If producers are not adequately configured, the replica placement as described is necessary but not sufficient to achieve the RPO=0.

Note

A common deployment is to run two data centers that contain ZooKeeper and brokers, and a third location that hosts only ZooKeeper so a quorum can be established. In this setup, if there is a network partition between the brokers, but not between the ZooKeeper instances, then manual action is required to restore the cluster to health, even if Automatic Observer Promotion is in use. If you have this type of deployment, it is important to be aware of this potential failure scenario and set up appropriate monitoring, alerting, and procedures to address it.

When to use?

Use a 2.5 DC stretched cluster when extremely high availability is paramount (RPO=0 and RTO~0) and three data centers are connected by stable, low-latency network.

When not to use?

Do not use a stretched cluster when data centers are far apart (for example, in distant geographic regions) or when network performance is >100ms, unstable, or unknown .

Use Cases

Consumer Banking and High Frequency Trading

Many consumer banks or trading firms have low or zero RPO and RTO requirements and customers only within a single country or continent.

Tip

To learn more about how to achieve near zero RPO and RTO, see the following blog post, which supplements the use cases detailed below: Automatic Observer Promotion Brings Fast and Safe Multi-Datacenter Failover with Confluent Platform 6.1

Physical Infrastructure

If Kafka powers physical infrastructure, like trains, then downtime or data loss may put lives at risk.

Implementation Recommendations

In all three data centers, deploy ZooKeeper. In a five-host ZooKeeper cluster, deploy two in one fully-operational data center, deploy two in the other fully-operational data center, and deploy the fifth in the light data center. Deploy an equal number of Confluent Server hosts in each fully-operational data center.

Enable and configure the Multi-Region Clusters, including self-promoting observers, as described in
Automatic Observer Promotion Brings Fast and Safe Multi-Datacenter Failover with Confluent Platform 6.1.

Note that MRC is only available in Confluent Platform.

Note

Please contact Confluent for guidance when considering these architectures. Working with Confluent Professional Services is highly recommended to ensure the proper tuning and configuration is done to achieve these strict requirements

Architecture Diagram

../_images/mr-2.5-region-active-active.png

Comparison Chart of Multi-Region Options

Product Confluent Cloud Support RPO in a DC failure RTO in a DC failure Description
Cluster Linking for Confluent Platform Yes, self-managed connecting to Confluent Cloud > 0 > 0 Cluster Linking perfectly mirrors topics and metadata from one data center to another, and comes built-in to Confluent Server brokers
MirrorMaker Yes, self-managed connecting to Confluent Cloud > 0 > 0 KIP-382
Multi-Region Clusters No = 0 or > 0, dependent on the configuration >= 0 Multi-Region Clusters (MRC) is a feature set that supports seamless failover and simpler multi-data center architectures.