mirror of https://github.com/facebook/rocksdb.git
Blob DB garbage collection should keep keys with newer version
Summary: Fix the bug where if blob db garbage collection revmoe keys with newer version. It shouldn't delete the key from base db when sequence number in base db is not equal to the one in blob log. Closes https://github.com/facebook/rocksdb/pull/2678 Differential Revision: D5549752 Pulled By: yiwu-arbug fbshipit-source-id: abb8649260963b5c389748023970fd746279d227
This commit is contained in:
parent
58410aee44
commit
2c45ada4c4
|
@ -1712,10 +1712,17 @@ Status BlobDBImpl::GCFileAndUpdateLSM(const std::shared_ptr<BlobFile>& bfptr,
|
|||
gcstats->blob_count++;
|
||||
|
||||
bool del_this = false;
|
||||
bool reloc_this = false;
|
||||
|
||||
// TODO(yiwu): The following logic should use GetForUpdate() from
|
||||
// optimistic transaction to check if the key is current, otherwise
|
||||
// there can be another writer sneak in between sequence number of
|
||||
// and the deletion.
|
||||
|
||||
// this particular TTL has expired
|
||||
if (no_relocation_ttl || (has_ttl && tt > record.GetTTL())) {
|
||||
del_this = true;
|
||||
} else {
|
||||
} else if (!first_gc) {
|
||||
SequenceNumber seq = kMaxSequenceNumber;
|
||||
bool found_record_for_key = false;
|
||||
SuperVersion* sv = db_impl_->GetAndRefSuperVersion(cfd);
|
||||
|
@ -1726,8 +1733,8 @@ Status BlobDBImpl::GCFileAndUpdateLSM(const std::shared_ptr<BlobFile>& bfptr,
|
|||
}
|
||||
Status s1 = db_impl_->GetLatestSequenceForKey(
|
||||
sv, record.Key(), false, &seq, &found_record_for_key);
|
||||
if (s1.IsNotFound() || (!found_record_for_key || seq != record.GetSN())) {
|
||||
del_this = true;
|
||||
if (found_record_for_key && seq == record.GetSN()) {
|
||||
reloc_this = true;
|
||||
}
|
||||
db_impl_->ReturnAndCleanupSuperVersion(cfd, sv);
|
||||
}
|
||||
|
@ -1749,11 +1756,9 @@ Status BlobDBImpl::GCFileAndUpdateLSM(const std::shared_ptr<BlobFile>& bfptr,
|
|||
gcstats->overrided_while_delete++;
|
||||
}
|
||||
delete txn;
|
||||
continue;
|
||||
} else if (first_gc) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (reloc_this) {
|
||||
if (!newfile) {
|
||||
// new file
|
||||
std::string reason("GC of ");
|
||||
|
@ -1806,9 +1811,9 @@ Status BlobDBImpl::GCFileAndUpdateLSM(const std::shared_ptr<BlobFile>& bfptr,
|
|||
write_options_, OptimisticTransactionOptions(), nullptr);
|
||||
txn->Put(cfh, record.Key(), index_entry);
|
||||
Status s1 = txn->Commit();
|
||||
// chances that this Put will fail is low. If it fails, it would be because
|
||||
// a new version of the key came in at this time, which will override
|
||||
// the current version being iterated on.
|
||||
// chances that this Put will fail is low. If it fails, it would be
|
||||
// because a new version of the key came in at this time, which will
|
||||
// override the current version being iterated on.
|
||||
if (s1.IsBusy()) {
|
||||
ROCKS_LOG_INFO(db_options_.info_log,
|
||||
"Optimistic transaction failed: %s put bn: %" PRIu32,
|
||||
|
@ -1821,6 +1826,7 @@ Status BlobDBImpl::GCFileAndUpdateLSM(const std::shared_ptr<BlobFile>& bfptr,
|
|||
}
|
||||
delete txn;
|
||||
}
|
||||
}
|
||||
|
||||
if (gcstats->newfile) total_blob_space_ += newfile->file_size_;
|
||||
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
#include <string>
|
||||
#include "db/db_test_util.h"
|
||||
#include "port/port.h"
|
||||
#include "util/cast_util.h"
|
||||
#include "util/random.h"
|
||||
#include "util/string_util.h"
|
||||
#include "util/testharness.h"
|
||||
|
@ -531,7 +532,8 @@ TEST_F(BlobDBTest, SequenceNumber) {
|
|||
bdb_options.disable_background_tasks = true;
|
||||
Open(bdb_options);
|
||||
SequenceNumber sequence = blob_db_->GetLatestSequenceNumber();
|
||||
BlobDBImpl *blob_db_impl = reinterpret_cast<BlobDBImpl *>(blob_db_);
|
||||
BlobDBImpl *blob_db_impl =
|
||||
static_cast_with_check<BlobDBImpl, BlobDB>(blob_db_);
|
||||
for (int i = 0; i < 100; i++) {
|
||||
std::string key = "key" + ToString(i);
|
||||
PutRandom(key, &rnd);
|
||||
|
@ -560,6 +562,44 @@ TEST_F(BlobDBTest, SequenceNumber) {
|
|||
}
|
||||
}
|
||||
|
||||
TEST_F(BlobDBTest, GCShouldKeepKeysWithNewerVersion) {
|
||||
Random rnd(301);
|
||||
BlobDBOptions bdb_options;
|
||||
bdb_options.disable_background_tasks = true;
|
||||
Open(bdb_options);
|
||||
BlobDBImpl *blob_db_impl =
|
||||
static_cast_with_check<BlobDBImpl, BlobDB>(blob_db_);
|
||||
DBImpl *db_impl = static_cast_with_check<DBImpl, DB>(blob_db_->GetBaseDB());
|
||||
std::map<std::string, std::string> data;
|
||||
for (int i = 0; i < 200; i++) {
|
||||
PutRandom("key" + ToString(i), &rnd, &data);
|
||||
}
|
||||
auto blob_files = blob_db_impl->TEST_GetBlobFiles();
|
||||
ASSERT_EQ(1, blob_files.size());
|
||||
blob_db_impl->TEST_CloseBlobFile(blob_files[0]);
|
||||
// Test for data in SST
|
||||
size_t new_keys = 0;
|
||||
for (int i = 0; i < 100; i++) {
|
||||
if (rnd.Next() % 2 == 1) {
|
||||
new_keys++;
|
||||
PutRandom("key" + ToString(i), &rnd, &data);
|
||||
}
|
||||
}
|
||||
db_impl->TEST_FlushMemTable(true /*wait*/);
|
||||
// Test for data in memtable
|
||||
for (int i = 100; i < 200; i++) {
|
||||
if (rnd.Next() % 2 == 1) {
|
||||
new_keys++;
|
||||
PutRandom("key" + ToString(i), &rnd, &data);
|
||||
}
|
||||
}
|
||||
GCStats gc_stats;
|
||||
ASSERT_OK(blob_db_impl->TEST_GCFileAndUpdateLSM(blob_files[0], &gc_stats));
|
||||
ASSERT_EQ(0, gc_stats.num_deletes);
|
||||
ASSERT_EQ(200 - new_keys, gc_stats.num_relocs);
|
||||
VerifyDB(data);
|
||||
}
|
||||
|
||||
} // namespace blob_db
|
||||
} // namespace rocksdb
|
||||
|
||||
|
|
Loading…
Reference in New Issue