Commit e3d27a72 authored by antirez's avatar antirez
Browse files

Avoid division by zero issues in the automatically triggered AOF rewrite feature.

parent e087b6d7
...@@ -695,8 +695,9 @@ int serverCron(struct aeEventLoop *eventLoop, long long id, void *clientData) { ...@@ -695,8 +695,9 @@ int serverCron(struct aeEventLoop *eventLoop, long long id, void *clientData) {
if (server.auto_aofrewrite_perc && if (server.auto_aofrewrite_perc &&
server.appendonly_current_size > server.auto_aofrewrite_min_size) server.appendonly_current_size > server.auto_aofrewrite_min_size)
{ {
int growth = (server.appendonly_current_size*100/ int base = server.auto_aofrewrite_base_size ?
server.auto_aofrewrite_base_size); server.auto_aofrewrite_base_size : 1;
int growth = (server.appendonly_current_size*100/base);
if (growth >= server.auto_aofrewrite_perc) { if (growth >= server.auto_aofrewrite_perc) {
redisLog(REDIS_NOTICE,"Starting automatic rewriting of AOF on %d growth",growth); redisLog(REDIS_NOTICE,"Starting automatic rewriting of AOF on %d growth",growth);
rewriteAppendOnlyFileBackground(); rewriteAppendOnlyFileBackground();
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment