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
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#ifndef ROCKSDB_LITE
|
|
|
|
|
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
|
|
|
#include <stack>
|
2015-05-29 23:36:35 +02:00
|
|
|
#include <string>
|
|
|
|
#include <unordered_map>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "db/write_callback.h"
|
|
|
|
#include "rocksdb/db.h"
|
|
|
|
#include "rocksdb/slice.h"
|
2015-08-01 00:18:27 +02:00
|
|
|
#include "rocksdb/snapshot.h"
|
2015-05-29 23:36:35 +02:00
|
|
|
#include "rocksdb/status.h"
|
|
|
|
#include "rocksdb/types.h"
|
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
|
|
|
#include "rocksdb/utilities/transaction.h"
|
2015-05-29 23:36:35 +02:00
|
|
|
#include "rocksdb/utilities/optimistic_transaction_db.h"
|
|
|
|
#include "rocksdb/utilities/write_batch_with_index.h"
|
2015-08-22 00:47:21 +02:00
|
|
|
#include "utilities/transactions/transaction_base.h"
|
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
|
|
|
#include "utilities/transactions/transaction_util.h"
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2020-02-20 21:07:53 +01:00
|
|
|
namespace ROCKSDB_NAMESPACE {
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2017-08-08 01:07:40 +02:00
|
|
|
class OptimisticTransaction : public TransactionBaseImpl {
|
2015-05-29 23:36:35 +02:00
|
|
|
public:
|
2017-08-08 01:07:40 +02:00
|
|
|
OptimisticTransaction(OptimisticTransactionDB* db,
|
2017-08-17 01:49:11 +02:00
|
|
|
const WriteOptions& write_options,
|
|
|
|
const OptimisticTransactionOptions& txn_options);
|
2019-09-12 03:07:12 +02:00
|
|
|
// No copying allowed
|
|
|
|
OptimisticTransaction(const OptimisticTransaction&) = delete;
|
|
|
|
void operator=(const OptimisticTransaction&) = delete;
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2017-08-08 01:07:40 +02:00
|
|
|
virtual ~OptimisticTransaction();
|
2015-05-29 23:36:35 +02:00
|
|
|
|
2016-03-04 01:33:26 +01:00
|
|
|
void Reinitialize(OptimisticTransactionDB* txn_db,
|
|
|
|
const WriteOptions& write_options,
|
|
|
|
const OptimisticTransactionOptions& txn_options);
|
|
|
|
|
2016-04-18 20:15:50 +02:00
|
|
|
Status Prepare() override;
|
|
|
|
|
2015-05-29 23:36:35 +02:00
|
|
|
Status Commit() override;
|
|
|
|
|
2016-04-18 20:15:50 +02:00
|
|
|
Status Rollback() override;
|
|
|
|
|
|
|
|
Status SetName(const TransactionName& name) override;
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
protected:
|
2015-08-22 00:47:21 +02:00
|
|
|
Status TryLock(ColumnFamilyHandle* column_family, const Slice& key,
|
2018-12-07 02:46:57 +01:00
|
|
|
bool read_only, bool exclusive, const bool do_validate = true,
|
|
|
|
const bool assume_tracked = false) override;
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
private:
|
2019-09-12 03:07:12 +02:00
|
|
|
ROCKSDB_FIELD_UNUSED OptimisticTransactionDB* const txn_db_;
|
2015-08-22 00:47:21 +02:00
|
|
|
|
2015-05-29 23:36:35 +02:00
|
|
|
friend class OptimisticTransactionCallback;
|
|
|
|
|
2016-03-04 01:33:26 +01:00
|
|
|
void Initialize(const OptimisticTransactionOptions& txn_options);
|
|
|
|
|
2015-05-29 23:36:35 +02:00
|
|
|
// Returns OK if it is safe to commit this transaction. Returns Status::Busy
|
|
|
|
// if there are read or write conflicts that would prevent us from committing
|
|
|
|
// OR if we can not determine whether there would be any such conflicts.
|
|
|
|
//
|
|
|
|
// Should only be called on writer thread.
|
|
|
|
Status CheckTransactionForConflicts(DB* db);
|
|
|
|
|
2015-08-25 04:13:18 +02:00
|
|
|
void Clear() override;
|
2015-08-01 00:18:27 +02:00
|
|
|
|
2017-08-08 01:07:40 +02:00
|
|
|
void UnlockGetForUpdate(ColumnFamilyHandle* /* unused */,
|
|
|
|
const Slice& /* unused */) override {
|
2015-09-15 02:11:52 +02:00
|
|
|
// Nothing to unlock.
|
|
|
|
}
|
2020-01-07 23:19:06 +01:00
|
|
|
|
|
|
|
Status CommitWithSerialValidate();
|
|
|
|
|
|
|
|
Status CommitWithParallelValidate();
|
2015-05-29 23:36:35 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
// Used at commit time to trigger transaction validation
|
|
|
|
class OptimisticTransactionCallback : public WriteCallback {
|
|
|
|
public:
|
2017-08-08 01:07:40 +02:00
|
|
|
explicit OptimisticTransactionCallback(OptimisticTransaction* txn)
|
2015-05-29 23:36:35 +02:00
|
|
|
: txn_(txn) {}
|
|
|
|
|
|
|
|
Status Callback(DB* db) override {
|
|
|
|
return txn_->CheckTransactionForConflicts(db);
|
|
|
|
}
|
|
|
|
|
2016-02-05 19:44:13 +01:00
|
|
|
bool AllowWriteBatching() override { return false; }
|
|
|
|
|
2015-05-29 23:36:35 +02:00
|
|
|
private:
|
2017-08-08 01:07:40 +02:00
|
|
|
OptimisticTransaction* txn_;
|
2015-05-29 23:36:35 +02:00
|
|
|
};
|
|
|
|
|
2020-02-20 21:07:53 +01:00
|
|
|
} // namespace ROCKSDB_NAMESPACE
|
2015-05-29 23:36:35 +02:00
|
|
|
|
|
|
|
#endif // ROCKSDB_LITE
|