8 /* Virtual Memory is composed mainly of two subsystems:
9 * - Blocking Virutal Memory
10 * - Threaded Virtual Memory I/O
11 * The two parts are not fully decoupled, but functions are split among two
12 * different sections of the source code (delimited by comments) in order to
13 * make more clear what functionality is about the blocking VM and what about
14 * the threaded (not blocking) VM.
18 * Redis VM is a blocking VM (one that blocks reading swapped values from
19 * disk into memory when a value swapped out is needed in memory) that is made
20 * unblocking by trying to examine the command argument vector in order to
21 * load in background values that will likely be needed in order to exec
22 * the command. The command is executed only once all the relevant keys
23 * are loaded into memory.
25 * This basically is almost as simple of a blocking VM, but almost as parallel
26 * as a fully non-blocking VM.
29 /* =================== Virtual Memory - Blocking Side ====================== */
31 /* Create a VM pointer object. This kind of objects are used in place of
32 * values in the key -> value hash table, for swapped out objects. */
33 vmpointer
*createVmPointer(int vtype
) {
34 vmpointer
*vp
= zmalloc(sizeof(vmpointer
));
36 vp
->type
= REDIS_VMPOINTER
;
37 vp
->storage
= REDIS_VM_SWAPPED
;
48 if (server
.vm_max_threads
!= 0)
49 zmalloc_enable_thread_safeness(); /* we need thread safe zmalloc() */
51 redisLog(REDIS_NOTICE
,"Using '%s' as swap file",server
.vm_swap_file
);
52 /* Try to open the old swap file, otherwise create it */
53 if ((server
.vm_fp
= fopen(server
.vm_swap_file
,"r+b")) == NULL
) {
54 server
.vm_fp
= fopen(server
.vm_swap_file
,"w+b");
56 if (server
.vm_fp
== NULL
) {
57 redisLog(REDIS_WARNING
,
58 "Can't open the swap file: %s. Exiting.",
62 server
.vm_fd
= fileno(server
.vm_fp
);
63 /* Lock the swap file for writing, this is useful in order to avoid
64 * another instance to use the same swap file for a config error. */
66 fl
.l_whence
= SEEK_SET
;
67 fl
.l_start
= fl
.l_len
= 0;
68 if (fcntl(server
.vm_fd
,F_SETLK
,&fl
) == -1) {
69 redisLog(REDIS_WARNING
,
70 "Can't lock the swap file at '%s': %s. Make sure it is not used by another Redis instance.", server
.vm_swap_file
, strerror(errno
));
74 server
.vm_next_page
= 0;
75 server
.vm_near_pages
= 0;
76 server
.vm_stats_used_pages
= 0;
77 server
.vm_stats_swapped_objects
= 0;
78 server
.vm_stats_swapouts
= 0;
79 server
.vm_stats_swapins
= 0;
80 totsize
= server
.vm_pages
*server
.vm_page_size
;
81 redisLog(REDIS_NOTICE
,"Allocating %lld bytes of swap file",totsize
);
82 if (ftruncate(server
.vm_fd
,totsize
) == -1) {
83 redisLog(REDIS_WARNING
,"Can't ftruncate swap file: %s. Exiting.",
87 redisLog(REDIS_NOTICE
,"Swap file allocated with success");
89 server
.vm_bitmap
= zmalloc((server
.vm_pages
+7)/8);
90 redisLog(REDIS_VERBOSE
,"Allocated %lld bytes page table for %lld pages",
91 (long long) (server
.vm_pages
+7)/8, server
.vm_pages
);
92 memset(server
.vm_bitmap
,0,(server
.vm_pages
+7)/8);
94 /* Initialize threaded I/O (used by Virtual Memory) */
95 server
.io_newjobs
= listCreate();
96 server
.io_processing
= listCreate();
97 server
.io_processed
= listCreate();
98 server
.io_ready_clients
= listCreate();
99 pthread_mutex_init(&server
.io_mutex
,NULL
);
100 pthread_mutex_init(&server
.obj_freelist_mutex
,NULL
);
101 pthread_mutex_init(&server
.io_swapfile_mutex
,NULL
);
102 server
.io_active_threads
= 0;
103 if (pipe(pipefds
) == -1) {
104 redisLog(REDIS_WARNING
,"Unable to intialized VM: pipe(2): %s. Exiting."
108 server
.io_ready_pipe_read
= pipefds
[0];
109 server
.io_ready_pipe_write
= pipefds
[1];
110 redisAssert(anetNonBlock(NULL
,server
.io_ready_pipe_read
) != ANET_ERR
);
111 /* LZF requires a lot of stack */
112 pthread_attr_init(&server
.io_threads_attr
);
113 pthread_attr_getstacksize(&server
.io_threads_attr
, &stacksize
);
114 while (stacksize
< REDIS_THREAD_STACK_SIZE
) stacksize
*= 2;
115 pthread_attr_setstacksize(&server
.io_threads_attr
, stacksize
);
116 /* Listen for events in the threaded I/O pipe */
117 if (aeCreateFileEvent(server
.el
, server
.io_ready_pipe_read
, AE_READABLE
,
118 vmThreadedIOCompletedJob
, NULL
) == AE_ERR
)
119 oom("creating file event");
122 /* Mark the page as used */
123 void vmMarkPageUsed(off_t page
) {
126 redisAssert(vmFreePage(page
) == 1);
127 server
.vm_bitmap
[byte
] |= 1<<bit
;
130 /* Mark N contiguous pages as used, with 'page' being the first. */
131 void vmMarkPagesUsed(off_t page
, off_t count
) {
134 for (j
= 0; j
< count
; j
++)
135 vmMarkPageUsed(page
+j
);
136 server
.vm_stats_used_pages
+= count
;
137 redisLog(REDIS_DEBUG
,"Mark USED pages: %lld pages at %lld\n",
138 (long long)count
, (long long)page
);
141 /* Mark the page as free */
142 void vmMarkPageFree(off_t page
) {
145 redisAssert(vmFreePage(page
) == 0);
146 server
.vm_bitmap
[byte
] &= ~(1<<bit
);
149 /* Mark N contiguous pages as free, with 'page' being the first. */
150 void vmMarkPagesFree(off_t page
, off_t count
) {
153 for (j
= 0; j
< count
; j
++)
154 vmMarkPageFree(page
+j
);
155 server
.vm_stats_used_pages
-= count
;
156 redisLog(REDIS_DEBUG
,"Mark FREE pages: %lld pages at %lld\n",
157 (long long)count
, (long long)page
);
160 /* Test if the page is free */
161 int vmFreePage(off_t page
) {
164 return (server
.vm_bitmap
[byte
] & (1<<bit
)) == 0;
167 /* Find N contiguous free pages storing the first page of the cluster in *first.
168 * Returns REDIS_OK if it was able to find N contiguous pages, otherwise
169 * REDIS_ERR is returned.
171 * This function uses a simple algorithm: we try to allocate
172 * REDIS_VM_MAX_NEAR_PAGES sequentially, when we reach this limit we start
173 * again from the start of the swap file searching for free spaces.
175 * If it looks pretty clear that there are no free pages near our offset
176 * we try to find less populated places doing a forward jump of
177 * REDIS_VM_MAX_RANDOM_JUMP, then we start scanning again a few pages
178 * without hurry, and then we jump again and so forth...
180 * This function can be improved using a free list to avoid to guess
181 * too much, since we could collect data about freed pages.
183 * note: I implemented this function just after watching an episode of
184 * Battlestar Galactica, where the hybrid was continuing to say "JUMP!"
186 int vmFindContiguousPages(off_t
*first
, off_t n
) {
187 off_t base
, offset
= 0, since_jump
= 0, numfree
= 0;
189 if (server
.vm_near_pages
== REDIS_VM_MAX_NEAR_PAGES
) {
190 server
.vm_near_pages
= 0;
191 server
.vm_next_page
= 0;
193 server
.vm_near_pages
++; /* Yet another try for pages near to the old ones */
194 base
= server
.vm_next_page
;
196 while(offset
< server
.vm_pages
) {
197 off_t
this = base
+offset
;
199 /* If we overflow, restart from page zero */
200 if (this >= server
.vm_pages
) {
201 this -= server
.vm_pages
;
203 /* Just overflowed, what we found on tail is no longer
204 * interesting, as it's no longer contiguous. */
208 if (vmFreePage(this)) {
209 /* This is a free page */
211 /* Already got N free pages? Return to the caller, with success */
214 server
.vm_next_page
= this+1;
215 redisLog(REDIS_DEBUG
, "FOUND CONTIGUOUS PAGES: %lld pages at %lld\n", (long long) n
, (long long) *first
);
219 /* The current one is not a free page */
223 /* Fast-forward if the current page is not free and we already
224 * searched enough near this place. */
226 if (!numfree
&& since_jump
>= REDIS_VM_MAX_RANDOM_JUMP
/4) {
227 offset
+= random() % REDIS_VM_MAX_RANDOM_JUMP
;
229 /* Note that even if we rewind after the jump, we are don't need
230 * to make sure numfree is set to zero as we only jump *if* it
233 /* Otherwise just check the next page */
240 /* Write the specified object at the specified page of the swap file */
241 int vmWriteObjectOnSwap(robj
*o
, off_t page
) {
242 if (server
.vm_enabled
) pthread_mutex_lock(&server
.io_swapfile_mutex
);
243 if (fseeko(server
.vm_fp
,page
*server
.vm_page_size
,SEEK_SET
) == -1) {
244 if (server
.vm_enabled
) pthread_mutex_unlock(&server
.io_swapfile_mutex
);
245 redisLog(REDIS_WARNING
,
246 "Critical VM problem in vmWriteObjectOnSwap(): can't seek: %s",
250 rdbSaveObject(server
.vm_fp
,o
);
251 fflush(server
.vm_fp
);
252 if (server
.vm_enabled
) pthread_mutex_unlock(&server
.io_swapfile_mutex
);
256 /* Transfers the 'val' object to disk. Store all the information
257 * a 'vmpointer' object containing all the information needed to load the
258 * object back later is returned.
260 * If we can't find enough contiguous empty pages to swap the object on disk
261 * NULL is returned. */
262 vmpointer
*vmSwapObjectBlocking(robj
*val
) {
263 off_t pages
= rdbSavedObjectPages(val
,NULL
);
267 redisAssert(val
->storage
== REDIS_VM_MEMORY
);
268 redisAssert(val
->refcount
== 1);
269 if (vmFindContiguousPages(&page
,pages
) == REDIS_ERR
) return NULL
;
270 if (vmWriteObjectOnSwap(val
,page
) == REDIS_ERR
) return NULL
;
272 vp
= createVmPointer(val
->type
);
274 vp
->usedpages
= pages
;
275 decrRefCount(val
); /* Deallocate the object from memory. */
276 vmMarkPagesUsed(page
,pages
);
277 redisLog(REDIS_DEBUG
,"VM: object %p swapped out at %lld (%lld pages)",
279 (unsigned long long) page
, (unsigned long long) pages
);
280 server
.vm_stats_swapped_objects
++;
281 server
.vm_stats_swapouts
++;
285 robj
*vmReadObjectFromSwap(off_t page
, int type
) {
288 if (server
.vm_enabled
) pthread_mutex_lock(&server
.io_swapfile_mutex
);
289 if (fseeko(server
.vm_fp
,page
*server
.vm_page_size
,SEEK_SET
) == -1) {
290 redisLog(REDIS_WARNING
,
291 "Unrecoverable VM problem in vmReadObjectFromSwap(): can't seek: %s",
295 o
= rdbLoadObject(type
,server
.vm_fp
);
297 redisLog(REDIS_WARNING
, "Unrecoverable VM problem in vmReadObjectFromSwap(): can't load object from swap file: %s", strerror(errno
));
300 if (server
.vm_enabled
) pthread_mutex_unlock(&server
.io_swapfile_mutex
);
304 /* Load the specified object from swap to memory.
305 * The newly allocated object is returned.
307 * If preview is true the unserialized object is returned to the caller but
308 * the pages are not marked as freed, nor the vp object is freed. */
309 robj
*vmGenericLoadObject(vmpointer
*vp
, int preview
) {
312 redisAssert(vp
->type
== REDIS_VMPOINTER
&&
313 (vp
->storage
== REDIS_VM_SWAPPED
|| vp
->storage
== REDIS_VM_LOADING
));
314 val
= vmReadObjectFromSwap(vp
->page
,vp
->vtype
);
316 redisLog(REDIS_DEBUG
, "VM: object %p loaded from disk", (void*)vp
);
317 vmMarkPagesFree(vp
->page
,vp
->usedpages
);
319 server
.vm_stats_swapped_objects
--;
321 redisLog(REDIS_DEBUG
, "VM: object %p previewed from disk", (void*)vp
);
323 server
.vm_stats_swapins
++;
327 /* Plain object loading, from swap to memory.
329 * 'o' is actually a redisVmPointer structure that will be freed by the call.
330 * The return value is the loaded object. */
331 robj
*vmLoadObject(robj
*o
) {
332 /* If we are loading the object in background, stop it, we
333 * need to load this object synchronously ASAP. */
334 if (o
->storage
== REDIS_VM_LOADING
)
335 vmCancelThreadedIOJob(o
);
336 return vmGenericLoadObject((vmpointer
*)o
,0);
339 /* Just load the value on disk, without to modify the key.
340 * This is useful when we want to perform some operation on the value
341 * without to really bring it from swap to memory, like while saving the
342 * dataset or rewriting the append only log. */
343 robj
*vmPreviewObject(robj
*o
) {
344 return vmGenericLoadObject((vmpointer
*)o
,1);
347 /* How a good candidate is this object for swapping?
348 * The better candidate it is, the greater the returned value.
350 * Currently we try to perform a fast estimation of the object size in
351 * memory, and combine it with aging informations.
353 * Basically swappability = idle-time * log(estimated size)
355 * Bigger objects are preferred over smaller objects, but not
356 * proportionally, this is why we use the logarithm. This algorithm is
357 * just a first try and will probably be tuned later. */
358 double computeObjectSwappability(robj
*o
) {
359 /* actual age can be >= minage, but not < minage. As we use wrapping
360 * 21 bit clocks with minutes resolution for the LRU. */
361 time_t minage
= abs(server
.lruclock
- o
->lru
);
362 long asize
= 0, elesize
;
367 struct dictEntry
*de
;
370 if (minage
<= 0) return 0;
373 if (o
->encoding
!= REDIS_ENCODING_RAW
) {
376 asize
= sdslen(o
->ptr
)+sizeof(*o
)+sizeof(long)*2;
380 if (o
->encoding
== REDIS_ENCODING_ZIPLIST
) {
381 asize
= sizeof(*o
)+ziplistSize(o
->ptr
);
385 asize
= sizeof(list
);
388 elesize
= (ele
->encoding
== REDIS_ENCODING_RAW
) ?
389 (sizeof(*o
)+sdslen(ele
->ptr
)) : sizeof(*o
);
390 asize
+= (sizeof(listNode
)+elesize
)*listLength(l
);
396 z
= (o
->type
== REDIS_ZSET
);
397 d
= z
? ((zset
*)o
->ptr
)->dict
: o
->ptr
;
399 asize
= sizeof(dict
)+(sizeof(struct dictEntry
*)*dictSlots(d
));
400 if (z
) asize
+= sizeof(zset
)-sizeof(dict
);
402 de
= dictGetRandomKey(d
);
403 ele
= dictGetEntryKey(de
);
404 elesize
= (ele
->encoding
== REDIS_ENCODING_RAW
) ?
405 (sizeof(*o
)+sdslen(ele
->ptr
)) : sizeof(*o
);
406 asize
+= (sizeof(struct dictEntry
)+elesize
)*dictSize(d
);
407 if (z
) asize
+= sizeof(zskiplistNode
)*dictSize(d
);
411 if (o
->encoding
== REDIS_ENCODING_ZIPMAP
) {
412 unsigned char *p
= zipmapRewind((unsigned char*)o
->ptr
);
413 unsigned int len
= zipmapLen((unsigned char*)o
->ptr
);
414 unsigned int klen
, vlen
;
415 unsigned char *key
, *val
;
417 if ((p
= zipmapNext(p
,&key
,&klen
,&val
,&vlen
)) == NULL
) {
421 asize
= len
*(klen
+vlen
+3);
422 } else if (o
->encoding
== REDIS_ENCODING_HT
) {
424 asize
= sizeof(dict
)+(sizeof(struct dictEntry
*)*dictSlots(d
));
426 de
= dictGetRandomKey(d
);
427 ele
= dictGetEntryKey(de
);
428 elesize
= (ele
->encoding
== REDIS_ENCODING_RAW
) ?
429 (sizeof(*o
)+sdslen(ele
->ptr
)) : sizeof(*o
);
430 ele
= dictGetEntryVal(de
);
431 elesize
= (ele
->encoding
== REDIS_ENCODING_RAW
) ?
432 (sizeof(*o
)+sdslen(ele
->ptr
)) : sizeof(*o
);
433 asize
+= (sizeof(struct dictEntry
)+elesize
)*dictSize(d
);
438 return (double)minage
*log(1+asize
);
441 /* Try to swap an object that's a good candidate for swapping.
442 * Returns REDIS_OK if the object was swapped, REDIS_ERR if it's not possible
443 * to swap any object at all.
445 * If 'usethreaded' is true, Redis will try to swap the object in background
446 * using I/O threads. */
447 int vmSwapOneObject(int usethreads
) {
449 struct dictEntry
*best
= NULL
;
450 double best_swappability
= 0;
451 redisDb
*best_db
= NULL
;
455 for (j
= 0; j
< server
.dbnum
; j
++) {
456 redisDb
*db
= server
.db
+j
;
457 /* Why maxtries is set to 100?
458 * Because this way (usually) we'll find 1 object even if just 1% - 2%
459 * are swappable objects */
462 if (dictSize(db
->dict
) == 0) continue;
463 for (i
= 0; i
< 5; i
++) {
467 if (maxtries
) maxtries
--;
468 de
= dictGetRandomKey(db
->dict
);
469 val
= dictGetEntryVal(de
);
470 /* Only swap objects that are currently in memory.
472 * Also don't swap shared objects: not a good idea in general and
473 * we need to ensure that the main thread does not touch the
474 * object while the I/O thread is using it, but we can't
475 * control other keys without adding additional mutex. */
476 if (val
->storage
!= REDIS_VM_MEMORY
|| val
->refcount
!= 1) {
477 if (maxtries
) i
--; /* don't count this try */
480 swappability
= computeObjectSwappability(val
);
481 if (!best
|| swappability
> best_swappability
) {
483 best_swappability
= swappability
;
488 if (best
== NULL
) return REDIS_ERR
;
489 key
= dictGetEntryKey(best
);
490 val
= dictGetEntryVal(best
);
492 redisLog(REDIS_DEBUG
,"Key with best swappability: %s, %f",
493 key
, best_swappability
);
497 robj
*keyobj
= createStringObject(key
,sdslen(key
));
498 vmSwapObjectThreaded(keyobj
,val
,best_db
);
499 decrRefCount(keyobj
);
504 if ((vp
= vmSwapObjectBlocking(val
)) != NULL
) {
505 dictGetEntryVal(best
) = vp
;
513 int vmSwapOneObjectBlocking() {
514 return vmSwapOneObject(0);
517 int vmSwapOneObjectThreaded() {
518 return vmSwapOneObject(1);
521 /* Return true if it's safe to swap out objects in a given moment.
522 * Basically we don't want to swap objects out while there is a BGSAVE
523 * or a BGAEOREWRITE running in backgroud. */
524 int vmCanSwapOut(void) {
525 return (server
.bgsavechildpid
== -1 && server
.bgrewritechildpid
== -1);
528 /* =================== Virtual Memory - Threaded I/O ======================= */
530 void freeIOJob(iojob
*j
) {
531 if ((j
->type
== REDIS_IOJOB_PREPARE_SWAP
||
532 j
->type
== REDIS_IOJOB_DO_SWAP
||
533 j
->type
== REDIS_IOJOB_LOAD
) && j
->val
!= NULL
)
535 /* we fix the storage type, otherwise decrRefCount() will try to
536 * kill the I/O thread Job (that does no longer exists). */
537 if (j
->val
->storage
== REDIS_VM_SWAPPING
)
538 j
->val
->storage
= REDIS_VM_MEMORY
;
539 decrRefCount(j
->val
);
541 decrRefCount(j
->key
);
545 /* Every time a thread finished a Job, it writes a byte into the write side
546 * of an unix pipe in order to "awake" the main thread, and this function
548 void vmThreadedIOCompletedJob(aeEventLoop
*el
, int fd
, void *privdata
,
552 int retval
, processed
= 0, toprocess
= -1, trytoswap
= 1;
555 REDIS_NOTUSED(privdata
);
557 /* For every byte we read in the read side of the pipe, there is one
558 * I/O job completed to process. */
559 while((retval
= read(fd
,buf
,1)) == 1) {
562 struct dictEntry
*de
;
564 redisLog(REDIS_DEBUG
,"Processing I/O completed job");
566 /* Get the processed element (the oldest one) */
568 redisAssert(listLength(server
.io_processed
) != 0);
569 if (toprocess
== -1) {
570 toprocess
= (listLength(server
.io_processed
)*REDIS_MAX_COMPLETED_JOBS_PROCESSED
)/100;
571 if (toprocess
<= 0) toprocess
= 1;
573 ln
= listFirst(server
.io_processed
);
575 listDelNode(server
.io_processed
,ln
);
577 /* If this job is marked as canceled, just ignore it */
582 /* Post process it in the main thread, as there are things we
583 * can do just here to avoid race conditions and/or invasive locks */
584 redisLog(REDIS_DEBUG
,"COMPLETED Job type: %d, ID %p, key: %s", j
->type
, (void*)j
->id
, (unsigned char*)j
->key
->ptr
);
585 de
= dictFind(j
->db
->dict
,j
->key
->ptr
);
586 redisAssert(de
!= NULL
);
587 if (j
->type
== REDIS_IOJOB_LOAD
) {
589 vmpointer
*vp
= dictGetEntryVal(de
);
591 /* Key loaded, bring it at home */
592 vmMarkPagesFree(vp
->page
,vp
->usedpages
);
593 redisLog(REDIS_DEBUG
, "VM: object %s loaded from disk (threaded)",
594 (unsigned char*) j
->key
->ptr
);
595 server
.vm_stats_swapped_objects
--;
596 server
.vm_stats_swapins
++;
597 dictGetEntryVal(de
) = j
->val
;
598 incrRefCount(j
->val
);
600 /* Handle clients waiting for this key to be loaded. */
601 handleClientsBlockedOnSwappedKey(db
,j
->key
);
604 } else if (j
->type
== REDIS_IOJOB_PREPARE_SWAP
) {
605 /* Now we know the amount of pages required to swap this object.
606 * Let's find some space for it, and queue this task again
607 * rebranded as REDIS_IOJOB_DO_SWAP. */
608 if (!vmCanSwapOut() ||
609 vmFindContiguousPages(&j
->page
,j
->pages
) == REDIS_ERR
)
611 /* Ooops... no space or we can't swap as there is
612 * a fork()ed Redis trying to save stuff on disk. */
613 j
->val
->storage
= REDIS_VM_MEMORY
; /* undo operation */
616 /* Note that we need to mark this pages as used now,
617 * if the job will be canceled, we'll mark them as freed
619 vmMarkPagesUsed(j
->page
,j
->pages
);
620 j
->type
= REDIS_IOJOB_DO_SWAP
;
625 } else if (j
->type
== REDIS_IOJOB_DO_SWAP
) {
628 /* Key swapped. We can finally free some memory. */
629 if (j
->val
->storage
!= REDIS_VM_SWAPPING
) {
630 vmpointer
*vp
= (vmpointer
*) j
->id
;
631 printf("storage: %d\n",vp
->storage
);
632 printf("key->name: %s\n",(char*)j
->key
->ptr
);
633 printf("val: %p\n",(void*)j
->val
);
634 printf("val->type: %d\n",j
->val
->type
);
635 printf("val->ptr: %s\n",(char*)j
->val
->ptr
);
637 redisAssert(j
->val
->storage
== REDIS_VM_SWAPPING
);
638 vp
= createVmPointer(j
->val
->type
);
640 vp
->usedpages
= j
->pages
;
641 dictGetEntryVal(de
) = vp
;
642 /* Fix the storage otherwise decrRefCount will attempt to
643 * remove the associated I/O job */
644 j
->val
->storage
= REDIS_VM_MEMORY
;
645 decrRefCount(j
->val
);
646 redisLog(REDIS_DEBUG
,
647 "VM: object %s swapped out at %lld (%lld pages) (threaded)",
648 (unsigned char*) j
->key
->ptr
,
649 (unsigned long long) j
->page
, (unsigned long long) j
->pages
);
650 server
.vm_stats_swapped_objects
++;
651 server
.vm_stats_swapouts
++;
653 /* Put a few more swap requests in queue if we are still
655 if (trytoswap
&& vmCanSwapOut() &&
656 zmalloc_used_memory() > server
.vm_max_memory
)
661 more
= listLength(server
.io_newjobs
) <
662 (unsigned) server
.vm_max_threads
;
664 /* Don't waste CPU time if swappable objects are rare. */
665 if (vmSwapOneObjectThreaded() == REDIS_ERR
) {
673 if (processed
== toprocess
) return;
675 if (retval
< 0 && errno
!= EAGAIN
) {
676 redisLog(REDIS_WARNING
,
677 "WARNING: read(2) error in vmThreadedIOCompletedJob() %s",
682 void lockThreadedIO(void) {
683 pthread_mutex_lock(&server
.io_mutex
);
686 void unlockThreadedIO(void) {
687 pthread_mutex_unlock(&server
.io_mutex
);
690 /* Remove the specified object from the threaded I/O queue if still not
691 * processed, otherwise make sure to flag it as canceled. */
692 void vmCancelThreadedIOJob(robj
*o
) {
694 server
.io_newjobs
, /* 0 */
695 server
.io_processing
, /* 1 */
696 server
.io_processed
/* 2 */
700 redisAssert(o
->storage
== REDIS_VM_LOADING
|| o
->storage
== REDIS_VM_SWAPPING
);
703 /* Search for a matching object in one of the queues */
704 for (i
= 0; i
< 3; i
++) {
708 listRewind(lists
[i
],&li
);
709 while ((ln
= listNext(&li
)) != NULL
) {
710 iojob
*job
= ln
->value
;
712 if (job
->canceled
) continue; /* Skip this, already canceled. */
714 redisLog(REDIS_DEBUG
,"*** CANCELED %p (key %s) (type %d) (LIST ID %d)\n",
715 (void*)job
, (char*)job
->key
->ptr
, job
->type
, i
);
716 /* Mark the pages as free since the swap didn't happened
717 * or happened but is now discarded. */
718 if (i
!= 1 && job
->type
== REDIS_IOJOB_DO_SWAP
)
719 vmMarkPagesFree(job
->page
,job
->pages
);
720 /* Cancel the job. It depends on the list the job is
723 case 0: /* io_newjobs */
724 /* If the job was yet not processed the best thing to do
725 * is to remove it from the queue at all */
727 listDelNode(lists
[i
],ln
);
729 case 1: /* io_processing */
730 /* Oh Shi- the thread is messing with the Job:
732 * Probably it's accessing the object if this is a
733 * PREPARE_SWAP or DO_SWAP job.
734 * If it's a LOAD job it may be reading from disk and
735 * if we don't wait for the job to terminate before to
736 * cancel it, maybe in a few microseconds data can be
737 * corrupted in this pages. So the short story is:
739 * Better to wait for the job to move into the
740 * next queue (processed)... */
742 /* We try again and again until the job is completed. */
744 /* But let's wait some time for the I/O thread
745 * to finish with this job. After all this condition
746 * should be very rare. */
749 case 2: /* io_processed */
750 /* The job was already processed, that's easy...
751 * just mark it as canceled so that we'll ignore it
752 * when processing completed jobs. */
756 /* Finally we have to adjust the storage type of the object
757 * in order to "UNDO" the operaiton. */
758 if (o
->storage
== REDIS_VM_LOADING
)
759 o
->storage
= REDIS_VM_SWAPPED
;
760 else if (o
->storage
== REDIS_VM_SWAPPING
)
761 o
->storage
= REDIS_VM_MEMORY
;
763 redisLog(REDIS_DEBUG
,"*** DONE");
769 printf("Not found: %p\n", (void*)o
);
770 redisAssert(1 != 1); /* We should never reach this */
773 void *IOThreadEntryPoint(void *arg
) {
778 pthread_detach(pthread_self());
780 /* Get a new job to process */
782 if (listLength(server
.io_newjobs
) == 0) {
783 /* No new jobs in queue, exit. */
784 redisLog(REDIS_DEBUG
,"Thread %ld exiting, nothing to do",
785 (long) pthread_self());
786 server
.io_active_threads
--;
790 ln
= listFirst(server
.io_newjobs
);
792 listDelNode(server
.io_newjobs
,ln
);
793 /* Add the job in the processing queue */
794 j
->thread
= pthread_self();
795 listAddNodeTail(server
.io_processing
,j
);
796 ln
= listLast(server
.io_processing
); /* We use ln later to remove it */
798 redisLog(REDIS_DEBUG
,"Thread %ld got a new job (type %d): %p about key '%s'",
799 (long) pthread_self(), j
->type
, (void*)j
, (char*)j
->key
->ptr
);
801 /* Process the Job */
802 if (j
->type
== REDIS_IOJOB_LOAD
) {
803 vmpointer
*vp
= (vmpointer
*)j
->id
;
804 j
->val
= vmReadObjectFromSwap(j
->page
,vp
->vtype
);
805 } else if (j
->type
== REDIS_IOJOB_PREPARE_SWAP
) {
806 FILE *fp
= fopen("/dev/null","w+");
807 j
->pages
= rdbSavedObjectPages(j
->val
,fp
);
809 } else if (j
->type
== REDIS_IOJOB_DO_SWAP
) {
810 if (vmWriteObjectOnSwap(j
->val
,j
->page
) == REDIS_ERR
)
814 /* Done: insert the job into the processed queue */
815 redisLog(REDIS_DEBUG
,"Thread %ld completed the job: %p (key %s)",
816 (long) pthread_self(), (void*)j
, (char*)j
->key
->ptr
);
818 listDelNode(server
.io_processing
,ln
);
819 listAddNodeTail(server
.io_processed
,j
);
822 /* Signal the main thread there is new stuff to process */
823 redisAssert(write(server
.io_ready_pipe_write
,"x",1) == 1);
825 return NULL
; /* never reached */
828 void spawnIOThread(void) {
830 sigset_t mask
, omask
;
834 sigaddset(&mask
,SIGCHLD
);
835 sigaddset(&mask
,SIGHUP
);
836 sigaddset(&mask
,SIGPIPE
);
837 pthread_sigmask(SIG_SETMASK
, &mask
, &omask
);
838 while ((err
= pthread_create(&thread
,&server
.io_threads_attr
,IOThreadEntryPoint
,NULL
)) != 0) {
839 redisLog(REDIS_WARNING
,"Unable to spawn an I/O thread: %s",
843 pthread_sigmask(SIG_SETMASK
, &omask
, NULL
);
844 server
.io_active_threads
++;
847 /* We need to wait for the last thread to exit before we are able to
848 * fork() in order to BGSAVE or BGREWRITEAOF. */
849 void waitEmptyIOJobsQueue(void) {
851 int io_processed_len
;
854 if (listLength(server
.io_newjobs
) == 0 &&
855 listLength(server
.io_processing
) == 0 &&
856 server
.io_active_threads
== 0)
861 /* While waiting for empty jobs queue condition we post-process some
862 * finshed job, as I/O threads may be hanging trying to write against
863 * the io_ready_pipe_write FD but there are so much pending jobs that
865 io_processed_len
= listLength(server
.io_processed
);
867 if (io_processed_len
) {
868 vmThreadedIOCompletedJob(NULL
,server
.io_ready_pipe_read
,NULL
,0);
869 usleep(1000); /* 1 millisecond */
871 usleep(10000); /* 10 milliseconds */
876 void vmReopenSwapFile(void) {
877 /* Note: we don't close the old one as we are in the child process
878 * and don't want to mess at all with the original file object. */
879 server
.vm_fp
= fopen(server
.vm_swap_file
,"r+b");
880 if (server
.vm_fp
== NULL
) {
881 redisLog(REDIS_WARNING
,"Can't re-open the VM swap file: %s. Exiting.",
882 server
.vm_swap_file
);
885 server
.vm_fd
= fileno(server
.vm_fp
);
888 /* This function must be called while with threaded IO locked */
889 void queueIOJob(iojob
*j
) {
890 redisLog(REDIS_DEBUG
,"Queued IO Job %p type %d about key '%s'\n",
891 (void*)j
, j
->type
, (char*)j
->key
->ptr
);
892 listAddNodeTail(server
.io_newjobs
,j
);
893 if (server
.io_active_threads
< server
.vm_max_threads
)
897 int vmSwapObjectThreaded(robj
*key
, robj
*val
, redisDb
*db
) {
900 j
= zmalloc(sizeof(*j
));
901 j
->type
= REDIS_IOJOB_PREPARE_SWAP
;
905 j
->id
= j
->val
= val
;
908 j
->thread
= (pthread_t
) -1;
909 val
->storage
= REDIS_VM_SWAPPING
;
917 /* ============ Virtual Memory - Blocking clients on missing keys =========== */
919 /* This function makes the clinet 'c' waiting for the key 'key' to be loaded.
920 * If there is not already a job loading the key, it is craeted.
921 * The key is added to the io_keys list in the client structure, and also
922 * in the hash table mapping swapped keys to waiting clients, that is,
923 * server.io_waited_keys. */
924 int waitForSwappedKey(redisClient
*c
, robj
*key
) {
925 struct dictEntry
*de
;
929 /* If the key does not exist or is already in RAM we don't need to
930 * block the client at all. */
931 de
= dictFind(c
->db
->dict
,key
->ptr
);
932 if (de
== NULL
) return 0;
933 o
= dictGetEntryVal(de
);
934 if (o
->storage
== REDIS_VM_MEMORY
) {
936 } else if (o
->storage
== REDIS_VM_SWAPPING
) {
937 /* We were swapping the key, undo it! */
938 vmCancelThreadedIOJob(o
);
942 /* OK: the key is either swapped, or being loaded just now. */
944 /* Add the key to the list of keys this client is waiting for.
945 * This maps clients to keys they are waiting for. */
946 listAddNodeTail(c
->io_keys
,key
);
949 /* Add the client to the swapped keys => clients waiting map. */
950 de
= dictFind(c
->db
->io_keys
,key
);
954 /* For every key we take a list of clients blocked for it */
956 retval
= dictAdd(c
->db
->io_keys
,key
,l
);
958 redisAssert(retval
== DICT_OK
);
960 l
= dictGetEntryVal(de
);
962 listAddNodeTail(l
,c
);
964 /* Are we already loading the key from disk? If not create a job */
965 if (o
->storage
== REDIS_VM_SWAPPED
) {
967 vmpointer
*vp
= (vmpointer
*)o
;
969 o
->storage
= REDIS_VM_LOADING
;
970 j
= zmalloc(sizeof(*j
));
971 j
->type
= REDIS_IOJOB_LOAD
;
979 j
->thread
= (pthread_t
) -1;
987 /* Preload keys for any command with first, last and step values for
988 * the command keys prototype, as defined in the command table. */
989 void waitForMultipleSwappedKeys(redisClient
*c
, struct redisCommand
*cmd
, int argc
, robj
**argv
) {
991 if (cmd
->vm_firstkey
== 0) return;
992 last
= cmd
->vm_lastkey
;
993 if (last
< 0) last
= argc
+last
;
994 for (j
= cmd
->vm_firstkey
; j
<= last
; j
+= cmd
->vm_keystep
) {
995 redisAssert(j
< argc
);
996 waitForSwappedKey(c
,argv
[j
]);
1000 /* Preload keys needed for the ZUNIONSTORE and ZINTERSTORE commands.
1001 * Note that the number of keys to preload is user-defined, so we need to
1002 * apply a sanity check against argc. */
1003 void zunionInterBlockClientOnSwappedKeys(redisClient
*c
, struct redisCommand
*cmd
, int argc
, robj
**argv
) {
1007 num
= atoi(argv
[2]->ptr
);
1008 if (num
> (argc
-3)) return;
1009 for (i
= 0; i
< num
; i
++) {
1010 waitForSwappedKey(c
,argv
[3+i
]);
1014 /* Preload keys needed to execute the entire MULTI/EXEC block.
1016 * This function is called by blockClientOnSwappedKeys when EXEC is issued,
1017 * and will block the client when any command requires a swapped out value. */
1018 void execBlockClientOnSwappedKeys(redisClient
*c
, struct redisCommand
*cmd
, int argc
, robj
**argv
) {
1020 struct redisCommand
*mcmd
;
1023 REDIS_NOTUSED(argc
);
1024 REDIS_NOTUSED(argv
);
1026 if (!(c
->flags
& REDIS_MULTI
)) return;
1027 for (i
= 0; i
< c
->mstate
.count
; i
++) {
1028 mcmd
= c
->mstate
.commands
[i
].cmd
;
1029 margc
= c
->mstate
.commands
[i
].argc
;
1030 margv
= c
->mstate
.commands
[i
].argv
;
1032 if (mcmd
->vm_preload_proc
!= NULL
) {
1033 mcmd
->vm_preload_proc(c
,mcmd
,margc
,margv
);
1035 waitForMultipleSwappedKeys(c
,mcmd
,margc
,margv
);
1040 /* Is this client attempting to run a command against swapped keys?
1041 * If so, block it ASAP, load the keys in background, then resume it.
1043 * The important idea about this function is that it can fail! If keys will
1044 * still be swapped when the client is resumed, this key lookups will
1045 * just block loading keys from disk. In practical terms this should only
1046 * happen with SORT BY command or if there is a bug in this function.
1048 * Return 1 if the client is marked as blocked, 0 if the client can
1049 * continue as the keys it is going to access appear to be in memory. */
1050 int blockClientOnSwappedKeys(redisClient
*c
, struct redisCommand
*cmd
) {
1051 if (cmd
->vm_preload_proc
!= NULL
) {
1052 cmd
->vm_preload_proc(c
,cmd
,c
->argc
,c
->argv
);
1054 waitForMultipleSwappedKeys(c
,cmd
,c
->argc
,c
->argv
);
1057 /* If the client was blocked for at least one key, mark it as blocked. */
1058 if (listLength(c
->io_keys
)) {
1059 c
->flags
|= REDIS_IO_WAIT
;
1060 aeDeleteFileEvent(server
.el
,c
->fd
,AE_READABLE
);
1061 server
.vm_blocked_clients
++;
1068 /* Remove the 'key' from the list of blocked keys for a given client.
1070 * The function returns 1 when there are no longer blocking keys after
1071 * the current one was removed (and the client can be unblocked). */
1072 int dontWaitForSwappedKey(redisClient
*c
, robj
*key
) {
1076 struct dictEntry
*de
;
1078 /* Remove the key from the list of keys this client is waiting for. */
1079 listRewind(c
->io_keys
,&li
);
1080 while ((ln
= listNext(&li
)) != NULL
) {
1081 if (equalStringObjects(ln
->value
,key
)) {
1082 listDelNode(c
->io_keys
,ln
);
1086 redisAssert(ln
!= NULL
);
1088 /* Remove the client form the key => waiting clients map. */
1089 de
= dictFind(c
->db
->io_keys
,key
);
1090 redisAssert(de
!= NULL
);
1091 l
= dictGetEntryVal(de
);
1092 ln
= listSearchKey(l
,c
);
1093 redisAssert(ln
!= NULL
);
1095 if (listLength(l
) == 0)
1096 dictDelete(c
->db
->io_keys
,key
);
1098 return listLength(c
->io_keys
) == 0;
1101 /* Every time we now a key was loaded back in memory, we handle clients
1102 * waiting for this key if any. */
1103 void handleClientsBlockedOnSwappedKey(redisDb
*db
, robj
*key
) {
1104 struct dictEntry
*de
;
1109 de
= dictFind(db
->io_keys
,key
);
1112 l
= dictGetEntryVal(de
);
1113 len
= listLength(l
);
1114 /* Note: we can't use something like while(listLength(l)) as the list
1115 * can be freed by the calling function when we remove the last element. */
1118 redisClient
*c
= ln
->value
;
1120 if (dontWaitForSwappedKey(c
,key
)) {
1121 /* Put the client in the list of clients ready to go as we
1122 * loaded all the keys about it. */
1123 listAddNodeTail(server
.io_ready_clients
,c
);