I have a Redis instance running in docker as slave. This instance always causing trouble by not closing open file handle. I can see the open file handle with command `lsof | grep deleted” and after several hours I would see hundreds of still open fine handles from redis, such as this
When I have hundreds of open file handle like this, df command would show 100% disk usage.
I have try config set save ""
, but still redis leaves open file handle open.
Right now, I have to log in into the server and issue redis-cli shutdown to restart the Redis instance.
This is silly workaround.
Is there better way to handle this? Thanks.