610 B
610 B
错误记录
redis.exceptions.ResponseError: MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist on disk.
- 现象:在执行命令时Redis报错,如下:
redis.exceptions.ResponseError: MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist on disk.
-
原因:Redis集群问题,根本原因需要检查Redis log并确认
-
解决方案:该方法为临时解决方案
对Redis进行如下设置:
redis_cli.config_set("stop-writes-on-bgsave-error", "no")