For some reasons, we may need to replace the redis master machine. We can stop the machine and replace it, but that may affect the user experience. This article briefly describes how to migrate without downtime.
(Recommended: redis video tutorial)
System environment
CentOS 6.3 x64
redis- server 2.6.16
Two machines s1\s2
Operation steps
#1. We start a redis instance on the new redis server, The configuration is the same as the master configuration. The difference is that the configuration file is modified and enabled slave-read-only no,
so that the slave can write, because "Since Redis 2.6 by default slaves are read-only."
2. Make the new redis a slave: redis 127.0.0.1:6379>SLAVEOF s1 6379
Then you can check the log on s2. There will be a lot of synchronization information. You can also use the info command to check the status.
3. After s2 completely synchronizes the data of s1, we modify the redis ip of the game app to the ip of s2.
4. Check whether the game is normal.
5. After there are no problems with the above, execute redis 127.0.0.1:6379> SLAVEOF NO ONE on s2
6. Offline s1
PS:
SLAVEOF host port
The SLAVEOF command is used to dynamically modify the behavior of the replication function while Redis is running.
By executing the SLAVEOF host port command, the current server can be converted into a slave server of the specified server.
If the current server is already a slave server of a master server, executing SLAVEOF host port will cause the current server to stop synchronizing the old master server, discard the old data set, and start synchronizing the new one. The main server performs synchronization.
In addition, executing the command SLAVEOF NO ONE on a slave server 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.
Using the feature of "SLAVEOF NO ONE will not discard the synchronized data set", when the main server fails, the slave server can be used as the new main server, thereby achieving uninterrupted operation.
Available versions:
>= 1.0.0
Time complexity:
SLAVEOF host port, O(N), N is to be synchronized amount of data.
SLAVEOF NO ONE, O(1).
Return value:
Always returns OK.
For more redis knowledge, please pay attention to the redis introductory tutorial column.
The above is the detailed content of Switch Redis master-slave instances online. For more information, please follow other related articles on the PHP Chinese website!

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 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.

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

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.

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

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

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'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.


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

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

Hot Article

Hot Tools

SublimeText3 English version
Recommended: Win version, supports code prompts!

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

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.

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