search
HomeDatabaseRedisExample analysis of high availability in Redis sentry mode

    1. Preface

    Redis high availability has two modes: Sentinel mode and Cluster mode, this article builds one master, two slaves and three sentinelsRedis high availability service based on the sentinel mode.

    1. Goals and gains

    One master, two slaves and three sentinelsRedis service can basically meet the high availability requirements of small and medium-sized projects. Use Supervisor to monitor and manage Redis instances. . Through this article, the following goals will be achieved:

    • Sentinel mode service planning and construction

    Sentinel mode service is compared to a single machine The version service is more reliable and suitable for scenarios where reading and writing are separated, the amount of data is not large, and reliability and stability are required.

    • Client integration and read-write separation

    Connect to the sentinel mode through the Spring framework to complete the production environment Common operations.

    2. Port planning

    Port planning is the first step to complete this solution.

    Example analysis of high availability in Redis sentry mode

    2. Single-machine simulation

    Single-machine simulation is to simulate operations on a physical machine or virtual machine to restore the intermediate process of the original solution as much as possible. Usually Used during the learning or development phase.

    In order to simplify the operation, the Redis service makes the following conventions: data is not persisted to disk; service instances run as foreground processes; node configuration files use the default configuration file as a template; there is no password verification.

    (1) Service planning

    1. Redis instance

    When the service is started for the first time, it clearly knows which node is the master node. When the service is running for a long time and When a master-slave switch occurs, it is not possible to display which node is the master node and needs to be queried indirectly through the command line.

    Node Host Port Role Additional configuration
    node01 127.0.0.1 6380 As the master service when started for the first time
    node02 127.0.0.1 6381 As a slave service when started for the first time replicaof 127.0.0.1 6380
    node03 127.0.0.1 6382 As a slave service when started for the first time replicaof 127.0. 0.1 6380

    Additional configuration refers to the new configuration in the node configuration file when the Redis service instance is started for the first time.

    2. Sentinel Service

    There is no master-slave distinction between Sentinel service nodes, and all nodes are on an equal footing. When an exception occurs in the main service, the sentinel service will trigger the voting strategy and select candidates from the slave nodes of the Redis instance as the new main service.

    Node Host Port Additional configuration
    node01 127.0.0.1 26380 sentinel monitor mymaster 127.0.0.1 6380 2
    node02 127.0.0.1 26381 sentinel monitor mymaster 127.0.0.1 6380 2
    node03 127.0.0.1 26382 sentinel monitor mymaster 127.0.0.1 6380 2

    (2) Service configuration

    1. Redis instance

    The initial configuration file of the node uses the default configuration file as a template.

    After node01 and node02 initialize the configuration files, the master-slave relationship between nodes is displayed and the following configuration is added:

    replicaof 127.0.0.1 6380
    2. Sentinel service

    The initial configuration file of the node is as follows: The default configuration file is a template.

    After node01, node02, and node03 initialize the configuration files, add the following configuration:

    sentinel monitor mymaster 127.0.0.1 6381 2

    (3) Service management

    When testing or learning, it is recommended to use the foreground process to manage services. It is convenient to simulate a single point of failure, view logs and observe master-slave switching.

    Under production conditions, it is recommended to use Supervisor to manage the service, which is not only easy to manage but also can automatically restart the service after abnormal termination. Three physical machines are used in high availability scenarios.

    1. Redis instance
    /usr/local/redis/bin/redis-server /usr/local/redis/conf/ms/redis80.conf --port 6380 --save '' --daemonize no 
    /usr/local/redis/bin/redis-server /usr/local/redis/conf/ms/redis81.conf --port 6381 --save '' --daemonize no
    /usr/local/redis/bin/redis-server /usr/local/redis/conf/ms/redis82.conf --port 6382 --save '' --daemonize no
    2. Sentinel service
    /usr/local/redis/bin/redis-sentinel /usr/local/redis/conf/ms/sentinel280.conf --port 26380 --daemonize no
    /usr/local/redis/bin/redis-sentinel /usr/local/redis/conf/ms/sentinel281.conf --port 26381 --daemonize no
    /usr/local/redis/bin/redis-sentinel /usr/local/redis/conf/ms/sentinel282.conf --port 26382 --daemonize no

    3. Client integration

    Client implementation refers to the integration based on SpringBoot. Two-step implementation: first, complete the integration as the basis; second, add new features based on production needs.

    (1) Basic integration

    The content of basic integration is to use Java client to connect to the high-availability sentinel mode Redis service to achieve the requirements for normal operation of single-node failure services.

    1. Global configuration file

    The configuration information added to the global configuration file is: masterThe parameter is the sentinel service name, here is the default value;nodesThe parameter is the sentinel service list (not the Redis instance service list); databaseThe parameter is the database.

    spring:
      redis:
        database: 0
        sentinel:
          nodes: 192.168.181.171:26380,192.168.181.171:26381,192.168.181.171:26382
          master: mymaster
    2. Integrated configuration

    is integrated into the SpringBoot system. The core is to create a LettuceConnectionFactory connection factory. Through the Redis connection factory, it can be smoothly inherited into other parts of the Spring system. frame.

    @Configuration
    public class RedisSentinelConfig {
        @Autowired
        private RedisProperties redisProperties;
        
        @Bean
        public RedisConnectionFactory lettuceConnectionFactory() {
            RedisProperties.Sentinel sentinel = redisProperties.getSentinel();
            HashSet<String> nodes = new HashSet<>(sentinel.getNodes());
            String master = sentinel.getMaster();
            RedisSentinelConfiguration config = new RedisSentinelConfiguration(master, nodes);
            config.setDatabase(redisProperties.getDatabase());
            return new LettuceConnectionFactory(config);
        }
    }

    (2) Read-write separation

    Basic integration only implements the process of high-availability Redis service. In the production environment, other configurations still need to be added: modify the custom connection database serial number; authorize the connection ;Connection pool configuration; read-write separation.

    Under the premise of high availability, the feature of separation of reading and writing is derived. The main library completes the write request; the slave library completes the read request (the slave library does not allow writing).

    @Bean
    public LettuceClientConfigurationBuilderCustomizer lettuceClientCustomizer() {
        // 配置读写分离
        return builder -> builder.readFrom(ReadFrom.REPLICA);
    }

    The above is the detailed content of Example analysis of high availability in Redis sentry mode. 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

    Hot Tools

    Notepad++7.3.1

    Notepad++7.3.1

    Easy-to-use and free code editor

    Atom editor mac version download

    Atom editor mac version download

    The most popular open source editor

    Dreamweaver Mac version

    Dreamweaver Mac version

    Visual web development tools

    Dreamweaver CS6

    Dreamweaver CS6

    Visual web development tools

    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