Skip to content

Commit

Permalink
Doc-108 Update multi-region section of HA docs (#933)
Browse files Browse the repository at this point in the history
  • Loading branch information
Feediver1 authored Dec 23, 2024
1 parent 2893d0c commit 3422e14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/deploy/partials/high-availability.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,9 @@ endif::[]

=== Multi-region deployment

A multi-region deployment is similar to a multi-AZ deployment, in that it needs at least three regions to counter the loss of a single region. Note that this deployment strategy increases latency due to the physical distance between regions. Consider the following strategies to mitigate this problem:
A multi-region deployment is similar to a multi-AZ deployment, in that it needs at least three regions to counter the loss of a single region. Note that this deployment strategy increases latency due to the physical distance between regions. In addition to higher produce and end-to-end latency and increased costs, multi-region deployments require careful tuning. Redpanda recommends that you work closely with Redpanda’s Customer Success team when implementing a multi-region deployment. Also consider the following strategies to mitigate these challenges:

* Manually configure leadership of each partition to ensure that leaders are congregated in the primary region (closest to the producers and consumers).
* Configure xref:develop:produce-data/leader-pinning.adoc#configure-leader-pinning[leader pinning] to ensure that topic partition leaders are geographically closer to clients. This can help lower network costs and latency by routing produce requests to brokers located in specific AZs.
* If your produce latency exceeds your requirements, you can configure producers to have `acks=1` instead of `acks=all`. This reduces latency by only waiting for the leader to acknowledge, rather than waiting for all brokers to respond. However, using this configuration can decrease message durability. If the partition leader goes offline, you may lose any messages that are acknowledged but not yet replicated.

=== Multi-cluster deployment
Expand Down

0 comments on commit 3422e14

Please sign in to comment.