This article will introduce you to the sentinel mode in Redis. I hope it will be helpful to you!
#Redis master-slave mode. Once the master node fails, the slave node can be promoted to the master node. At the same time, the client must be notified to update the master node address. This is generally not possible. OK. Therefore, Redis provides Redis Sentinel
Sentinel mechanism to solve this problem. [Related recommendations: Redis video tutorial]
Problems with master-slave replication
1. Benefits of master-slave replication
- If the master node fails, the slave node will be upgraded to the master node
- Expand the read capacity of the master node and share the pressure of the master node
2. Existing problems
- The process of upgrading the master node from the slave node requires manual intervention, and at the same time, the client Redis service address must be changed
- The write capability of the master node, Storage capacity is affected by single-machine limit
- performance: after Redis replication is interrupted, the slave node will initiate
psync
. If the synchronization fails at this time, full synchronization will be performed. While the main database performs full backup, millisecond or second-level lag may occur
1. Some concepts
Main functions
- Monitoring: Constantly check the master and slave Whether the server is running normally
- Notification: Once a node fails, other nodes will be notified
- Automatic failover:When the main node cannot work properly Failover will be performed automatically, and one of the slave nodes will be upgraded to the master node
- Configuration provider: The client does not configure a single node, but a Sentinel
node collection
Subjective offline and objective offline
Generally speaking, eachSentinel node will continuously monitor other
Sentinel Node and
Redis node send
PING, and confirm whether they are online by replying or not
- Subjective offline: Applicable to For all master nodes and slave nodes, if Sentinel
does not receive a valid reply from the target node within
down-after-millisecondsmilliseconds, the node will be determined to be subjectively offline.
- Objective offline: Only used for the master node. If the master node fails, the Sentinel
node will pass
sentinel is-master-down-by- The addrcommand asks other
Sentinelnodes to determine the status of this node. If more than
nodes determine that the primary node is unreachable, the
Sentinelnode will determine that the primary node is objectively offline.
2. Working principle
- Each
Sentinel
sends to otherSentinel
nodes andRedis
master-slave nodes at a frequency of1 times/s
PING
command. - If an instance is more than
down-after-milliseconds
from the last valid reply to thePING
command, the instance isSentinel
marked as Subjective offline . - If a masterserver is marked as subjectively offline, then all
Sentinel
nodes of this masterserver are being monitored,1 time/s
Confirm whether this master server has entered the subjective offline state - If more than
<quorum></quorum>
nodes determine that the master node is unreachable, theSentinel
node will It is determined that the master node is objectively offline. - When the main server is marked as objectively offline,
Sentinel
will send theINFO
command to all the servers of the offline server, which will start from10 times/s
is changed to1 times/s
. -
Sentinel
The nodes negotiate the master node status. If the master node is in theSDOWN
state, the new master node will be automatically selected by voting. Point the remaining slave nodes to the new primary node for data replication. - When there are not enough
Sentinel
to agree that the main server is offline, the objective offline status of the main server will be removed. When the primary server returns avalid reply
to thePING
command of Sentinel, the of the primary server The subjective offline status will be removed.
3. Message loss
Redis adopts the master-slave replication mode. Once the master node hangs up, the data being synchronized by the slave node may be lost and delayed. The bigger it is, the more is lost.
Redis provides two configuration items to limit the request processing of the main library, namely min-slaves-to-write
and min-slaves-max-lag
.
- min-slaves-to-write: This configuration item sets the minimum number of slave libraries that the main library can perform data synchronization;
- min-slaves-max-lag: This configuration This item sets the maximum delay (in seconds) for the slave library to send an ACK message to the master library when data is copied between the master and slave libraries.
The requirement after combining these two configuration items is that there are at least N slave libraries in the slave library connected to the main library, and the ACK message delay when copying data with the main library cannot exceed T seconds, otherwise, the main library will no longer receive client requests.
So, Sentine cannot guarantee that messages will not be lost at all, but it can also try to ensure that messages are lost as little as possible.
Summary
Sentinel
solves the problem of high availability but does not solve the problem of single-node expansion of the master node.
For more programming-related knowledge, please visit: Introduction to Programming! !
The above is the detailed content of Learn about the sentry mode in Redis in one article. For more information, please follow other related articles on the PHP Chinese website!

Redis是现在最热门的key-value数据库,Redis的最大特点是key-value存储所带来的简单和高性能;相较于MongoDB和Redis,晚一年发布的ES可能知名度要低一些,ES的特点是搜索,ES是围绕搜索设计的。

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了关于redis的一些优势和特点,Redis 是一个开源的使用ANSI C语言编写、遵守 BSD 协议、支持网络、可基于内存、分布式存储数据库,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了Redis Cluster集群收缩主从节点的相关问题,包括了Cluster集群收缩概念、将6390主节点从集群中收缩、验证数据迁移过程是否导致数据异常等,希望对大家有帮助。

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了Redis实现排行榜及相同积分按时间排序,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,希望对大家有帮助。

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了关于原子操作中命令原子性的相关问题,包括了处理并发的方案、编程模型、多IO线程以及单命令的相关内容,下面一起看一下,希望对大家有帮助。

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了Redis实现排行榜及相同积分按时间排序,本文通过实例代码给大家介绍的非常详细,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了bitmap问题,Redis 为我们提供了位图这一数据结构,位图数据结构其实并不是一个全新的玩意,我们可以简单的认为就是个数组,只是里面的内容只能为0或1而已,希望对大家有帮助。

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了关于实现秒杀的相关内容,包括了秒杀逻辑、存在的链接超时、超卖和库存遗留的问题,下面一起来看一下,希望对大家有帮助。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Zend Studio 13.0.1
Powerful PHP integrated development environment

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
