Why is persistence needed?
Normally all redis data is stored in memory. Once the database fails and is restarted, all data will be lost, even in redis cluster or redis The recovery of master-slave synchronization data in sentinel mode still takes some time.
The persistence function can effectively avoid data loss caused by process exit. Data recovery can be achieved by using the previously persisted files during the next restart.
After using Redis persistence, the data will be stored on the disk. When performing incremental synchronization of the database, the time required is much less than that of performing full synchronization. Data recovery from failures plays a very important role in a production environment!
There are two options for Redis data persistence
There are two options for Redis persistence:
RDB is a snapshot data storage that periodically saves all Redis data at the current point in time to disk.
AOF is an append-based storage method that records Redis write operations to the disk in real time.
What are the differences between these two solutions? Let me explain them one by one~
1. RDB persistence
When the writing of Redis triggers the RDB persistence condition (it can also be triggered by manually executing the dgsave command), the Redis main process forks a child process to create a temporary RDB storage file. After the file creation is completed, the temporary File rename replaces the original RDB file. The RDB file is a single file that is very suitable for disaster recovery backup and recovery of data. Restoring the database through the RDB file takes less time. Usually, it only takes about 20 seconds to load a 1G snapshot file into the memory.
Disadvantages:
RDB persistence will only save Redis data periodically, when the next storage has not been triggered yet If Redis crashes, all data in the memory will be lost.
In addition, when the amount of data is large, the operation of forking the sub-process consumes a lot of CPU. As shown in the monitoring chart below, the RDB persistence triggered every 1800s will consume a lot of CPU for Redis. Soaring. Second-long blocking may occur during the fork child process.
Parameters:
save option If configured as empty save "", it will be closed RDB persistence. You can configure multiple trigger conditions for turning on RDB persistence. For example, 1 write triggers a snapshot within 900 seconds/10 writes triggers a snapshot within 300 seconds. This can be freely configured according to your own Redis writing conditions. Balance performance with data security.
It is recommended to enable stop-writes-on-bgsave-error. When an error occurs in redis bgsave, the client's request will be rejected. Bgsave failure is usually caused by insufficient disk or memory space, and monitoring is required to improve data security.
2. AOF persistence
AOF achieves persistence by saving commands for Redis write operations. Using AOF for persistence, the security of Redis data will be greatly improved. Improved, up to 1 second of data loss in case of abnormal downtime. The write operations of Redis are recorded in the AOF file. The format of the file is clear and easy to understand and can be easily modified for convenient data reconstruction.
Disadvantages:
As redis writes increase, the AOF storage file will become larger and larger, which will affect the database Data recovery time and disk space, etc., so we need to configure AOF rewriting to reduce the size of the AOF file. Here we can use the default two trigger condition configurations or we can manually call the BGREWRITEAOF command to trigger.
Parameters:
appendonly sets whether to enable AOF persistence.
appendfsync has three persistence modes: always/everysec/no, which takes into account the speed and security of data storage and is configured as everysec, which synchronizes data to the disk every second.
3. Comparison of the advantages and disadvantages of RDB and AOF persistence
Both methods have their own merits. Let’s compare the two redis data persistence methods:
4. When selecting
Redis will first check whether the AOF file exists, and if it does not exist, try to load the RDB file.
Under different circumstances, depending on the amount of data, application requirements for data security, budget constraints, etc., various persistence strategies will be used in actual production environments. This sentence can be rewritten as: You can choose not to use persistence, or you can choose to use separate RDB or AOF persistence, or you can enable RDB and AOF persistence at the same time.
PS: The choice of persistence must be considered together with the master-slave strategy of Redis, because master-slave replication and persistence also have the function of data backup, and the host master and slave slave can independently choose the persistence solution.
The above is the detailed content of What are the persistence methods of Redis?. For more information, please follow other related articles on the PHP Chinese website!

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

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

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

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

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

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

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

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


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

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver Mac version
Visual web development tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

Atom editor mac version download
The most popular open source editor

SublimeText3 Linux new version
SublimeText3 Linux latest version
