rocksdb/utilities/blob_db
Yi Wu 7bfa88037e Blob DB: fix snapshot handling
Summary:
Blob db will keep blob file if data in the file is visible to an active snapshot. Before this patch it checks whether there is an active snapshot has sequence number greater than the earliest sequence in the file. This is problematic since we take snapshot on every read, if it keep having reads, old blob files will not be cleanup. Change to check if there is an active snapshot falls in the range of [earliest_sequence, obsolete_sequence) where obsolete sequence is
1. if data is relocated to another file by garbage collection, it is the latest sequence at the time garbage collection finish
2. otherwise, it is the latest sequence of the file
Closes https://github.com/facebook/rocksdb/pull/3087

Differential Revision: D6182519

Pulled By: yiwu-arbug

fbshipit-source-id: cdf4c35281f782eb2a9ad6a87b6727bbdff27a45
2017-11-02 15:58:27 -07:00
..
blob_db.cc
blob_db.h
blob_db_impl.cc Blob DB: fix snapshot handling 2017-11-02 15:58:27 -07:00
blob_db_impl.h Blob DB: fix snapshot handling 2017-11-02 15:58:27 -07:00
blob_db_iterator.h
blob_db_test.cc Blob DB: fix snapshot handling 2017-11-02 15:58:27 -07:00
blob_dump_tool.cc
blob_dump_tool.h
blob_file.cc Blob DB: fix snapshot handling 2017-11-02 15:58:27 -07:00
blob_file.h Blob DB: fix snapshot handling 2017-11-02 15:58:27 -07:00
blob_index.h
blob_log_format.cc
blob_log_format.h
blob_log_reader.cc
blob_log_reader.h
blob_log_writer.cc
blob_log_writer.h
ttl_extractor.cc