search
HomeDatabaseRedisHow to analyze the principle of sentry mode in Redis

This article will give you an in-depth understanding of the principles of the Redis sentinel mode, talk about what sentinel can do, start the sentinel method and the Sentinel workflow. I hope it will be helpful to everyone!

1. What is Redis sentinel?

Redis Sentinel is an official solution provided by Redis to achieve high availability. Redis Sentinel provides high availability for Redis. In practice, this means that using Sentinel you can create a Redis cluster that is resistant to certain types of failures and automatically implements failover without human intervention. [Related recommendation: Redis video tutorial]

2. What can sentinel do?

1. Monitor the health status of the redis cluster node (master replica) and sentinel node

2. Automatic failover: If the master fails, sentinel can implement failover and notify the customer Connect to the new master.

3. Notification: Through the API, notifications can be sent to administrators and developers. The monitored redis instance has failed

4. Configuration center: The client is connected to sentinel, and sentinel can access it. The master returns the node information to the client

3. Start sentinel method

1. redis-sentinel /path/to/sentinel.conf

2. redis-server /path/to/sentinel.conf --sentinel

sentinel.conf configuration instructions are as follows

# 配置需要监控的master节点信息 2代表法定人数 作用是表示需要最少需要多少个sentinel节点同意
#master节点不可达才标记为客观下线
#举例 5个sentinel实例 quorum设置成2 那么有2个sentinel节点认为master不可达,
#则其中一个会启动故障转移#如果至少有三个哨兵可到达,故障转移将被授权并实际启动。
sentinel monitor mymaster 127.0.0.1 6379 2 
#只需要配置master sentinel会自动检测slave信息
sentinel down-after-milliseconds mymaster 60000 
#如果master在指定时间内没有响应ping命令/或报错,则认为主观下线了。
sentinel failover-timeout mymaster 180000
sentinel parallel-syncs mymaster 1 
#指定故障转移的时候,同时支持多少个replica并行的与master同步数据,越小故障转移越久
#以上配置可以通过SENTINEL SET command.来实时修改。
sentinel monitor resque 192.168.1.3 6380 4
sentinel down-after-milliseconds resque 10000
sentinel failover-timeout resque 180000
sentinel parallel-syncs resque 5

Note:

Redis-sentinel must use configuration File startup, restart needs to be restored according to the configuration file, port 26379 is opened by default, and port access must be open between sentinels to facilitate mutual access.

4. Sentinel workflow

1. First, dynamic perception is achieved between sentinels through the pub/subscribe mechanism of redis.

How to analyze the principle of sentry mode in RedisHow to analyze the principle of sentry mode in Redis

Objective offline:

When the node that is subjectively offline is the master node, the sentinel node will pass the command sentinel is-masterdown-by-addr seeks the judgment of other sentinel nodes on the master node. When the number of quorum (the quorum configured in the sentinel configuration) is exceeded, the sentinel node will think that there is indeed a problem with the master node. In this way, it is objectively offline. Most of the sentinel nodes agree to the offline operation, which is said to be objectively offline.

Note that objective offline only takes effect for the master node, it will trigger failover

3, the master is offline, and failover is required

This is divided into two steps , first you need to select the sentinel master node, and perform redis failover through the sentinel master node.

First, sentinel elects the leader. Use the raft algorithm (state consensus algorithm).

Each Sentinel node can become a Leader. When a Sentinel node confirms that the master node of the redis cluster is subjectively offline, it will request other Sentinel nodes to elect itself as the Leader. If the requested Sentinel node has not agreed to the election request of other Sentinel nodes, it agrees to the request (the number of election votes is 1), otherwise it does not agree.

If the number of election votes obtained by a Sentinel node reaches the minimum number of votes for the Leader (the maximum value of quorum and the number of Sentinel nodes/2 1), the Sentinel node is elected as the Leader; otherwise, the election is repeated.

Core idea of ​​Raft: First come, first served, the minority obeys the majority.

After sentinel elects the master node, the sentinel master node needs to elect the redis cluster master node to build a new cluster relationship.

The basis for electing a new redis master node is:

1. The time to disconnect from sentinel. Filter the replica slaves

2 and replica priority found to be disconnected from the main sentinel server for more than the configured host timeout time down-after-milliseconds. Give priority to those with low replica-priority.

3. If the priorities are the same, the copy offset has been processed. The larger the value, the higher the priority, which is more in line with the business scenario function.

4. If the copy offsets are the same, look at the running ID. Prefer small ones.

After selecting the master node, start maintaining the cluster relationship.

1. Sentinel node, send slave no one command to the new master node to make it an independent node

2. Sentinel node, send slaveof ip port to other nodes, follow it to the master node

5. Summary

Through the above analysis, sentinel can achieve automatic failover through regular monitoring methods. However, sentinel still has some problems, such as the situation of a single master node. Under this situation, there is a possibility of data loss, and if the performance of a single machine is limited, there is no ability to expand horizontally.

The above is the detailed content of How to analyze the principle of sentry mode in Redis. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:亿速云. If there is any infringement, please contact admin@php.cn delete
es和redis区别es和redis区别Jul 06, 2019 pm 01:45 PM

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

一起来聊聊Redis有什么优势和特点一起来聊聊Redis有什么优势和特点May 16, 2022 pm 06:04 PM

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

实例详解Redis Cluster集群收缩主从节点实例详解Redis Cluster集群收缩主从节点Apr 21, 2022 pm 06:23 PM

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

Redis实现排行榜及相同积分按时间排序功能的实现Redis实现排行榜及相同积分按时间排序功能的实现Aug 22, 2022 pm 05:51 PM

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

详细解析Redis中命令的原子性详细解析Redis中命令的原子性Jun 01, 2022 am 11:58 AM

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

实例详解Redis实现排行榜及相同积分按时间排序功能的实现实例详解Redis实现排行榜及相同积分按时间排序功能的实现Aug 26, 2022 pm 02:09 PM

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

一文搞懂redis的bitmap一文搞懂redis的bitmapApr 27, 2022 pm 07:48 PM

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

一起聊聊Redis实现秒杀的问题一起聊聊Redis实现秒杀的问题May 27, 2022 am 11:40 AM

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

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)