10 #include <sys/resource.h>
13 void aofUpdateCurrentSize(void);
15 void aof_background_fsync(int fd
) {
16 bioCreateBackgroundJob(REDIS_BIO_AOF_FSYNC
,(void*)(long)fd
,NULL
,NULL
);
19 /* Called when the user switches from "appendonly yes" to "appendonly no"
20 * at runtime using the CONFIG command. */
21 void stopAppendOnly(void) {
22 flushAppendOnlyFile(1);
23 aof_fsync(server
.appendfd
);
24 close(server
.appendfd
);
27 server
.appendseldb
= -1;
28 server
.appendonly
= 0;
29 /* rewrite operation in progress? kill it, wait child exit */
30 if (server
.bgrewritechildpid
!= -1) {
33 if (kill(server
.bgrewritechildpid
,SIGKILL
) != -1)
34 wait3(&statloc
,0,NULL
);
35 /* reset the buffer accumulating changes while the child saves */
36 sdsfree(server
.bgrewritebuf
);
37 server
.bgrewritebuf
= sdsempty();
38 server
.bgrewritechildpid
= -1;
42 /* Called when the user switches from "appendonly no" to "appendonly yes"
43 * at runtime using the CONFIG command. */
44 int startAppendOnly(void) {
45 server
.appendonly
= 1;
46 server
.lastfsync
= time(NULL
);
47 server
.appendfd
= open(server
.appendfilename
,O_WRONLY
|O_APPEND
|O_CREAT
,0644);
48 if (server
.appendfd
== -1) {
49 redisLog(REDIS_WARNING
,"Used tried to switch on AOF via CONFIG, but I can't open the AOF file: %s",strerror(errno
));
52 if (rewriteAppendOnlyFileBackground() == REDIS_ERR
) {
53 server
.appendonly
= 0;
54 close(server
.appendfd
);
55 redisLog(REDIS_WARNING
,"User tried turning on AOF with CONFIG SET but I can't trigger a background AOF rewrite operation. Check the above logs for more info about the error.");
61 /* Write the append only file buffer on disk.
63 * Since we are required to write the AOF before replying to the client,
64 * and the only way the client socket can get a write is entering when the
65 * the event loop, we accumulate all the AOF writes in a memory
66 * buffer and write it on disk using this function just before entering
67 * the event loop again.
69 * About the 'force' argument:
71 * When the fsync policy is set to 'everysec' we may delay the flush if there
72 * is still an fsync() going on in the background thread, since for instance
73 * on Linux write(2) will be blocked by the background fsync anyway.
74 * When this happens we remember that there is some aof buffer to be
75 * flushed ASAP, and will try to do that in the serverCron() function.
77 * However if force is set to 1 we'll write regardless of the background
79 void flushAppendOnlyFile(int force
) {
81 int sync_in_progress
= 0;
83 if (sdslen(server
.aofbuf
) == 0) return;
85 if (server
.appendfsync
== APPENDFSYNC_EVERYSEC
)
86 sync_in_progress
= bioPendingJobsOfType(REDIS_BIO_AOF_FSYNC
) != 0;
88 if (server
.appendfsync
== APPENDFSYNC_EVERYSEC
&& !force
) {
89 /* With this append fsync policy we do background fsyncing.
90 * If the fsync is still in progress we can try to delay
91 * the write for a couple of seconds. */
92 if (sync_in_progress
) {
93 if (server
.aof_flush_postponed_start
== 0) {
94 /* No previous write postponinig, remember that we are
95 * postponing the flush and return. */
96 server
.aof_flush_postponed_start
= server
.unixtime
;
98 } else if (server
.unixtime
- server
.aof_flush_postponed_start
< 2) {
99 /* We were already waiting for fsync to finish, but for less
100 * than two seconds this is still ok. Postpone again. */
103 /* Otherwise fall trough, and go write since we can't wait
104 * over two seconds. */
105 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.");
108 /* If you are following this code path, then we are going to write so
109 * set reset the postponed flush sentinel to zero. */
110 server
.aof_flush_postponed_start
= 0;
112 /* We want to perform a single write. This should be guaranteed atomic
113 * at least if the filesystem we are writing is a real physical one.
114 * While this will save us against the server being killed I don't think
115 * there is much to do about the whole server stopping for power problems
117 nwritten
= write(server
.appendfd
,server
.aofbuf
,sdslen(server
.aofbuf
));
118 if (nwritten
!= (signed)sdslen(server
.aofbuf
)) {
119 /* Ooops, we are in troubles. The best thing to do for now is
120 * aborting instead of giving the illusion that everything is
121 * working as expected. */
122 if (nwritten
== -1) {
123 redisLog(REDIS_WARNING
,"Exiting on error writing to the append-only file: %s",strerror(errno
));
125 redisLog(REDIS_WARNING
,"Exiting on short write while writing to the append-only file: %s",strerror(errno
));
129 server
.appendonly_current_size
+= nwritten
;
131 /* Re-use AOF buffer when it is small enough. The maximum comes from the
132 * arena size of 4k minus some overhead (but is otherwise arbitrary). */
133 if ((sdslen(server
.aofbuf
)+sdsavail(server
.aofbuf
)) < 4000) {
134 sdsclear(server
.aofbuf
);
136 sdsfree(server
.aofbuf
);
137 server
.aofbuf
= sdsempty();
140 /* Don't fsync if no-appendfsync-on-rewrite is set to yes and there are
141 * children doing I/O in the background. */
142 if (server
.no_appendfsync_on_rewrite
&&
143 (server
.bgrewritechildpid
!= -1 || server
.bgsavechildpid
!= -1))
146 /* Perform the fsync if needed. */
147 if (server
.appendfsync
== APPENDFSYNC_ALWAYS
) {
148 /* aof_fsync is defined as fdatasync() for Linux in order to avoid
149 * flushing metadata. */
150 aof_fsync(server
.appendfd
); /* Let's try to get this data on the disk */
151 server
.lastfsync
= server
.unixtime
;
152 } else if ((server
.appendfsync
== APPENDFSYNC_EVERYSEC
&&
153 server
.unixtime
> server
.lastfsync
)) {
154 if (!sync_in_progress
) aof_background_fsync(server
.appendfd
);
155 server
.lastfsync
= server
.unixtime
;
159 sds
catAppendOnlyGenericCommand(sds dst
, int argc
, robj
**argv
) {
165 len
= 1+ll2string(buf
+1,sizeof(buf
)-1,argc
);
168 dst
= sdscatlen(dst
,buf
,len
);
170 for (j
= 0; j
< argc
; j
++) {
171 o
= getDecodedObject(argv
[j
]);
173 len
= 1+ll2string(buf
+1,sizeof(buf
)-1,sdslen(o
->ptr
));
176 dst
= sdscatlen(dst
,buf
,len
);
177 dst
= sdscatlen(dst
,o
->ptr
,sdslen(o
->ptr
));
178 dst
= sdscatlen(dst
,"\r\n",2);
184 /* Create the sds representation of an PEXPIREAT command, using
185 * 'seconds' as time to live and 'cmd' to understand what command
186 * we are translating into a PEXPIREAT.
188 * This command is used in order to translate EXPIRE and PEXPIRE commands
189 * into PEXPIREAT command so that we retain precision in the append only
190 * file, and the time is always absolute and not relative. */
191 sds
catAppendOnlyExpireAtCommand(sds buf
, struct redisCommand
*cmd
, robj
*key
, robj
*seconds
) {
195 /* Make sure we can use strtol */
196 seconds
= getDecodedObject(seconds
);
197 when
= strtoll(seconds
->ptr
,NULL
,10);
198 /* Convert argument into milliseconds for EXPIRE, SETEX, EXPIREAT */
199 if (cmd
->proc
== expireCommand
|| cmd
->proc
== setexCommand
||
200 cmd
->proc
== expireatCommand
)
204 /* Convert into absolute time for EXPIRE, PEXPIRE, SETEX, PSETEX */
205 if (cmd
->proc
== expireCommand
|| cmd
->proc
== pexpireCommand
||
206 cmd
->proc
== setexCommand
|| cmd
->proc
== psetexCommand
)
210 decrRefCount(seconds
);
212 argv
[0] = createStringObject("PEXPIREAT",9);
214 argv
[2] = createStringObjectFromLongLong(when
);
215 buf
= catAppendOnlyGenericCommand(buf
, 3, argv
);
216 decrRefCount(argv
[0]);
217 decrRefCount(argv
[2]);
221 void feedAppendOnlyFile(struct redisCommand
*cmd
, int dictid
, robj
**argv
, int argc
) {
222 sds buf
= sdsempty();
225 /* The DB this command was targetting is not the same as the last command
226 * we appendend. To issue a SELECT command is needed. */
227 if (dictid
!= server
.appendseldb
) {
230 snprintf(seldb
,sizeof(seldb
),"%d",dictid
);
231 buf
= sdscatprintf(buf
,"*2\r\n$6\r\nSELECT\r\n$%lu\r\n%s\r\n",
232 (unsigned long)strlen(seldb
),seldb
);
233 server
.appendseldb
= dictid
;
236 if (cmd
->proc
== expireCommand
|| cmd
->proc
== pexpireCommand
||
237 cmd
->proc
== expireatCommand
) {
238 /* Translate EXPIRE/PEXPIRE/EXPIREAT into PEXPIREAT */
239 buf
= catAppendOnlyExpireAtCommand(buf
,cmd
,argv
[1],argv
[2]);
240 } else if (cmd
->proc
== setexCommand
|| cmd
->proc
== psetexCommand
) {
241 /* Translate SETEX/PSETEX to SET and PEXPIREAT */
242 tmpargv
[0] = createStringObject("SET",3);
243 tmpargv
[1] = argv
[1];
244 tmpargv
[2] = argv
[3];
245 buf
= catAppendOnlyGenericCommand(buf
,3,tmpargv
);
246 decrRefCount(tmpargv
[0]);
247 buf
= catAppendOnlyExpireAtCommand(buf
,cmd
,argv
[1],argv
[2]);
249 /* All the other commands don't need translation or need the
250 * same translation already operated in the command vector
251 * for the replication itself. */
252 buf
= catAppendOnlyGenericCommand(buf
,argc
,argv
);
255 /* Append to the AOF buffer. This will be flushed on disk just before
256 * of re-entering the event loop, so before the client will get a
257 * positive reply about the operation performed. */
258 server
.aofbuf
= sdscatlen(server
.aofbuf
,buf
,sdslen(buf
));
260 /* If a background append only file rewriting is in progress we want to
261 * accumulate the differences between the child DB and the current one
262 * in a buffer, so that when the child process will do its work we
263 * can append the differences to the new append only file. */
264 if (server
.bgrewritechildpid
!= -1)
265 server
.bgrewritebuf
= sdscatlen(server
.bgrewritebuf
,buf
,sdslen(buf
));
270 /* In Redis commands are always executed in the context of a client, so in
271 * order to load the append only file we need to create a fake client. */
272 struct redisClient
*createFakeClient(void) {
273 struct redisClient
*c
= zmalloc(sizeof(*c
));
277 c
->querybuf
= sdsempty();
282 /* We set the fake client as a slave waiting for the synchronization
283 * so that Redis will not try to send replies to this client. */
284 c
->replstate
= REDIS_REPL_WAIT_BGSAVE_START
;
285 c
->reply
= listCreate();
286 c
->watched_keys
= listCreate();
287 listSetFreeMethod(c
->reply
,decrRefCount
);
288 listSetDupMethod(c
->reply
,dupClientReplyValue
);
289 initClientMultiState(c
);
293 void freeFakeClient(struct redisClient
*c
) {
294 sdsfree(c
->querybuf
);
295 listRelease(c
->reply
);
296 listRelease(c
->watched_keys
);
297 freeClientMultiState(c
);
301 /* Replay the append log file. On error REDIS_OK is returned. On non fatal
302 * error (the append only file is zero-length) REDIS_ERR is returned. On
303 * fatal error an error message is logged and the program exists. */
304 int loadAppendOnlyFile(char *filename
) {
305 struct redisClient
*fakeClient
;
306 FILE *fp
= fopen(filename
,"r");
307 struct redis_stat sb
;
308 int appendonly
= server
.appendonly
;
311 if (fp
&& redis_fstat(fileno(fp
),&sb
) != -1 && sb
.st_size
== 0) {
312 server
.appendonly_current_size
= 0;
318 redisLog(REDIS_WARNING
,"Fatal error: can't open the append log file for reading: %s",strerror(errno
));
322 /* Temporarily disable AOF, to prevent EXEC from feeding a MULTI
323 * to the same file we're about to read. */
324 server
.appendonly
= 0;
326 fakeClient
= createFakeClient();
335 struct redisCommand
*cmd
;
337 /* Serve the clients from time to time */
338 if (!(loops
++ % 1000)) {
339 loadingProgress(ftello(fp
));
340 aeProcessEvents(server
.el
, AE_FILE_EVENTS
|AE_DONT_WAIT
);
343 if (fgets(buf
,sizeof(buf
),fp
) == NULL
) {
349 if (buf
[0] != '*') goto fmterr
;
351 if (argc
< 1) goto fmterr
;
353 argv
= zmalloc(sizeof(robj
*)*argc
);
354 for (j
= 0; j
< argc
; j
++) {
355 if (fgets(buf
,sizeof(buf
),fp
) == NULL
) goto readerr
;
356 if (buf
[0] != '$') goto fmterr
;
357 len
= strtol(buf
+1,NULL
,10);
358 argsds
= sdsnewlen(NULL
,len
);
359 if (len
&& fread(argsds
,len
,1,fp
) == 0) goto fmterr
;
360 argv
[j
] = createObject(REDIS_STRING
,argsds
);
361 if (fread(buf
,2,1,fp
) == 0) goto fmterr
; /* discard CRLF */
365 cmd
= lookupCommand(argv
[0]->ptr
);
367 redisLog(REDIS_WARNING
,"Unknown command '%s' reading the append only file", argv
[0]->ptr
);
370 /* Run the command in the context of a fake client */
371 fakeClient
->argc
= argc
;
372 fakeClient
->argv
= argv
;
373 cmd
->proc(fakeClient
);
375 /* The fake client should not have a reply */
376 redisAssert(fakeClient
->bufpos
== 0 && listLength(fakeClient
->reply
) == 0);
377 /* The fake client should never get blocked */
378 redisAssert((fakeClient
->flags
& REDIS_BLOCKED
) == 0);
380 /* Clean up. Command code may have changed argv/argc so we use the
381 * argv/argc of the client instead of the local variables. */
382 for (j
= 0; j
< fakeClient
->argc
; j
++)
383 decrRefCount(fakeClient
->argv
[j
]);
384 zfree(fakeClient
->argv
);
387 /* This point can only be reached when EOF is reached without errors.
388 * If the client is in the middle of a MULTI/EXEC, log error and quit. */
389 if (fakeClient
->flags
& REDIS_MULTI
) goto readerr
;
392 freeFakeClient(fakeClient
);
393 server
.appendonly
= appendonly
;
395 aofUpdateCurrentSize();
396 server
.auto_aofrewrite_base_size
= server
.appendonly_current_size
;
401 redisLog(REDIS_WARNING
,"Unexpected end of file reading the append only file");
403 redisLog(REDIS_WARNING
,"Unrecoverable error reading the append only file: %s", strerror(errno
));
407 redisLog(REDIS_WARNING
,"Bad file format reading the append only file: make a backup of your AOF file, then use ./redis-check-aof --fix <filename>");
411 /* Delegate writing an object to writing a bulk string or bulk long long.
412 * This is not placed in rio.c since that adds the redis.h dependency. */
413 int rioWriteBulkObject(rio
*r
, robj
*obj
) {
414 /* Avoid using getDecodedObject to help copy-on-write (we are often
415 * in a child process when this function is called). */
416 if (obj
->encoding
== REDIS_ENCODING_INT
) {
417 return rioWriteBulkLongLong(r
,(long)obj
->ptr
);
418 } else if (obj
->encoding
== REDIS_ENCODING_RAW
) {
419 return rioWriteBulkString(r
,obj
->ptr
,sdslen(obj
->ptr
));
421 redisPanic("Unknown string encoding");
425 /* Emit the commands needed to rebuild a list object.
426 * The function returns 0 on error, 1 on success. */
427 int rewriteListObject(rio
*r
, robj
*key
, robj
*o
) {
428 long long count
= 0, items
= listTypeLength(o
);
430 if (o
->encoding
== REDIS_ENCODING_ZIPLIST
) {
431 unsigned char *zl
= o
->ptr
;
432 unsigned char *p
= ziplistIndex(zl
,0);
437 while(ziplistGet(p
,&vstr
,&vlen
,&vlong
)) {
439 int cmd_items
= (items
> REDIS_AOFREWRITE_ITEMS_PER_CMD
) ?
440 REDIS_AOFREWRITE_ITEMS_PER_CMD
: items
;
441 if (rioWriteBulkCount(r
,'*',2+cmd_items
) == 0) return 0;
442 if (rioWriteBulkString(r
,"RPUSH",5) == 0) return 0;
443 if (rioWriteBulkObject(r
,key
) == 0) return 0;
446 if (rioWriteBulkString(r
,(char*)vstr
,vlen
) == 0) return 0;
448 if (rioWriteBulkLongLong(r
,vlong
) == 0) return 0;
450 p
= ziplistNext(zl
,p
);
451 if (++count
== REDIS_AOFREWRITE_ITEMS_PER_CMD
) count
= 0;
454 } else if (o
->encoding
== REDIS_ENCODING_LINKEDLIST
) {
459 listRewind(list
,&li
);
460 while((ln
= listNext(&li
))) {
461 robj
*eleobj
= listNodeValue(ln
);
464 int cmd_items
= (items
> REDIS_AOFREWRITE_ITEMS_PER_CMD
) ?
465 REDIS_AOFREWRITE_ITEMS_PER_CMD
: items
;
466 if (rioWriteBulkCount(r
,'*',2+cmd_items
) == 0) return 0;
467 if (rioWriteBulkString(r
,"RPUSH",5) == 0) return 0;
468 if (rioWriteBulkObject(r
,key
) == 0) return 0;
470 if (rioWriteBulkObject(r
,eleobj
) == 0) return 0;
471 if (++count
== REDIS_AOFREWRITE_ITEMS_PER_CMD
) count
= 0;
475 redisPanic("Unknown list encoding");
480 /* Write a sequence of commands able to fully rebuild the dataset into
481 * "filename". Used both by REWRITEAOF and BGREWRITEAOF.
483 * In order to minimize the number of commands needed in the rewritten
484 * log Redis uses variadic commands when possible, such as RPUSH, SADD
485 * and ZADD. However at max REDIS_AOFREWRITE_ITEMS_PER_CMD items per time
486 * are inserted using a single command. */
487 int rewriteAppendOnlyFile(char *filename
) {
488 dictIterator
*di
= NULL
;
494 long long now
= mstime();
496 /* Note that we have to use a different temp name here compared to the
497 * one used by rewriteAppendOnlyFileBackground() function. */
498 snprintf(tmpfile
,256,"temp-rewriteaof-%d.aof", (int) getpid());
499 fp
= fopen(tmpfile
,"w");
501 redisLog(REDIS_WARNING
, "Failed rewriting the append only file: %s", strerror(errno
));
505 rioInitWithFile(&aof
,fp
);
506 for (j
= 0; j
< server
.dbnum
; j
++) {
507 char selectcmd
[] = "*2\r\n$6\r\nSELECT\r\n";
508 redisDb
*db
= server
.db
+j
;
510 if (dictSize(d
) == 0) continue;
511 di
= dictGetSafeIterator(d
);
517 /* SELECT the new DB */
518 if (rioWrite(&aof
,selectcmd
,sizeof(selectcmd
)-1) == 0) goto werr
;
519 if (rioWriteBulkLongLong(&aof
,j
) == 0) goto werr
;
521 /* Iterate this DB writing every entry */
522 while((de
= dictNext(di
)) != NULL
) {
525 long long expiretime
;
527 keystr
= dictGetKey(de
);
529 initStaticStringObject(key
,keystr
);
531 expiretime
= getExpire(db
,&key
);
533 /* Save the key and associated value */
534 if (o
->type
== REDIS_STRING
) {
535 /* Emit a SET command */
536 char cmd
[]="*3\r\n$3\r\nSET\r\n";
537 if (rioWrite(&aof
,cmd
,sizeof(cmd
)-1) == 0) goto werr
;
539 if (rioWriteBulkObject(&aof
,&key
) == 0) goto werr
;
540 if (rioWriteBulkObject(&aof
,o
) == 0) goto werr
;
541 } else if (o
->type
== REDIS_LIST
) {
542 if (rewriteListObject(&aof
,&key
,o
) == 0) goto werr
;
543 } else if (o
->type
== REDIS_SET
) {
544 char cmd
[]="*3\r\n$4\r\nSADD\r\n";
546 /* Emit the SADDs needed to rebuild the set */
547 if (o
->encoding
== REDIS_ENCODING_INTSET
) {
550 while(intsetGet(o
->ptr
,ii
++,&llval
)) {
551 if (rioWrite(&aof
,cmd
,sizeof(cmd
)-1) == 0) goto werr
;
552 if (rioWriteBulkObject(&aof
,&key
) == 0) goto werr
;
553 if (rioWriteBulkLongLong(&aof
,llval
) == 0) goto werr
;
555 } else if (o
->encoding
== REDIS_ENCODING_HT
) {
556 dictIterator
*di
= dictGetIterator(o
->ptr
);
558 while((de
= dictNext(di
)) != NULL
) {
559 robj
*eleobj
= dictGetKey(de
);
560 if (rioWrite(&aof
,cmd
,sizeof(cmd
)-1) == 0) goto werr
;
561 if (rioWriteBulkObject(&aof
,&key
) == 0) goto werr
;
562 if (rioWriteBulkObject(&aof
,eleobj
) == 0) goto werr
;
564 dictReleaseIterator(di
);
566 redisPanic("Unknown set encoding");
568 } else if (o
->type
== REDIS_ZSET
) {
569 /* Emit the ZADDs needed to rebuild the sorted set */
570 char cmd
[]="*4\r\n$4\r\nZADD\r\n";
572 if (o
->encoding
== REDIS_ENCODING_ZIPLIST
) {
573 unsigned char *zl
= o
->ptr
;
574 unsigned char *eptr
, *sptr
;
580 eptr
= ziplistIndex(zl
,0);
581 redisAssert(eptr
!= NULL
);
582 sptr
= ziplistNext(zl
,eptr
);
583 redisAssert(sptr
!= NULL
);
585 while (eptr
!= NULL
) {
586 redisAssert(ziplistGet(eptr
,&vstr
,&vlen
,&vll
));
587 score
= zzlGetScore(sptr
);
589 if (rioWrite(&aof
,cmd
,sizeof(cmd
)-1) == 0) goto werr
;
590 if (rioWriteBulkObject(&aof
,&key
) == 0) goto werr
;
591 if (rioWriteBulkDouble(&aof
,score
) == 0) goto werr
;
593 if (rioWriteBulkString(&aof
,(char*)vstr
,vlen
) == 0)
596 if (rioWriteBulkLongLong(&aof
,vll
) == 0)
599 zzlNext(zl
,&eptr
,&sptr
);
601 } else if (o
->encoding
== REDIS_ENCODING_SKIPLIST
) {
603 dictIterator
*di
= dictGetIterator(zs
->dict
);
606 while((de
= dictNext(di
)) != NULL
) {
607 robj
*eleobj
= dictGetKey(de
);
608 double *score
= dictGetVal(de
);
610 if (rioWrite(&aof
,cmd
,sizeof(cmd
)-1) == 0) goto werr
;
611 if (rioWriteBulkObject(&aof
,&key
) == 0) goto werr
;
612 if (rioWriteBulkDouble(&aof
,*score
) == 0) goto werr
;
613 if (rioWriteBulkObject(&aof
,eleobj
) == 0) goto werr
;
615 dictReleaseIterator(di
);
617 redisPanic("Unknown sorted set encoding");
619 } else if (o
->type
== REDIS_HASH
) {
620 char cmd
[]="*4\r\n$4\r\nHSET\r\n";
622 /* Emit the HSETs needed to rebuild the hash */
623 if (o
->encoding
== REDIS_ENCODING_ZIPMAP
) {
624 unsigned char *p
= zipmapRewind(o
->ptr
);
625 unsigned char *field
, *val
;
626 unsigned int flen
, vlen
;
628 while((p
= zipmapNext(p
,&field
,&flen
,&val
,&vlen
)) != NULL
) {
629 if (rioWrite(&aof
,cmd
,sizeof(cmd
)-1) == 0) goto werr
;
630 if (rioWriteBulkObject(&aof
,&key
) == 0) goto werr
;
631 if (rioWriteBulkString(&aof
,(char*)field
,flen
) == 0)
633 if (rioWriteBulkString(&aof
,(char*)val
,vlen
) == 0)
637 dictIterator
*di
= dictGetIterator(o
->ptr
);
640 while((de
= dictNext(di
)) != NULL
) {
641 robj
*field
= dictGetKey(de
);
642 robj
*val
= dictGetVal(de
);
644 if (rioWrite(&aof
,cmd
,sizeof(cmd
)-1) == 0) goto werr
;
645 if (rioWriteBulkObject(&aof
,&key
) == 0) goto werr
;
646 if (rioWriteBulkObject(&aof
,field
) == 0) goto werr
;
647 if (rioWriteBulkObject(&aof
,val
) == 0) goto werr
;
649 dictReleaseIterator(di
);
652 redisPanic("Unknown object type");
654 /* Save the expire time */
655 if (expiretime
!= -1) {
656 char cmd
[]="*3\r\n$9\r\nPEXPIREAT\r\n";
657 /* If this key is already expired skip it */
658 if (expiretime
< now
) continue;
659 if (rioWrite(&aof
,cmd
,sizeof(cmd
)-1) == 0) goto werr
;
660 if (rioWriteBulkObject(&aof
,&key
) == 0) goto werr
;
661 if (rioWriteBulkLongLong(&aof
,expiretime
) == 0) goto werr
;
664 dictReleaseIterator(di
);
667 /* Make sure data will not remain on the OS's output buffers */
669 aof_fsync(fileno(fp
));
672 /* Use RENAME to make sure the DB file is changed atomically only
673 * if the generate DB file is ok. */
674 if (rename(tmpfile
,filename
) == -1) {
675 redisLog(REDIS_WARNING
,"Error moving temp append only file on the final destination: %s", strerror(errno
));
679 redisLog(REDIS_NOTICE
,"SYNC append only file rewrite performed");
685 redisLog(REDIS_WARNING
,"Write error writing append only file on disk: %s", strerror(errno
));
686 if (di
) dictReleaseIterator(di
);
690 /* This is how rewriting of the append only file in background works:
692 * 1) The user calls BGREWRITEAOF
693 * 2) Redis calls this function, that forks():
694 * 2a) the child rewrite the append only file in a temp file.
695 * 2b) the parent accumulates differences in server.bgrewritebuf.
696 * 3) When the child finished '2a' exists.
697 * 4) The parent will trap the exit code, if it's OK, will append the
698 * data accumulated into server.bgrewritebuf into the temp file, and
699 * finally will rename(2) the temp file in the actual file name.
700 * The the new file is reopened as the new append only file. Profit!
702 int rewriteAppendOnlyFileBackground(void) {
706 if (server
.bgrewritechildpid
!= -1) return REDIS_ERR
;
708 if ((childpid
= fork()) == 0) {
712 if (server
.ipfd
> 0) close(server
.ipfd
);
713 if (server
.sofd
> 0) close(server
.sofd
);
714 snprintf(tmpfile
,256,"temp-rewriteaof-bg-%d.aof", (int) getpid());
715 if (rewriteAppendOnlyFile(tmpfile
) == REDIS_OK
) {
722 server
.stat_fork_time
= ustime()-start
;
723 if (childpid
== -1) {
724 redisLog(REDIS_WARNING
,
725 "Can't rewrite append only file in background: fork: %s",
729 redisLog(REDIS_NOTICE
,
730 "Background append only file rewriting started by pid %d",childpid
);
731 server
.aofrewrite_scheduled
= 0;
732 server
.bgrewritechildpid
= childpid
;
733 updateDictResizePolicy();
734 /* We set appendseldb to -1 in order to force the next call to the
735 * feedAppendOnlyFile() to issue a SELECT command, so the differences
736 * accumulated by the parent into server.bgrewritebuf will start
737 * with a SELECT statement and it will be safe to merge. */
738 server
.appendseldb
= -1;
741 return REDIS_OK
; /* unreached */
744 void bgrewriteaofCommand(redisClient
*c
) {
745 if (server
.bgrewritechildpid
!= -1) {
746 addReplyError(c
,"Background append only file rewriting already in progress");
747 } else if (server
.bgsavechildpid
!= -1) {
748 server
.aofrewrite_scheduled
= 1;
749 addReplyStatus(c
,"Background append only file rewriting scheduled");
750 } else if (rewriteAppendOnlyFileBackground() == REDIS_OK
) {
751 addReplyStatus(c
,"Background append only file rewriting started");
753 addReply(c
,shared
.err
);
757 void aofRemoveTempFile(pid_t childpid
) {
760 snprintf(tmpfile
,256,"temp-rewriteaof-bg-%d.aof", (int) childpid
);
764 /* Update the server.appendonly_current_size filed explicitly using stat(2)
765 * to check the size of the file. This is useful after a rewrite or after
766 * a restart, normally the size is updated just adding the write length
767 * to the current lenght, that is much faster. */
768 void aofUpdateCurrentSize(void) {
769 struct redis_stat sb
;
771 if (redis_fstat(server
.appendfd
,&sb
) == -1) {
772 redisLog(REDIS_WARNING
,"Unable to check the AOF length: %s",
775 server
.appendonly_current_size
= sb
.st_size
;
779 /* A background append only file rewriting (BGREWRITEAOF) terminated its work.
781 void backgroundRewriteDoneHandler(int exitcode
, int bysignal
) {
782 if (!bysignal
&& exitcode
== 0) {
786 long long now
= ustime();
788 redisLog(REDIS_NOTICE
,
789 "Background AOF rewrite terminated with success");
791 /* Flush the differences accumulated by the parent to the
793 snprintf(tmpfile
,256,"temp-rewriteaof-bg-%d.aof",
794 (int)server
.bgrewritechildpid
);
795 newfd
= open(tmpfile
,O_WRONLY
|O_APPEND
);
797 redisLog(REDIS_WARNING
,
798 "Unable to open the temporary AOF produced by the child: %s", strerror(errno
));
802 nwritten
= write(newfd
,server
.bgrewritebuf
,sdslen(server
.bgrewritebuf
));
803 if (nwritten
!= (signed)sdslen(server
.bgrewritebuf
)) {
804 if (nwritten
== -1) {
805 redisLog(REDIS_WARNING
,
806 "Error trying to flush the parent diff to the rewritten AOF: %s", strerror(errno
));
808 redisLog(REDIS_WARNING
,
809 "Short write trying to flush the parent diff to the rewritten AOF: %s", strerror(errno
));
815 redisLog(REDIS_NOTICE
,
816 "Parent diff successfully flushed to the rewritten AOF (%lu bytes)", nwritten
);
818 /* The only remaining thing to do is to rename the temporary file to
819 * the configured file and switch the file descriptor used to do AOF
820 * writes. We don't want close(2) or rename(2) calls to block the
821 * server on old file deletion.
823 * There are two possible scenarios:
825 * 1) AOF is DISABLED and this was a one time rewrite. The temporary
826 * file will be renamed to the configured file. When this file already
827 * exists, it will be unlinked, which may block the server.
829 * 2) AOF is ENABLED and the rewritten AOF will immediately start
830 * receiving writes. After the temporary file is renamed to the
831 * configured file, the original AOF file descriptor will be closed.
832 * Since this will be the last reference to that file, closing it
833 * causes the underlying file to be unlinked, which may block the
836 * To mitigate the blocking effect of the unlink operation (either
837 * caused by rename(2) in scenario 1, or by close(2) in scenario 2), we
838 * use a background thread to take care of this. First, we
839 * make scenario 1 identical to scenario 2 by opening the target file
840 * when it exists. The unlink operation after the rename(2) will then
841 * be executed upon calling close(2) for its descriptor. Everything to
842 * guarantee atomicity for this switch has already happened by then, so
843 * we don't care what the outcome or duration of that close operation
844 * is, as long as the file descriptor is released again. */
845 if (server
.appendfd
== -1) {
848 /* Don't care if this fails: oldfd will be -1 and we handle that.
849 * One notable case of -1 return is if the old file does
851 oldfd
= open(server
.appendfilename
,O_RDONLY
|O_NONBLOCK
);
854 oldfd
= -1; /* We'll set this to the current AOF filedes later. */
857 /* Rename the temporary file. This will not unlink the target file if
858 * it exists, because we reference it with "oldfd". */
859 if (rename(tmpfile
,server
.appendfilename
) == -1) {
860 redisLog(REDIS_WARNING
,
861 "Error trying to rename the temporary AOF: %s", strerror(errno
));
863 if (oldfd
!= -1) close(oldfd
);
867 if (server
.appendfd
== -1) {
868 /* AOF disabled, we don't need to set the AOF file descriptor
869 * to this new file, so we can close it. */
872 /* AOF enabled, replace the old fd with the new one. */
873 oldfd
= server
.appendfd
;
874 server
.appendfd
= newfd
;
875 if (server
.appendfsync
== APPENDFSYNC_ALWAYS
)
877 else if (server
.appendfsync
== APPENDFSYNC_EVERYSEC
)
878 aof_background_fsync(newfd
);
879 server
.appendseldb
= -1; /* Make sure SELECT is re-issued */
880 aofUpdateCurrentSize();
881 server
.auto_aofrewrite_base_size
= server
.appendonly_current_size
;
883 /* Clear regular AOF buffer since its contents was just written to
884 * the new AOF from the background rewrite buffer. */
885 sdsfree(server
.aofbuf
);
886 server
.aofbuf
= sdsempty();
889 redisLog(REDIS_NOTICE
, "Background AOF rewrite successful");
891 /* Asynchronously close the overwritten AOF. */
892 if (oldfd
!= -1) bioCreateBackgroundJob(REDIS_BIO_CLOSE_FILE
,(void*)(long)oldfd
,NULL
,NULL
);
894 redisLog(REDIS_VERBOSE
,
895 "Background AOF rewrite signal handler took %lldus", ustime()-now
);
896 } else if (!bysignal
&& exitcode
!= 0) {
897 redisLog(REDIS_WARNING
,
898 "Background AOF rewrite terminated with error");
900 redisLog(REDIS_WARNING
,
901 "Background AOF rewrite terminated by signal %d", bysignal
);
905 sdsfree(server
.bgrewritebuf
);
906 server
.bgrewritebuf
= sdsempty();
907 aofRemoveTempFile(server
.bgrewritechildpid
);
908 server
.bgrewritechildpid
= -1;