search
HomeDatabaseRedisRedis explains master-slave replication and sentry mode
Redis explains master-slave replication and sentry modeJan 26, 2021 am 09:45 AM
redismaster-slave replication

Redis explains master-slave replication and sentry mode

Recommendation (free): redis

##Article Directory

    Master-slave replication
    • Command
    • Configuration
  • Copy principle
    • Full copy
    • Incremental copy
    • Test
  • Nested master-slave
  • Sentinel mode
    • Configuration Sentinel
    • Test
##Master-slave replication


Master-slave replication

refers to copying the data of one Redis server to other Redis servers. The former is called the master node Master, and the latter is called the slave node Slave. It can only be copied one-way from the Master to Slave, generally Master mainly performs writing operations, and Slave mainly performs reading operations, achieving separation of reading and writing.

Function

Data redundancy: Master-slave replication realizes hot backup of data, which is a kind of data redundancy besides persistence. Way.
  1. Failure recovery: When a problem occurs on the master node, the slave node can provide services to achieve rapid failure recovery; it is actually a kind of service redundancy.
  2. Load balancing: Based on master-slave replication, combined with read-write separation, the master node can provide write services and the slave nodes can provide read services (that is, when writing Redis data, the application connects to the master node and reads Redis data When the application connects to the slave node), the server load is shared; especially in scenarios where there is less writing and more reading, sharing the read load through multiple slave nodes can greatly increase the concurrency of the Redis server.
  3. Cornerstone of high availability: In addition to the above functions, master-slave replication is also the basis for the implementation of sentinels and clusters. Therefore, master-slave replication is the basis of Redis high availability.
Command

##CommandFunctionslaveof host port will cause the slave server to turn off the replication function and transition from the slave server back to the master server. The original synchronized data set will not be discarded. info [, you can make the command return only a certain part of the information:

Configuration

Take a single machine with multiple services as an example (normally multiple machines with multiple services, but I only have one server)

First of all, each redis client The default is the host, which can be viewed through the info replication command.
Redis explains master-slave replication and sentry mode

Then we now need to open three clients at the same time to simulate one master and two slaves, so we need to modify the configuration:

  1. Modify the port number
  2. Modify pid name
  3. Modify log name
  4. Modify rdb name
  5. Set host connection (optional, use command line)

First Copy two configuration files as the slave configuration, and the master can use the default.
Redis explains master-slave replication and sentry mode
Take redis80.conf as an example to modify the above five configuration points in sequence. For 81, only the first four points are modified.
Redis explains master-slave replication and sentry mode
Redis explains master-slave replication and sentry mode
Redis explains master-slave replication and sentry mode
Redis explains master-slave replication and sentry mode## Then start them (79, 80, 81)

Redis explains master-slave replication and sentry mode
Redis explains master-slave replication and sentry mode
Redis explains master-slave replication and sentry mode Set master and slave:

    80 is set in the configuration file (permanent), view it directly:

  1. Redis explains master-slave replication and sentry mode##81 If there is no configuration, you can manually set the command line

  2. Redis explains master-slave replication and sentry mode
  3. View 79 (master) at this time:


Redis explains master-slave replication and sentry mode

Copy principle


Full copy

Every time the slave connects to the host, it will copy in full, copying all the data from the host to the slave.

Incremental copy

After the slave machine is connected to the master machine, the data updated later by the master machine will be synchronously updated to the slave machine only for this part of the data.

Test

The slave is read-only by default and will incrementally copy the data of the synchronization host:

  1. Redis explains master-slave replication and sentry mode
    Redis explains master-slave replication and sentry mode
    Redis explains master-slave replication and sentry mode Host downtime:

  2. Redis explains master-slave replication and sentry mode
    Redis explains master-slave replication and sentry mode
    Redis explains master-slave replication and sentry mode
    Redis explains master-slave replication and sentry mode# 3 .Slave machine downtime:
    Redis explains master-slave replication and sentry mode

    Redis explains master-slave replication and sentry mode
    Redis explains master-slave replication and sentry mode
    Redis explains master-slave replication and sentry mode
    Redis explains master-slave replication and sentry mode
    Redis explains master-slave replication and sentry mode#embedded Set master and slave

As shown in the figure 79 is the host of 80, and 80 is the host of 81. This is a nested master-slave relationship.
Redis explains master-slave replication and sentry mode
Redis explains master-slave replication and sentry mode
Redis explains master-slave replication and sentry mode

Redis explains master-slave replication and sentry mode
Redis explains master-slave replication and sentry mode
Redis explains master-slave replication and sentry mode
Redis explains master-slave replication and sentry mode

#Sentinel Mode


The above 80 upper position and nested master-slave are all entered by us on the command line manually.

The purpose is to avoid write operations after the host is down. During the window period, these require manual intervention.
Sentinel will run independently as an independent process. The principle is that Sentinel monitors multiple running Redis servers by sending commands and waiting for the Redis server to respond. If Sentinel detects that the host is offline, it will select a slave machine to "upper" (automatic fault migration) to become the new host. If the original host comes online, the original host will become the slave of the new host. The principle is to notify other servers through the publish and subscribe model, modify the configuration file, and thereby switch hosts.

Redis explains master-slave replication and sentry mode What if Sentinel goes down? Multiple sentinels can be used to monitor each other.

Redis explains master-slave replication and sentry mode
The picture is taken from https://www.jianshu.com/p/06ab9daf921d, intrusion and deletion

  • Subjective offline(Subjectively Down, SDOWN for short) refers to the offline judgment made by a single sentinel instance on the server.
  • Objective Down(Objectively Down, referred to as ODOWN) refers to multiple sentinel instances making subjective offline judgments on the same server, and through SENTINEL is-master-down- After the by-addr commands communicate with each other, the server is offline judged.
When the host objectively goes offline, Sentinel will vote for a new host (

The specific algorithm is omitted), perform automatic failover (failover), and notify other servers to switch through publish and subscribe. host.

Configuring Sentinel

First, there is a detailed annotated sentinel configuration in the installation directory:


Redis explains master-slave replication and sentry mode Create a new sentinel.conf to monitor 6379, The rest can be defaulted:

Redis explains master-slave replication and sentry mode Start Sentinel:

Redis explains master-slave replication and sentry mode
Redis explains master-slave replication and sentry mode

##Test

Redis explains master-slave replication and sentry mode
Redis explains master-slave replication and sentry mode
Redis explains master-slave replication and sentry mode
Redis explains master-slave replication and sentry mode
Redis explains master-slave replication and sentry mode
Redis explains master-slave replication and sentry mode
Redis explains master-slave replication and sentry mode# Multi-sentinel mode, Configure configuration files for different ports to open multiple Sentinel clients, and then follow the same pattern (
lazyRedis explains master-slave replication and sentry mode )

Transform the current server into a slave server of the specified server. If it is already a slave, it stops synchronizing the old master server, discards the old data set, and starts synchronizing the new master server. SLAVEOF NO ONE
section]The INFO command returns information about the Redis server in a format that is easy to understand and read. various information and statistical values. By giving the optional parameter section

The above is the detailed content of Redis explains master-slave replication and sentry mode. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:CSDN. 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中命令的原子性Jun 01, 2022 am 11:58 AM

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

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

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

实例详解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尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

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

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment