search
HomeDatabaseRedisRedis master-slave synchronization principle

Redis master-slave synchronization principle

1. Foreword

In order to ensure the high availability of redis, a cluster mode is generally built, which is the master-slave mode.

The master-slave mode can ensure the high availability of redis, so how does redis ensure the data consistency of the master-slave server? Next, let's briefly talk about the principle of redis master (master) and slave (slave) synchronization.

2. Initial full synchronization

#When a redis server sends the salveof command to the master server for the first time, the redis slave server will perform a full synchronization , the synchronization steps are shown in the figure below:

Redis master-slave synchronization principle

  • The slave server sends the psync command to the master (the psync command sent at this time is psync ? -1 ), tell the master that I need to synchronize data.
  • After receiving the psync command, the master will execute the BGSAVE command to generate a snapshot of the RDB file.
  • After the generation is completed, the RDB file will be sent to the slave.
  • After the slave receives the file, it will load the RDB snapshot and change the database status to be consistent with the status of the master when executing BGSAVE.
  • The master will send all the write commands saved in the buffer to tell the slave that it can be synchronized.
  • The slave executes these write commands.

3. Command propagation

The slave has synchronized with the master, then if the subsequent master For a write operation, such as a simple set name redis, after the master executes the current command, it will send the current command to the slave for execution to achieve data consistency.

4. Re-copy

When the slave is disconnected and reconnected, it will be resynchronized. The resynchronization is divided into full synchronization and partial synchronization

First let’s take a look at the general trend of partial synchronization

Redis master-slave synchronization principle

  • ##When the slave disconnects and reconnects, the psync command will be sent to master.
  • The master will return a continue reply after receiving psync, indicating that the slave can perform partial synchronization.
  • master sends the write command after disconnection to slave
  • slave executes the write command.
In fact, after the slave sends the psync command to the master, the master still needs to judge whether to perform partial synchronization based on the following three points.

Let’s first introduce the three aspects:

  • Server running ID

Every After a redis server is started, a running ID will be generated.

When performing the initial synchronization, the master will tell the slave its ID, and the slave will record it. When the slave is disconnected and reconnected, it will try to perform the synchronization if it finds that the ID belongs to this master. Partial resync. A complete resynchronization will be performed when the ID is different from the currently connected master.

  • Replication offset

Replication offset includes master replication offset When the replication offset of the two databases is the same after the initial synchronization, then the master executes a write command, then the offset of the master is 1, the master will write the command to the slave, the slave executes it once, and the slave offset Measure 1 so that the versions will be consistent.

  • Replication backlog buffer

The replication backlog buffer is fixed and maintained by the master A first-in-first-out queue of length.

When the slave sends psync, it will also send its own offset to the master. When the data after the slave's offset still exists in the buffer, it will return continue to notify the slave. Perform a partial resynchronization.

When the data after the slave offset is no longer in the buffer, a complete resynchronization will be performed.

Combining the above three points, we can summarize:

  • When the slave disconnects and reconnects, it will send the psync command to the master.
  • The master will first judge the server running id. If it is the same as its own, it will judge the offset.
  • The master will judge its own bias. Whether the shift amount is consistent with the offset of the slave.
  • If it is inconsistent, the master will go to the buffer to determine whether the data after the slave's offset exists.
  • If it exists, a continue reply will be returned, indicating that the slave can perform partial synchronization.
  • master sends the write command after disconnection to slave
  • slave executes the write command.

5. The final process of master-slave synchronization

Redis master-slave synchronization principle

6. Conclusion

Recently, when the company needed it, I built a redis master-slave cluster and used sentinels to monitor and implement master-slave switching. Therefore, I sorted out the master-slave principle of redis based on "Redis Design and Implementation" to deepen my impression.

## Recommended tutorial: "

redis tutorial"

The above is the detailed content of Redis master-slave synchronization principle. 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
Redis: Beyond SQL - The NoSQL PerspectiveRedis: Beyond SQL - The NoSQL PerspectiveMay 08, 2025 am 12:25 AM

Redis goes beyond SQL databases because of its high performance and flexibility. 1) Redis achieves extremely fast read and write speed through memory storage. 2) It supports a variety of data structures, such as lists and collections, suitable for complex data processing. 3) Single-threaded model simplifies development, but high concurrency may become a bottleneck.

Redis: A Comparison to Traditional Database ServersRedis: A Comparison to Traditional Database ServersMay 07, 2025 am 12:09 AM

Redis is superior to traditional databases in high concurrency and low latency scenarios, but is not suitable for complex queries and transaction processing. 1.Redis uses memory storage, fast read and write speed, suitable for high concurrency and low latency requirements. 2. Traditional databases are based on disk, support complex queries and transaction processing, and have strong data consistency and persistence. 3. Redis is suitable as a supplement or substitute for traditional databases, but it needs to be selected according to specific business needs.

Redis: Introduction to a Powerful In-Memory Data StoreRedis: Introduction to a Powerful In-Memory Data StoreMay 06, 2025 am 12:08 AM

Redisisahigh-performancein-memorydatastructurestorethatexcelsinspeedandversatility.1)Itsupportsvariousdatastructureslikestrings,lists,andsets.2)Redisisanin-memorydatabasewithpersistenceoptions,ensuringfastperformanceanddatasafety.3)Itoffersatomicoper

Is Redis Primarily a Database?Is Redis Primarily a Database?May 05, 2025 am 12:07 AM

Redis is primarily a database, but it is more than just a database. 1. As a database, Redis supports persistence and is suitable for high-performance needs. 2. As a cache, Redis improves application response speed. 3. As a message broker, Redis supports publish-subscribe mode, suitable for real-time communication.

Redis: Database, Server, or Something Else?Redis: Database, Server, or Something Else?May 04, 2025 am 12:08 AM

Redisisamultifacetedtoolthatservesasadatabase,server,andmore.Itfunctionsasanin-memorydatastructurestore,supportsvariousdatastructures,andcanbeusedasacache,messagebroker,sessionstorage,andfordistributedlocking.

Redis: Unveiling Its Purpose and Key ApplicationsRedis: Unveiling Its Purpose and Key ApplicationsMay 03, 2025 am 12:11 AM

Redisisanopen-source,in-memorydatastructurestoreusedasadatabase,cache,andmessagebroker,excellinginspeedandversatility.Itiswidelyusedforcaching,real-timeanalytics,sessionmanagement,andleaderboardsduetoitssupportforvariousdatastructuresandfastdataacces

Redis: A Guide to Key-Value Data StoresRedis: A Guide to Key-Value Data StoresMay 02, 2025 am 12:10 AM

Redis is an open source memory data structure storage used as a database, cache and message broker, suitable for scenarios where fast response and high concurrency are required. 1.Redis uses memory to store data and provides microsecond read and write speed. 2. It supports a variety of data structures, such as strings, lists, collections, etc. 3. Redis realizes data persistence through RDB and AOF mechanisms. 4. Use single-threaded model and multiplexing technology to handle requests efficiently. 5. Performance optimization strategies include LRU algorithm and cluster mode.

Redis: Caching, Session Management, and MoreRedis: Caching, Session Management, and MoreMay 01, 2025 am 12:03 AM

Redis's functions mainly include cache, session management and other functions: 1) The cache function stores data through memory to improve reading speed, and is suitable for high-frequency access scenarios such as e-commerce websites; 2) The session management function shares session data in a distributed system and automatically cleans it through an expiration time mechanism; 3) Other functions such as publish-subscribe mode, distributed locks and counters, suitable for real-time message push and multi-threaded systems and other scenarios.

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

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 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor