Implement error checks in WAL I/O.
Do not use buffered file I/O which doesn't give a precise account of failure, when it happens. Instead, batch writes to WAL or SNAP files and write batches using writev(). If writev() fails, we can accurately evaluate which requests (those that belong to the batch) were not written to disk. In case of a partial write, rollback the failed requests, and seek back to the end of the last fully written request. To support writev() and IO with file descriptors, implement nio library, which provides a set of EINTR- and error log- aware wrappers around syscalls.
Showing
- include/log_io.h 5 additions, 3 deletionsinclude/log_io.h
- include/nio.h 181 additions, 0 deletionsinclude/nio.h
- include/tarantool.h 1 addition, 1 deletioninclude/tarantool.h
- mod/box/box.m 5 additions, 4 deletionsmod/box/box.m
- src/CMakeLists.txt 2 additions, 1 deletionsrc/CMakeLists.txt
- src/log_io.m 117 additions, 106 deletionssrc/log_io.m
- src/log_io_remote.m 2 additions, 1 deletionsrc/log_io_remote.m
- src/nio.c 204 additions, 0 deletionssrc/nio.c
Loading
Please register or sign in to comment