redis持久化之aof

官网翻译:以日志的形式来记录每个写操作,将redis执行过的所有写指令记录下来(读操作不记录),只许追加文件但不可以改写文件,redis启动之初会读取该文件重新构建数据,换言之,redis重启的话,就根据日志文件的内容将写指令从前到后执行一次以完成数据的恢复工作


############################## APPEND ONLY MODE ###############################

# By default Redis asynchronously dumps the dataset on disk. This mode is
# good enough in many applications, but an issue with the Redis process or
# a power outage may result into a few minutes of writes lost (depending on
# the configured save points).
#
# The Append Only File is an alternative persistence mode that provides
# much better durability. For instance using the default data fsync policy
# (see later in the config file) Redis can lose just one second of writes in a
# dramatic event like a server power outage, or a single write if something
# wrong with the Redis process itself happens, but the operating system is
# still running correctly.
#
# AOF and RDB persistence can be enabled at the same time without problems.
# If the AOF is enabled on startup Redis will load the AOF, that is the file
# with the better durability guarantees.
#
# Please check http://redis.io/topics/persistence for more information.

appendonly no

改成yes即为开启aof方式

aof保存的是appendonly.aof文件

# The name of the append only file (default: "appendonly.aof")

appendfilename "appendonly.aof"

其中aof文件只有在你执行了存入之后,redis才会记录你的操作,然后产生aof文件





# The default is "everysec", as that's usually the right compromise between
# speed and data safety. It's up to you to understand if you can relax this to
# "no" that will let the operating system flush the output buffer when
# it wants, for better performances (but if you can live with the idea of
# some data loss consider the default persistence mode that's snapshotting),
# or on the contrary, use "always" that's very slow but a bit safer than
# everysec.
#
# More details please check the following article:
# http://antirez.com/post/redis-persistence-demystified.html
#
# If unsure, use "everysec".

# appendfsync always
appendfsync everysec
# appendfsync no


Appendfsync
Always:同步持久化 每次发生数据变更会被立即记录到磁盘 性能较差但数据完整性比较好
Everysec:出厂默认推荐,异步操作,每秒记录 如果一秒内宕机 有数据丢失
No

No-appendfsync-on-rewrite:重写时是否可以运用appendfsync,用默认no即可,保证数据安全性
Auto-aof-rewrite-min-size:设置重写的基准值(文件大小)
Auto-aof-rewrite-percentage:设置重写的基准值(比例)
优势:
每秒同步:appendfsync always 同步持久化 每次发生数据变更会被立即记录到磁盘 性能较差但数据完整性比较好
每修改同步:appendfsync everysec 异步操作,每秒记录  如果一秒内宕机,有数据丢失
不同步:appendfsync no 从不同步
劣势:
相同数据集的数据而言aof文件要远大于rdb文件,恢复数据速度慢于rdb
aof运行效率要慢于rdb,每秒同步策略效率较好,不同步效率和rdb相同

小结:
1:aof文件时一个只进行追加的日志文件
2:redis可以在aof文件体积变得过大时,自动的在后台对aof进行重写
3: aof文件有序地保存了对数据库执行的所有写入操作,这些写入操作以redis协议的格式保存,因此aof文件的内容具有易读性
一:对于相同的数据集来说,aof文件的体积通常要大于rdb文件的体积
二:根据所使用的不同的fsync策略,aof的速度可能会慢于rdb
总结:rdb持久化方式能够在指定的时间间隔能够对你的数据进行快照存储
aof持久化方式记录每次对服务器写的操作,当服务器重启的时候会重新执行这些命令来恢复原始的数据,aof命令以redis协议追加保存每次写的操作到文件末尾
redis还能对aof文件进行后台重写,使得aof文件的体积不至于过大
只做缓存:如果你只希望你的数据在服务器运行的时候存在,你也可以不使用任何持久化方式
同时开启两种持久化方式:在这种情况下,当redis重启的时候会优先载入aof文件来恢复原始的数据,因为在通常情况下,aof文件保存的数据集要比rdb文件保存的数据集更加完整
是否需要只开启aof方式?
建议不要,因为rdb更适合用于备份数据库(aof在不断变化不好备份),快速重启,而且不会有aof可能潜在的bug,留着作为一个后备的手段



aof正常恢复

启动:设置yes--修改默认的appendonly no,改为yes
将有数据的aof文件复制一份保存到对应目录(config get dir)
恢复:重启redis然后重新加载


使用aof文件恢复数据
redis-check-aof --fix appendonly.aof

询问
Cotinue?[y/N]:y
Successfully truncated AOF


aof异常恢复

启动:设置yes
备份被写坏的aof文件
修复:redis-check-aof --fix进行修复
恢复:重启redis然后重新加载


rewrite

是什么?

aof文件由于采取记录追加数据的方式进行备份,文件会越来越大,为了避免出现此种情况,新增了重写机制,当aof文件的大小超过所设定的阈值时,redis就会启动aof文件的内容压缩,只保留可以恢复数据的最小指令集,可以使用命令bgrewriteaof

重写原理:

aof文件持续增长而过大时,会fork出一条新进程来将文件重写【也是先写临时文件最后再rename】,遍历新进程的内存中数据,每条记录有一条的set语句.
重写aof文件的操作,并没有读取旧的aof文件,而是将整个内存中的数据库内容用命令的方式重写了一个新的aof文件,这点类似于快照.

触发条件和限制:

redis会记录上次重写时的aof大小,默认配置是当aof文件大小是上次rewrite后大小的一倍且文件大于64M时触发

配置文件位置
# Specify a percentage of zero in order to disable the automatic AOF
# rewrite feature.

auto-aof-rewrite-percentage 100
auto-aof-rewrite-min-size 64mb


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值