diff options
author | antirez <antirez@gmail.com> | 2017-12-14 12:19:30 +0100 |
---|---|---|
committer | antirez <antirez@gmail.com> | 2017-12-14 12:19:36 +0100 |
commit | 12e65a424c209bd922dc742f396f1b76bc6350d9 (patch) | |
tree | 0a36a9e02a98a27497432f5454a0b4d3c1d7999b | |
parent | 5182dcd6452ba3f03196124bcccfa8f80dd61fd1 (diff) | |
download | redis-12e65a424c209bd922dc742f396f1b76bc6350d9.tar.gz |
safe_write -> aofWrite. Function commented.
Related to #4498.
-rw-r--r-- | src/aof.c | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -266,7 +266,14 @@ int startAppendOnly(void) { return C_OK; } -ssize_t safe_write(int fd, const char *buf, size_t len) { +/* This is a wrapper to the write syscall in order to retry on short writes + * or if the syscall gets interrupted. It could look strange that we retry + * on short writes given that we are writing to a block device: normally if + * the first call is short, there is a end-of-space condition, so the next + * is likely to fail. However apparently in modern systems this is no longer + * true, and in general it looks just more resilient to retry the write. If + * there is an actual error condition we'll get it at the next try. */ +ssize_t aofWrite(int fd, const char *buf, size_t len) { ssize_t nwritten = 0, totwritten = 0; while(len) { @@ -344,7 +351,7 @@ void flushAppendOnlyFile(int force) { * or alike */ latencyStartMonitor(latency); - nwritten = safe_write(server.aof_fd,server.aof_buf,sdslen(server.aof_buf)); + nwritten = aofWrite(server.aof_fd,server.aof_buf,sdslen(server.aof_buf)); latencyEndMonitor(latency); /* We want to capture different events for delayed writes: * when the delay happens with a pending fsync, or with a saving child |