vinyl: abort affected transactions when space is removed from cache
A DDL operation creates a new struct space container, moving unaffected indexes from the old container, then destroying it. The problem is there may be a DML request for this space, which was passed the old container in the argument list and then yielded on disk read. When it resumes, it may try to dereference the old space container, which may have already been destroyed. This will most certainly result in a crash. To address this problem, we introduce a new space callback, invalidate, which is called for the old space on space_cache_replace(). In case of vinyl, this callback aborts all transactions involving the space. To prevent a DML request from dereferencing a destroyed space, we also make the iterator code check the current transaction state after each yield and return an error if it was aborted. This should make any DML request bail out early without dereferencing the space anymore. Closes #3420
Showing
- src/box/blackhole.c 1 addition, 0 deletionssrc/box/blackhole.c
- src/box/memtx_space.c 1 addition, 0 deletionssrc/box/memtx_space.c
- src/box/schema.cc 3 additions, 0 deletionssrc/box/schema.cc
- src/box/space.c 6 additions, 0 deletionssrc/box/space.c
- src/box/space.h 15 additions, 0 deletionssrc/box/space.h
- src/box/sysview.c 1 addition, 0 deletionssrc/box/sysview.c
- src/box/vinyl.c 21 additions, 0 deletionssrc/box/vinyl.c
- src/box/vy_point_lookup.c 14 additions, 0 deletionssrc/box/vy_point_lookup.c
- src/box/vy_read_iterator.c 13 additions, 0 deletionssrc/box/vy_read_iterator.c
- test/vinyl/errinj_ddl.result 110 additions, 0 deletionstest/vinyl/errinj_ddl.result
- test/vinyl/errinj_ddl.test.lua 51 additions, 0 deletionstest/vinyl/errinj_ddl.test.lua
Loading
Please register or sign in to comment