Timestamp and TTL Wrapper for rocksdb
Summary:
When opened with DBTimestamp::Open call, timestamps are prepended to and stripped from the value during subsequent Put and Get calls respectively. The Timestamp is used to discard values in Get and custom compaction filter which have exceeded their TTL which is specified during Open.
Have made a temporary change to Makefile to let us test with the temporary file TestTime.cc. Have also changed the private members of db_impl.h to protected to let them be inherited by the new class DBTimestamp
Test Plan: make db_timestamp; TestTime.cc(will not check it in) shows how to use the apis currently, but I will write unit-tests shortly
Reviewers: dhruba, vamsi, haobo, sheki, heyongqiang, vkrest
Reviewed By: vamsi
CC: zshao, xjin, vkrest, MarkCallaghan
Differential Revision: https://reviews.facebook.net/D10311
2013-04-15 22:33:13 +02:00
|
|
|
// Copyright (c) 2011 The LevelDB Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file. See the AUTHORS file for names of contributors.
|
|
|
|
|
2013-08-13 19:56:20 +02:00
|
|
|
#include <memory>
|
2013-08-23 17:38:13 +02:00
|
|
|
#include "rocksdb/compaction_filter.h"
|
2013-08-03 09:40:22 +02:00
|
|
|
#include "utilities/utility_db.h"
|
Timestamp and TTL Wrapper for rocksdb
Summary:
When opened with DBTimestamp::Open call, timestamps are prepended to and stripped from the value during subsequent Put and Get calls respectively. The Timestamp is used to discard values in Get and custom compaction filter which have exceeded their TTL which is specified during Open.
Have made a temporary change to Makefile to let us test with the temporary file TestTime.cc. Have also changed the private members of db_impl.h to protected to let them be inherited by the new class DBTimestamp
Test Plan: make db_timestamp; TestTime.cc(will not check it in) shows how to use the apis currently, but I will write unit-tests shortly
Reviewers: dhruba, vamsi, haobo, sheki, heyongqiang, vkrest
Reviewed By: vamsi
CC: zshao, xjin, vkrest, MarkCallaghan
Differential Revision: https://reviews.facebook.net/D10311
2013-04-15 22:33:13 +02:00
|
|
|
#include "util/testharness.h"
|
|
|
|
#include "util/logging.h"
|
|
|
|
#include <map>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2013-10-04 06:49:15 +02:00
|
|
|
namespace rocksdb {
|
Timestamp and TTL Wrapper for rocksdb
Summary:
When opened with DBTimestamp::Open call, timestamps are prepended to and stripped from the value during subsequent Put and Get calls respectively. The Timestamp is used to discard values in Get and custom compaction filter which have exceeded their TTL which is specified during Open.
Have made a temporary change to Makefile to let us test with the temporary file TestTime.cc. Have also changed the private members of db_impl.h to protected to let them be inherited by the new class DBTimestamp
Test Plan: make db_timestamp; TestTime.cc(will not check it in) shows how to use the apis currently, but I will write unit-tests shortly
Reviewers: dhruba, vamsi, haobo, sheki, heyongqiang, vkrest
Reviewed By: vamsi
CC: zshao, xjin, vkrest, MarkCallaghan
Differential Revision: https://reviews.facebook.net/D10311
2013-04-15 22:33:13 +02:00
|
|
|
|
|
|
|
namespace {
|
2013-08-03 09:40:22 +02:00
|
|
|
|
Timestamp and TTL Wrapper for rocksdb
Summary:
When opened with DBTimestamp::Open call, timestamps are prepended to and stripped from the value during subsequent Put and Get calls respectively. The Timestamp is used to discard values in Get and custom compaction filter which have exceeded their TTL which is specified during Open.
Have made a temporary change to Makefile to let us test with the temporary file TestTime.cc. Have also changed the private members of db_impl.h to protected to let them be inherited by the new class DBTimestamp
Test Plan: make db_timestamp; TestTime.cc(will not check it in) shows how to use the apis currently, but I will write unit-tests shortly
Reviewers: dhruba, vamsi, haobo, sheki, heyongqiang, vkrest
Reviewed By: vamsi
CC: zshao, xjin, vkrest, MarkCallaghan
Differential Revision: https://reviews.facebook.net/D10311
2013-04-15 22:33:13 +02:00
|
|
|
typedef std::map<std::string, std::string> KVMap;
|
2013-08-03 09:40:22 +02:00
|
|
|
|
2013-05-16 00:00:57 +02:00
|
|
|
enum BatchOperation {
|
|
|
|
PUT = 0,
|
|
|
|
DELETE = 1
|
|
|
|
};
|
2013-08-03 09:40:22 +02:00
|
|
|
|
Timestamp and TTL Wrapper for rocksdb
Summary:
When opened with DBTimestamp::Open call, timestamps are prepended to and stripped from the value during subsequent Put and Get calls respectively. The Timestamp is used to discard values in Get and custom compaction filter which have exceeded their TTL which is specified during Open.
Have made a temporary change to Makefile to let us test with the temporary file TestTime.cc. Have also changed the private members of db_impl.h to protected to let them be inherited by the new class DBTimestamp
Test Plan: make db_timestamp; TestTime.cc(will not check it in) shows how to use the apis currently, but I will write unit-tests shortly
Reviewers: dhruba, vamsi, haobo, sheki, heyongqiang, vkrest
Reviewed By: vamsi
CC: zshao, xjin, vkrest, MarkCallaghan
Differential Revision: https://reviews.facebook.net/D10311
2013-04-15 22:33:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
class TtlTest {
|
|
|
|
public:
|
|
|
|
TtlTest() {
|
|
|
|
dbname_ = test::TmpDir() + "/db_ttl";
|
|
|
|
options_.create_if_missing = true;
|
|
|
|
// ensure that compaction is kicked in to always strip timestamp from kvs
|
|
|
|
options_.max_grandparent_overlap_factor = 0;
|
|
|
|
// compaction should take place always from level0 for determinism
|
|
|
|
options_.max_mem_compaction_level = 0;
|
|
|
|
db_ttl_ = nullptr;
|
|
|
|
DestroyDB(dbname_, Options());
|
|
|
|
}
|
|
|
|
|
|
|
|
~TtlTest() {
|
|
|
|
CloseTtl();
|
|
|
|
DestroyDB(dbname_, Options());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Open database with TTL support when TTL not provided with db_ttl_ pointer
|
|
|
|
void OpenTtl() {
|
|
|
|
assert(db_ttl_ == nullptr); // db should be closed before opening again
|
|
|
|
ASSERT_OK(UtilityDB::OpenTtlDB(options_, dbname_, &db_ttl_));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Open database with TTL support when TTL provided with db_ttl_ pointer
|
|
|
|
void OpenTtl(int32_t ttl) {
|
|
|
|
assert(db_ttl_ == nullptr);
|
|
|
|
ASSERT_OK(UtilityDB::OpenTtlDB(options_, dbname_, &db_ttl_, ttl));
|
|
|
|
}
|
|
|
|
|
2013-08-03 09:40:22 +02:00
|
|
|
// Open with TestFilter compaction filter
|
|
|
|
void OpenTtlWithTestCompaction(int32_t ttl) {
|
2013-08-13 19:56:20 +02:00
|
|
|
options_.compaction_filter_factory =
|
|
|
|
std::shared_ptr<CompactionFilterFactory>(
|
|
|
|
new TestFilterFactory(kSampleSize_, kNewValue_));
|
2013-08-03 09:40:22 +02:00
|
|
|
OpenTtl(ttl);
|
|
|
|
}
|
|
|
|
|
2013-05-10 23:19:47 +02:00
|
|
|
// Open database with TTL support in read_only mode
|
|
|
|
void OpenReadOnlyTtl(int32_t ttl) {
|
|
|
|
assert(db_ttl_ == nullptr);
|
|
|
|
ASSERT_OK(UtilityDB::OpenTtlDB(options_, dbname_, &db_ttl_, ttl, true));
|
|
|
|
}
|
|
|
|
|
Timestamp and TTL Wrapper for rocksdb
Summary:
When opened with DBTimestamp::Open call, timestamps are prepended to and stripped from the value during subsequent Put and Get calls respectively. The Timestamp is used to discard values in Get and custom compaction filter which have exceeded their TTL which is specified during Open.
Have made a temporary change to Makefile to let us test with the temporary file TestTime.cc. Have also changed the private members of db_impl.h to protected to let them be inherited by the new class DBTimestamp
Test Plan: make db_timestamp; TestTime.cc(will not check it in) shows how to use the apis currently, but I will write unit-tests shortly
Reviewers: dhruba, vamsi, haobo, sheki, heyongqiang, vkrest
Reviewed By: vamsi
CC: zshao, xjin, vkrest, MarkCallaghan
Differential Revision: https://reviews.facebook.net/D10311
2013-04-15 22:33:13 +02:00
|
|
|
void CloseTtl() {
|
|
|
|
delete db_ttl_;
|
|
|
|
db_ttl_ = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Populates and returns a kv-map
|
|
|
|
void MakeKVMap(int64_t num_entries) {
|
|
|
|
kvmap_.clear();
|
2013-08-03 09:40:22 +02:00
|
|
|
int digits = 1;
|
|
|
|
for (int dummy = num_entries; dummy /= 10 ; ++digits);
|
|
|
|
int digits_in_i = 1;
|
Timestamp and TTL Wrapper for rocksdb
Summary:
When opened with DBTimestamp::Open call, timestamps are prepended to and stripped from the value during subsequent Put and Get calls respectively. The Timestamp is used to discard values in Get and custom compaction filter which have exceeded their TTL which is specified during Open.
Have made a temporary change to Makefile to let us test with the temporary file TestTime.cc. Have also changed the private members of db_impl.h to protected to let them be inherited by the new class DBTimestamp
Test Plan: make db_timestamp; TestTime.cc(will not check it in) shows how to use the apis currently, but I will write unit-tests shortly
Reviewers: dhruba, vamsi, haobo, sheki, heyongqiang, vkrest
Reviewed By: vamsi
CC: zshao, xjin, vkrest, MarkCallaghan
Differential Revision: https://reviews.facebook.net/D10311
2013-04-15 22:33:13 +02:00
|
|
|
for (int64_t i = 0; i < num_entries; i++) {
|
|
|
|
std::string key = "key";
|
|
|
|
std::string value = "value";
|
2013-08-03 09:40:22 +02:00
|
|
|
if (i % 10 == 0) {
|
|
|
|
digits_in_i++;
|
|
|
|
}
|
|
|
|
for(int j = digits_in_i; j < digits; j++) {
|
|
|
|
key.append("0");
|
|
|
|
value.append("0");
|
|
|
|
}
|
Timestamp and TTL Wrapper for rocksdb
Summary:
When opened with DBTimestamp::Open call, timestamps are prepended to and stripped from the value during subsequent Put and Get calls respectively. The Timestamp is used to discard values in Get and custom compaction filter which have exceeded their TTL which is specified during Open.
Have made a temporary change to Makefile to let us test with the temporary file TestTime.cc. Have also changed the private members of db_impl.h to protected to let them be inherited by the new class DBTimestamp
Test Plan: make db_timestamp; TestTime.cc(will not check it in) shows how to use the apis currently, but I will write unit-tests shortly
Reviewers: dhruba, vamsi, haobo, sheki, heyongqiang, vkrest
Reviewed By: vamsi
CC: zshao, xjin, vkrest, MarkCallaghan
Differential Revision: https://reviews.facebook.net/D10311
2013-04-15 22:33:13 +02:00
|
|
|
AppendNumberTo(&key, i);
|
|
|
|
AppendNumberTo(&value, i);
|
|
|
|
kvmap_[key] = value;
|
|
|
|
}
|
|
|
|
ASSERT_EQ((int)kvmap_.size(), num_entries);//check all insertions done
|
|
|
|
}
|
|
|
|
|
2013-05-16 00:00:57 +02:00
|
|
|
// Makes a write-batch with key-vals from kvmap_ and 'Write''s it
|
|
|
|
void MakePutWriteBatch(const BatchOperation* batch_ops, int num_ops) {
|
|
|
|
assert(num_ops <= (int)kvmap_.size());
|
|
|
|
static WriteOptions wopts;
|
|
|
|
static FlushOptions flush_opts;
|
|
|
|
WriteBatch batch;
|
|
|
|
kv_it_ = kvmap_.begin();
|
|
|
|
for (int i = 0; i < num_ops && kv_it_ != kvmap_.end(); i++, kv_it_++) {
|
|
|
|
switch (batch_ops[i]) {
|
|
|
|
case PUT:
|
|
|
|
batch.Put(kv_it_->first, kv_it_->second);
|
|
|
|
break;
|
|
|
|
case DELETE:
|
|
|
|
batch.Delete(kv_it_->first);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
assert(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
db_ttl_->Write(wopts, &batch);
|
|
|
|
db_ttl_->Flush(flush_opts);
|
|
|
|
}
|
|
|
|
|
Timestamp and TTL Wrapper for rocksdb
Summary:
When opened with DBTimestamp::Open call, timestamps are prepended to and stripped from the value during subsequent Put and Get calls respectively. The Timestamp is used to discard values in Get and custom compaction filter which have exceeded their TTL which is specified during Open.
Have made a temporary change to Makefile to let us test with the temporary file TestTime.cc. Have also changed the private members of db_impl.h to protected to let them be inherited by the new class DBTimestamp
Test Plan: make db_timestamp; TestTime.cc(will not check it in) shows how to use the apis currently, but I will write unit-tests shortly
Reviewers: dhruba, vamsi, haobo, sheki, heyongqiang, vkrest
Reviewed By: vamsi
CC: zshao, xjin, vkrest, MarkCallaghan
Differential Revision: https://reviews.facebook.net/D10311
2013-04-15 22:33:13 +02:00
|
|
|
// Puts num_entries starting from start_pos_map from kvmap_ into the database
|
2013-09-02 06:04:20 +02:00
|
|
|
void PutValues(int start_pos_map, int num_entries, bool flush = true) {
|
Timestamp and TTL Wrapper for rocksdb
Summary:
When opened with DBTimestamp::Open call, timestamps are prepended to and stripped from the value during subsequent Put and Get calls respectively. The Timestamp is used to discard values in Get and custom compaction filter which have exceeded their TTL which is specified during Open.
Have made a temporary change to Makefile to let us test with the temporary file TestTime.cc. Have also changed the private members of db_impl.h to protected to let them be inherited by the new class DBTimestamp
Test Plan: make db_timestamp; TestTime.cc(will not check it in) shows how to use the apis currently, but I will write unit-tests shortly
Reviewers: dhruba, vamsi, haobo, sheki, heyongqiang, vkrest
Reviewed By: vamsi
CC: zshao, xjin, vkrest, MarkCallaghan
Differential Revision: https://reviews.facebook.net/D10311
2013-04-15 22:33:13 +02:00
|
|
|
assert(db_ttl_);
|
|
|
|
ASSERT_LE(start_pos_map + num_entries, (int)kvmap_.size());
|
|
|
|
static WriteOptions wopts;
|
|
|
|
static FlushOptions flush_opts;
|
|
|
|
kv_it_ = kvmap_.begin();
|
|
|
|
advance(kv_it_, start_pos_map);
|
|
|
|
for (int i = 0; kv_it_ != kvmap_.end(), i < num_entries; i++, kv_it_++) {
|
|
|
|
ASSERT_OK(db_ttl_->Put(wopts, kv_it_->first, kv_it_->second));
|
|
|
|
}
|
|
|
|
// Put a mock kv at the end because CompactionFilter doesn't delete last key
|
|
|
|
ASSERT_OK(db_ttl_->Put(wopts, "keymock", "valuemock"));
|
2013-09-02 06:04:20 +02:00
|
|
|
if (flush) {
|
|
|
|
db_ttl_->Flush(flush_opts);
|
|
|
|
}
|
Timestamp and TTL Wrapper for rocksdb
Summary:
When opened with DBTimestamp::Open call, timestamps are prepended to and stripped from the value during subsequent Put and Get calls respectively. The Timestamp is used to discard values in Get and custom compaction filter which have exceeded their TTL which is specified during Open.
Have made a temporary change to Makefile to let us test with the temporary file TestTime.cc. Have also changed the private members of db_impl.h to protected to let them be inherited by the new class DBTimestamp
Test Plan: make db_timestamp; TestTime.cc(will not check it in) shows how to use the apis currently, but I will write unit-tests shortly
Reviewers: dhruba, vamsi, haobo, sheki, heyongqiang, vkrest
Reviewed By: vamsi
CC: zshao, xjin, vkrest, MarkCallaghan
Differential Revision: https://reviews.facebook.net/D10311
2013-04-15 22:33:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Runs a manual compaction
|
|
|
|
void ManualCompact() {
|
|
|
|
db_ttl_->CompactRange(nullptr, nullptr);
|
|
|
|
}
|
|
|
|
|
2013-08-24 02:36:00 +02:00
|
|
|
// checks the whole kvmap_ to return correct values using KeyMayExist
|
|
|
|
void SimpleKeyMayExistCheck() {
|
|
|
|
static ReadOptions ropts;
|
|
|
|
bool value_found;
|
|
|
|
std::string val;
|
|
|
|
for(auto &kv : kvmap_) {
|
|
|
|
bool ret = db_ttl_->KeyMayExist(ropts, kv.first, &val, &value_found);
|
|
|
|
if (ret == false || value_found == false) {
|
|
|
|
fprintf(stderr, "KeyMayExist could not find key=%s in the database but"
|
|
|
|
" should have\n", kv.first.c_str());
|
|
|
|
assert(false);
|
|
|
|
} else if (val.compare(kv.second) != 0) {
|
|
|
|
fprintf(stderr, " value for key=%s present in database is %s but"
|
|
|
|
" should be %s\n", kv.first.c_str(), val.c_str(),
|
|
|
|
kv.second.c_str());
|
|
|
|
assert(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Timestamp and TTL Wrapper for rocksdb
Summary:
When opened with DBTimestamp::Open call, timestamps are prepended to and stripped from the value during subsequent Put and Get calls respectively. The Timestamp is used to discard values in Get and custom compaction filter which have exceeded their TTL which is specified during Open.
Have made a temporary change to Makefile to let us test with the temporary file TestTime.cc. Have also changed the private members of db_impl.h to protected to let them be inherited by the new class DBTimestamp
Test Plan: make db_timestamp; TestTime.cc(will not check it in) shows how to use the apis currently, but I will write unit-tests shortly
Reviewers: dhruba, vamsi, haobo, sheki, heyongqiang, vkrest
Reviewed By: vamsi
CC: zshao, xjin, vkrest, MarkCallaghan
Differential Revision: https://reviews.facebook.net/D10311
2013-04-15 22:33:13 +02:00
|
|
|
// Sleeps for slp_tim then runs a manual compaction
|
|
|
|
// Checks span starting from st_pos from kvmap_ in the db and
|
|
|
|
// Gets should return true if check is true and false otherwise
|
2013-08-03 09:40:22 +02:00
|
|
|
// Also checks that value that we got is the same as inserted; and =kNewValue
|
|
|
|
// if test_compaction_change is true
|
|
|
|
void SleepCompactCheck(int slp_tim, int st_pos, int span, bool check = true,
|
|
|
|
bool test_compaction_change = false) {
|
Timestamp and TTL Wrapper for rocksdb
Summary:
When opened with DBTimestamp::Open call, timestamps are prepended to and stripped from the value during subsequent Put and Get calls respectively. The Timestamp is used to discard values in Get and custom compaction filter which have exceeded their TTL which is specified during Open.
Have made a temporary change to Makefile to let us test with the temporary file TestTime.cc. Have also changed the private members of db_impl.h to protected to let them be inherited by the new class DBTimestamp
Test Plan: make db_timestamp; TestTime.cc(will not check it in) shows how to use the apis currently, but I will write unit-tests shortly
Reviewers: dhruba, vamsi, haobo, sheki, heyongqiang, vkrest
Reviewed By: vamsi
CC: zshao, xjin, vkrest, MarkCallaghan
Differential Revision: https://reviews.facebook.net/D10311
2013-04-15 22:33:13 +02:00
|
|
|
assert(db_ttl_);
|
|
|
|
sleep(slp_tim);
|
|
|
|
ManualCompact();
|
|
|
|
static ReadOptions ropts;
|
|
|
|
kv_it_ = kvmap_.begin();
|
|
|
|
advance(kv_it_, st_pos);
|
|
|
|
std::string v;
|
|
|
|
for (int i = 0; kv_it_ != kvmap_.end(), i < span; i++, kv_it_++) {
|
|
|
|
Status s = db_ttl_->Get(ropts, kv_it_->first, &v);
|
|
|
|
if (s.ok() != check) {
|
2013-08-03 09:40:22 +02:00
|
|
|
fprintf(stderr, "key=%s ", kv_it_->first.c_str());
|
Timestamp and TTL Wrapper for rocksdb
Summary:
When opened with DBTimestamp::Open call, timestamps are prepended to and stripped from the value during subsequent Put and Get calls respectively. The Timestamp is used to discard values in Get and custom compaction filter which have exceeded their TTL which is specified during Open.
Have made a temporary change to Makefile to let us test with the temporary file TestTime.cc. Have also changed the private members of db_impl.h to protected to let them be inherited by the new class DBTimestamp
Test Plan: make db_timestamp; TestTime.cc(will not check it in) shows how to use the apis currently, but I will write unit-tests shortly
Reviewers: dhruba, vamsi, haobo, sheki, heyongqiang, vkrest
Reviewed By: vamsi
CC: zshao, xjin, vkrest, MarkCallaghan
Differential Revision: https://reviews.facebook.net/D10311
2013-04-15 22:33:13 +02:00
|
|
|
if (!s.ok()) {
|
|
|
|
fprintf(stderr, "is absent from db but was expected to be present\n");
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "is present in db but was expected to be absent\n");
|
|
|
|
}
|
|
|
|
assert(false);
|
2013-08-03 09:40:22 +02:00
|
|
|
} else if (s.ok()) {
|
|
|
|
if (test_compaction_change && v.compare(kNewValue_) != 0) {
|
|
|
|
fprintf(stderr, " value for key=%s present in database is %s but "
|
|
|
|
" should be %s\n", kv_it_->first.c_str(), v.c_str(),
|
|
|
|
kNewValue_.c_str());
|
|
|
|
assert(false);
|
|
|
|
} else if (!test_compaction_change && v.compare(kv_it_->second) !=0) {
|
|
|
|
fprintf(stderr, " value for key=%s present in database is %s but "
|
|
|
|
" should be %s\n", kv_it_->first.c_str(), v.c_str(),
|
|
|
|
kv_it_->second.c_str());
|
|
|
|
assert(false);
|
|
|
|
}
|
Timestamp and TTL Wrapper for rocksdb
Summary:
When opened with DBTimestamp::Open call, timestamps are prepended to and stripped from the value during subsequent Put and Get calls respectively. The Timestamp is used to discard values in Get and custom compaction filter which have exceeded their TTL which is specified during Open.
Have made a temporary change to Makefile to let us test with the temporary file TestTime.cc. Have also changed the private members of db_impl.h to protected to let them be inherited by the new class DBTimestamp
Test Plan: make db_timestamp; TestTime.cc(will not check it in) shows how to use the apis currently, but I will write unit-tests shortly
Reviewers: dhruba, vamsi, haobo, sheki, heyongqiang, vkrest
Reviewed By: vamsi
CC: zshao, xjin, vkrest, MarkCallaghan
Differential Revision: https://reviews.facebook.net/D10311
2013-04-15 22:33:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Similar as SleepCompactCheck but uses TtlIterator to read from db
|
|
|
|
void SleepCompactCheckIter(int slp, int st_pos, int span, bool check=true) {
|
|
|
|
assert(db_ttl_);
|
|
|
|
sleep(slp);
|
|
|
|
ManualCompact();
|
|
|
|
static ReadOptions ropts;
|
|
|
|
Iterator *dbiter = db_ttl_->NewIterator(ropts);
|
|
|
|
kv_it_ = kvmap_.begin();
|
|
|
|
advance(kv_it_, st_pos);
|
|
|
|
|
|
|
|
dbiter->Seek(kv_it_->first);
|
|
|
|
if (!check) {
|
|
|
|
if (dbiter->Valid()) {
|
|
|
|
ASSERT_NE(dbiter->value().compare(kv_it_->second), 0);
|
|
|
|
}
|
|
|
|
} else { // dbiter should have found out kvmap_[st_pos]
|
|
|
|
for (int i = st_pos;
|
|
|
|
kv_it_ != kvmap_.end() && i < st_pos + span;
|
|
|
|
i++, kv_it_++) {
|
|
|
|
ASSERT_TRUE(dbiter->Valid());
|
|
|
|
ASSERT_EQ(dbiter->value().compare(kv_it_->second), 0);
|
|
|
|
dbiter->Next();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
delete dbiter;
|
|
|
|
}
|
|
|
|
|
2013-08-03 09:40:22 +02:00
|
|
|
class TestFilter : public CompactionFilter {
|
|
|
|
public:
|
|
|
|
TestFilter(const int64_t kSampleSize, const std::string kNewValue)
|
|
|
|
: kSampleSize_(kSampleSize),
|
|
|
|
kNewValue_(kNewValue) {
|
|
|
|
}
|
|
|
|
|
|
|
|
// Works on keys of the form "key<number>"
|
|
|
|
// Drops key if number at the end of key is in [0, kSampleSize_/3),
|
|
|
|
// Keeps key if it is in [kSampleSize_/3, 2*kSampleSize_/3),
|
|
|
|
// Change value if it is in [2*kSampleSize_/3, kSampleSize_)
|
|
|
|
// Eg. kSampleSize_=6. Drop:key0-1...Keep:key2-3...Change:key4-5...
|
|
|
|
virtual bool Filter(int level, const Slice& key,
|
|
|
|
const Slice& value, std::string* new_value,
|
|
|
|
bool* value_changed) const override {
|
|
|
|
assert(new_value != nullptr);
|
|
|
|
|
|
|
|
std::string search_str = "0123456789";
|
|
|
|
std::string key_string = key.ToString();
|
|
|
|
size_t pos = key_string.find_first_of(search_str);
|
|
|
|
int num_key_end;
|
|
|
|
if (pos != std::string::npos) {
|
|
|
|
num_key_end = stoi(key_string.substr(pos, key.size() - pos));
|
|
|
|
} else {
|
|
|
|
return false; // Keep keys not matching the format "key<NUMBER>"
|
|
|
|
}
|
|
|
|
|
|
|
|
int partition = kSampleSize_ / 3;
|
|
|
|
if (num_key_end < partition) {
|
|
|
|
return true;
|
|
|
|
} else if (num_key_end < partition * 2) {
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
*new_value = kNewValue_;
|
|
|
|
*value_changed = true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual const char* Name() const override {
|
|
|
|
return "TestFilter";
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
const int64_t kSampleSize_;
|
|
|
|
const std::string kNewValue_;
|
|
|
|
};
|
|
|
|
|
2013-08-13 19:56:20 +02:00
|
|
|
class TestFilterFactory : public CompactionFilterFactory {
|
|
|
|
public:
|
|
|
|
TestFilterFactory(const int64_t kSampleSize, const std::string kNewValue)
|
|
|
|
: kSampleSize_(kSampleSize),
|
|
|
|
kNewValue_(kNewValue) {
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual std::unique_ptr<CompactionFilter>
|
2013-10-27 07:01:26 +01:00
|
|
|
CreateCompactionFilter(
|
|
|
|
const CompactionFilter::Context& context) override {
|
2013-08-13 19:56:20 +02:00
|
|
|
return std::unique_ptr<CompactionFilter>(
|
|
|
|
new TestFilter(kSampleSize_, kNewValue_));
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual const char* Name() const override {
|
|
|
|
return "TestFilterFactory";
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
const int64_t kSampleSize_;
|
|
|
|
const std::string kNewValue_;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
Timestamp and TTL Wrapper for rocksdb
Summary:
When opened with DBTimestamp::Open call, timestamps are prepended to and stripped from the value during subsequent Put and Get calls respectively. The Timestamp is used to discard values in Get and custom compaction filter which have exceeded their TTL which is specified during Open.
Have made a temporary change to Makefile to let us test with the temporary file TestTime.cc. Have also changed the private members of db_impl.h to protected to let them be inherited by the new class DBTimestamp
Test Plan: make db_timestamp; TestTime.cc(will not check it in) shows how to use the apis currently, but I will write unit-tests shortly
Reviewers: dhruba, vamsi, haobo, sheki, heyongqiang, vkrest
Reviewed By: vamsi
CC: zshao, xjin, vkrest, MarkCallaghan
Differential Revision: https://reviews.facebook.net/D10311
2013-04-15 22:33:13 +02:00
|
|
|
// Choose carefully so that Put, Gets & Compaction complete in 1 second buffer
|
2013-08-03 09:40:22 +02:00
|
|
|
const int64_t kSampleSize_ = 100;
|
Timestamp and TTL Wrapper for rocksdb
Summary:
When opened with DBTimestamp::Open call, timestamps are prepended to and stripped from the value during subsequent Put and Get calls respectively. The Timestamp is used to discard values in Get and custom compaction filter which have exceeded their TTL which is specified during Open.
Have made a temporary change to Makefile to let us test with the temporary file TestTime.cc. Have also changed the private members of db_impl.h to protected to let them be inherited by the new class DBTimestamp
Test Plan: make db_timestamp; TestTime.cc(will not check it in) shows how to use the apis currently, but I will write unit-tests shortly
Reviewers: dhruba, vamsi, haobo, sheki, heyongqiang, vkrest
Reviewed By: vamsi
CC: zshao, xjin, vkrest, MarkCallaghan
Differential Revision: https://reviews.facebook.net/D10311
2013-04-15 22:33:13 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
std::string dbname_;
|
2013-08-06 02:55:44 +02:00
|
|
|
StackableDB* db_ttl_;
|
Timestamp and TTL Wrapper for rocksdb
Summary:
When opened with DBTimestamp::Open call, timestamps are prepended to and stripped from the value during subsequent Put and Get calls respectively. The Timestamp is used to discard values in Get and custom compaction filter which have exceeded their TTL which is specified during Open.
Have made a temporary change to Makefile to let us test with the temporary file TestTime.cc. Have also changed the private members of db_impl.h to protected to let them be inherited by the new class DBTimestamp
Test Plan: make db_timestamp; TestTime.cc(will not check it in) shows how to use the apis currently, but I will write unit-tests shortly
Reviewers: dhruba, vamsi, haobo, sheki, heyongqiang, vkrest
Reviewed By: vamsi
CC: zshao, xjin, vkrest, MarkCallaghan
Differential Revision: https://reviews.facebook.net/D10311
2013-04-15 22:33:13 +02:00
|
|
|
Options options_;
|
|
|
|
KVMap kvmap_;
|
|
|
|
KVMap::iterator kv_it_;
|
2013-08-03 09:40:22 +02:00
|
|
|
const std::string kNewValue_ = "new_value";
|
|
|
|
unique_ptr<CompactionFilter> test_comp_filter_;
|
Timestamp and TTL Wrapper for rocksdb
Summary:
When opened with DBTimestamp::Open call, timestamps are prepended to and stripped from the value during subsequent Put and Get calls respectively. The Timestamp is used to discard values in Get and custom compaction filter which have exceeded their TTL which is specified during Open.
Have made a temporary change to Makefile to let us test with the temporary file TestTime.cc. Have also changed the private members of db_impl.h to protected to let them be inherited by the new class DBTimestamp
Test Plan: make db_timestamp; TestTime.cc(will not check it in) shows how to use the apis currently, but I will write unit-tests shortly
Reviewers: dhruba, vamsi, haobo, sheki, heyongqiang, vkrest
Reviewed By: vamsi
CC: zshao, xjin, vkrest, MarkCallaghan
Differential Revision: https://reviews.facebook.net/D10311
2013-04-15 22:33:13 +02:00
|
|
|
}; // class TtlTest
|
|
|
|
|
|
|
|
// If TTL is non positive or not provided, the behaviour is TTL = infinity
|
|
|
|
// This test opens the db 3 times with such default behavior and inserts a
|
|
|
|
// bunch of kvs each time. All kvs should accummulate in the db till the end
|
|
|
|
// Partitions the sample-size provided into 3 sets over boundary1 and boundary2
|
|
|
|
TEST(TtlTest, NoEffect) {
|
2013-08-03 09:40:22 +02:00
|
|
|
MakeKVMap(kSampleSize_);
|
|
|
|
int boundary1 = kSampleSize_ / 3;
|
Timestamp and TTL Wrapper for rocksdb
Summary:
When opened with DBTimestamp::Open call, timestamps are prepended to and stripped from the value during subsequent Put and Get calls respectively. The Timestamp is used to discard values in Get and custom compaction filter which have exceeded their TTL which is specified during Open.
Have made a temporary change to Makefile to let us test with the temporary file TestTime.cc. Have also changed the private members of db_impl.h to protected to let them be inherited by the new class DBTimestamp
Test Plan: make db_timestamp; TestTime.cc(will not check it in) shows how to use the apis currently, but I will write unit-tests shortly
Reviewers: dhruba, vamsi, haobo, sheki, heyongqiang, vkrest
Reviewed By: vamsi
CC: zshao, xjin, vkrest, MarkCallaghan
Differential Revision: https://reviews.facebook.net/D10311
2013-04-15 22:33:13 +02:00
|
|
|
int boundary2 = 2 * boundary1;
|
|
|
|
|
|
|
|
OpenTtl();
|
|
|
|
PutValues(0, boundary1); //T=0: Set1 never deleted
|
|
|
|
SleepCompactCheck(1, 0, boundary1); //T=1: Set1 still there
|
|
|
|
CloseTtl();
|
|
|
|
|
|
|
|
OpenTtl(0);
|
|
|
|
PutValues(boundary1, boundary2 - boundary1); //T=1: Set2 never deleted
|
|
|
|
SleepCompactCheck(1, 0, boundary2); //T=2: Sets1 & 2 still there
|
|
|
|
CloseTtl();
|
|
|
|
|
|
|
|
OpenTtl(-1);
|
2013-08-03 09:40:22 +02:00
|
|
|
PutValues(boundary2, kSampleSize_ - boundary2); //T=3: Set3 never deleted
|
|
|
|
SleepCompactCheck(1, 0, kSampleSize_, true); //T=4: Sets 1,2,3 still there
|
Timestamp and TTL Wrapper for rocksdb
Summary:
When opened with DBTimestamp::Open call, timestamps are prepended to and stripped from the value during subsequent Put and Get calls respectively. The Timestamp is used to discard values in Get and custom compaction filter which have exceeded their TTL which is specified during Open.
Have made a temporary change to Makefile to let us test with the temporary file TestTime.cc. Have also changed the private members of db_impl.h to protected to let them be inherited by the new class DBTimestamp
Test Plan: make db_timestamp; TestTime.cc(will not check it in) shows how to use the apis currently, but I will write unit-tests shortly
Reviewers: dhruba, vamsi, haobo, sheki, heyongqiang, vkrest
Reviewed By: vamsi
CC: zshao, xjin, vkrest, MarkCallaghan
Differential Revision: https://reviews.facebook.net/D10311
2013-04-15 22:33:13 +02:00
|
|
|
CloseTtl();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Puts a set of values and checks its presence using Get during ttl
|
|
|
|
TEST(TtlTest, PresentDuringTTL) {
|
2013-08-03 09:40:22 +02:00
|
|
|
MakeKVMap(kSampleSize_);
|
Timestamp and TTL Wrapper for rocksdb
Summary:
When opened with DBTimestamp::Open call, timestamps are prepended to and stripped from the value during subsequent Put and Get calls respectively. The Timestamp is used to discard values in Get and custom compaction filter which have exceeded their TTL which is specified during Open.
Have made a temporary change to Makefile to let us test with the temporary file TestTime.cc. Have also changed the private members of db_impl.h to protected to let them be inherited by the new class DBTimestamp
Test Plan: make db_timestamp; TestTime.cc(will not check it in) shows how to use the apis currently, but I will write unit-tests shortly
Reviewers: dhruba, vamsi, haobo, sheki, heyongqiang, vkrest
Reviewed By: vamsi
CC: zshao, xjin, vkrest, MarkCallaghan
Differential Revision: https://reviews.facebook.net/D10311
2013-04-15 22:33:13 +02:00
|
|
|
|
|
|
|
OpenTtl(2); // T=0:Open the db with ttl = 2
|
2013-08-03 09:40:22 +02:00
|
|
|
PutValues(0, kSampleSize_); // T=0:Insert Set1. Delete at t=2
|
|
|
|
SleepCompactCheck(1, 0, kSampleSize_, true); // T=1:Set1 should still be there
|
Timestamp and TTL Wrapper for rocksdb
Summary:
When opened with DBTimestamp::Open call, timestamps are prepended to and stripped from the value during subsequent Put and Get calls respectively. The Timestamp is used to discard values in Get and custom compaction filter which have exceeded their TTL which is specified during Open.
Have made a temporary change to Makefile to let us test with the temporary file TestTime.cc. Have also changed the private members of db_impl.h to protected to let them be inherited by the new class DBTimestamp
Test Plan: make db_timestamp; TestTime.cc(will not check it in) shows how to use the apis currently, but I will write unit-tests shortly
Reviewers: dhruba, vamsi, haobo, sheki, heyongqiang, vkrest
Reviewed By: vamsi
CC: zshao, xjin, vkrest, MarkCallaghan
Differential Revision: https://reviews.facebook.net/D10311
2013-04-15 22:33:13 +02:00
|
|
|
CloseTtl();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Puts a set of values and checks its absence using Get after ttl
|
|
|
|
TEST(TtlTest, AbsentAfterTTL) {
|
2013-08-03 09:40:22 +02:00
|
|
|
MakeKVMap(kSampleSize_);
|
Timestamp and TTL Wrapper for rocksdb
Summary:
When opened with DBTimestamp::Open call, timestamps are prepended to and stripped from the value during subsequent Put and Get calls respectively. The Timestamp is used to discard values in Get and custom compaction filter which have exceeded their TTL which is specified during Open.
Have made a temporary change to Makefile to let us test with the temporary file TestTime.cc. Have also changed the private members of db_impl.h to protected to let them be inherited by the new class DBTimestamp
Test Plan: make db_timestamp; TestTime.cc(will not check it in) shows how to use the apis currently, but I will write unit-tests shortly
Reviewers: dhruba, vamsi, haobo, sheki, heyongqiang, vkrest
Reviewed By: vamsi
CC: zshao, xjin, vkrest, MarkCallaghan
Differential Revision: https://reviews.facebook.net/D10311
2013-04-15 22:33:13 +02:00
|
|
|
|
|
|
|
OpenTtl(1); // T=0:Open the db with ttl = 2
|
2013-08-03 09:40:22 +02:00
|
|
|
PutValues(0, kSampleSize_); // T=0:Insert Set1. Delete at t=2
|
|
|
|
SleepCompactCheck(2, 0, kSampleSize_, false); // T=2:Set1 should not be there
|
Timestamp and TTL Wrapper for rocksdb
Summary:
When opened with DBTimestamp::Open call, timestamps are prepended to and stripped from the value during subsequent Put and Get calls respectively. The Timestamp is used to discard values in Get and custom compaction filter which have exceeded their TTL which is specified during Open.
Have made a temporary change to Makefile to let us test with the temporary file TestTime.cc. Have also changed the private members of db_impl.h to protected to let them be inherited by the new class DBTimestamp
Test Plan: make db_timestamp; TestTime.cc(will not check it in) shows how to use the apis currently, but I will write unit-tests shortly
Reviewers: dhruba, vamsi, haobo, sheki, heyongqiang, vkrest
Reviewed By: vamsi
CC: zshao, xjin, vkrest, MarkCallaghan
Differential Revision: https://reviews.facebook.net/D10311
2013-04-15 22:33:13 +02:00
|
|
|
CloseTtl();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Resets the timestamp of a set of kvs by updating them and checks that they
|
|
|
|
// are not deleted according to the old timestamp
|
|
|
|
TEST(TtlTest, ResetTimestamp) {
|
2013-08-03 09:40:22 +02:00
|
|
|
MakeKVMap(kSampleSize_);
|
Timestamp and TTL Wrapper for rocksdb
Summary:
When opened with DBTimestamp::Open call, timestamps are prepended to and stripped from the value during subsequent Put and Get calls respectively. The Timestamp is used to discard values in Get and custom compaction filter which have exceeded their TTL which is specified during Open.
Have made a temporary change to Makefile to let us test with the temporary file TestTime.cc. Have also changed the private members of db_impl.h to protected to let them be inherited by the new class DBTimestamp
Test Plan: make db_timestamp; TestTime.cc(will not check it in) shows how to use the apis currently, but I will write unit-tests shortly
Reviewers: dhruba, vamsi, haobo, sheki, heyongqiang, vkrest
Reviewed By: vamsi
CC: zshao, xjin, vkrest, MarkCallaghan
Differential Revision: https://reviews.facebook.net/D10311
2013-04-15 22:33:13 +02:00
|
|
|
|
|
|
|
OpenTtl(3);
|
2013-08-03 09:40:22 +02:00
|
|
|
PutValues(0, kSampleSize_); // T=0: Insert Set1. Delete at t=3
|
Timestamp and TTL Wrapper for rocksdb
Summary:
When opened with DBTimestamp::Open call, timestamps are prepended to and stripped from the value during subsequent Put and Get calls respectively. The Timestamp is used to discard values in Get and custom compaction filter which have exceeded their TTL which is specified during Open.
Have made a temporary change to Makefile to let us test with the temporary file TestTime.cc. Have also changed the private members of db_impl.h to protected to let them be inherited by the new class DBTimestamp
Test Plan: make db_timestamp; TestTime.cc(will not check it in) shows how to use the apis currently, but I will write unit-tests shortly
Reviewers: dhruba, vamsi, haobo, sheki, heyongqiang, vkrest
Reviewed By: vamsi
CC: zshao, xjin, vkrest, MarkCallaghan
Differential Revision: https://reviews.facebook.net/D10311
2013-04-15 22:33:13 +02:00
|
|
|
sleep(2); // T=2
|
2013-08-03 09:40:22 +02:00
|
|
|
PutValues(0, kSampleSize_); // T=2: Insert Set1. Delete at t=5
|
|
|
|
SleepCompactCheck(2, 0, kSampleSize_); // T=4: Set1 should still be there
|
Timestamp and TTL Wrapper for rocksdb
Summary:
When opened with DBTimestamp::Open call, timestamps are prepended to and stripped from the value during subsequent Put and Get calls respectively. The Timestamp is used to discard values in Get and custom compaction filter which have exceeded their TTL which is specified during Open.
Have made a temporary change to Makefile to let us test with the temporary file TestTime.cc. Have also changed the private members of db_impl.h to protected to let them be inherited by the new class DBTimestamp
Test Plan: make db_timestamp; TestTime.cc(will not check it in) shows how to use the apis currently, but I will write unit-tests shortly
Reviewers: dhruba, vamsi, haobo, sheki, heyongqiang, vkrest
Reviewed By: vamsi
CC: zshao, xjin, vkrest, MarkCallaghan
Differential Revision: https://reviews.facebook.net/D10311
2013-04-15 22:33:13 +02:00
|
|
|
CloseTtl();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Similar to PresentDuringTTL but uses Iterator
|
|
|
|
TEST(TtlTest, IterPresentDuringTTL) {
|
2013-08-03 09:40:22 +02:00
|
|
|
MakeKVMap(kSampleSize_);
|
Timestamp and TTL Wrapper for rocksdb
Summary:
When opened with DBTimestamp::Open call, timestamps are prepended to and stripped from the value during subsequent Put and Get calls respectively. The Timestamp is used to discard values in Get and custom compaction filter which have exceeded their TTL which is specified during Open.
Have made a temporary change to Makefile to let us test with the temporary file TestTime.cc. Have also changed the private members of db_impl.h to protected to let them be inherited by the new class DBTimestamp
Test Plan: make db_timestamp; TestTime.cc(will not check it in) shows how to use the apis currently, but I will write unit-tests shortly
Reviewers: dhruba, vamsi, haobo, sheki, heyongqiang, vkrest
Reviewed By: vamsi
CC: zshao, xjin, vkrest, MarkCallaghan
Differential Revision: https://reviews.facebook.net/D10311
2013-04-15 22:33:13 +02:00
|
|
|
|
|
|
|
OpenTtl(2);
|
2013-08-03 09:40:22 +02:00
|
|
|
PutValues(0, kSampleSize_); // T=0: Insert. Delete at t=2
|
|
|
|
SleepCompactCheckIter(1, 0, kSampleSize_); // T=1: Set should be there
|
Timestamp and TTL Wrapper for rocksdb
Summary:
When opened with DBTimestamp::Open call, timestamps are prepended to and stripped from the value during subsequent Put and Get calls respectively. The Timestamp is used to discard values in Get and custom compaction filter which have exceeded their TTL which is specified during Open.
Have made a temporary change to Makefile to let us test with the temporary file TestTime.cc. Have also changed the private members of db_impl.h to protected to let them be inherited by the new class DBTimestamp
Test Plan: make db_timestamp; TestTime.cc(will not check it in) shows how to use the apis currently, but I will write unit-tests shortly
Reviewers: dhruba, vamsi, haobo, sheki, heyongqiang, vkrest
Reviewed By: vamsi
CC: zshao, xjin, vkrest, MarkCallaghan
Differential Revision: https://reviews.facebook.net/D10311
2013-04-15 22:33:13 +02:00
|
|
|
CloseTtl();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Similar to AbsentAfterTTL but uses Iterator
|
|
|
|
TEST(TtlTest, IterAbsentAfterTTL) {
|
2013-08-03 09:40:22 +02:00
|
|
|
MakeKVMap(kSampleSize_);
|
Timestamp and TTL Wrapper for rocksdb
Summary:
When opened with DBTimestamp::Open call, timestamps are prepended to and stripped from the value during subsequent Put and Get calls respectively. The Timestamp is used to discard values in Get and custom compaction filter which have exceeded their TTL which is specified during Open.
Have made a temporary change to Makefile to let us test with the temporary file TestTime.cc. Have also changed the private members of db_impl.h to protected to let them be inherited by the new class DBTimestamp
Test Plan: make db_timestamp; TestTime.cc(will not check it in) shows how to use the apis currently, but I will write unit-tests shortly
Reviewers: dhruba, vamsi, haobo, sheki, heyongqiang, vkrest
Reviewed By: vamsi
CC: zshao, xjin, vkrest, MarkCallaghan
Differential Revision: https://reviews.facebook.net/D10311
2013-04-15 22:33:13 +02:00
|
|
|
|
|
|
|
OpenTtl(1);
|
2013-08-03 09:40:22 +02:00
|
|
|
PutValues(0, kSampleSize_); // T=0: Insert. Delete at t=1
|
|
|
|
SleepCompactCheckIter(2, 0, kSampleSize_, false); // T=2: Should not be there
|
Timestamp and TTL Wrapper for rocksdb
Summary:
When opened with DBTimestamp::Open call, timestamps are prepended to and stripped from the value during subsequent Put and Get calls respectively. The Timestamp is used to discard values in Get and custom compaction filter which have exceeded their TTL which is specified during Open.
Have made a temporary change to Makefile to let us test with the temporary file TestTime.cc. Have also changed the private members of db_impl.h to protected to let them be inherited by the new class DBTimestamp
Test Plan: make db_timestamp; TestTime.cc(will not check it in) shows how to use the apis currently, but I will write unit-tests shortly
Reviewers: dhruba, vamsi, haobo, sheki, heyongqiang, vkrest
Reviewed By: vamsi
CC: zshao, xjin, vkrest, MarkCallaghan
Differential Revision: https://reviews.facebook.net/D10311
2013-04-15 22:33:13 +02:00
|
|
|
CloseTtl();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Checks presence while opening the same db more than once with the same ttl
|
|
|
|
// Note: The second open will open the same db
|
|
|
|
TEST(TtlTest, MultiOpenSamePresent) {
|
2013-08-03 09:40:22 +02:00
|
|
|
MakeKVMap(kSampleSize_);
|
Timestamp and TTL Wrapper for rocksdb
Summary:
When opened with DBTimestamp::Open call, timestamps are prepended to and stripped from the value during subsequent Put and Get calls respectively. The Timestamp is used to discard values in Get and custom compaction filter which have exceeded their TTL which is specified during Open.
Have made a temporary change to Makefile to let us test with the temporary file TestTime.cc. Have also changed the private members of db_impl.h to protected to let them be inherited by the new class DBTimestamp
Test Plan: make db_timestamp; TestTime.cc(will not check it in) shows how to use the apis currently, but I will write unit-tests shortly
Reviewers: dhruba, vamsi, haobo, sheki, heyongqiang, vkrest
Reviewed By: vamsi
CC: zshao, xjin, vkrest, MarkCallaghan
Differential Revision: https://reviews.facebook.net/D10311
2013-04-15 22:33:13 +02:00
|
|
|
|
|
|
|
OpenTtl(2);
|
2013-08-03 09:40:22 +02:00
|
|
|
PutValues(0, kSampleSize_); // T=0: Insert. Delete at t=2
|
Timestamp and TTL Wrapper for rocksdb
Summary:
When opened with DBTimestamp::Open call, timestamps are prepended to and stripped from the value during subsequent Put and Get calls respectively. The Timestamp is used to discard values in Get and custom compaction filter which have exceeded their TTL which is specified during Open.
Have made a temporary change to Makefile to let us test with the temporary file TestTime.cc. Have also changed the private members of db_impl.h to protected to let them be inherited by the new class DBTimestamp
Test Plan: make db_timestamp; TestTime.cc(will not check it in) shows how to use the apis currently, but I will write unit-tests shortly
Reviewers: dhruba, vamsi, haobo, sheki, heyongqiang, vkrest
Reviewed By: vamsi
CC: zshao, xjin, vkrest, MarkCallaghan
Differential Revision: https://reviews.facebook.net/D10311
2013-04-15 22:33:13 +02:00
|
|
|
CloseTtl();
|
|
|
|
|
|
|
|
OpenTtl(2); // T=0. Delete at t=2
|
2013-08-03 09:40:22 +02:00
|
|
|
SleepCompactCheck(1, 0, kSampleSize_); // T=1: Set should be there
|
Timestamp and TTL Wrapper for rocksdb
Summary:
When opened with DBTimestamp::Open call, timestamps are prepended to and stripped from the value during subsequent Put and Get calls respectively. The Timestamp is used to discard values in Get and custom compaction filter which have exceeded their TTL which is specified during Open.
Have made a temporary change to Makefile to let us test with the temporary file TestTime.cc. Have also changed the private members of db_impl.h to protected to let them be inherited by the new class DBTimestamp
Test Plan: make db_timestamp; TestTime.cc(will not check it in) shows how to use the apis currently, but I will write unit-tests shortly
Reviewers: dhruba, vamsi, haobo, sheki, heyongqiang, vkrest
Reviewed By: vamsi
CC: zshao, xjin, vkrest, MarkCallaghan
Differential Revision: https://reviews.facebook.net/D10311
2013-04-15 22:33:13 +02:00
|
|
|
CloseTtl();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Checks absence while opening the same db more than once with the same ttl
|
|
|
|
// Note: The second open will open the same db
|
|
|
|
TEST(TtlTest, MultiOpenSameAbsent) {
|
2013-08-03 09:40:22 +02:00
|
|
|
MakeKVMap(kSampleSize_);
|
Timestamp and TTL Wrapper for rocksdb
Summary:
When opened with DBTimestamp::Open call, timestamps are prepended to and stripped from the value during subsequent Put and Get calls respectively. The Timestamp is used to discard values in Get and custom compaction filter which have exceeded their TTL which is specified during Open.
Have made a temporary change to Makefile to let us test with the temporary file TestTime.cc. Have also changed the private members of db_impl.h to protected to let them be inherited by the new class DBTimestamp
Test Plan: make db_timestamp; TestTime.cc(will not check it in) shows how to use the apis currently, but I will write unit-tests shortly
Reviewers: dhruba, vamsi, haobo, sheki, heyongqiang, vkrest
Reviewed By: vamsi
CC: zshao, xjin, vkrest, MarkCallaghan
Differential Revision: https://reviews.facebook.net/D10311
2013-04-15 22:33:13 +02:00
|
|
|
|
|
|
|
OpenTtl(1);
|
2013-08-03 09:40:22 +02:00
|
|
|
PutValues(0, kSampleSize_); // T=0: Insert. Delete at t=1
|
Timestamp and TTL Wrapper for rocksdb
Summary:
When opened with DBTimestamp::Open call, timestamps are prepended to and stripped from the value during subsequent Put and Get calls respectively. The Timestamp is used to discard values in Get and custom compaction filter which have exceeded their TTL which is specified during Open.
Have made a temporary change to Makefile to let us test with the temporary file TestTime.cc. Have also changed the private members of db_impl.h to protected to let them be inherited by the new class DBTimestamp
Test Plan: make db_timestamp; TestTime.cc(will not check it in) shows how to use the apis currently, but I will write unit-tests shortly
Reviewers: dhruba, vamsi, haobo, sheki, heyongqiang, vkrest
Reviewed By: vamsi
CC: zshao, xjin, vkrest, MarkCallaghan
Differential Revision: https://reviews.facebook.net/D10311
2013-04-15 22:33:13 +02:00
|
|
|
CloseTtl();
|
|
|
|
|
|
|
|
OpenTtl(1); // T=0.Delete at t=1
|
2013-08-03 09:40:22 +02:00
|
|
|
SleepCompactCheck(2, 0, kSampleSize_, false); // T=2: Set should not be there
|
Timestamp and TTL Wrapper for rocksdb
Summary:
When opened with DBTimestamp::Open call, timestamps are prepended to and stripped from the value during subsequent Put and Get calls respectively. The Timestamp is used to discard values in Get and custom compaction filter which have exceeded their TTL which is specified during Open.
Have made a temporary change to Makefile to let us test with the temporary file TestTime.cc. Have also changed the private members of db_impl.h to protected to let them be inherited by the new class DBTimestamp
Test Plan: make db_timestamp; TestTime.cc(will not check it in) shows how to use the apis currently, but I will write unit-tests shortly
Reviewers: dhruba, vamsi, haobo, sheki, heyongqiang, vkrest
Reviewed By: vamsi
CC: zshao, xjin, vkrest, MarkCallaghan
Differential Revision: https://reviews.facebook.net/D10311
2013-04-15 22:33:13 +02:00
|
|
|
CloseTtl();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Checks presence while opening the same db more than once with bigger ttl
|
|
|
|
TEST(TtlTest, MultiOpenDifferent) {
|
2013-08-03 09:40:22 +02:00
|
|
|
MakeKVMap(kSampleSize_);
|
Timestamp and TTL Wrapper for rocksdb
Summary:
When opened with DBTimestamp::Open call, timestamps are prepended to and stripped from the value during subsequent Put and Get calls respectively. The Timestamp is used to discard values in Get and custom compaction filter which have exceeded their TTL which is specified during Open.
Have made a temporary change to Makefile to let us test with the temporary file TestTime.cc. Have also changed the private members of db_impl.h to protected to let them be inherited by the new class DBTimestamp
Test Plan: make db_timestamp; TestTime.cc(will not check it in) shows how to use the apis currently, but I will write unit-tests shortly
Reviewers: dhruba, vamsi, haobo, sheki, heyongqiang, vkrest
Reviewed By: vamsi
CC: zshao, xjin, vkrest, MarkCallaghan
Differential Revision: https://reviews.facebook.net/D10311
2013-04-15 22:33:13 +02:00
|
|
|
|
|
|
|
OpenTtl(1);
|
2013-08-03 09:40:22 +02:00
|
|
|
PutValues(0, kSampleSize_); // T=0: Insert. Delete at t=1
|
Timestamp and TTL Wrapper for rocksdb
Summary:
When opened with DBTimestamp::Open call, timestamps are prepended to and stripped from the value during subsequent Put and Get calls respectively. The Timestamp is used to discard values in Get and custom compaction filter which have exceeded their TTL which is specified during Open.
Have made a temporary change to Makefile to let us test with the temporary file TestTime.cc. Have also changed the private members of db_impl.h to protected to let them be inherited by the new class DBTimestamp
Test Plan: make db_timestamp; TestTime.cc(will not check it in) shows how to use the apis currently, but I will write unit-tests shortly
Reviewers: dhruba, vamsi, haobo, sheki, heyongqiang, vkrest
Reviewed By: vamsi
CC: zshao, xjin, vkrest, MarkCallaghan
Differential Revision: https://reviews.facebook.net/D10311
2013-04-15 22:33:13 +02:00
|
|
|
CloseTtl();
|
|
|
|
|
|
|
|
OpenTtl(3); // T=0: Set deleted at t=3
|
2013-08-03 09:40:22 +02:00
|
|
|
SleepCompactCheck(2, 0, kSampleSize_); // T=2: Set should be there
|
Timestamp and TTL Wrapper for rocksdb
Summary:
When opened with DBTimestamp::Open call, timestamps are prepended to and stripped from the value during subsequent Put and Get calls respectively. The Timestamp is used to discard values in Get and custom compaction filter which have exceeded their TTL which is specified during Open.
Have made a temporary change to Makefile to let us test with the temporary file TestTime.cc. Have also changed the private members of db_impl.h to protected to let them be inherited by the new class DBTimestamp
Test Plan: make db_timestamp; TestTime.cc(will not check it in) shows how to use the apis currently, but I will write unit-tests shortly
Reviewers: dhruba, vamsi, haobo, sheki, heyongqiang, vkrest
Reviewed By: vamsi
CC: zshao, xjin, vkrest, MarkCallaghan
Differential Revision: https://reviews.facebook.net/D10311
2013-04-15 22:33:13 +02:00
|
|
|
CloseTtl();
|
|
|
|
}
|
|
|
|
|
2013-05-10 23:19:47 +02:00
|
|
|
// Checks presence during ttl in read_only mode
|
|
|
|
TEST(TtlTest, ReadOnlyPresentForever) {
|
2013-08-03 09:40:22 +02:00
|
|
|
MakeKVMap(kSampleSize_);
|
2013-05-10 23:19:47 +02:00
|
|
|
|
|
|
|
OpenTtl(1); // T=0:Open the db normally
|
2013-08-03 09:40:22 +02:00
|
|
|
PutValues(0, kSampleSize_); // T=0:Insert Set1. Delete at t=1
|
2013-05-10 23:19:47 +02:00
|
|
|
CloseTtl();
|
|
|
|
|
|
|
|
OpenReadOnlyTtl(1);
|
2013-08-03 09:40:22 +02:00
|
|
|
SleepCompactCheck(2, 0, kSampleSize_); // T=2:Set1 should still be there
|
2013-05-16 00:00:57 +02:00
|
|
|
CloseTtl();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Checks whether WriteBatch works well with TTL
|
|
|
|
// Puts all kvs in kvmap_ in a batch and writes first, then deletes first half
|
|
|
|
TEST(TtlTest, WriteBatchTest) {
|
2013-08-03 09:40:22 +02:00
|
|
|
MakeKVMap(kSampleSize_);
|
|
|
|
BatchOperation batch_ops[kSampleSize_];
|
|
|
|
for (int i = 0; i < kSampleSize_; i++) {
|
2013-05-16 00:00:57 +02:00
|
|
|
batch_ops[i] = PUT;
|
|
|
|
}
|
|
|
|
|
|
|
|
OpenTtl(2);
|
2013-08-03 09:40:22 +02:00
|
|
|
MakePutWriteBatch(batch_ops, kSampleSize_);
|
|
|
|
for (int i = 0; i < kSampleSize_ / 2; i++) {
|
2013-05-16 00:00:57 +02:00
|
|
|
batch_ops[i] = DELETE;
|
|
|
|
}
|
2013-08-03 09:40:22 +02:00
|
|
|
MakePutWriteBatch(batch_ops, kSampleSize_ / 2);
|
|
|
|
SleepCompactCheck(0, 0, kSampleSize_ / 2, false);
|
|
|
|
SleepCompactCheck(0, kSampleSize_ / 2, kSampleSize_ - kSampleSize_ / 2);
|
|
|
|
CloseTtl();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Checks user's compaction filter for correctness with TTL logic
|
|
|
|
TEST(TtlTest, CompactionFilter) {
|
|
|
|
MakeKVMap(kSampleSize_);
|
|
|
|
|
|
|
|
OpenTtlWithTestCompaction(1);
|
|
|
|
PutValues(0, kSampleSize_); // T=0:Insert Set1. Delete at t=1
|
|
|
|
// T=2: TTL logic takes precedence over TestFilter:-Set1 should not be there
|
|
|
|
SleepCompactCheck(2, 0, kSampleSize_, false);
|
|
|
|
CloseTtl();
|
|
|
|
|
|
|
|
OpenTtlWithTestCompaction(3);
|
|
|
|
PutValues(0, kSampleSize_); // T=0:Insert Set1.
|
|
|
|
int partition = kSampleSize_ / 3;
|
|
|
|
SleepCompactCheck(1, 0, partition, false); // Part dropped
|
|
|
|
SleepCompactCheck(0, partition, partition); // Part kept
|
|
|
|
SleepCompactCheck(0, 2 * partition, partition, true, true); // Part changed
|
2013-05-10 23:19:47 +02:00
|
|
|
CloseTtl();
|
|
|
|
}
|
|
|
|
|
2013-08-24 02:36:00 +02:00
|
|
|
// Insert some key-values which KeyMayExist should be able to get and check that
|
|
|
|
// values returned are fine
|
|
|
|
TEST(TtlTest, KeyMayExist) {
|
|
|
|
MakeKVMap(kSampleSize_);
|
|
|
|
|
|
|
|
OpenTtl();
|
2013-09-02 06:04:20 +02:00
|
|
|
PutValues(0, kSampleSize_, false);
|
2013-08-24 02:36:00 +02:00
|
|
|
|
|
|
|
SimpleKeyMayExistCheck();
|
|
|
|
|
|
|
|
CloseTtl();
|
|
|
|
}
|
|
|
|
|
2013-10-04 06:49:15 +02:00
|
|
|
} // namespace rocksdb
|
Timestamp and TTL Wrapper for rocksdb
Summary:
When opened with DBTimestamp::Open call, timestamps are prepended to and stripped from the value during subsequent Put and Get calls respectively. The Timestamp is used to discard values in Get and custom compaction filter which have exceeded their TTL which is specified during Open.
Have made a temporary change to Makefile to let us test with the temporary file TestTime.cc. Have also changed the private members of db_impl.h to protected to let them be inherited by the new class DBTimestamp
Test Plan: make db_timestamp; TestTime.cc(will not check it in) shows how to use the apis currently, but I will write unit-tests shortly
Reviewers: dhruba, vamsi, haobo, sheki, heyongqiang, vkrest
Reviewed By: vamsi
CC: zshao, xjin, vkrest, MarkCallaghan
Differential Revision: https://reviews.facebook.net/D10311
2013-04-15 22:33:13 +02:00
|
|
|
|
|
|
|
// A black-box test for the ttl wrapper around rocksdb
|
|
|
|
int main(int argc, char** argv) {
|
2013-10-04 06:49:15 +02:00
|
|
|
return rocksdb::test::RunAllTests();
|
Timestamp and TTL Wrapper for rocksdb
Summary:
When opened with DBTimestamp::Open call, timestamps are prepended to and stripped from the value during subsequent Put and Get calls respectively. The Timestamp is used to discard values in Get and custom compaction filter which have exceeded their TTL which is specified during Open.
Have made a temporary change to Makefile to let us test with the temporary file TestTime.cc. Have also changed the private members of db_impl.h to protected to let them be inherited by the new class DBTimestamp
Test Plan: make db_timestamp; TestTime.cc(will not check it in) shows how to use the apis currently, but I will write unit-tests shortly
Reviewers: dhruba, vamsi, haobo, sheki, heyongqiang, vkrest
Reviewed By: vamsi
CC: zshao, xjin, vkrest, MarkCallaghan
Differential Revision: https://reviews.facebook.net/D10311
2013-04-15 22:33:13 +02:00
|
|
|
}
|