• H
    [RocksDB] Provide contiguous sequence number even in case of write failure · 9ba82786
    Haobo Xu 提交于
    Summary: Replication logic would be simplifeid if we can guarantee that write sequence number is always contiguous, even if write failure occurs. Dhruba and I looked at the sequence number generation part of the code. It seems fixable. Note that if WAL was successful and insert into memtable was not, we would be in an unfortunate state. The approach in this diff is : IO error is expected and error status will be returned to client, sequence number will not be advanced; In-mem error is not expected and we panic.
    
    Test Plan: make check; db_stress
    
    Reviewers: dhruba, sheki
    
    CC: leveldb
    
    Differential Revision: https://reviews.facebook.net/D11439
    9ba82786
db_impl.cc 92.4 KB