2016-02-10 00:12:00 +01:00
|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
2013-10-16 23:59:46 +02:00
|
|
|
// This source code is licensed under the BSD-style license found in the
|
|
|
|
// LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
// of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
//
|
2011-03-18 23:37:00 +01:00
|
|
|
// Copyright (c) 2011 The LevelDB Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file. See the AUTHORS file for names of contributors.
|
|
|
|
|
2013-10-05 07:32:05 +02:00
|
|
|
#pragma once
|
2015-05-06 04:01:12 +02:00
|
|
|
#include <vector>
|
|
|
|
|
2013-08-23 17:38:13 +02:00
|
|
|
#include "rocksdb/db.h"
|
2011-03-18 23:37:00 +01:00
|
|
|
|
2013-10-04 06:49:15 +02:00
|
|
|
namespace rocksdb {
|
2011-03-18 23:37:00 +01:00
|
|
|
|
|
|
|
class SnapshotList;
|
|
|
|
|
|
|
|
// Snapshots are kept in a doubly-linked list in the DB.
|
2011-05-21 04:17:43 +02:00
|
|
|
// Each SnapshotImpl corresponds to a particular sequence number.
|
|
|
|
class SnapshotImpl : public Snapshot {
|
2011-03-18 23:37:00 +01:00
|
|
|
public:
|
|
|
|
SequenceNumber number_; // const after creation
|
|
|
|
|
2015-02-26 20:28:41 +01:00
|
|
|
virtual SequenceNumber GetSequenceNumber() const override { return number_; }
|
2015-01-30 03:22:43 +01:00
|
|
|
|
2011-03-18 23:37:00 +01:00
|
|
|
private:
|
|
|
|
friend class SnapshotList;
|
|
|
|
|
2011-05-21 04:17:43 +02:00
|
|
|
// SnapshotImpl is kept in a doubly-linked circular list
|
|
|
|
SnapshotImpl* prev_;
|
|
|
|
SnapshotImpl* next_;
|
2011-03-18 23:37:00 +01:00
|
|
|
|
|
|
|
SnapshotList* list_; // just for sanity checks
|
2014-12-06 01:12:10 +01:00
|
|
|
|
|
|
|
int64_t unix_time_;
|
2015-12-08 21:25:48 +01:00
|
|
|
|
|
|
|
// Will this snapshot be used by a Transaction to do write-conflict checking?
|
|
|
|
bool is_write_conflict_boundary_;
|
2011-03-18 23:37:00 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
class SnapshotList {
|
|
|
|
public:
|
|
|
|
SnapshotList() {
|
|
|
|
list_.prev_ = &list_;
|
|
|
|
list_.next_ = &list_;
|
2012-11-27 06:16:21 +01:00
|
|
|
list_.number_ = 0xFFFFFFFFL; // placeholder marker, for debugging
|
2014-12-06 01:12:10 +01:00
|
|
|
count_ = 0;
|
2011-03-18 23:37:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool empty() const { return list_.next_ == &list_; }
|
2011-05-21 04:17:43 +02:00
|
|
|
SnapshotImpl* oldest() const { assert(!empty()); return list_.next_; }
|
|
|
|
SnapshotImpl* newest() const { assert(!empty()); return list_.prev_; }
|
2011-03-18 23:37:00 +01:00
|
|
|
|
2015-06-09 01:57:44 +02:00
|
|
|
const SnapshotImpl* New(SnapshotImpl* s, SequenceNumber seq,
|
2015-12-08 21:25:48 +01:00
|
|
|
uint64_t unix_time, bool is_write_conflict_boundary) {
|
2011-03-18 23:37:00 +01:00
|
|
|
s->number_ = seq;
|
2014-12-06 01:12:10 +01:00
|
|
|
s->unix_time_ = unix_time;
|
2015-12-08 21:25:48 +01:00
|
|
|
s->is_write_conflict_boundary_ = is_write_conflict_boundary;
|
2011-03-18 23:37:00 +01:00
|
|
|
s->list_ = this;
|
|
|
|
s->next_ = &list_;
|
|
|
|
s->prev_ = list_.prev_;
|
|
|
|
s->prev_->next_ = s;
|
|
|
|
s->next_->prev_ = s;
|
2014-12-06 01:12:10 +01:00
|
|
|
count_++;
|
2011-03-18 23:37:00 +01:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2015-06-09 01:57:44 +02:00
|
|
|
// Do not responsible to free the object.
|
2011-05-21 04:17:43 +02:00
|
|
|
void Delete(const SnapshotImpl* s) {
|
2011-03-18 23:37:00 +01:00
|
|
|
assert(s->list_ == this);
|
|
|
|
s->prev_->next_ = s->next_;
|
|
|
|
s->next_->prev_ = s->prev_;
|
2014-12-06 01:12:10 +01:00
|
|
|
count_--;
|
2011-03-18 23:37:00 +01:00
|
|
|
}
|
|
|
|
|
2012-11-27 06:16:21 +01:00
|
|
|
// retrieve all snapshot numbers. They are sorted in ascending order.
|
2015-12-08 21:25:48 +01:00
|
|
|
std::vector<SequenceNumber> GetAll(
|
|
|
|
SequenceNumber* oldest_write_conflict_snapshot = nullptr) {
|
2015-05-06 04:01:12 +02:00
|
|
|
std::vector<SequenceNumber> ret;
|
2015-12-08 21:25:48 +01:00
|
|
|
|
|
|
|
if (oldest_write_conflict_snapshot != nullptr) {
|
|
|
|
*oldest_write_conflict_snapshot = kMaxSequenceNumber;
|
|
|
|
}
|
|
|
|
|
2015-05-06 04:01:12 +02:00
|
|
|
if (empty()) {
|
|
|
|
return ret;
|
|
|
|
}
|
2013-05-04 00:26:12 +02:00
|
|
|
SnapshotImpl* s = &list_;
|
2012-11-27 06:16:21 +01:00
|
|
|
while (s->next_ != &list_) {
|
|
|
|
ret.push_back(s->next_->number_);
|
2015-12-08 21:25:48 +01:00
|
|
|
|
|
|
|
if (oldest_write_conflict_snapshot != nullptr &&
|
Use SST files for Transaction conflict detection
Summary:
Currently, transactions can fail even if there is no actual write conflict. This is due to relying on only the memtables to check for write-conflicts. Users have to tune memtable settings to try to avoid this, but it's hard to figure out exactly how to tune these settings.
With this diff, TransactionDB will use both memtables and SST files to determine if there are any write conflicts. This relies on the fact that BlockBasedTable stores sequence numbers for all writes that happen after any open snapshot. Also, D50295 is needed to prevent SingleDelete from disappearing writes (the TODOs in this test code will be fixed once the other diff is approved and merged).
Note that Optimistic transactions will still rely on tuning memtable settings as we do not want to read from SST while on the write thread. Also, memtable settings can still be used to reduce how often TransactionDB needs to read SST files.
Test Plan: unit tests, db bench
Reviewers: rven, yhchiang, kradhakrishnan, IslamAbdelRahman, sdong
Reviewed By: sdong
Subscribers: dhruba, leveldb, yoshinorim
Differential Revision: https://reviews.facebook.net/D50475
2015-10-16 01:37:15 +02:00
|
|
|
*oldest_write_conflict_snapshot == kMaxSequenceNumber &&
|
2015-12-08 21:25:48 +01:00
|
|
|
s->next_->is_write_conflict_boundary_) {
|
|
|
|
// If this is the first write-conflict boundary snapshot in the list,
|
|
|
|
// it is the oldest
|
|
|
|
*oldest_write_conflict_snapshot = s->next_->number_;
|
|
|
|
}
|
|
|
|
|
2015-05-06 04:01:12 +02:00
|
|
|
s = s->next_;
|
2012-11-27 06:16:21 +01:00
|
|
|
}
|
2015-05-06 04:01:12 +02:00
|
|
|
return ret;
|
2012-11-27 06:16:21 +01:00
|
|
|
}
|
|
|
|
|
2013-02-28 23:09:30 +01:00
|
|
|
// get the sequence number of the most recent snapshot
|
2014-09-04 16:04:37 +02:00
|
|
|
SequenceNumber GetNewest() {
|
2013-02-28 23:09:30 +01:00
|
|
|
if (empty()) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return newest()->number_;
|
|
|
|
}
|
|
|
|
|
2014-12-06 01:12:10 +01:00
|
|
|
int64_t GetOldestSnapshotTime() const {
|
|
|
|
if (empty()) {
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
return oldest()->unix_time_;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t count() const { return count_; }
|
|
|
|
|
2011-03-18 23:37:00 +01:00
|
|
|
private:
|
|
|
|
// Dummy head of doubly-linked list of snapshots
|
2011-05-21 04:17:43 +02:00
|
|
|
SnapshotImpl list_;
|
2014-12-06 01:12:10 +01:00
|
|
|
uint64_t count_;
|
2011-03-18 23:37:00 +01:00
|
|
|
};
|
|
|
|
|
2013-10-04 06:49:15 +02:00
|
|
|
} // namespace rocksdb
|