2013-10-16 23:59:46 +02:00
|
|
|
// Copyright (c) 2013, Facebook, Inc. All rights reserved.
|
|
|
|
// This source code is licensed under the BSD-style license found in the
|
|
|
|
// LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
// of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
//
|
2013-03-21 23:59:47 +01:00
|
|
|
#ifndef MERGE_OPERATORS_H
|
|
|
|
#define MERGE_OPERATORS_H
|
|
|
|
|
|
|
|
#include <memory>
|
Benchmarking for Merge Operator
Summary:
Updated db_bench and utilities/merge_operators.h to allow for dynamic benchmarking
of merge operators in db_bench. Added a new test (--benchmarks=mergerandom), which performs
a bunch of random Merge() operations over random keys. Also added a "--merge_operator=" flag
so that the tester can easily benchmark different merge operators. Currently supports
the PutOperator and UInt64Add operator. Support for stringappend or list append may come later.
Test Plan:
1. make db_bench
2. Test the PutOperator (simulating Put) as follows:
./db_bench --benchmarks=fillrandom,readrandom,updaterandom,readrandom,mergerandom,readrandom --merge_operator=put
--threads=2
3. Test the UInt64AddOperator (simulating numeric addition) similarly:
./db_bench --value_size=8 --benchmarks=fillrandom,readrandom,updaterandom,readrandom,mergerandom,readrandom
--merge_operator=uint64add --threads=2
Reviewers: haobo, dhruba, zshao, MarkCallaghan
Reviewed By: haobo
CC: leveldb
Differential Revision: https://reviews.facebook.net/D11535
2013-08-16 02:13:07 +02:00
|
|
|
#include <stdio.h>
|
2013-03-21 23:59:47 +01:00
|
|
|
|
2013-08-23 17:38:13 +02:00
|
|
|
#include "rocksdb/merge_operator.h"
|
2013-03-21 23:59:47 +01:00
|
|
|
|
2013-10-04 06:49:15 +02:00
|
|
|
namespace rocksdb {
|
2013-03-21 23:59:47 +01:00
|
|
|
|
|
|
|
class MergeOperators {
|
|
|
|
public:
|
Benchmarking for Merge Operator
Summary:
Updated db_bench and utilities/merge_operators.h to allow for dynamic benchmarking
of merge operators in db_bench. Added a new test (--benchmarks=mergerandom), which performs
a bunch of random Merge() operations over random keys. Also added a "--merge_operator=" flag
so that the tester can easily benchmark different merge operators. Currently supports
the PutOperator and UInt64Add operator. Support for stringappend or list append may come later.
Test Plan:
1. make db_bench
2. Test the PutOperator (simulating Put) as follows:
./db_bench --benchmarks=fillrandom,readrandom,updaterandom,readrandom,mergerandom,readrandom --merge_operator=put
--threads=2
3. Test the UInt64AddOperator (simulating numeric addition) similarly:
./db_bench --value_size=8 --benchmarks=fillrandom,readrandom,updaterandom,readrandom,mergerandom,readrandom
--merge_operator=uint64add --threads=2
Reviewers: haobo, dhruba, zshao, MarkCallaghan
Reviewed By: haobo
CC: leveldb
Differential Revision: https://reviews.facebook.net/D11535
2013-08-16 02:13:07 +02:00
|
|
|
static std::shared_ptr<MergeOperator> CreatePutOperator();
|
|
|
|
static std::shared_ptr<MergeOperator> CreateUInt64AddOperator();
|
|
|
|
static std::shared_ptr<MergeOperator> CreateStringAppendOperator();
|
|
|
|
static std::shared_ptr<MergeOperator> CreateStringAppendTESTOperator();
|
|
|
|
|
|
|
|
// Will return a different merge operator depending on the string.
|
|
|
|
// TODO: Hook the "name" up to the actual Name() of the MergeOperators?
|
|
|
|
static std::shared_ptr<MergeOperator> CreateFromStringId(
|
|
|
|
const std::string& name) {
|
|
|
|
if (name == "put") {
|
|
|
|
return CreatePutOperator();
|
|
|
|
} else if ( name == "uint64add") {
|
|
|
|
return CreateUInt64AddOperator();
|
|
|
|
} else if (name == "stringappend") {
|
|
|
|
return CreateStringAppendOperator();
|
|
|
|
} else if (name == "stringappendtest") {
|
|
|
|
return CreateStringAppendTESTOperator();
|
|
|
|
} else {
|
|
|
|
// Empty or unknown, just return nullptr
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-21 23:59:47 +01:00
|
|
|
};
|
|
|
|
|
2013-10-04 06:49:15 +02:00
|
|
|
} // namespace rocksdb
|
2013-03-21 23:59:47 +01:00
|
|
|
|
|
|
|
#endif
|