2016-02-10 00:12:00 +01:00
|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
2017-07-16 01:03:42 +02:00
|
|
|
// This source code is licensed under both the GPLv2 (found in the
|
|
|
|
// COPYING file in the root directory) and Apache 2.0 License
|
|
|
|
// (found in the LICENSE.Apache file in the root directory).
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
#ifndef ROCKSDB_LITE
|
|
|
|
|
2016-12-16 20:17:26 +01:00
|
|
|
#include <functional>
|
2015-05-29 23:36:35 +02:00
|
|
|
#include <string>
|
2016-03-03 20:20:25 +01:00
|
|
|
#include <thread>
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2019-06-11 20:42:19 +02:00
|
|
|
#include "db/db_impl/db_impl.h"
|
2020-11-17 02:58:59 +01:00
|
|
|
#include "db/db_test_util.h"
|
2019-05-31 02:39:43 +02:00
|
|
|
#include "port/port.h"
|
2015-05-29 23:36:35 +02:00
|
|
|
#include "rocksdb/db.h"
|
2019-06-11 20:42:19 +02:00
|
|
|
#include "rocksdb/perf_context.h"
|
2015-05-29 23:36:35 +02:00
|
|
|
#include "rocksdb/utilities/optimistic_transaction_db.h"
|
2016-03-03 20:20:25 +01:00
|
|
|
#include "rocksdb/utilities/transaction.h"
|
2019-06-11 20:42:19 +02:00
|
|
|
#include "test_util/sync_point.h"
|
2019-05-31 02:39:43 +02:00
|
|
|
#include "test_util/testharness.h"
|
|
|
|
#include "test_util/transaction_test_util.h"
|
2016-03-03 20:20:25 +01:00
|
|
|
#include "util/crc32c.h"
|
|
|
|
#include "util/random.h"
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
using std::string;
|
|
|
|
|
2020-02-20 21:07:53 +01:00
|
|
|
namespace ROCKSDB_NAMESPACE {
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2020-01-07 23:19:06 +01:00
|
|
|
class OptimisticTransactionTest
|
|
|
|
: public testing::Test,
|
|
|
|
public testing::WithParamInterface<OccValidationPolicy> {
|
2015-05-29 23:36:35 +02:00
|
|
|
public:
|
|
|
|
OptimisticTransactionDB* txn_db;
|
|
|
|
string dbname;
|
|
|
|
Options options;
|
|
|
|
|
|
|
|
OptimisticTransactionTest() {
|
|
|
|
options.create_if_missing = true;
|
|
|
|
options.max_write_buffer_number = 2;
|
Refactor trimming logic for immutable memtables (#5022)
Summary:
MyRocks currently sets `max_write_buffer_number_to_maintain` in order to maintain enough history for transaction conflict checking. The effectiveness of this approach depends on the size of memtables. When memtables are small, it may not keep enough history; when memtables are large, this may consume too much memory.
We are proposing a new way to configure memtable list history: by limiting the memory usage of immutable memtables. The new option is `max_write_buffer_size_to_maintain` and it will take precedence over the old `max_write_buffer_number_to_maintain` if they are both set to non-zero values. The new option accounts for the total memory usage of flushed immutable memtables and mutable memtable. When the total usage exceeds the limit, RocksDB may start dropping immutable memtables (which is also called trimming history), starting from the oldest one.
The semantics of the old option actually works both as an upper bound and lower bound. History trimming will start if number of immutable memtables exceeds the limit, but it will never go below (limit-1) due to history trimming.
In order the mimic the behavior with the new option, history trimming will stop if dropping the next immutable memtable causes the total memory usage go below the size limit. For example, assuming the size limit is set to 64MB, and there are 3 immutable memtables with sizes of 20, 30, 30. Although the total memory usage is 80MB > 64MB, dropping the oldest memtable will reduce the memory usage to 60MB < 64MB, so in this case no memtable will be dropped.
Pull Request resolved: https://github.com/facebook/rocksdb/pull/5022
Differential Revision: D14394062
Pulled By: miasantreble
fbshipit-source-id: 60457a509c6af89d0993f988c9b5c2aa9e45f5c5
2019-08-23 22:54:09 +02:00
|
|
|
options.max_write_buffer_size_to_maintain = 1600;
|
2020-11-17 02:58:59 +01:00
|
|
|
options.merge_operator.reset(new TestPutOperator());
|
2018-07-14 02:18:39 +02:00
|
|
|
dbname = test::PerThreadDBPath("optimistic_transaction_testdb");
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
DestroyDB(dbname, options);
|
2016-11-09 21:12:40 +01:00
|
|
|
Open();
|
2015-05-29 23:36:35 +02:00
|
|
|
}
|
2019-02-14 22:52:47 +01:00
|
|
|
~OptimisticTransactionTest() override {
|
2015-05-29 23:36:35 +02:00
|
|
|
delete txn_db;
|
|
|
|
DestroyDB(dbname, options);
|
|
|
|
}
|
2016-11-09 21:12:40 +01:00
|
|
|
|
|
|
|
void Reopen() {
|
|
|
|
delete txn_db;
|
2017-05-19 19:43:11 +02:00
|
|
|
txn_db = nullptr;
|
2016-11-09 21:12:40 +01:00
|
|
|
Open();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
void Open() {
|
2020-01-07 23:19:06 +01:00
|
|
|
ColumnFamilyOptions cf_options(options);
|
|
|
|
OptimisticTransactionDBOptions occ_opts;
|
|
|
|
occ_opts.validate_policy = GetParam();
|
|
|
|
std::vector<ColumnFamilyDescriptor> column_families;
|
|
|
|
std::vector<ColumnFamilyHandle*> handles;
|
|
|
|
column_families.push_back(
|
|
|
|
ColumnFamilyDescriptor(kDefaultColumnFamilyName, cf_options));
|
|
|
|
Status s =
|
|
|
|
OptimisticTransactionDB::Open(DBOptions(options), occ_opts, dbname,
|
|
|
|
column_families, &handles, &txn_db);
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(s);
|
|
|
|
ASSERT_NE(txn_db, nullptr);
|
|
|
|
ASSERT_EQ(handles.size(), 1);
|
2020-01-07 23:19:06 +01:00
|
|
|
delete handles[0];
|
2016-11-09 21:12:40 +01:00
|
|
|
}
|
2015-05-29 23:36:35 +02:00
|
|
|
};
|
|
|
|
|
2020-01-07 23:19:06 +01:00
|
|
|
TEST_P(OptimisticTransactionTest, SuccessTest) {
|
2015-05-29 23:36:35 +02:00
|
|
|
WriteOptions write_options;
|
|
|
|
ReadOptions read_options;
|
|
|
|
string value;
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Put(write_options, Slice("foo"), Slice("bar")));
|
|
|
|
ASSERT_OK(txn_db->Put(write_options, Slice("foo2"), Slice("bar")));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
Transaction* txn = txn_db->BeginTransaction(write_options);
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_NE(txn, nullptr);
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->GetForUpdate(read_options, "foo", &value));
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_EQ(value, "bar");
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->Put(Slice("foo"), Slice("bar2")));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->GetForUpdate(read_options, "foo", &value));
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_EQ(value, "bar2");
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->Commit());
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Get(read_options, "foo", &value));
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_EQ(value, "bar2");
|
|
|
|
|
|
|
|
delete txn;
|
|
|
|
}
|
|
|
|
|
2020-01-07 23:19:06 +01:00
|
|
|
TEST_P(OptimisticTransactionTest, WriteConflictTest) {
|
2015-05-29 23:36:35 +02:00
|
|
|
WriteOptions write_options;
|
|
|
|
ReadOptions read_options;
|
|
|
|
string value;
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Put(write_options, "foo", "bar"));
|
|
|
|
ASSERT_OK(txn_db->Put(write_options, "foo2", "bar"));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
Transaction* txn = txn_db->BeginTransaction(write_options);
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_NE(txn, nullptr);
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->Put("foo", "bar2"));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
// This Put outside of a transaction will conflict with the previous write
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Put(write_options, "foo", "barz"));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Get(read_options, "foo", &value));
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_EQ(value, "barz");
|
2015-08-25 04:13:18 +02:00
|
|
|
ASSERT_EQ(1, txn->GetNumKeys());
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
Status s = txn->Commit();
|
2015-07-31 05:31:36 +02:00
|
|
|
ASSERT_TRUE(s.IsBusy()); // Txn should not commit
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
// Verify that transaction did not write anything
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Get(read_options, "foo", &value));
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_EQ(value, "barz");
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Get(read_options, "foo2", &value));
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_EQ(value, "bar");
|
|
|
|
|
|
|
|
delete txn;
|
|
|
|
}
|
|
|
|
|
2020-01-07 23:19:06 +01:00
|
|
|
TEST_P(OptimisticTransactionTest, WriteConflictTest2) {
|
2015-05-29 23:36:35 +02:00
|
|
|
WriteOptions write_options;
|
|
|
|
ReadOptions read_options;
|
|
|
|
OptimisticTransactionOptions txn_options;
|
|
|
|
string value;
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Put(write_options, "foo", "bar"));
|
|
|
|
ASSERT_OK(txn_db->Put(write_options, "foo2", "bar"));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
txn_options.set_snapshot = true;
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
Transaction* txn = txn_db->BeginTransaction(write_options, txn_options);
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_NE(txn, nullptr);
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
// This Put outside of a transaction will conflict with a later write
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Put(write_options, "foo", "barz"));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->Put(
|
|
|
|
"foo", "bar2")); // Conflicts with write done after snapshot taken
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Get(read_options, "foo", &value));
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_EQ(value, "barz");
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
Status s = txn->Commit();
|
2015-07-31 05:31:36 +02:00
|
|
|
ASSERT_TRUE(s.IsBusy()); // Txn should not commit
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
// Verify that transaction did not write anything
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Get(read_options, "foo", &value));
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_EQ(value, "barz");
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Get(read_options, "foo2", &value));
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_EQ(value, "bar");
|
|
|
|
|
|
|
|
delete txn;
|
|
|
|
}
|
|
|
|
|
2020-01-07 23:19:06 +01:00
|
|
|
TEST_P(OptimisticTransactionTest, ReadConflictTest) {
|
2015-05-29 23:36:35 +02:00
|
|
|
WriteOptions write_options;
|
|
|
|
ReadOptions read_options, snapshot_read_options;
|
|
|
|
OptimisticTransactionOptions txn_options;
|
|
|
|
string value;
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Put(write_options, "foo", "bar"));
|
|
|
|
ASSERT_OK(txn_db->Put(write_options, "foo2", "bar"));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
txn_options.set_snapshot = true;
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
Transaction* txn = txn_db->BeginTransaction(write_options, txn_options);
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_NE(txn, nullptr);
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
txn->SetSnapshot();
|
|
|
|
snapshot_read_options.snapshot = txn->GetSnapshot();
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->GetForUpdate(snapshot_read_options, "foo", &value));
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_EQ(value, "bar");
|
|
|
|
|
|
|
|
// This Put outside of a transaction will conflict with the previous read
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Put(write_options, "foo", "barz"));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Get(read_options, "foo", &value));
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_EQ(value, "barz");
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
Status s = txn->Commit();
|
2015-07-31 05:31:36 +02:00
|
|
|
ASSERT_TRUE(s.IsBusy()); // Txn should not commit
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
// Verify that transaction did not write anything
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->GetForUpdate(read_options, "foo", &value));
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_EQ(value, "barz");
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->GetForUpdate(read_options, "foo2", &value));
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_EQ(value, "bar");
|
|
|
|
|
|
|
|
delete txn;
|
|
|
|
}
|
|
|
|
|
2020-01-07 23:19:06 +01:00
|
|
|
TEST_P(OptimisticTransactionTest, TxnOnlyTest) {
|
2015-05-29 23:36:35 +02:00
|
|
|
// Test to make sure transactions work when there are no other writes in an
|
|
|
|
// empty db.
|
|
|
|
|
|
|
|
WriteOptions write_options;
|
|
|
|
ReadOptions read_options;
|
|
|
|
string value;
|
|
|
|
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
Transaction* txn = txn_db->BeginTransaction(write_options);
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_NE(txn, nullptr);
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->Put("x", "y"));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->Commit());
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
delete txn;
|
|
|
|
}
|
|
|
|
|
2020-01-07 23:19:06 +01:00
|
|
|
TEST_P(OptimisticTransactionTest, FlushTest) {
|
2015-05-29 23:36:35 +02:00
|
|
|
WriteOptions write_options;
|
|
|
|
ReadOptions read_options, snapshot_read_options;
|
|
|
|
string value;
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Put(write_options, Slice("foo"), Slice("bar")));
|
|
|
|
ASSERT_OK(txn_db->Put(write_options, Slice("foo2"), Slice("bar")));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
Transaction* txn = txn_db->BeginTransaction(write_options);
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_NE(txn, nullptr);
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
snapshot_read_options.snapshot = txn->GetSnapshot();
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->GetForUpdate(snapshot_read_options, "foo", &value));
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_EQ(value, "bar");
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->Put(Slice("foo"), Slice("bar2")));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->GetForUpdate(snapshot_read_options, "foo", &value));
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_EQ(value, "bar2");
|
|
|
|
|
|
|
|
// Put a random key so we have a memtable to flush
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Put(write_options, "dummy", "dummy"));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
// force a memtable flush
|
|
|
|
FlushOptions flush_ops;
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Flush(flush_ops));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
// txn should commit since the flushed table is still in MemtableList History
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->Commit());
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Get(read_options, "foo", &value));
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_EQ(value, "bar2");
|
|
|
|
|
|
|
|
delete txn;
|
|
|
|
}
|
|
|
|
|
2020-01-07 23:19:06 +01:00
|
|
|
TEST_P(OptimisticTransactionTest, FlushTest2) {
|
2015-05-29 23:36:35 +02:00
|
|
|
WriteOptions write_options;
|
|
|
|
ReadOptions read_options, snapshot_read_options;
|
|
|
|
string value;
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Put(write_options, Slice("foo"), Slice("bar")));
|
|
|
|
ASSERT_OK(txn_db->Put(write_options, Slice("foo2"), Slice("bar")));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
Transaction* txn = txn_db->BeginTransaction(write_options);
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_NE(txn, nullptr);
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
snapshot_read_options.snapshot = txn->GetSnapshot();
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->GetForUpdate(snapshot_read_options, "foo", &value));
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_EQ(value, "bar");
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->Put(Slice("foo"), Slice("bar2")));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->GetForUpdate(snapshot_read_options, "foo", &value));
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_EQ(value, "bar2");
|
|
|
|
|
|
|
|
// Put a random key so we have a MemTable to flush
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Put(write_options, "dummy", "dummy"));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
// force a memtable flush
|
|
|
|
FlushOptions flush_ops;
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Flush(flush_ops));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
// Put a random key so we have a MemTable to flush
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Put(write_options, "dummy", "dummy2"));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
// force a memtable flush
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Flush(flush_ops));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Put(write_options, "dummy", "dummy3"));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
// force a memtable flush
|
|
|
|
// Since our test db has max_write_buffer_number=2, this flush will cause
|
|
|
|
// the first memtable to get purged from the MemtableList history.
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Flush(flush_ops));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
Status s = txn->Commit();
|
2015-05-29 23:36:35 +02:00
|
|
|
// txn should not commit since MemTableList History is not large enough
|
2015-07-31 05:31:36 +02:00
|
|
|
ASSERT_TRUE(s.IsTryAgain());
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Get(read_options, "foo", &value));
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_EQ(value, "bar");
|
|
|
|
|
|
|
|
delete txn;
|
|
|
|
}
|
|
|
|
|
2019-06-11 20:42:19 +02:00
|
|
|
// Trigger the condition where some old memtables are skipped when doing
|
|
|
|
// TransactionUtil::CheckKey(), and make sure the result is still correct.
|
2020-01-07 23:19:06 +01:00
|
|
|
TEST_P(OptimisticTransactionTest, CheckKeySkipOldMemtable) {
|
2019-06-11 20:42:19 +02:00
|
|
|
const int kAttemptHistoryMemtable = 0;
|
|
|
|
const int kAttemptImmMemTable = 1;
|
|
|
|
for (int attempt = kAttemptHistoryMemtable; attempt <= kAttemptImmMemTable;
|
|
|
|
attempt++) {
|
|
|
|
options.max_write_buffer_number_to_maintain = 3;
|
|
|
|
Reopen();
|
|
|
|
|
|
|
|
WriteOptions write_options;
|
|
|
|
ReadOptions read_options;
|
|
|
|
ReadOptions snapshot_read_options;
|
|
|
|
ReadOptions snapshot_read_options2;
|
|
|
|
string value;
|
|
|
|
|
|
|
|
ASSERT_OK(txn_db->Put(write_options, Slice("foo"), Slice("bar")));
|
|
|
|
ASSERT_OK(txn_db->Put(write_options, Slice("foo2"), Slice("bar")));
|
|
|
|
|
|
|
|
Transaction* txn = txn_db->BeginTransaction(write_options);
|
|
|
|
ASSERT_TRUE(txn != nullptr);
|
|
|
|
|
|
|
|
Transaction* txn2 = txn_db->BeginTransaction(write_options);
|
|
|
|
ASSERT_TRUE(txn2 != nullptr);
|
|
|
|
|
|
|
|
snapshot_read_options.snapshot = txn->GetSnapshot();
|
|
|
|
ASSERT_OK(txn->GetForUpdate(snapshot_read_options, "foo", &value));
|
|
|
|
ASSERT_EQ(value, "bar");
|
|
|
|
ASSERT_OK(txn->Put(Slice("foo"), Slice("bar2")));
|
|
|
|
|
|
|
|
snapshot_read_options2.snapshot = txn2->GetSnapshot();
|
|
|
|
ASSERT_OK(txn2->GetForUpdate(snapshot_read_options2, "foo2", &value));
|
|
|
|
ASSERT_EQ(value, "bar");
|
|
|
|
ASSERT_OK(txn2->Put(Slice("foo2"), Slice("bar2")));
|
|
|
|
|
|
|
|
// txn updates "foo" and txn2 updates "foo2", and now a write is
|
|
|
|
// issued for "foo", which conflicts with txn but not txn2
|
|
|
|
ASSERT_OK(txn_db->Put(write_options, "foo", "bar"));
|
|
|
|
|
|
|
|
if (attempt == kAttemptImmMemTable) {
|
|
|
|
// For the second attempt, hold flush from beginning. The memtable
|
|
|
|
// will be switched to immutable after calling TEST_SwitchMemtable()
|
|
|
|
// while CheckKey() is called.
|
2020-02-20 21:07:53 +01:00
|
|
|
ROCKSDB_NAMESPACE::SyncPoint::GetInstance()->LoadDependency(
|
2019-06-11 20:42:19 +02:00
|
|
|
{{"OptimisticTransactionTest.CheckKeySkipOldMemtable",
|
|
|
|
"FlushJob::Start"}});
|
2020-02-20 21:07:53 +01:00
|
|
|
ROCKSDB_NAMESPACE::SyncPoint::GetInstance()->EnableProcessing();
|
2019-06-11 20:42:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// force a memtable flush. The memtable should still be kept
|
|
|
|
FlushOptions flush_ops;
|
|
|
|
if (attempt == kAttemptHistoryMemtable) {
|
|
|
|
ASSERT_OK(txn_db->Flush(flush_ops));
|
|
|
|
} else {
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_EQ(attempt, kAttemptImmMemTable);
|
2019-06-11 20:42:19 +02:00
|
|
|
DBImpl* db_impl = static_cast<DBImpl*>(txn_db->GetRootDB());
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(db_impl->TEST_SwitchMemtable());
|
2019-06-11 20:42:19 +02:00
|
|
|
}
|
|
|
|
uint64_t num_imm_mems;
|
|
|
|
ASSERT_TRUE(txn_db->GetIntProperty(DB::Properties::kNumImmutableMemTable,
|
|
|
|
&num_imm_mems));
|
|
|
|
if (attempt == kAttemptHistoryMemtable) {
|
|
|
|
ASSERT_EQ(0, num_imm_mems);
|
|
|
|
} else {
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_EQ(attempt, kAttemptImmMemTable);
|
2019-06-11 20:42:19 +02:00
|
|
|
ASSERT_EQ(1, num_imm_mems);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Put something in active memtable
|
|
|
|
ASSERT_OK(txn_db->Put(write_options, Slice("foo3"), Slice("bar")));
|
|
|
|
|
|
|
|
// Create txn3 after flushing, when this transaction is commited,
|
|
|
|
// only need to check the active memtable
|
|
|
|
Transaction* txn3 = txn_db->BeginTransaction(write_options);
|
|
|
|
ASSERT_TRUE(txn3 != nullptr);
|
|
|
|
|
|
|
|
// Commit both of txn and txn2. txn will conflict but txn2 will
|
|
|
|
// pass. In both ways, both memtables are queried.
|
|
|
|
SetPerfLevel(PerfLevel::kEnableCount);
|
|
|
|
|
|
|
|
get_perf_context()->Reset();
|
2020-12-10 06:19:55 +01:00
|
|
|
Status s = txn->Commit();
|
2019-06-11 20:42:19 +02:00
|
|
|
// We should have checked two memtables
|
|
|
|
ASSERT_EQ(2, get_perf_context()->get_from_memtable_count);
|
|
|
|
// txn should fail because of conflict, even if the memtable
|
|
|
|
// has flushed, because it is still preserved in history.
|
|
|
|
ASSERT_TRUE(s.IsBusy());
|
|
|
|
|
|
|
|
get_perf_context()->Reset();
|
|
|
|
s = txn2->Commit();
|
|
|
|
// We should have checked two memtables
|
|
|
|
ASSERT_EQ(2, get_perf_context()->get_from_memtable_count);
|
|
|
|
ASSERT_TRUE(s.ok());
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn3->Put(Slice("foo2"), Slice("bar2")));
|
2019-06-11 20:42:19 +02:00
|
|
|
get_perf_context()->Reset();
|
|
|
|
s = txn3->Commit();
|
|
|
|
// txn3 is created after the active memtable is created, so that is the only
|
|
|
|
// memtable to check.
|
|
|
|
ASSERT_EQ(1, get_perf_context()->get_from_memtable_count);
|
|
|
|
ASSERT_TRUE(s.ok());
|
|
|
|
|
|
|
|
TEST_SYNC_POINT("OptimisticTransactionTest.CheckKeySkipOldMemtable");
|
2020-02-20 21:07:53 +01:00
|
|
|
ROCKSDB_NAMESPACE::SyncPoint::GetInstance()->DisableProcessing();
|
2019-06-11 20:42:19 +02:00
|
|
|
|
|
|
|
SetPerfLevel(PerfLevel::kDisable);
|
|
|
|
|
|
|
|
delete txn;
|
|
|
|
delete txn2;
|
|
|
|
delete txn3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-07 23:19:06 +01:00
|
|
|
TEST_P(OptimisticTransactionTest, NoSnapshotTest) {
|
2015-05-29 23:36:35 +02:00
|
|
|
WriteOptions write_options;
|
|
|
|
ReadOptions read_options;
|
|
|
|
string value;
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Put(write_options, "AAA", "bar"));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
Transaction* txn = txn_db->BeginTransaction(write_options);
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_NE(txn, nullptr);
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
// Modify key after transaction start
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Put(write_options, "AAA", "bar1"));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
// Read and write without a snapshot
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->GetForUpdate(read_options, "AAA", &value));
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_EQ(value, "bar1");
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->Put("AAA", "bar2"));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
// Should commit since read/write was done after data changed
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->Commit());
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->GetForUpdate(read_options, "AAA", &value));
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_EQ(value, "bar2");
|
|
|
|
|
|
|
|
delete txn;
|
|
|
|
}
|
|
|
|
|
2020-01-07 23:19:06 +01:00
|
|
|
TEST_P(OptimisticTransactionTest, MultipleSnapshotTest) {
|
2015-05-29 23:36:35 +02:00
|
|
|
WriteOptions write_options;
|
|
|
|
ReadOptions read_options, snapshot_read_options;
|
|
|
|
string value;
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Put(write_options, "AAA", "bar"));
|
|
|
|
ASSERT_OK(txn_db->Put(write_options, "BBB", "bar"));
|
|
|
|
ASSERT_OK(txn_db->Put(write_options, "CCC", "bar"));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
Transaction* txn = txn_db->BeginTransaction(write_options);
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_NE(txn, nullptr);
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Put(write_options, "AAA", "bar1"));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
// Read and write without a snapshot
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->GetForUpdate(read_options, "AAA", &value));
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_EQ(value, "bar1");
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->Put("AAA", "bar2"));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
// Modify BBB before snapshot is taken
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Put(write_options, "BBB", "bar1"));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
txn->SetSnapshot();
|
|
|
|
snapshot_read_options.snapshot = txn->GetSnapshot();
|
|
|
|
|
|
|
|
// Read and write with snapshot
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->GetForUpdate(snapshot_read_options, "BBB", &value));
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_EQ(value, "bar1");
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->Put("BBB", "bar2"));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Put(write_options, "CCC", "bar1"));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
// Set a new snapshot
|
|
|
|
txn->SetSnapshot();
|
|
|
|
snapshot_read_options.snapshot = txn->GetSnapshot();
|
|
|
|
|
|
|
|
// Read and write with snapshot
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->GetForUpdate(snapshot_read_options, "CCC", &value));
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_EQ(value, "bar1");
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->Put("CCC", "bar2"));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->GetForUpdate(read_options, "AAA", &value));
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_EQ(value, "bar2");
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->GetForUpdate(read_options, "BBB", &value));
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_EQ(value, "bar2");
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->GetForUpdate(read_options, "CCC", &value));
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_EQ(value, "bar2");
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Get(read_options, "AAA", &value));
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_EQ(value, "bar1");
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Get(read_options, "BBB", &value));
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_EQ(value, "bar1");
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Get(read_options, "CCC", &value));
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_EQ(value, "bar1");
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->Commit());
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Get(read_options, "AAA", &value));
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_EQ(value, "bar2");
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Get(read_options, "BBB", &value));
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_EQ(value, "bar2");
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Get(read_options, "CCC", &value));
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_EQ(value, "bar2");
|
|
|
|
|
|
|
|
// verify that we track multiple writes to the same key at different snapshots
|
|
|
|
delete txn;
|
|
|
|
txn = txn_db->BeginTransaction(write_options);
|
|
|
|
|
|
|
|
// Potentially conflicting writes
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Put(write_options, "ZZZ", "zzz"));
|
|
|
|
ASSERT_OK(txn_db->Put(write_options, "XXX", "xxx"));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
txn->SetSnapshot();
|
|
|
|
|
|
|
|
OptimisticTransactionOptions txn_options;
|
|
|
|
txn_options.set_snapshot = true;
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
Transaction* txn2 = txn_db->BeginTransaction(write_options, txn_options);
|
2015-05-29 23:36:35 +02:00
|
|
|
txn2->SetSnapshot();
|
|
|
|
|
|
|
|
// This should not conflict in txn since the snapshot is later than the
|
|
|
|
// previous write (spoiler alert: it will later conflict with txn2).
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->Put("ZZZ", "zzzz"));
|
|
|
|
ASSERT_OK(txn->Commit());
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
delete txn;
|
|
|
|
|
|
|
|
// This will conflict since the snapshot is earlier than another write to ZZZ
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn2->Put("ZZZ", "xxxxx"));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
Status s = txn2->Commit();
|
2015-07-31 05:31:36 +02:00
|
|
|
ASSERT_TRUE(s.IsBusy());
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
delete txn2;
|
|
|
|
}
|
|
|
|
|
2020-01-07 23:19:06 +01:00
|
|
|
TEST_P(OptimisticTransactionTest, ColumnFamiliesTest) {
|
2015-05-29 23:36:35 +02:00
|
|
|
WriteOptions write_options;
|
|
|
|
ReadOptions read_options, snapshot_read_options;
|
|
|
|
OptimisticTransactionOptions txn_options;
|
|
|
|
string value;
|
|
|
|
|
|
|
|
ColumnFamilyHandle *cfa, *cfb;
|
|
|
|
ColumnFamilyOptions cf_options;
|
|
|
|
|
|
|
|
// Create 2 new column families
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->CreateColumnFamily(cf_options, "CFA", &cfa));
|
|
|
|
ASSERT_OK(txn_db->CreateColumnFamily(cf_options, "CFB", &cfb));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
delete cfa;
|
|
|
|
delete cfb;
|
|
|
|
delete txn_db;
|
2017-05-19 19:43:11 +02:00
|
|
|
txn_db = nullptr;
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
// open DB with three column families
|
|
|
|
std::vector<ColumnFamilyDescriptor> column_families;
|
|
|
|
// have to open default column family
|
|
|
|
column_families.push_back(
|
|
|
|
ColumnFamilyDescriptor(kDefaultColumnFamilyName, ColumnFamilyOptions()));
|
|
|
|
// open the new column families
|
|
|
|
column_families.push_back(
|
|
|
|
ColumnFamilyDescriptor("CFA", ColumnFamilyOptions()));
|
|
|
|
column_families.push_back(
|
|
|
|
ColumnFamilyDescriptor("CFB", ColumnFamilyOptions()));
|
|
|
|
std::vector<ColumnFamilyHandle*> handles;
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(OptimisticTransactionDB::Open(options, dbname, column_families,
|
|
|
|
&handles, &txn_db));
|
2017-05-19 19:43:11 +02:00
|
|
|
assert(txn_db != nullptr);
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_NE(txn_db, nullptr);
|
2015-05-29 23:36:35 +02:00
|
|
|
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
Transaction* txn = txn_db->BeginTransaction(write_options);
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_NE(txn, nullptr);
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
txn->SetSnapshot();
|
|
|
|
snapshot_read_options.snapshot = txn->GetSnapshot();
|
|
|
|
|
|
|
|
txn_options.set_snapshot = true;
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
Transaction* txn2 = txn_db->BeginTransaction(write_options, txn_options);
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_TRUE(txn2);
|
|
|
|
|
|
|
|
// Write some data to the db
|
|
|
|
WriteBatch batch;
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(batch.Put("foo", "foo"));
|
|
|
|
ASSERT_OK(batch.Put(handles[1], "AAA", "bar"));
|
|
|
|
ASSERT_OK(batch.Put(handles[1], "AAAZZZ", "bar"));
|
|
|
|
ASSERT_OK(txn_db->Write(write_options, &batch));
|
|
|
|
ASSERT_OK(txn_db->Delete(write_options, handles[1], "AAAZZZ"));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
// These keys do no conflict with existing writes since they're in
|
|
|
|
// different column families
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->Delete("AAA"));
|
|
|
|
Status s =
|
|
|
|
txn->GetForUpdate(snapshot_read_options, handles[1], "foo", &value);
|
|
|
|
ASSERT_TRUE(s.IsNotFound());
|
2015-05-29 23:36:35 +02:00
|
|
|
Slice key_slice("AAAZZZ");
|
|
|
|
Slice value_slices[2] = {Slice("bar"), Slice("bar")};
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->Put(handles[2], SliceParts(&key_slice, 1),
|
|
|
|
SliceParts(value_slices, 2)));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2015-08-25 04:13:18 +02:00
|
|
|
ASSERT_EQ(3, txn->GetNumKeys());
|
|
|
|
|
2015-05-29 23:36:35 +02:00
|
|
|
// Txn should commit
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->Commit());
|
2018-04-04 00:24:23 +02:00
|
|
|
s = txn_db->Get(read_options, "AAA", &value);
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_TRUE(s.IsNotFound());
|
2018-04-04 00:24:23 +02:00
|
|
|
s = txn_db->Get(read_options, handles[2], "AAAZZZ", &value);
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_EQ(value, "barbar");
|
|
|
|
|
|
|
|
Slice key_slices[3] = {Slice("AAA"), Slice("ZZ"), Slice("Z")};
|
|
|
|
Slice value_slice("barbarbar");
|
|
|
|
// This write will cause a conflict with the earlier batch write
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn2->Put(handles[1], SliceParts(key_slices, 3),
|
|
|
|
SliceParts(&value_slice, 1)));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn2->Delete(handles[2], "XXX"));
|
|
|
|
ASSERT_OK(txn2->Delete(handles[1], "XXX"));
|
2015-05-29 23:36:35 +02:00
|
|
|
s = txn2->GetForUpdate(snapshot_read_options, handles[1], "AAA", &value);
|
|
|
|
ASSERT_TRUE(s.IsNotFound());
|
|
|
|
|
|
|
|
// Verify txn did not commit
|
|
|
|
s = txn2->Commit();
|
2015-07-31 05:31:36 +02:00
|
|
|
ASSERT_TRUE(s.IsBusy());
|
2018-04-04 00:24:23 +02:00
|
|
|
s = txn_db->Get(read_options, handles[1], "AAAZZZ", &value);
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_TRUE(s.IsNotFound());
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_EQ(value, "barbar");
|
|
|
|
|
|
|
|
delete txn;
|
|
|
|
delete txn2;
|
|
|
|
|
|
|
|
txn = txn_db->BeginTransaction(write_options, txn_options);
|
|
|
|
snapshot_read_options.snapshot = txn->GetSnapshot();
|
|
|
|
|
|
|
|
txn2 = txn_db->BeginTransaction(write_options, txn_options);
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_NE(txn, nullptr);
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
std::vector<ColumnFamilyHandle*> multiget_cfh = {handles[1], handles[2],
|
|
|
|
handles[0], handles[2]};
|
|
|
|
std::vector<Slice> multiget_keys = {"AAA", "AAAZZZ", "foo", "foo"};
|
|
|
|
std::vector<std::string> values(4);
|
|
|
|
|
|
|
|
std::vector<Status> results = txn->MultiGetForUpdate(
|
|
|
|
snapshot_read_options, multiget_cfh, multiget_keys, &values);
|
|
|
|
ASSERT_OK(results[0]);
|
|
|
|
ASSERT_OK(results[1]);
|
|
|
|
ASSERT_OK(results[2]);
|
|
|
|
ASSERT_TRUE(results[3].IsNotFound());
|
|
|
|
ASSERT_EQ(values[0], "bar");
|
|
|
|
ASSERT_EQ(values[1], "barbar");
|
|
|
|
ASSERT_EQ(values[2], "foo");
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->Delete(handles[2], "ZZZ"));
|
|
|
|
ASSERT_OK(txn->Put(handles[2], "ZZZ", "YYY"));
|
|
|
|
ASSERT_OK(txn->Put(handles[2], "ZZZ", "YYYY"));
|
|
|
|
ASSERT_OK(txn->Delete(handles[2], "ZZZ"));
|
|
|
|
ASSERT_OK(txn->Put(handles[2], "AAAZZZ", "barbarbar"));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2015-08-25 04:13:18 +02:00
|
|
|
ASSERT_EQ(5, txn->GetNumKeys());
|
|
|
|
|
2015-05-29 23:36:35 +02:00
|
|
|
// Txn should commit
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->Commit());
|
2018-04-04 00:24:23 +02:00
|
|
|
s = txn_db->Get(read_options, handles[2], "ZZZ", &value);
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_TRUE(s.IsNotFound());
|
|
|
|
|
|
|
|
// Put a key which will conflict with the next txn using the previous snapshot
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Put(write_options, handles[2], "foo", "000"));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
results = txn2->MultiGetForUpdate(snapshot_read_options, multiget_cfh,
|
|
|
|
multiget_keys, &values);
|
|
|
|
ASSERT_OK(results[0]);
|
|
|
|
ASSERT_OK(results[1]);
|
|
|
|
ASSERT_OK(results[2]);
|
|
|
|
ASSERT_TRUE(results[3].IsNotFound());
|
|
|
|
ASSERT_EQ(values[0], "bar");
|
|
|
|
ASSERT_EQ(values[1], "barbar");
|
|
|
|
ASSERT_EQ(values[2], "foo");
|
|
|
|
|
|
|
|
// Verify Txn Did not Commit
|
|
|
|
s = txn2->Commit();
|
2015-07-31 05:31:36 +02:00
|
|
|
ASSERT_TRUE(s.IsBusy());
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2018-04-04 00:24:23 +02:00
|
|
|
s = txn_db->DropColumnFamily(handles[1]);
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_OK(s);
|
2018-04-04 00:24:23 +02:00
|
|
|
s = txn_db->DropColumnFamily(handles[2]);
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_OK(s);
|
|
|
|
|
|
|
|
delete txn;
|
|
|
|
delete txn2;
|
|
|
|
|
|
|
|
for (auto handle : handles) {
|
|
|
|
delete handle;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-07 23:19:06 +01:00
|
|
|
TEST_P(OptimisticTransactionTest, EmptyTest) {
|
2015-05-29 23:36:35 +02:00
|
|
|
WriteOptions write_options;
|
|
|
|
ReadOptions read_options;
|
|
|
|
string value;
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Put(write_options, "aaa", "aaa"));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
Transaction* txn = txn_db->BeginTransaction(write_options);
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->Commit());
|
2015-05-29 23:36:35 +02:00
|
|
|
delete txn;
|
|
|
|
|
|
|
|
txn = txn_db->BeginTransaction(write_options);
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->Rollback());
|
2015-05-29 23:36:35 +02:00
|
|
|
delete txn;
|
|
|
|
|
|
|
|
txn = txn_db->BeginTransaction(write_options);
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->GetForUpdate(read_options, "aaa", &value));
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_EQ(value, "aaa");
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->Commit());
|
2015-05-29 23:36:35 +02:00
|
|
|
delete txn;
|
|
|
|
|
|
|
|
txn = txn_db->BeginTransaction(write_options);
|
|
|
|
txn->SetSnapshot();
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->GetForUpdate(read_options, "aaa", &value));
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_EQ(value, "aaa");
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Put(write_options, "aaa", "xxx"));
|
|
|
|
Status s = txn->Commit();
|
2015-07-31 05:31:36 +02:00
|
|
|
ASSERT_TRUE(s.IsBusy());
|
2015-05-29 23:36:35 +02:00
|
|
|
delete txn;
|
|
|
|
}
|
|
|
|
|
2020-01-07 23:19:06 +01:00
|
|
|
TEST_P(OptimisticTransactionTest, PredicateManyPreceders) {
|
2015-05-29 23:36:35 +02:00
|
|
|
WriteOptions write_options;
|
|
|
|
ReadOptions read_options1, read_options2;
|
|
|
|
OptimisticTransactionOptions txn_options;
|
|
|
|
string value;
|
|
|
|
|
|
|
|
txn_options.set_snapshot = true;
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
Transaction* txn1 = txn_db->BeginTransaction(write_options, txn_options);
|
2015-05-29 23:36:35 +02:00
|
|
|
read_options1.snapshot = txn1->GetSnapshot();
|
|
|
|
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
Transaction* txn2 = txn_db->BeginTransaction(write_options);
|
2015-05-29 23:36:35 +02:00
|
|
|
txn2->SetSnapshot();
|
|
|
|
read_options2.snapshot = txn2->GetSnapshot();
|
|
|
|
|
|
|
|
std::vector<Slice> multiget_keys = {"1", "2", "3"};
|
|
|
|
std::vector<std::string> multiget_values;
|
|
|
|
|
|
|
|
std::vector<Status> results =
|
|
|
|
txn1->MultiGetForUpdate(read_options1, multiget_keys, &multiget_values);
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_TRUE(results[0].IsNotFound());
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_TRUE(results[1].IsNotFound());
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_TRUE(results[2].IsNotFound());
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn2->Put("2", "x"));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn2->Commit());
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
multiget_values.clear();
|
|
|
|
results =
|
|
|
|
txn1->MultiGetForUpdate(read_options1, multiget_keys, &multiget_values);
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_TRUE(results[0].IsNotFound());
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_TRUE(results[1].IsNotFound());
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_TRUE(results[2].IsNotFound());
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
// should not commit since txn2 wrote a key txn has read
|
2020-12-10 06:19:55 +01:00
|
|
|
Status s = txn1->Commit();
|
2015-07-31 05:31:36 +02:00
|
|
|
ASSERT_TRUE(s.IsBusy());
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
delete txn1;
|
|
|
|
delete txn2;
|
|
|
|
|
|
|
|
txn1 = txn_db->BeginTransaction(write_options, txn_options);
|
|
|
|
read_options1.snapshot = txn1->GetSnapshot();
|
|
|
|
|
|
|
|
txn2 = txn_db->BeginTransaction(write_options, txn_options);
|
|
|
|
read_options2.snapshot = txn2->GetSnapshot();
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn1->Put("4", "x"));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn2->Delete("4"));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
// txn1 can commit since txn2's delete hasn't happened yet (it's just batched)
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn1->Commit());
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
s = txn2->GetForUpdate(read_options2, "4", &value);
|
|
|
|
ASSERT_TRUE(s.IsNotFound());
|
|
|
|
|
|
|
|
// txn2 cannot commit since txn1 changed "4"
|
|
|
|
s = txn2->Commit();
|
2015-07-31 05:31:36 +02:00
|
|
|
ASSERT_TRUE(s.IsBusy());
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
delete txn1;
|
|
|
|
delete txn2;
|
|
|
|
}
|
|
|
|
|
2020-01-07 23:19:06 +01:00
|
|
|
TEST_P(OptimisticTransactionTest, LostUpdate) {
|
2015-05-29 23:36:35 +02:00
|
|
|
WriteOptions write_options;
|
|
|
|
ReadOptions read_options, read_options1, read_options2;
|
|
|
|
OptimisticTransactionOptions txn_options;
|
|
|
|
string value;
|
|
|
|
|
|
|
|
// Test 2 transactions writing to the same key in multiple orders and
|
|
|
|
// with/without snapshots
|
|
|
|
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
Transaction* txn1 = txn_db->BeginTransaction(write_options);
|
|
|
|
Transaction* txn2 = txn_db->BeginTransaction(write_options);
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn1->Put("1", "1"));
|
|
|
|
ASSERT_OK(txn2->Put("1", "2"));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn1->Commit());
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
Status s = txn2->Commit();
|
2015-07-31 05:31:36 +02:00
|
|
|
ASSERT_TRUE(s.IsBusy());
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
delete txn1;
|
|
|
|
delete txn2;
|
|
|
|
|
|
|
|
txn_options.set_snapshot = true;
|
|
|
|
txn1 = txn_db->BeginTransaction(write_options, txn_options);
|
|
|
|
read_options1.snapshot = txn1->GetSnapshot();
|
|
|
|
|
|
|
|
txn2 = txn_db->BeginTransaction(write_options, txn_options);
|
|
|
|
read_options2.snapshot = txn2->GetSnapshot();
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn1->Put("1", "3"));
|
|
|
|
ASSERT_OK(txn2->Put("1", "4"));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn1->Commit());
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
s = txn2->Commit();
|
2015-07-31 05:31:36 +02:00
|
|
|
ASSERT_TRUE(s.IsBusy());
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
delete txn1;
|
|
|
|
delete txn2;
|
|
|
|
|
|
|
|
txn1 = txn_db->BeginTransaction(write_options, txn_options);
|
|
|
|
read_options1.snapshot = txn1->GetSnapshot();
|
|
|
|
|
|
|
|
txn2 = txn_db->BeginTransaction(write_options, txn_options);
|
|
|
|
read_options2.snapshot = txn2->GetSnapshot();
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn1->Put("1", "5"));
|
|
|
|
ASSERT_OK(txn1->Commit());
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn2->Put("1", "6"));
|
2015-05-29 23:36:35 +02:00
|
|
|
s = txn2->Commit();
|
2015-07-31 05:31:36 +02:00
|
|
|
ASSERT_TRUE(s.IsBusy());
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
delete txn1;
|
|
|
|
delete txn2;
|
|
|
|
|
|
|
|
txn1 = txn_db->BeginTransaction(write_options, txn_options);
|
|
|
|
read_options1.snapshot = txn1->GetSnapshot();
|
|
|
|
|
|
|
|
txn2 = txn_db->BeginTransaction(write_options, txn_options);
|
|
|
|
read_options2.snapshot = txn2->GetSnapshot();
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn1->Put("1", "5"));
|
|
|
|
ASSERT_OK(txn1->Commit());
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
txn2->SetSnapshot();
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn2->Put("1", "6"));
|
|
|
|
ASSERT_OK(txn2->Commit());
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
delete txn1;
|
|
|
|
delete txn2;
|
|
|
|
|
|
|
|
txn1 = txn_db->BeginTransaction(write_options);
|
|
|
|
txn2 = txn_db->BeginTransaction(write_options);
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn1->Put("1", "7"));
|
|
|
|
ASSERT_OK(txn1->Commit());
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn2->Put("1", "8"));
|
|
|
|
ASSERT_OK(txn2->Commit());
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
delete txn1;
|
|
|
|
delete txn2;
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Get(read_options, "1", &value));
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_EQ(value, "8");
|
|
|
|
}
|
|
|
|
|
2020-01-07 23:19:06 +01:00
|
|
|
TEST_P(OptimisticTransactionTest, UntrackedWrites) {
|
2015-05-29 23:36:35 +02:00
|
|
|
WriteOptions write_options;
|
|
|
|
ReadOptions read_options;
|
|
|
|
string value;
|
|
|
|
Status s;
|
|
|
|
|
|
|
|
// Verify transaction rollback works for untracked keys.
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
Transaction* txn = txn_db->BeginTransaction(write_options);
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->PutUntracked("untracked", "0"));
|
|
|
|
ASSERT_OK(txn->Rollback());
|
2018-04-04 00:24:23 +02:00
|
|
|
s = txn_db->Get(read_options, "untracked", &value);
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_TRUE(s.IsNotFound());
|
|
|
|
|
|
|
|
delete txn;
|
|
|
|
txn = txn_db->BeginTransaction(write_options);
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->Put("tracked", "1"));
|
|
|
|
ASSERT_OK(txn->PutUntracked("untracked", "1"));
|
|
|
|
ASSERT_OK(txn->MergeUntracked("untracked", "2"));
|
|
|
|
ASSERT_OK(txn->DeleteUntracked("untracked"));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
// Write to the untracked key outside of the transaction and verify
|
|
|
|
// it doesn't prevent the transaction from committing.
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Put(write_options, "untracked", "x"));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->Commit());
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2018-04-04 00:24:23 +02:00
|
|
|
s = txn_db->Get(read_options, "untracked", &value);
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_TRUE(s.IsNotFound());
|
|
|
|
|
|
|
|
delete txn;
|
|
|
|
txn = txn_db->BeginTransaction(write_options);
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->Put("tracked", "10"));
|
|
|
|
ASSERT_OK(txn->PutUntracked("untracked", "A"));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
// Write to tracked key outside of the transaction and verify that the
|
|
|
|
// untracked keys are not written when the commit fails.
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Delete(write_options, "tracked"));
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
s = txn->Commit();
|
2015-07-31 05:31:36 +02:00
|
|
|
ASSERT_TRUE(s.IsBusy());
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2018-04-04 00:24:23 +02:00
|
|
|
s = txn_db->Get(read_options, "untracked", &value);
|
2015-05-29 23:36:35 +02:00
|
|
|
ASSERT_TRUE(s.IsNotFound());
|
|
|
|
|
|
|
|
delete txn;
|
|
|
|
}
|
|
|
|
|
2020-01-07 23:19:06 +01:00
|
|
|
TEST_P(OptimisticTransactionTest, IteratorTest) {
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
WriteOptions write_options;
|
|
|
|
ReadOptions read_options, snapshot_read_options;
|
|
|
|
OptimisticTransactionOptions txn_options;
|
|
|
|
string value;
|
|
|
|
|
|
|
|
// Write some keys to the db
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Put(write_options, "A", "a"));
|
|
|
|
ASSERT_OK(txn_db->Put(write_options, "G", "g"));
|
|
|
|
ASSERT_OK(txn_db->Put(write_options, "F", "f"));
|
|
|
|
ASSERT_OK(txn_db->Put(write_options, "C", "c"));
|
|
|
|
ASSERT_OK(txn_db->Put(write_options, "D", "d"));
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
|
|
|
|
Transaction* txn = txn_db->BeginTransaction(write_options);
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_NE(txn, nullptr);
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
|
|
|
|
// Write some keys in a txn
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->Put("B", "b"));
|
|
|
|
ASSERT_OK(txn->Put("H", "h"));
|
|
|
|
ASSERT_OK(txn->Delete("D"));
|
|
|
|
ASSERT_OK(txn->Put("E", "e"));
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
|
|
|
|
txn->SetSnapshot();
|
|
|
|
const Snapshot* snapshot = txn->GetSnapshot();
|
|
|
|
|
|
|
|
// Write some keys to the db after the snapshot
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Put(write_options, "BB", "xx"));
|
|
|
|
ASSERT_OK(txn_db->Put(write_options, "C", "xx"));
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
|
|
|
|
read_options.snapshot = snapshot;
|
|
|
|
Iterator* iter = txn->GetIterator(read_options);
|
|
|
|
ASSERT_OK(iter->status());
|
|
|
|
iter->SeekToFirst();
|
|
|
|
|
|
|
|
// Read all keys via iter and lock them all
|
|
|
|
std::string results[] = {"a", "b", "c", "e", "f", "g", "h"};
|
|
|
|
for (int i = 0; i < 7; i++) {
|
|
|
|
ASSERT_OK(iter->status());
|
|
|
|
ASSERT_TRUE(iter->Valid());
|
|
|
|
ASSERT_EQ(results[i], iter->value().ToString());
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->GetForUpdate(read_options, iter->key(), nullptr));
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
|
|
|
|
iter->Next();
|
|
|
|
}
|
|
|
|
ASSERT_FALSE(iter->Valid());
|
|
|
|
|
|
|
|
iter->Seek("G");
|
|
|
|
ASSERT_OK(iter->status());
|
|
|
|
ASSERT_TRUE(iter->Valid());
|
|
|
|
ASSERT_EQ("g", iter->value().ToString());
|
|
|
|
|
|
|
|
iter->Prev();
|
|
|
|
ASSERT_OK(iter->status());
|
|
|
|
ASSERT_TRUE(iter->Valid());
|
|
|
|
ASSERT_EQ("f", iter->value().ToString());
|
|
|
|
|
|
|
|
iter->Seek("D");
|
|
|
|
ASSERT_OK(iter->status());
|
|
|
|
ASSERT_TRUE(iter->Valid());
|
|
|
|
ASSERT_EQ("e", iter->value().ToString());
|
|
|
|
|
|
|
|
iter->Seek("C");
|
|
|
|
ASSERT_OK(iter->status());
|
|
|
|
ASSERT_TRUE(iter->Valid());
|
|
|
|
ASSERT_EQ("c", iter->value().ToString());
|
|
|
|
|
|
|
|
iter->Next();
|
|
|
|
ASSERT_OK(iter->status());
|
|
|
|
ASSERT_TRUE(iter->Valid());
|
|
|
|
ASSERT_EQ("e", iter->value().ToString());
|
|
|
|
|
|
|
|
iter->Seek("");
|
|
|
|
ASSERT_OK(iter->status());
|
|
|
|
ASSERT_TRUE(iter->Valid());
|
|
|
|
ASSERT_EQ("a", iter->value().ToString());
|
|
|
|
|
|
|
|
iter->Seek("X");
|
|
|
|
ASSERT_OK(iter->status());
|
|
|
|
ASSERT_FALSE(iter->Valid());
|
|
|
|
|
|
|
|
iter->SeekToLast();
|
|
|
|
ASSERT_OK(iter->status());
|
|
|
|
ASSERT_TRUE(iter->Valid());
|
|
|
|
ASSERT_EQ("h", iter->value().ToString());
|
|
|
|
|
|
|
|
// key "C" was modified in the db after txn's snapshot. txn will not commit.
|
2020-12-10 06:19:55 +01:00
|
|
|
Status s = txn->Commit();
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
ASSERT_TRUE(s.IsBusy());
|
|
|
|
|
|
|
|
delete iter;
|
|
|
|
delete txn;
|
|
|
|
}
|
|
|
|
|
2020-01-07 23:19:06 +01:00
|
|
|
TEST_P(OptimisticTransactionTest, SavepointTest) {
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
WriteOptions write_options;
|
|
|
|
ReadOptions read_options, snapshot_read_options;
|
|
|
|
OptimisticTransactionOptions txn_options;
|
|
|
|
string value;
|
|
|
|
|
|
|
|
Transaction* txn = txn_db->BeginTransaction(write_options);
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_NE(txn, nullptr);
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
Status s = txn->RollbackToSavePoint();
|
2015-08-01 00:18:27 +02:00
|
|
|
ASSERT_TRUE(s.IsNotFound());
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
|
|
|
|
txn->SetSavePoint(); // 1
|
|
|
|
|
2015-08-01 00:18:27 +02:00
|
|
|
ASSERT_OK(txn->RollbackToSavePoint()); // Rollback to beginning of txn
|
|
|
|
s = txn->RollbackToSavePoint();
|
|
|
|
ASSERT_TRUE(s.IsNotFound());
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->Put("B", "b"));
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->Commit());
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Get(read_options, "B", &value));
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
ASSERT_EQ("b", value);
|
|
|
|
|
|
|
|
delete txn;
|
|
|
|
txn = txn_db->BeginTransaction(write_options);
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_NE(txn, nullptr);
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->Put("A", "a"));
|
|
|
|
ASSERT_OK(txn->Put("B", "bb"));
|
|
|
|
ASSERT_OK(txn->Put("C", "c"));
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
|
|
|
|
txn->SetSavePoint(); // 2
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->Delete("B"));
|
|
|
|
ASSERT_OK(txn->Put("C", "cc"));
|
|
|
|
ASSERT_OK(txn->Put("D", "d"));
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
|
2015-08-01 00:18:27 +02:00
|
|
|
ASSERT_OK(txn->RollbackToSavePoint()); // Rollback to 2
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->Get(read_options, "A", &value));
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
ASSERT_EQ("a", value);
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->Get(read_options, "B", &value));
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
ASSERT_EQ("bb", value);
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->Get(read_options, "C", &value));
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
ASSERT_EQ("c", value);
|
|
|
|
s = txn->Get(read_options, "D", &value);
|
|
|
|
ASSERT_TRUE(s.IsNotFound());
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->Put("A", "a"));
|
|
|
|
ASSERT_OK(txn->Put("E", "e"));
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
|
2015-08-01 00:18:27 +02:00
|
|
|
// Rollback to beginning of txn
|
|
|
|
s = txn->RollbackToSavePoint();
|
|
|
|
ASSERT_TRUE(s.IsNotFound());
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->Rollback());
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
|
|
|
|
s = txn->Get(read_options, "A", &value);
|
|
|
|
ASSERT_TRUE(s.IsNotFound());
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->Get(read_options, "B", &value));
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
ASSERT_EQ("b", value);
|
|
|
|
s = txn->Get(read_options, "D", &value);
|
|
|
|
ASSERT_TRUE(s.IsNotFound());
|
|
|
|
s = txn->Get(read_options, "D", &value);
|
|
|
|
ASSERT_TRUE(s.IsNotFound());
|
|
|
|
s = txn->Get(read_options, "E", &value);
|
|
|
|
ASSERT_TRUE(s.IsNotFound());
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->Put("A", "aa"));
|
|
|
|
ASSERT_OK(txn->Put("F", "f"));
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
|
|
|
|
txn->SetSavePoint(); // 3
|
|
|
|
txn->SetSavePoint(); // 4
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->Put("G", "g"));
|
|
|
|
ASSERT_OK(txn->Delete("F"));
|
|
|
|
ASSERT_OK(txn->Delete("B"));
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->Get(read_options, "A", &value));
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
ASSERT_EQ("aa", value);
|
|
|
|
|
|
|
|
s = txn->Get(read_options, "F", &value);
|
|
|
|
ASSERT_TRUE(s.IsNotFound());
|
|
|
|
|
|
|
|
s = txn->Get(read_options, "B", &value);
|
|
|
|
ASSERT_TRUE(s.IsNotFound());
|
|
|
|
|
2015-08-01 00:18:27 +02:00
|
|
|
ASSERT_OK(txn->RollbackToSavePoint()); // Rollback to 3
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->Get(read_options, "F", &value));
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
ASSERT_EQ("f", value);
|
|
|
|
|
|
|
|
s = txn->Get(read_options, "G", &value);
|
|
|
|
ASSERT_TRUE(s.IsNotFound());
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn->Commit());
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Get(read_options, "F", &value));
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
ASSERT_EQ("f", value);
|
|
|
|
|
2018-04-04 00:24:23 +02:00
|
|
|
s = txn_db->Get(read_options, "G", &value);
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
ASSERT_TRUE(s.IsNotFound());
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Get(read_options, "A", &value));
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
ASSERT_EQ("aa", value);
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Get(read_options, "B", &value));
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
ASSERT_EQ("b", value);
|
|
|
|
|
2018-04-04 00:24:23 +02:00
|
|
|
s = txn_db->Get(read_options, "C", &value);
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
ASSERT_TRUE(s.IsNotFound());
|
|
|
|
|
2018-04-04 00:24:23 +02:00
|
|
|
s = txn_db->Get(read_options, "D", &value);
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
ASSERT_TRUE(s.IsNotFound());
|
|
|
|
|
2018-04-04 00:24:23 +02:00
|
|
|
s = txn_db->Get(read_options, "E", &value);
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
ASSERT_TRUE(s.IsNotFound());
|
|
|
|
|
|
|
|
delete txn;
|
|
|
|
}
|
|
|
|
|
2020-01-07 23:19:06 +01:00
|
|
|
TEST_P(OptimisticTransactionTest, UndoGetForUpdateTest) {
|
2015-09-15 02:11:52 +02:00
|
|
|
WriteOptions write_options;
|
|
|
|
ReadOptions read_options, snapshot_read_options;
|
|
|
|
OptimisticTransactionOptions txn_options;
|
|
|
|
string value;
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn_db->Put(write_options, "A", ""));
|
2015-09-15 02:11:52 +02:00
|
|
|
|
|
|
|
Transaction* txn1 = txn_db->BeginTransaction(write_options);
|
|
|
|
ASSERT_TRUE(txn1);
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn1->GetForUpdate(read_options, "A", &value));
|
2015-09-15 02:11:52 +02:00
|
|
|
|
|
|
|
txn1->UndoGetForUpdate("A");
|
|
|
|
|
|
|
|
Transaction* txn2 = txn_db->BeginTransaction(write_options);
|
|
|
|
txn2->Put("A", "x");
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn2->Commit());
|
2015-09-15 02:11:52 +02:00
|
|
|
delete txn2;
|
|
|
|
|
|
|
|
// Verify that txn1 can commit since A isn't conflict checked
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn1->Commit());
|
2015-09-15 02:11:52 +02:00
|
|
|
delete txn1;
|
|
|
|
|
|
|
|
txn1 = txn_db->BeginTransaction(write_options);
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn1->Put("A", "a"));
|
2015-09-15 02:11:52 +02:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn1->GetForUpdate(read_options, "A", &value));
|
2015-09-15 02:11:52 +02:00
|
|
|
|
|
|
|
txn1->UndoGetForUpdate("A");
|
|
|
|
|
|
|
|
txn2 = txn_db->BeginTransaction(write_options);
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn2->Put("A", "x"));
|
|
|
|
ASSERT_OK(txn2->Commit());
|
2015-09-15 02:11:52 +02:00
|
|
|
delete txn2;
|
|
|
|
|
|
|
|
// Verify that txn1 cannot commit since A will still be conflict checked
|
2020-12-10 06:19:55 +01:00
|
|
|
Status s = txn1->Commit();
|
2015-09-15 02:11:52 +02:00
|
|
|
ASSERT_TRUE(s.IsBusy());
|
|
|
|
delete txn1;
|
|
|
|
|
|
|
|
txn1 = txn_db->BeginTransaction(write_options);
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn1->GetForUpdate(read_options, "A", &value));
|
|
|
|
ASSERT_OK(txn1->GetForUpdate(read_options, "A", &value));
|
2015-09-15 02:11:52 +02:00
|
|
|
|
|
|
|
txn1->UndoGetForUpdate("A");
|
|
|
|
|
|
|
|
txn2 = txn_db->BeginTransaction(write_options);
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn2->Put("A", "x"));
|
|
|
|
ASSERT_OK(txn2->Commit());
|
2015-09-15 02:11:52 +02:00
|
|
|
delete txn2;
|
|
|
|
|
|
|
|
// Verify that txn1 cannot commit since A will still be conflict checked
|
|
|
|
s = txn1->Commit();
|
|
|
|
ASSERT_TRUE(s.IsBusy());
|
|
|
|
delete txn1;
|
|
|
|
|
|
|
|
txn1 = txn_db->BeginTransaction(write_options);
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn1->GetForUpdate(read_options, "A", &value));
|
|
|
|
ASSERT_OK(txn1->GetForUpdate(read_options, "A", &value));
|
2015-09-15 02:11:52 +02:00
|
|
|
|
|
|
|
txn1->UndoGetForUpdate("A");
|
|
|
|
txn1->UndoGetForUpdate("A");
|
|
|
|
|
|
|
|
txn2 = txn_db->BeginTransaction(write_options);
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn2->Put("A", "x"));
|
|
|
|
ASSERT_OK(txn2->Commit());
|
2015-09-15 02:11:52 +02:00
|
|
|
delete txn2;
|
|
|
|
|
|
|
|
// Verify that txn1 can commit since A isn't conflict checked
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn1->Commit());
|
2015-09-15 02:11:52 +02:00
|
|
|
delete txn1;
|
|
|
|
|
|
|
|
txn1 = txn_db->BeginTransaction(write_options);
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn1->GetForUpdate(read_options, "A", &value));
|
2015-09-15 02:11:52 +02:00
|
|
|
|
|
|
|
txn1->SetSavePoint();
|
|
|
|
txn1->UndoGetForUpdate("A");
|
|
|
|
|
|
|
|
txn2 = txn_db->BeginTransaction(write_options);
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn2->Put("A", "x"));
|
|
|
|
ASSERT_OK(txn2->Commit());
|
2015-09-15 02:11:52 +02:00
|
|
|
delete txn2;
|
|
|
|
|
|
|
|
// Verify that txn1 cannot commit since A will still be conflict checked
|
|
|
|
s = txn1->Commit();
|
|
|
|
ASSERT_TRUE(s.IsBusy());
|
|
|
|
delete txn1;
|
|
|
|
|
|
|
|
txn1 = txn_db->BeginTransaction(write_options);
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn1->GetForUpdate(read_options, "A", &value));
|
2015-09-15 02:11:52 +02:00
|
|
|
|
|
|
|
txn1->SetSavePoint();
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn1->GetForUpdate(read_options, "A", &value));
|
2015-09-15 02:11:52 +02:00
|
|
|
txn1->UndoGetForUpdate("A");
|
|
|
|
|
|
|
|
txn2 = txn_db->BeginTransaction(write_options);
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn2->Put("A", "x"));
|
|
|
|
ASSERT_OK(txn2->Commit());
|
2015-09-15 02:11:52 +02:00
|
|
|
delete txn2;
|
|
|
|
|
|
|
|
// Verify that txn1 cannot commit since A will still be conflict checked
|
|
|
|
s = txn1->Commit();
|
|
|
|
ASSERT_TRUE(s.IsBusy());
|
|
|
|
delete txn1;
|
|
|
|
|
|
|
|
txn1 = txn_db->BeginTransaction(write_options);
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn1->GetForUpdate(read_options, "A", &value));
|
2015-09-15 02:11:52 +02:00
|
|
|
|
|
|
|
txn1->SetSavePoint();
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn1->GetForUpdate(read_options, "A", &value));
|
2015-09-15 02:11:52 +02:00
|
|
|
txn1->UndoGetForUpdate("A");
|
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn1->RollbackToSavePoint());
|
2015-09-15 02:11:52 +02:00
|
|
|
txn1->UndoGetForUpdate("A");
|
|
|
|
|
|
|
|
txn2 = txn_db->BeginTransaction(write_options);
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn2->Put("A", "x"));
|
|
|
|
ASSERT_OK(txn2->Commit());
|
2015-09-15 02:11:52 +02:00
|
|
|
delete txn2;
|
|
|
|
|
|
|
|
// Verify that txn1 can commit since A isn't conflict checked
|
2020-12-10 06:19:55 +01:00
|
|
|
ASSERT_OK(txn1->Commit());
|
2015-09-15 02:11:52 +02:00
|
|
|
delete txn1;
|
|
|
|
}
|
|
|
|
|
2016-03-03 20:20:25 +01:00
|
|
|
namespace {
|
|
|
|
Status OptimisticTransactionStressTestInserter(OptimisticTransactionDB* db,
|
|
|
|
const size_t num_transactions,
|
|
|
|
const size_t num_sets,
|
|
|
|
const size_t num_keys_per_set) {
|
|
|
|
size_t seed = std::hash<std::thread::id>()(std::this_thread::get_id());
|
|
|
|
Random64 _rand(seed);
|
2016-03-04 01:33:26 +01:00
|
|
|
WriteOptions write_options;
|
|
|
|
ReadOptions read_options;
|
|
|
|
OptimisticTransactionOptions txn_options;
|
|
|
|
txn_options.set_snapshot = true;
|
|
|
|
|
2016-03-03 20:20:25 +01:00
|
|
|
RandomTransactionInserter inserter(&_rand, write_options, read_options,
|
2016-03-15 18:57:33 +01:00
|
|
|
num_keys_per_set,
|
|
|
|
static_cast<uint16_t>(num_sets));
|
2016-03-04 01:33:26 +01:00
|
|
|
|
2016-03-03 20:20:25 +01:00
|
|
|
for (size_t t = 0; t < num_transactions; t++) {
|
|
|
|
bool success = inserter.OptimisticTransactionDBInsert(db, txn_options);
|
|
|
|
if (!success) {
|
|
|
|
// unexpected failure
|
|
|
|
return inserter.GetLastStatus();
|
|
|
|
}
|
|
|
|
}
|
2016-03-04 01:33:26 +01:00
|
|
|
|
2020-12-10 06:19:55 +01:00
|
|
|
inserter.GetLastStatus().PermitUncheckedError();
|
|
|
|
|
2016-03-03 20:20:25 +01:00
|
|
|
// Make sure at least some of the transactions succeeded. It's ok if
|
|
|
|
// some failed due to write-conflicts.
|
|
|
|
if (inserter.GetFailureCount() > num_transactions / 2) {
|
|
|
|
return Status::TryAgain("Too many transactions failed! " +
|
|
|
|
std::to_string(inserter.GetFailureCount()) + " / " +
|
|
|
|
std::to_string(num_transactions));
|
|
|
|
}
|
2016-03-04 01:33:26 +01:00
|
|
|
|
2016-03-03 20:20:25 +01:00
|
|
|
return Status::OK();
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2020-01-07 23:19:06 +01:00
|
|
|
TEST_P(OptimisticTransactionTest, OptimisticTransactionStressTest) {
|
2016-03-03 20:20:25 +01:00
|
|
|
const size_t num_threads = 4;
|
|
|
|
const size_t num_transactions_per_thread = 10000;
|
|
|
|
const size_t num_sets = 3;
|
|
|
|
const size_t num_keys_per_set = 100;
|
|
|
|
// Setting the key-space to be 100 keys should cause enough write-conflicts
|
|
|
|
// to make this test interesting.
|
|
|
|
|
2017-02-06 23:43:55 +01:00
|
|
|
std::vector<port::Thread> threads;
|
2016-03-03 20:20:25 +01:00
|
|
|
|
|
|
|
std::function<void()> call_inserter = [&] {
|
|
|
|
ASSERT_OK(OptimisticTransactionStressTestInserter(
|
|
|
|
txn_db, num_transactions_per_thread, num_sets, num_keys_per_set));
|
|
|
|
};
|
|
|
|
|
|
|
|
// Create N threads that use RandomTransactionInserter to write
|
|
|
|
// many transactions.
|
|
|
|
for (uint32_t i = 0; i < num_threads; i++) {
|
|
|
|
threads.emplace_back(call_inserter);
|
|
|
|
}
|
2016-03-04 01:33:26 +01:00
|
|
|
|
2016-03-03 20:20:25 +01:00
|
|
|
// Wait for all threads to run
|
|
|
|
for (auto& t : threads) {
|
|
|
|
t.join();
|
|
|
|
}
|
2016-03-04 01:33:26 +01:00
|
|
|
|
2016-03-03 20:20:25 +01:00
|
|
|
// Verify that data is consistent
|
2018-04-04 00:24:23 +02:00
|
|
|
Status s = RandomTransactionInserter::Verify(txn_db, num_sets);
|
2016-03-04 01:33:26 +01:00
|
|
|
ASSERT_OK(s);
|
|
|
|
}
|
|
|
|
|
2020-01-07 23:19:06 +01:00
|
|
|
TEST_P(OptimisticTransactionTest, SequenceNumberAfterRecoverTest) {
|
2016-11-09 21:12:40 +01:00
|
|
|
WriteOptions write_options;
|
|
|
|
OptimisticTransactionOptions transaction_options;
|
|
|
|
|
|
|
|
Transaction* transaction(txn_db->BeginTransaction(write_options, transaction_options));
|
|
|
|
Status s = transaction->Put("foo", "val");
|
|
|
|
ASSERT_OK(s);
|
|
|
|
s = transaction->Put("foo2", "val");
|
|
|
|
ASSERT_OK(s);
|
|
|
|
s = transaction->Put("foo3", "val");
|
|
|
|
ASSERT_OK(s);
|
|
|
|
s = transaction->Commit();
|
|
|
|
ASSERT_OK(s);
|
|
|
|
delete transaction;
|
|
|
|
|
|
|
|
Reopen();
|
|
|
|
transaction = txn_db->BeginTransaction(write_options, transaction_options);
|
|
|
|
s = transaction->Put("bar", "val");
|
|
|
|
ASSERT_OK(s);
|
|
|
|
s = transaction->Put("bar2", "val");
|
|
|
|
ASSERT_OK(s);
|
|
|
|
s = transaction->Commit();
|
|
|
|
ASSERT_OK(s);
|
|
|
|
|
|
|
|
delete transaction;
|
|
|
|
}
|
|
|
|
|
2020-06-04 00:53:09 +02:00
|
|
|
INSTANTIATE_TEST_CASE_P(
|
2020-01-07 23:19:06 +01:00
|
|
|
InstanceOccGroup, OptimisticTransactionTest,
|
|
|
|
testing::Values(OccValidationPolicy::kValidateSerial,
|
|
|
|
OccValidationPolicy::kValidateParallel));
|
|
|
|
|
2020-02-20 21:07:53 +01:00
|
|
|
} // namespace ROCKSDB_NAMESPACE
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
int main(int argc, char** argv) {
|
|
|
|
::testing::InitGoogleTest(&argc, argv);
|
|
|
|
return RUN_ALL_TESTS();
|
|
|
|
}
|
|
|
|
|
2015-07-14 01:42:40 +02:00
|
|
|
#else
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2018-04-16 02:19:57 +02:00
|
|
|
int main(int /*argc*/, char** /*argv*/) {
|
2015-07-14 01:42:40 +02:00
|
|
|
fprintf(
|
|
|
|
stderr,
|
|
|
|
"SKIPPED as optimistic_transaction is not supported in ROCKSDB_LITE\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // !ROCKSDB_LITE
|