기록하는 습관

[Error] RDB 백업 관련 에러 발생 본문

개발

[Error] RDB 백업 관련 에러 발생

로그뉴 2022. 7. 13. 11:37

local redis 사용중, RDB 백업 관련 에러 발생.

 

에러 메시지

MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist on disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error..

 

→ Redis를 캐시 용도로 사용중이면 백업 DB는 아래 옵션으로 off 해도 됨.

$ config set stop-writes-on-bgsave-error no

 

  • Redis는 persistent 를 위해서 BGSAVE로 rdb를 만들어낸다.
  • 그런데 기본적으로 이 BGSAVE가 실패하게 되면 Redis는 설정에 따라서 Write 커맨드를 전부 거부 해버린다.
  • 그래서 Redis를 단순한 캐시 용도로만 사용한다면 rdb 기능을 꺼버리면 된다.

 

참고

Comments