redisLog(REDIS_NOTICE,"Asynchronous AOF fsync is taking too long (disk is busy?). Writing the AOF buffer without waiting for fsync to complete, this may slow down Redis.");
redisLog(REDIS_NOTICE,"Asynchronous AOF fsync is taking too long (disk is busy?). Writing the AOF buffer without waiting for fsync to complete, this may slow down Redis.");
}
}
}
}
/* If you are following this code path, then we are going to write so
* set reset the postponed flush sentinel to zero. */
server.aof_flush_postponed_start=0;
/* We want to perform a single write. This should be guaranteed atomic
/* We want to perform a single write. This should be guaranteed atomic
* at least if the filesystem we are writing is a real physical one.
* at least if the filesystem we are writing is a real physical one.
* While this will save us against the server being killed I don't think
* While this will save us against the server being killed I don't think
* there is much to do about the whole server stopping for power problems
* there is much to do about the whole server stopping for power problems