2013-05-10 19:40:10 +02:00
|
|
|
/**
|
|
|
|
* An persistent map : key -> (list of strings), using rocksdb merge.
|
|
|
|
* This file is a test-harness / use-case for the StringAppendOperator.
|
|
|
|
*
|
|
|
|
* @author Deon Nicholas (dnicholas@fb.com)
|
|
|
|
* Copyright 2013 Facebook, Inc.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#include <map>
|
|
|
|
|
2013-08-23 17:38:13 +02:00
|
|
|
#include "rocksdb/db.h"
|
|
|
|
#include "rocksdb/merge_operator.h"
|
2014-07-23 16:21:38 +02:00
|
|
|
#include "rocksdb/utilities/db_ttl.h"
|
2013-05-10 19:40:10 +02:00
|
|
|
#include "utilities/merge_operators.h"
|
|
|
|
#include "utilities/merge_operators/string_append/stringappend.h"
|
2013-08-20 22:35:28 +02:00
|
|
|
#include "utilities/merge_operators/string_append/stringappend2.h"
|
2013-05-10 19:40:10 +02:00
|
|
|
#include "util/testharness.h"
|
|
|
|
#include "util/random.h"
|
|
|
|
|
2013-10-04 06:49:15 +02:00
|
|
|
using namespace rocksdb;
|
2013-05-10 19:40:10 +02:00
|
|
|
|
2013-10-04 06:49:15 +02:00
|
|
|
namespace rocksdb {
|
2013-05-10 19:40:10 +02:00
|
|
|
|
[RocksDB] [MergeOperator] The new Merge Interface! Uses merge sequences.
Summary:
Here are the major changes to the Merge Interface. It has been expanded
to handle cases where the MergeOperator is not associative. It does so by stacking
up merge operations while scanning through the key history (i.e.: during Get() or
Compaction), until a valid Put/Delete/end-of-history is encountered; it then
applies all of the merge operations in the correct sequence starting with the
base/sentinel value.
I have also introduced an "AssociativeMerge" function which allows the user to
take advantage of associative merge operations (such as in the case of counters).
The implementation will always attempt to merge the operations/operands themselves
together when they are encountered, and will resort to the "stacking" method if
and only if the "associative-merge" fails.
This implementation is conjectured to allow MergeOperator to handle the general
case, while still providing the user with the ability to take advantage of certain
efficiencies in their own merge-operator / data-structure.
NOTE: This is a preliminary diff. This must still go through a lot of review,
revision, and testing. Feedback welcome!
Test Plan:
-This is a preliminary diff. I have only just begun testing/debugging it.
-I will be testing this with the existing MergeOperator use-cases and unit-tests
(counters, string-append, and redis-lists)
-I will be "desk-checking" and walking through the code with the help gdb.
-I will find a way of stress-testing the new interface / implementation using
db_bench, db_test, merge_test, and/or db_stress.
-I will ensure that my tests cover all cases: Get-Memtable,
Get-Immutable-Memtable, Get-from-Disk, Iterator-Range-Scan, Flush-Memtable-to-L0,
Compaction-L0-L1, Compaction-Ln-L(n+1), Put/Delete found, Put/Delete not-found,
end-of-history, end-of-file, etc.
-A lot of feedback from the reviewers.
Reviewers: haobo, dhruba, zshao, emayanke
Reviewed By: haobo
CC: leveldb
Differential Revision: https://reviews.facebook.net/D11499
2013-08-06 05:14:32 +02:00
|
|
|
// Path to the database on file system
|
|
|
|
const std::string kDbName = "/tmp/mergetestdb";
|
2013-05-10 19:40:10 +02:00
|
|
|
|
2014-04-10 06:17:14 +02:00
|
|
|
namespace {
|
2013-05-10 19:40:10 +02:00
|
|
|
// OpenDb opens a (possibly new) rocksdb database with a StringAppendOperator
|
2013-08-20 22:35:28 +02:00
|
|
|
std::shared_ptr<DB> OpenNormalDb(char delim_char) {
|
|
|
|
DB* db;
|
|
|
|
Options options;
|
|
|
|
options.create_if_missing = true;
|
|
|
|
options.merge_operator.reset(new StringAppendOperator(delim_char));
|
rocksdb: Replace ASSERT* with EXPECT* in functions that does not return void value
Summary:
gtest does not use exceptions to fail a unit test by design, and `ASSERT*`s are implemented using `return`. As a consequence we cannot use `ASSERT*` in a function that does not return `void` value ([[ https://code.google.com/p/googletest/wiki/AdvancedGuide#Assertion_Placement | 1]]), and have to fix our existing code. This diff does this in a generic way, with no manual changes.
In order to detect all existing `ASSERT*` that are used in functions that doesn't return void value, I change the code to generate compile errors for such cases.
In `util/testharness.h` I defined `EXPECT*` assertions, the same way as `ASSERT*`, and redefined `ASSERT*` to return `void`. Then executed:
```lang=bash
% USE_CLANG=1 make all -j55 -k 2> build.log
% perl -naF: -e 'print "-- -number=".$F[1]." ".$F[0]."\n" if /: error:/' \
build.log | xargs -L 1 perl -spi -e 's/ASSERT/EXPECT/g if $. == $number'
% make format
```
After that I reverted back change to `ASSERT*` in `util/testharness.h`. But preserved introduced `EXPECT*`, which is the same as `ASSERT*`. This will be deleted once switched to gtest.
This diff is independent and contains manual changes only in `util/testharness.h`.
Test Plan:
Make sure all tests are passing.
```lang=bash
% USE_CLANG=1 make check
```
Reviewers: igor, lgalanis, sdong, yufei.zhu, rven, meyering
Reviewed By: meyering
Subscribers: dhruba, leveldb
Differential Revision: https://reviews.facebook.net/D33333
2015-03-17 04:52:32 +01:00
|
|
|
EXPECT_OK(DB::Open(options, kDbName, &db));
|
2013-08-20 22:35:28 +02:00
|
|
|
return std::shared_ptr<DB>(db);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Open a TtlDB with a non-associative StringAppendTESTOperator
|
|
|
|
std::shared_ptr<DB> OpenTtlDb(char delim_char) {
|
2014-04-29 05:44:33 +02:00
|
|
|
DBWithTTL* db;
|
2013-08-20 22:35:28 +02:00
|
|
|
Options options;
|
|
|
|
options.create_if_missing = true;
|
|
|
|
options.merge_operator.reset(new StringAppendTESTOperator(delim_char));
|
rocksdb: Replace ASSERT* with EXPECT* in functions that does not return void value
Summary:
gtest does not use exceptions to fail a unit test by design, and `ASSERT*`s are implemented using `return`. As a consequence we cannot use `ASSERT*` in a function that does not return `void` value ([[ https://code.google.com/p/googletest/wiki/AdvancedGuide#Assertion_Placement | 1]]), and have to fix our existing code. This diff does this in a generic way, with no manual changes.
In order to detect all existing `ASSERT*` that are used in functions that doesn't return void value, I change the code to generate compile errors for such cases.
In `util/testharness.h` I defined `EXPECT*` assertions, the same way as `ASSERT*`, and redefined `ASSERT*` to return `void`. Then executed:
```lang=bash
% USE_CLANG=1 make all -j55 -k 2> build.log
% perl -naF: -e 'print "-- -number=".$F[1]." ".$F[0]."\n" if /: error:/' \
build.log | xargs -L 1 perl -spi -e 's/ASSERT/EXPECT/g if $. == $number'
% make format
```
After that I reverted back change to `ASSERT*` in `util/testharness.h`. But preserved introduced `EXPECT*`, which is the same as `ASSERT*`. This will be deleted once switched to gtest.
This diff is independent and contains manual changes only in `util/testharness.h`.
Test Plan:
Make sure all tests are passing.
```lang=bash
% USE_CLANG=1 make check
```
Reviewers: igor, lgalanis, sdong, yufei.zhu, rven, meyering
Reviewed By: meyering
Subscribers: dhruba, leveldb
Differential Revision: https://reviews.facebook.net/D33333
2015-03-17 04:52:32 +01:00
|
|
|
EXPECT_OK(DBWithTTL::Open(options, kDbName, &db, 123456));
|
2013-08-20 22:35:28 +02:00
|
|
|
return std::shared_ptr<DB>(db);
|
2013-05-10 19:40:10 +02:00
|
|
|
}
|
2014-04-10 06:17:14 +02:00
|
|
|
} // namespace
|
2013-05-10 19:40:10 +02:00
|
|
|
|
|
|
|
/// StringLists represents a set of string-lists, each with a key-index.
|
2013-08-20 22:35:28 +02:00
|
|
|
/// Supports Append(list, string) and Get(list)
|
2013-05-10 19:40:10 +02:00
|
|
|
class StringLists {
|
|
|
|
public:
|
|
|
|
|
|
|
|
//Constructor: specifies the rocksdb db
|
2013-12-07 01:10:43 +01:00
|
|
|
/* implicit */
|
2013-05-10 19:40:10 +02:00
|
|
|
StringLists(std::shared_ptr<DB> db)
|
|
|
|
: db_(db),
|
|
|
|
merge_option_(),
|
|
|
|
get_option_() {
|
|
|
|
assert(db);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Append string val onto the list defined by key; return true on success
|
|
|
|
bool Append(const std::string& key, const std::string& val){
|
2013-08-20 22:35:28 +02:00
|
|
|
Slice valSlice(val.data(), val.size());
|
|
|
|
auto s = db_->Merge(merge_option_, key, valSlice);
|
2013-05-10 19:40:10 +02:00
|
|
|
|
|
|
|
if (s.ok()) {
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
std::cerr << "ERROR " << s.ToString() << std::endl;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns the list of strings associated with key (or "" if does not exist)
|
|
|
|
bool Get(const std::string& key, std::string* const result){
|
2013-12-07 01:10:43 +01:00
|
|
|
assert(result != nullptr); // we should have a place to store the result
|
2013-05-10 19:40:10 +02:00
|
|
|
auto s = db_->Get(get_option_, key, result);
|
|
|
|
|
|
|
|
if (s.ok()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Either key does not exist, or there is some error.
|
2013-11-16 12:21:34 +01:00
|
|
|
*result = ""; // Always return empty string (just for convention)
|
2013-05-10 19:40:10 +02:00
|
|
|
|
|
|
|
//NotFound is okay; just return empty (similar to std::map)
|
|
|
|
//But network or db errors, etc, should fail the test (or at least yell)
|
2013-06-15 01:44:39 +02:00
|
|
|
if (!s.IsNotFound()) {
|
2013-05-10 19:40:10 +02:00
|
|
|
std::cerr << "ERROR " << s.ToString() << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Always return false if s.ok() was not true
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-08-20 22:35:28 +02:00
|
|
|
|
2013-05-10 19:40:10 +02:00
|
|
|
private:
|
|
|
|
std::shared_ptr<DB> db_;
|
|
|
|
WriteOptions merge_option_;
|
|
|
|
ReadOptions get_option_;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2013-08-20 22:35:28 +02:00
|
|
|
|
|
|
|
// The class for unit-testing
|
|
|
|
class StringAppendOperatorTest {
|
|
|
|
public:
|
|
|
|
StringAppendOperatorTest() {
|
|
|
|
DestroyDB(kDbName, Options()); // Start each test with a fresh DB
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef std::shared_ptr<DB> (* OpenFuncPtr)(char);
|
|
|
|
|
|
|
|
// Allows user to open databases with different configurations.
|
|
|
|
// e.g.: Can open a DB or a TtlDB, etc.
|
|
|
|
static void SetOpenDbFunction(OpenFuncPtr func) {
|
|
|
|
OpenDb = func;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static OpenFuncPtr OpenDb;
|
|
|
|
};
|
|
|
|
StringAppendOperatorTest::OpenFuncPtr StringAppendOperatorTest::OpenDb = nullptr;
|
|
|
|
|
2013-05-10 19:40:10 +02:00
|
|
|
// THE TEST CASES BEGIN HERE
|
|
|
|
|
2013-08-19 20:42:47 +02:00
|
|
|
TEST(StringAppendOperatorTest, IteratorTest) {
|
2013-08-20 22:35:28 +02:00
|
|
|
auto db_ = OpenDb(',');
|
2013-08-19 20:42:47 +02:00
|
|
|
StringLists slists(db_);
|
|
|
|
|
2013-08-20 22:35:28 +02:00
|
|
|
slists.Append("k1", "v1");
|
|
|
|
slists.Append("k1", "v2");
|
|
|
|
slists.Append("k1", "v3");
|
2013-08-19 20:42:47 +02:00
|
|
|
|
2013-08-20 22:35:28 +02:00
|
|
|
slists.Append("k2", "a1");
|
|
|
|
slists.Append("k2", "a2");
|
|
|
|
slists.Append("k2", "a3");
|
2013-08-19 20:42:47 +02:00
|
|
|
|
|
|
|
std::string res;
|
2013-10-04 06:49:15 +02:00
|
|
|
std::unique_ptr<rocksdb::Iterator> it(db_->NewIterator(ReadOptions()));
|
2013-08-19 20:42:47 +02:00
|
|
|
std::string k1("k1");
|
|
|
|
std::string k2("k2");
|
|
|
|
bool first = true;
|
|
|
|
for (it->Seek(k1); it->Valid(); it->Next()) {
|
|
|
|
res = it->value().ToString();
|
|
|
|
if (first) {
|
|
|
|
ASSERT_EQ(res, "v1,v2,v3");
|
|
|
|
first = false;
|
|
|
|
} else {
|
|
|
|
ASSERT_EQ(res, "a1,a2,a3");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
slists.Append("k2", "a4");
|
|
|
|
slists.Append("k1", "v4");
|
|
|
|
|
|
|
|
// Snapshot should still be the same. Should ignore a4 and v4.
|
|
|
|
first = true;
|
|
|
|
for (it->Seek(k1); it->Valid(); it->Next()) {
|
|
|
|
res = it->value().ToString();
|
|
|
|
if (first) {
|
|
|
|
ASSERT_EQ(res, "v1,v2,v3");
|
|
|
|
first = false;
|
|
|
|
} else {
|
|
|
|
ASSERT_EQ(res, "a1,a2,a3");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Should release the snapshot and be aware of the new stuff now
|
|
|
|
it.reset(db_->NewIterator(ReadOptions()));
|
|
|
|
first = true;
|
|
|
|
for (it->Seek(k1); it->Valid(); it->Next()) {
|
|
|
|
res = it->value().ToString();
|
|
|
|
if (first) {
|
|
|
|
ASSERT_EQ(res, "v1,v2,v3,v4");
|
|
|
|
first = false;
|
|
|
|
} else {
|
|
|
|
ASSERT_EQ(res, "a1,a2,a3,a4");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// start from k2 this time.
|
|
|
|
for (it->Seek(k2); it->Valid(); it->Next()) {
|
|
|
|
res = it->value().ToString();
|
|
|
|
if (first) {
|
|
|
|
ASSERT_EQ(res, "v1,v2,v3,v4");
|
|
|
|
first = false;
|
|
|
|
} else {
|
|
|
|
ASSERT_EQ(res, "a1,a2,a3,a4");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-20 22:35:28 +02:00
|
|
|
slists.Append("k3", "g1");
|
2013-08-19 20:42:47 +02:00
|
|
|
|
|
|
|
it.reset(db_->NewIterator(ReadOptions()));
|
|
|
|
first = true;
|
|
|
|
std::string k3("k3");
|
|
|
|
for(it->Seek(k2); it->Valid(); it->Next()) {
|
|
|
|
res = it->value().ToString();
|
|
|
|
if (first) {
|
|
|
|
ASSERT_EQ(res, "a1,a2,a3,a4");
|
|
|
|
first = false;
|
|
|
|
} else {
|
|
|
|
ASSERT_EQ(res, "g1");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for(it->Seek(k3); it->Valid(); it->Next()) {
|
|
|
|
res = it->value().ToString();
|
|
|
|
if (first) {
|
|
|
|
// should not be hit
|
|
|
|
ASSERT_EQ(res, "a1,a2,a3,a4");
|
|
|
|
first = false;
|
|
|
|
} else {
|
|
|
|
ASSERT_EQ(res, "g1");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2013-05-10 19:40:10 +02:00
|
|
|
|
2013-08-20 22:35:28 +02:00
|
|
|
TEST(StringAppendOperatorTest, SimpleTest) {
|
|
|
|
auto db = OpenDb(',');
|
2013-05-10 19:40:10 +02:00
|
|
|
StringLists slists(db);
|
|
|
|
|
2013-08-20 22:35:28 +02:00
|
|
|
slists.Append("k1", "v1");
|
|
|
|
slists.Append("k1", "v2");
|
|
|
|
slists.Append("k1", "v3");
|
2013-05-10 19:40:10 +02:00
|
|
|
|
|
|
|
std::string res;
|
2013-08-20 22:35:28 +02:00
|
|
|
bool status = slists.Get("k1", &res);
|
2013-05-10 19:40:10 +02:00
|
|
|
|
2013-05-18 01:14:07 +02:00
|
|
|
ASSERT_TRUE(status);
|
2013-08-20 22:35:28 +02:00
|
|
|
ASSERT_EQ(res, "v1,v2,v3");
|
2013-05-10 19:40:10 +02:00
|
|
|
}
|
|
|
|
|
2013-08-20 22:35:28 +02:00
|
|
|
TEST(StringAppendOperatorTest, SimpleDelimiterTest) {
|
|
|
|
auto db = OpenDb('|');
|
2013-05-10 19:40:10 +02:00
|
|
|
StringLists slists(db);
|
|
|
|
|
2013-08-20 22:35:28 +02:00
|
|
|
slists.Append("k1", "v1");
|
|
|
|
slists.Append("k1", "v2");
|
|
|
|
slists.Append("k1", "v3");
|
2013-05-10 19:40:10 +02:00
|
|
|
|
|
|
|
std::string res;
|
2013-08-20 22:35:28 +02:00
|
|
|
slists.Get("k1", &res);
|
|
|
|
ASSERT_EQ(res, "v1|v2|v3");
|
2013-05-10 19:40:10 +02:00
|
|
|
}
|
|
|
|
|
2013-08-20 22:35:28 +02:00
|
|
|
TEST(StringAppendOperatorTest, OneValueNoDelimiterTest) {
|
|
|
|
auto db = OpenDb('!');
|
2013-05-10 19:40:10 +02:00
|
|
|
StringLists slists(db);
|
|
|
|
|
2013-08-20 22:35:28 +02:00
|
|
|
slists.Append("random_key", "single_val");
|
2013-05-10 19:40:10 +02:00
|
|
|
|
|
|
|
std::string res;
|
2013-08-20 22:35:28 +02:00
|
|
|
slists.Get("random_key", &res);
|
|
|
|
ASSERT_EQ(res, "single_val");
|
2013-05-10 19:40:10 +02:00
|
|
|
}
|
|
|
|
|
2013-08-20 22:35:28 +02:00
|
|
|
TEST(StringAppendOperatorTest, VariousKeys) {
|
|
|
|
auto db = OpenDb('\n');
|
2013-05-10 19:40:10 +02:00
|
|
|
StringLists slists(db);
|
|
|
|
|
2013-08-20 22:35:28 +02:00
|
|
|
slists.Append("c", "asdasd");
|
|
|
|
slists.Append("a", "x");
|
|
|
|
slists.Append("b", "y");
|
|
|
|
slists.Append("a", "t");
|
|
|
|
slists.Append("a", "r");
|
|
|
|
slists.Append("b", "2");
|
|
|
|
slists.Append("c", "asdasd");
|
2013-05-10 19:40:10 +02:00
|
|
|
|
2013-08-20 22:35:28 +02:00
|
|
|
std::string a, b, c;
|
|
|
|
bool sa, sb, sc;
|
|
|
|
sa = slists.Get("a", &a);
|
|
|
|
sb = slists.Get("b", &b);
|
|
|
|
sc = slists.Get("c", &c);
|
2013-05-10 19:40:10 +02:00
|
|
|
|
2013-05-18 01:14:07 +02:00
|
|
|
ASSERT_TRUE(sa && sb && sc); // All three keys should have been found
|
2013-05-10 19:40:10 +02:00
|
|
|
|
2013-08-20 22:35:28 +02:00
|
|
|
ASSERT_EQ(a, "x\nt\nr");
|
|
|
|
ASSERT_EQ(b, "y\n2");
|
|
|
|
ASSERT_EQ(c, "asdasd\nasdasd");
|
2013-05-10 19:40:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Generate semi random keys/words from a small distribution.
|
2013-08-20 22:35:28 +02:00
|
|
|
TEST(StringAppendOperatorTest, RandomMixGetAppend) {
|
|
|
|
auto db = OpenDb(' ');
|
2013-05-10 19:40:10 +02:00
|
|
|
StringLists slists(db);
|
|
|
|
|
|
|
|
// Generate a list of random keys and values
|
|
|
|
const int kWordCount = 15;
|
2013-08-20 22:35:28 +02:00
|
|
|
std::string words[] = {"sdasd", "triejf", "fnjsdfn", "dfjisdfsf", "342839",
|
|
|
|
"dsuha", "mabuais", "sadajsid", "jf9834hf", "2d9j89",
|
|
|
|
"dj9823jd", "a", "dk02ed2dh", "$(jd4h984$(*", "mabz"};
|
2013-05-10 19:40:10 +02:00
|
|
|
const int kKeyCount = 6;
|
2013-08-20 22:35:28 +02:00
|
|
|
std::string keys[] = {"dhaiusdhu", "denidw", "daisda", "keykey", "muki",
|
2013-05-10 19:40:10 +02:00
|
|
|
"shzassdianmd"};
|
|
|
|
|
|
|
|
// Will store a local copy of all data in order to verify correctness
|
2013-08-20 22:35:28 +02:00
|
|
|
std::map<std::string, std::string> parallel_copy;
|
2013-05-10 19:40:10 +02:00
|
|
|
|
|
|
|
// Generate a bunch of random queries (Append and Get)!
|
|
|
|
enum query_t { APPEND_OP, GET_OP, NUM_OPS };
|
|
|
|
Random randomGen(1337); //deterministic seed; always get same results!
|
|
|
|
|
|
|
|
const int kNumQueries = 30;
|
|
|
|
for (int q=0; q<kNumQueries; ++q) {
|
|
|
|
// Generate a random query (Append or Get) and random parameters
|
|
|
|
query_t query = (query_t)randomGen.Uniform((int)NUM_OPS);
|
|
|
|
std::string key = keys[randomGen.Uniform((int)kKeyCount)];
|
|
|
|
std::string word = words[randomGen.Uniform((int)kWordCount)];
|
|
|
|
|
|
|
|
// Apply the query and any checks.
|
|
|
|
if (query == APPEND_OP) {
|
|
|
|
|
|
|
|
// Apply the rocksdb test-harness Append defined above
|
2013-08-20 22:35:28 +02:00
|
|
|
slists.Append(key, word); //apply the rocksdb append
|
2013-05-10 19:40:10 +02:00
|
|
|
|
|
|
|
// Apply the similar "Append" to the parallel copy
|
|
|
|
if (parallel_copy[key].size() > 0) {
|
|
|
|
parallel_copy[key] += " " + word;
|
|
|
|
} else {
|
|
|
|
parallel_copy[key] = word;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if (query == GET_OP) {
|
|
|
|
// Assumes that a non-existent key just returns <empty>
|
|
|
|
std::string res;
|
2013-08-20 22:35:28 +02:00
|
|
|
slists.Get(key, &res);
|
|
|
|
ASSERT_EQ(res, parallel_copy[key]);
|
2013-05-10 19:40:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-08-20 22:35:28 +02:00
|
|
|
TEST(StringAppendOperatorTest, BIGRandomMixGetAppend) {
|
|
|
|
auto db = OpenDb(' ');
|
2013-05-10 19:40:10 +02:00
|
|
|
StringLists slists(db);
|
|
|
|
|
|
|
|
// Generate a list of random keys and values
|
|
|
|
const int kWordCount = 15;
|
2013-08-20 22:35:28 +02:00
|
|
|
std::string words[] = {"sdasd", "triejf", "fnjsdfn", "dfjisdfsf", "342839",
|
|
|
|
"dsuha", "mabuais", "sadajsid", "jf9834hf", "2d9j89",
|
|
|
|
"dj9823jd", "a", "dk02ed2dh", "$(jd4h984$(*", "mabz"};
|
2013-05-10 19:40:10 +02:00
|
|
|
const int kKeyCount = 6;
|
2013-08-20 22:35:28 +02:00
|
|
|
std::string keys[] = {"dhaiusdhu", "denidw", "daisda", "keykey", "muki",
|
2013-05-10 19:40:10 +02:00
|
|
|
"shzassdianmd"};
|
|
|
|
|
|
|
|
// Will store a local copy of all data in order to verify correctness
|
2013-08-20 22:35:28 +02:00
|
|
|
std::map<std::string, std::string> parallel_copy;
|
2013-05-10 19:40:10 +02:00
|
|
|
|
|
|
|
// Generate a bunch of random queries (Append and Get)!
|
|
|
|
enum query_t { APPEND_OP, GET_OP, NUM_OPS };
|
[RocksDB] [MergeOperator] The new Merge Interface! Uses merge sequences.
Summary:
Here are the major changes to the Merge Interface. It has been expanded
to handle cases where the MergeOperator is not associative. It does so by stacking
up merge operations while scanning through the key history (i.e.: during Get() or
Compaction), until a valid Put/Delete/end-of-history is encountered; it then
applies all of the merge operations in the correct sequence starting with the
base/sentinel value.
I have also introduced an "AssociativeMerge" function which allows the user to
take advantage of associative merge operations (such as in the case of counters).
The implementation will always attempt to merge the operations/operands themselves
together when they are encountered, and will resort to the "stacking" method if
and only if the "associative-merge" fails.
This implementation is conjectured to allow MergeOperator to handle the general
case, while still providing the user with the ability to take advantage of certain
efficiencies in their own merge-operator / data-structure.
NOTE: This is a preliminary diff. This must still go through a lot of review,
revision, and testing. Feedback welcome!
Test Plan:
-This is a preliminary diff. I have only just begun testing/debugging it.
-I will be testing this with the existing MergeOperator use-cases and unit-tests
(counters, string-append, and redis-lists)
-I will be "desk-checking" and walking through the code with the help gdb.
-I will find a way of stress-testing the new interface / implementation using
db_bench, db_test, merge_test, and/or db_stress.
-I will ensure that my tests cover all cases: Get-Memtable,
Get-Immutable-Memtable, Get-from-Disk, Iterator-Range-Scan, Flush-Memtable-to-L0,
Compaction-L0-L1, Compaction-Ln-L(n+1), Put/Delete found, Put/Delete not-found,
end-of-history, end-of-file, etc.
-A lot of feedback from the reviewers.
Reviewers: haobo, dhruba, zshao, emayanke
Reviewed By: haobo
CC: leveldb
Differential Revision: https://reviews.facebook.net/D11499
2013-08-06 05:14:32 +02:00
|
|
|
Random randomGen(9138204); // deterministic seed
|
2013-05-10 19:40:10 +02:00
|
|
|
|
|
|
|
const int kNumQueries = 1000;
|
|
|
|
for (int q=0; q<kNumQueries; ++q) {
|
|
|
|
// Generate a random query (Append or Get) and random parameters
|
|
|
|
query_t query = (query_t)randomGen.Uniform((int)NUM_OPS);
|
|
|
|
std::string key = keys[randomGen.Uniform((int)kKeyCount)];
|
|
|
|
std::string word = words[randomGen.Uniform((int)kWordCount)];
|
|
|
|
|
|
|
|
//Apply the query and any checks.
|
|
|
|
if (query == APPEND_OP) {
|
|
|
|
|
|
|
|
// Apply the rocksdb test-harness Append defined above
|
2013-08-20 22:35:28 +02:00
|
|
|
slists.Append(key, word); //apply the rocksdb append
|
2013-05-10 19:40:10 +02:00
|
|
|
|
|
|
|
// Apply the similar "Append" to the parallel copy
|
|
|
|
if (parallel_copy[key].size() > 0) {
|
|
|
|
parallel_copy[key] += " " + word;
|
|
|
|
} else {
|
|
|
|
parallel_copy[key] = word;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if (query == GET_OP) {
|
|
|
|
// Assumes that a non-existent key just returns <empty>
|
|
|
|
std::string res;
|
2013-08-20 22:35:28 +02:00
|
|
|
slists.Get(key, &res);
|
|
|
|
ASSERT_EQ(res, parallel_copy[key]);
|
2013-05-10 19:40:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-08-20 22:35:28 +02:00
|
|
|
TEST(StringAppendOperatorTest, PersistentVariousKeys) {
|
2013-05-10 19:40:10 +02:00
|
|
|
// Perform the following operations in limited scope
|
|
|
|
{
|
2013-08-20 22:35:28 +02:00
|
|
|
auto db = OpenDb('\n');
|
2013-05-10 19:40:10 +02:00
|
|
|
StringLists slists(db);
|
|
|
|
|
2013-08-20 22:35:28 +02:00
|
|
|
slists.Append("c", "asdasd");
|
|
|
|
slists.Append("a", "x");
|
|
|
|
slists.Append("b", "y");
|
|
|
|
slists.Append("a", "t");
|
|
|
|
slists.Append("a", "r");
|
|
|
|
slists.Append("b", "2");
|
|
|
|
slists.Append("c", "asdasd");
|
|
|
|
|
|
|
|
std::string a, b, c;
|
|
|
|
slists.Get("a", &a);
|
|
|
|
slists.Get("b", &b);
|
|
|
|
slists.Get("c", &c);
|
|
|
|
|
|
|
|
ASSERT_EQ(a, "x\nt\nr");
|
|
|
|
ASSERT_EQ(b, "y\n2");
|
|
|
|
ASSERT_EQ(c, "asdasd\nasdasd");
|
2013-05-10 19:40:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Reopen the database (the previous changes should persist / be remembered)
|
|
|
|
{
|
2013-08-20 22:35:28 +02:00
|
|
|
auto db = OpenDb('\n');
|
2013-05-10 19:40:10 +02:00
|
|
|
StringLists slists(db);
|
|
|
|
|
2013-08-20 22:35:28 +02:00
|
|
|
slists.Append("c", "bbnagnagsx");
|
|
|
|
slists.Append("a", "sa");
|
|
|
|
slists.Append("b", "df");
|
|
|
|
slists.Append("a", "gh");
|
|
|
|
slists.Append("a", "jk");
|
|
|
|
slists.Append("b", "l;");
|
|
|
|
slists.Append("c", "rogosh");
|
2013-05-10 19:40:10 +02:00
|
|
|
|
2013-06-26 20:41:13 +02:00
|
|
|
// The previous changes should be on disk (L0)
|
|
|
|
// The most recent changes should be in memory (MemTable)
|
|
|
|
// Hence, this will test both Get() paths.
|
2013-08-20 22:35:28 +02:00
|
|
|
std::string a, b, c;
|
|
|
|
slists.Get("a", &a);
|
|
|
|
slists.Get("b", &b);
|
|
|
|
slists.Get("c", &c);
|
|
|
|
|
|
|
|
ASSERT_EQ(a, "x\nt\nr\nsa\ngh\njk");
|
|
|
|
ASSERT_EQ(b, "y\n2\ndf\nl;");
|
|
|
|
ASSERT_EQ(c, "asdasd\nasdasd\nbbnagnagsx\nrogosh");
|
2013-06-26 20:41:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Reopen the database (the previous changes should persist / be remembered)
|
|
|
|
{
|
2013-08-20 22:35:28 +02:00
|
|
|
auto db = OpenDb('\n');
|
2013-06-26 20:41:13 +02:00
|
|
|
StringLists slists(db);
|
|
|
|
|
|
|
|
// All changes should be on disk. This will test VersionSet Get()
|
2013-08-20 22:35:28 +02:00
|
|
|
std::string a, b, c;
|
|
|
|
slists.Get("a", &a);
|
|
|
|
slists.Get("b", &b);
|
|
|
|
slists.Get("c", &c);
|
|
|
|
|
|
|
|
ASSERT_EQ(a, "x\nt\nr\nsa\ngh\njk");
|
|
|
|
ASSERT_EQ(b, "y\n2\ndf\nl;");
|
|
|
|
ASSERT_EQ(c, "asdasd\nasdasd\nbbnagnagsx\nrogosh");
|
2013-05-10 19:40:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-20 22:35:28 +02:00
|
|
|
TEST(StringAppendOperatorTest, PersistentFlushAndCompaction) {
|
2013-05-10 19:40:10 +02:00
|
|
|
// Perform the following operations in limited scope
|
|
|
|
{
|
2013-08-20 22:35:28 +02:00
|
|
|
auto db = OpenDb('\n');
|
2013-05-10 19:40:10 +02:00
|
|
|
StringLists slists(db);
|
2013-08-20 22:35:28 +02:00
|
|
|
std::string a, b, c;
|
2013-05-10 19:40:10 +02:00
|
|
|
bool success;
|
|
|
|
|
|
|
|
// Append, Flush, Get
|
2013-08-20 22:35:28 +02:00
|
|
|
slists.Append("c", "asdasd");
|
2013-10-04 06:49:15 +02:00
|
|
|
db->Flush(rocksdb::FlushOptions());
|
2013-08-20 22:35:28 +02:00
|
|
|
success = slists.Get("c", &c);
|
2013-05-18 01:14:07 +02:00
|
|
|
ASSERT_TRUE(success);
|
2013-08-20 22:35:28 +02:00
|
|
|
ASSERT_EQ(c, "asdasd");
|
2013-05-10 19:40:10 +02:00
|
|
|
|
|
|
|
// Append, Flush, Append, Get
|
2013-08-20 22:35:28 +02:00
|
|
|
slists.Append("a", "x");
|
|
|
|
slists.Append("b", "y");
|
2013-10-04 06:49:15 +02:00
|
|
|
db->Flush(rocksdb::FlushOptions());
|
2013-08-20 22:35:28 +02:00
|
|
|
slists.Append("a", "t");
|
|
|
|
slists.Append("a", "r");
|
|
|
|
slists.Append("b", "2");
|
2013-05-10 19:40:10 +02:00
|
|
|
|
2013-08-20 22:35:28 +02:00
|
|
|
success = slists.Get("a", &a);
|
2013-05-10 19:40:10 +02:00
|
|
|
assert(success == true);
|
2013-08-20 22:35:28 +02:00
|
|
|
ASSERT_EQ(a, "x\nt\nr");
|
2013-05-10 19:40:10 +02:00
|
|
|
|
2013-08-20 22:35:28 +02:00
|
|
|
success = slists.Get("b", &b);
|
2013-05-10 19:40:10 +02:00
|
|
|
assert(success == true);
|
2013-08-20 22:35:28 +02:00
|
|
|
ASSERT_EQ(b, "y\n2");
|
2013-05-10 19:40:10 +02:00
|
|
|
|
|
|
|
// Append, Get
|
2013-08-20 22:35:28 +02:00
|
|
|
success = slists.Append("c", "asdasd");
|
2013-05-10 19:40:10 +02:00
|
|
|
assert(success);
|
2013-08-20 22:35:28 +02:00
|
|
|
success = slists.Append("b", "monkey");
|
2013-05-10 19:40:10 +02:00
|
|
|
assert(success);
|
|
|
|
|
|
|
|
// I omit the "assert(success)" checks here.
|
2013-08-20 22:35:28 +02:00
|
|
|
slists.Get("a", &a);
|
|
|
|
slists.Get("b", &b);
|
|
|
|
slists.Get("c", &c);
|
2013-05-10 19:40:10 +02:00
|
|
|
|
2013-08-20 22:35:28 +02:00
|
|
|
ASSERT_EQ(a, "x\nt\nr");
|
|
|
|
ASSERT_EQ(b, "y\n2\nmonkey");
|
|
|
|
ASSERT_EQ(c, "asdasd\nasdasd");
|
2013-05-10 19:40:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Reopen the database (the previous changes should persist / be remembered)
|
|
|
|
{
|
2013-08-20 22:35:28 +02:00
|
|
|
auto db = OpenDb('\n');
|
2013-05-10 19:40:10 +02:00
|
|
|
StringLists slists(db);
|
2013-08-20 22:35:28 +02:00
|
|
|
std::string a, b, c;
|
2013-05-10 19:40:10 +02:00
|
|
|
|
|
|
|
// Get (Quick check for persistence of previous database)
|
2013-08-20 22:35:28 +02:00
|
|
|
slists.Get("a", &a);
|
|
|
|
ASSERT_EQ(a, "x\nt\nr");
|
2013-05-10 19:40:10 +02:00
|
|
|
|
|
|
|
//Append, Compact, Get
|
2013-08-20 22:35:28 +02:00
|
|
|
slists.Append("c", "bbnagnagsx");
|
|
|
|
slists.Append("a", "sa");
|
|
|
|
slists.Append("b", "df");
|
|
|
|
db->CompactRange(nullptr, nullptr);
|
|
|
|
slists.Get("a", &a);
|
|
|
|
slists.Get("b", &b);
|
|
|
|
slists.Get("c", &c);
|
|
|
|
ASSERT_EQ(a, "x\nt\nr\nsa");
|
|
|
|
ASSERT_EQ(b, "y\n2\nmonkey\ndf");
|
|
|
|
ASSERT_EQ(c, "asdasd\nasdasd\nbbnagnagsx");
|
2013-05-10 19:40:10 +02:00
|
|
|
|
|
|
|
// Append, Get
|
2013-08-20 22:35:28 +02:00
|
|
|
slists.Append("a", "gh");
|
|
|
|
slists.Append("a", "jk");
|
|
|
|
slists.Append("b", "l;");
|
|
|
|
slists.Append("c", "rogosh");
|
|
|
|
slists.Get("a", &a);
|
|
|
|
slists.Get("b", &b);
|
|
|
|
slists.Get("c", &c);
|
|
|
|
ASSERT_EQ(a, "x\nt\nr\nsa\ngh\njk");
|
|
|
|
ASSERT_EQ(b, "y\n2\nmonkey\ndf\nl;");
|
|
|
|
ASSERT_EQ(c, "asdasd\nasdasd\nbbnagnagsx\nrogosh");
|
2013-05-10 19:40:10 +02:00
|
|
|
|
|
|
|
// Compact, Get
|
2013-08-20 22:35:28 +02:00
|
|
|
db->CompactRange(nullptr, nullptr);
|
|
|
|
ASSERT_EQ(a, "x\nt\nr\nsa\ngh\njk");
|
|
|
|
ASSERT_EQ(b, "y\n2\nmonkey\ndf\nl;");
|
|
|
|
ASSERT_EQ(c, "asdasd\nasdasd\nbbnagnagsx\nrogosh");
|
2013-05-10 19:40:10 +02:00
|
|
|
|
|
|
|
// Append, Flush, Compact, Get
|
2013-08-20 22:35:28 +02:00
|
|
|
slists.Append("b", "afcg");
|
2013-10-04 06:49:15 +02:00
|
|
|
db->Flush(rocksdb::FlushOptions());
|
2013-08-20 22:35:28 +02:00
|
|
|
db->CompactRange(nullptr, nullptr);
|
|
|
|
slists.Get("b", &b);
|
|
|
|
ASSERT_EQ(b, "y\n2\nmonkey\ndf\nl;\nafcg");
|
2013-05-10 19:40:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-20 22:35:28 +02:00
|
|
|
TEST(StringAppendOperatorTest, SimpleTestNullDelimiter) {
|
|
|
|
auto db = OpenDb('\0');
|
2013-05-10 19:40:10 +02:00
|
|
|
StringLists slists(db);
|
|
|
|
|
2013-08-20 22:35:28 +02:00
|
|
|
slists.Append("k1", "v1");
|
|
|
|
slists.Append("k1", "v2");
|
|
|
|
slists.Append("k1", "v3");
|
2013-05-10 19:40:10 +02:00
|
|
|
|
|
|
|
std::string res;
|
2013-08-20 22:35:28 +02:00
|
|
|
bool status = slists.Get("k1", &res);
|
2013-05-18 01:14:07 +02:00
|
|
|
ASSERT_TRUE(status);
|
2013-05-10 19:40:10 +02:00
|
|
|
|
|
|
|
// Construct the desired string. Default constructor doesn't like '\0' chars.
|
|
|
|
std::string checker("v1,v2,v3"); // Verify that the string is right size.
|
|
|
|
checker[2] = '\0'; // Use null delimiter instead of comma.
|
|
|
|
checker[5] = '\0';
|
|
|
|
assert(checker.size() == 8); // Verify it is still the correct size
|
|
|
|
|
2013-10-05 07:32:05 +02:00
|
|
|
// Check that the rocksdb result string matches the desired string
|
2013-05-10 19:40:10 +02:00
|
|
|
assert(res.size() == checker.size());
|
2013-08-20 22:35:28 +02:00
|
|
|
ASSERT_EQ(res, checker);
|
2013-05-10 19:40:10 +02:00
|
|
|
}
|
|
|
|
|
2013-10-04 06:49:15 +02:00
|
|
|
} // namespace rocksdb
|
2013-05-10 19:40:10 +02:00
|
|
|
|
2015-03-17 02:08:59 +01:00
|
|
|
int main(int argc, char** argv) {
|
2013-08-20 22:35:28 +02:00
|
|
|
// Run with regular database
|
2015-03-17 02:08:59 +01:00
|
|
|
int result;
|
2013-08-20 22:35:28 +02:00
|
|
|
{
|
|
|
|
fprintf(stderr, "Running tests with regular db and operator.\n");
|
|
|
|
StringAppendOperatorTest::SetOpenDbFunction(&OpenNormalDb);
|
2015-03-17 02:08:59 +01:00
|
|
|
result = rocksdb::test::RunAllTests();
|
2013-08-20 22:35:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Run with TTL
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Running tests with ttl db and generic operator.\n");
|
|
|
|
StringAppendOperatorTest::SetOpenDbFunction(&OpenTtlDb);
|
rocksdb: Replace ASSERT* with EXPECT* in functions that does not return void value
Summary:
gtest does not use exceptions to fail a unit test by design, and `ASSERT*`s are implemented using `return`. As a consequence we cannot use `ASSERT*` in a function that does not return `void` value ([[ https://code.google.com/p/googletest/wiki/AdvancedGuide#Assertion_Placement | 1]]), and have to fix our existing code. This diff does this in a generic way, with no manual changes.
In order to detect all existing `ASSERT*` that are used in functions that doesn't return void value, I change the code to generate compile errors for such cases.
In `util/testharness.h` I defined `EXPECT*` assertions, the same way as `ASSERT*`, and redefined `ASSERT*` to return `void`. Then executed:
```lang=bash
% USE_CLANG=1 make all -j55 -k 2> build.log
% perl -naF: -e 'print "-- -number=".$F[1]." ".$F[0]."\n" if /: error:/' \
build.log | xargs -L 1 perl -spi -e 's/ASSERT/EXPECT/g if $. == $number'
% make format
```
After that I reverted back change to `ASSERT*` in `util/testharness.h`. But preserved introduced `EXPECT*`, which is the same as `ASSERT*`. This will be deleted once switched to gtest.
This diff is independent and contains manual changes only in `util/testharness.h`.
Test Plan:
Make sure all tests are passing.
```lang=bash
% USE_CLANG=1 make check
```
Reviewers: igor, lgalanis, sdong, yufei.zhu, rven, meyering
Reviewed By: meyering
Subscribers: dhruba, leveldb
Differential Revision: https://reviews.facebook.net/D33333
2015-03-17 04:52:32 +01:00
|
|
|
result |= rocksdb::test::RunAllTests();
|
2013-08-20 22:35:28 +02:00
|
|
|
}
|
|
|
|
|
2015-03-17 02:08:59 +01:00
|
|
|
return result;
|
2013-05-10 19:40:10 +02:00
|
|
|
}
|