在负载均衡器后面设置 Redis Enterprise 集群
使用负载均衡器而不是 DNS 设置 Redis Enterprise 集群,以将流量定向到集群节点。
Redis 企业软件 |
---|
要在不允许 DNS 的环境中设置 Redis Enterprise 集群,您可以使用负载均衡器 (LB) 将流量定向到集群节点。
数据库的 DNS 角色
通常,Redis Enterprise 使用 DNS 来提供动态数据库终端节点。
DNS 名称(如redis-12345.clustername.domain
允许客户端访问数据库资源:
- 如果正在使用多个代理,则 DNS 名称将解析为多个 IP 地址,以便客户端可以进行负载均衡。
- 在故障转移或拓扑更改时,DNS 名称会自动更新以反映实时 IP 地址。
当无法使用 DNS 时,客户端仍然可以使用 IP 地址连接到终端节点。 但无法享受负载均衡和自动更新 IP 地址的好处。
具有负载均衡器的网络架构
您可以使用可以公开服务并提供服务发现的负载均衡器来弥补 DNS 解析的不足。 在 Redis Enterprise 集群前面配置了一个负载均衡器,公开了几个逻辑服务:
- 控制平面服务,例如 Cluster Manager UI
- 数据层面服务,例如客户端应用程序连接的数据库终端节点
根据要在集群外部访问的 Redis Enterprise 服务,您可能需要单独配置负载均衡器。 在负载均衡器上定义了一个或多个虚拟 IP (VIP) 以公开 Redis Enterprise 服务。 下图显示了一个 3 节点 Redis Enterprise 集群,其中在端口 12000 上配置了一个数据库 (DB1):

设置具有负载均衡器的集群
先决条件
- 在您的集群上安装最新版本的 Redis Enterprise Software
- 使用集群名称 (FQDN) 配置集群,即使 DNS 未使用。 请记住,使用相同的集群名称来颁发许可证密钥。 我们建议您在 FQDN 中使用 “.local” 后缀。
配置负载均衡器
- 确保负载均衡器正在集群节点上执行 TCP 运行状况检查。
- 通过虚拟 IP 公开您需要的服务,例如:
- 端口 8443 上的集群管理器 UI
- 端口 9443 上的 Rest API 用于安全 HTTPS 连接,端口 8080 用于 HTTP
- 数据库端口 10000-19999
其他端口显示在 Redis Enterprise 网络端口列表中。
只有端口 8443 上的 Redis Enterprise Cluster Manager UI 才需要粘性、安全的连接。
- 某些负载均衡器提供特定逻辑来关闭空闲连接。关闭此功能,或确保连接到 Redis 的应用程序使用重新连接逻辑。
- 确保负载均衡器的速度足够快,可以解析通过负载均衡器连接到 Redis 数据库的两个集群或应用程序之间的连接。
- 选择您的环境中常用的标准负载均衡器,以便您可以轻松访问内部专业知识来解决问题。
配置集群
对于负载均衡器后面的集群,我们建议使用all-nodes
代理策略和启用handle_redirects
.
要允许在集群内的相关节点上终止入站连接,请运行以下命令rladmin
命令:
# Enable all-nodes proxy policy by default
rladmin tune cluster default_sharded_proxy_policy all-nodes default_non_sharded_proxy_policy all-nodes
# Redirect where necessary when behind a load balancer
rladmin cluster config handle_redirects enabled
Optionally configure sparse shard placement to allow closer termination of client connections to where the Redis shard is located:
# Enable sparse placement by default
rladmin tune cluster default_shards_placement sparse
Configure database
After you update the cluster settings and configure the load balancers, you can go to the Redis Enterprise Cluster Manager UI at https://load-balancer-virtual-ip:8443/
and create a new database.
To create an Active-Active database, use the crdb-cli
utility. See the crdb-cli
reference for more information about creating Active-Active databases from the command line.
Update load balancer configuration when cluster configuration changes
When your Redis Enterprise cluster is behind a load balancer, you must update the load balancer when the cluster topology and IP addresses change.
Some common cases that require you to update the load balancer are:
- Adding new nodes to the Redis Enterprise cluster
- Removing nodes from the Redis Enterprise cluster
- Maintenance for Redis Enterprise cluster nodes
- IP address changes for Redis Enterprise cluster nodes
After these changes, make sure that the Redis connections in your applications can connect to the Redis database,
especially if they are directly connected on IP addresses that have changed.
Intercluster communication considerations
Redis Enterprise supports several topologies that allow intercluster replication, such as Replica Of and Active-Active deployment options.
When your Redis Enterprise software clusters are behind load balancers, you must allow some network services to be open and defined in the load balancers to allow the replication to work.
Replica Of
For Replica Of communication to work, you must expose database ports locally in each cluster and allow these ports through any firewalls between the clusters.
Active-Active
For Active-Active communication to work, you must expose several ports, including every database port and several control plane ports as defined in Network port configurations. Pay attention to services that include "Active-Active" in the connection source column, and allow these ports through any firewalls between the clusters.
On this page