Redis: Can’t save in background: fork: Cannot allocate memory

Redis: “Can’t save in background: fork: Cannot allocate memory”

1
2
3
4
5
6
7
redis.clients.jedis.exceptions.JedisDataException: MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on disk. Commands that may modify the data set are disabled. 
for details about the error.
redis.clients.jedis.Protocol.processError(Protocol.java:127)
redis.clients.jedis.Protocol.process(Protocol.java:161)
redis.clients.jedis.Protocol.read(Protocol.java:215)

....

今天项目现场反馈说工单提交不了了,查看日志发现时 “Redis “MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on disk”的问题。这个错误信息是Redis客户端工具在保存数据时候抛出的异常信息。

网上查了一下,很多人都是建议“config set stop-writes-on-bgsave-error no”。这样做其实是不好的,这仅仅是让程序忽略了这个异常,使得程序能够继续往下运行,但实际上数据还是会存储到硬盘失败!:

百度了下 查到了有关linux下redis overcommit_memory的问题 ,提供了三种修改方案:

1
2
3
4
5
6
7
有三种方式修改内核参数方式,但要有root权限:

(1)编辑/etc/sysctl.conf ,改vm.overcommit_memory=1,然后sysctl -p 使配置文件生效

(2)sysctl vm.overcommit_memory=1

(3)echo 1 > /proc/sys/vm/overcommit_memory

修改后重启,总是提示 “Fatal error, can’t open config file”

1
2
3
redis-server stop
redis-server restart
redis-cli -h 127.0.0.1 -p 6379 shutdown

上面删除方法都试过了,无法停止。无奈只有重启解决之。

参考:Redis: “Can’t save in background: fork: Cannot allocate memory”