Home >Database >Redis >How many nodes does redis split brain have?

How many nodes does redis split brain have?

(*-*)浩
(*-*)浩Original
2019-11-30 10:32:542372browse

How many nodes does redis split brain have?

什么是redis的集群脑裂?

redis的集群脑裂是指因为网络问题,导致redis master节点跟redis slave节点和sentinel集群处于不同的网络分区,此时因为sentinel集群无法感知到master的存在,所以将slave节点提升为master节点。     (推荐学习:Redis视频教程

此时存在两个不同的master节点,就像一个大脑分裂成了两个。

集群脑裂问题中,如果客户端还在基于原来的master节点继续写入数据,那么新的master节点将无法同步这些数据,当网络问题解决之后,sentinel集群将原先的master节点降为slave节点,此时再从新的master中同步数据,将会造成大量的数据丢失。

解决方案

redis的配置文件中,存在两个参数

min-slaves-to-write 3<br/>min-slaves-max-lag 10<br/>

第一个参数表示连接到master的最少slave数量

第二个参数表示slave连接到master的最大延迟时间

如果连接到master的slave数量小于第一个参数,且ping的延迟时间小于等于第二个参数,那么master就会拒绝写请求,配置了这两个参数之后,如果发生集群脑裂,原先的master节点接收到客户端的写入请求会拒绝,就可以减少数据同步之后的数据丢失。

注意:较新版本的redis.conf文件中的参数变成了

min-replicas-to-write 3<br/>min-replicas-max-lag 10<br/>

redis中的异步复制情况下的数据丢失问题也能使用这两个参数

更多Redis相关技术文章,请访问Redis入门教程栏目进行学习!

The above is the detailed content of How many nodes does redis split brain have?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn