memtx: rework background garbage collection procedure
Currently, the engine has not control over yields issued during asynchronous index destruction. As a result, it can't force gc when there's not enough memory. To fix that, let's make gc callback stateful: now it's supposed to free some objects and return true if there's still more objects to free or false otherwise. Yields are now done by the memtx engine itself after each gc callback invocation.
Showing
- src/box/index.cc 7 additions, 1 deletionsrc/box/index.cc
- src/box/memtx_engine.c 29 additions, 5 deletionssrc/box/memtx_engine.c
- src/box/memtx_engine.h 14 additions, 3 deletionssrc/box/memtx_engine.h
- src/box/memtx_hash.c 24 additions, 11 deletionssrc/box/memtx_hash.c
- src/box/memtx_hash.h 1 addition, 0 deletionssrc/box/memtx_hash.h
- src/box/memtx_tree.c 26 additions, 12 deletionssrc/box/memtx_tree.c
- src/box/memtx_tree.h 1 addition, 0 deletionssrc/box/memtx_tree.h
Loading
Please register or sign in to comment