2013-12-27 21:56:27 +01:00
|
|
|
// Copyright (c) 2013, Facebook, Inc. All rights reserved.
|
|
|
|
// This source code is licensed under the BSD-style license found in the
|
|
|
|
// LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
// of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
//
|
|
|
|
|
2014-04-15 22:39:26 +02:00
|
|
|
#ifndef ROCKSDB_LITE
|
2013-12-27 21:56:27 +01:00
|
|
|
#include "util/hash_linklist_rep.h"
|
|
|
|
|
2014-07-01 20:05:05 +02:00
|
|
|
#include <algorithm>
|
2014-10-27 22:50:21 +01:00
|
|
|
#include <atomic>
|
2013-12-27 21:56:27 +01:00
|
|
|
#include "rocksdb/memtablerep.h"
|
2014-01-31 02:18:17 +01:00
|
|
|
#include "util/arena.h"
|
2013-12-27 21:56:27 +01:00
|
|
|
#include "rocksdb/slice.h"
|
|
|
|
#include "rocksdb/slice_transform.h"
|
|
|
|
#include "port/port.h"
|
2014-06-18 00:58:35 +02:00
|
|
|
#include "util/histogram.h"
|
2013-12-27 21:56:27 +01:00
|
|
|
#include "util/murmurhash.h"
|
|
|
|
#include "db/memtable.h"
|
|
|
|
#include "db/skiplist.h"
|
|
|
|
|
|
|
|
namespace rocksdb {
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
typedef const char* Key;
|
2014-07-01 20:05:05 +02:00
|
|
|
typedef SkipList<Key, const MemTableRep::KeyComparator&> MemtableSkipList;
|
2014-10-27 22:50:21 +01:00
|
|
|
typedef std::atomic<void*> Pointer;
|
2014-07-01 20:05:05 +02:00
|
|
|
|
|
|
|
// A data structure used as the header of a link list of a hash bucket.
|
|
|
|
struct BucketHeader {
|
|
|
|
Pointer next;
|
2015-01-29 00:16:25 +01:00
|
|
|
std::atomic<uint32_t> num_entries;
|
2014-07-01 20:05:05 +02:00
|
|
|
|
|
|
|
explicit BucketHeader(void* n, uint32_t count)
|
|
|
|
: next(n), num_entries(count) {}
|
|
|
|
|
2014-10-27 22:50:21 +01:00
|
|
|
bool IsSkipListBucket() {
|
|
|
|
return next.load(std::memory_order_relaxed) == this;
|
|
|
|
}
|
2015-01-29 00:16:25 +01:00
|
|
|
|
|
|
|
uint32_t GetNumEntries() const {
|
|
|
|
return num_entries.load(std::memory_order_relaxed);
|
|
|
|
}
|
|
|
|
|
|
|
|
// REQUIRES: called from single-threaded Insert()
|
|
|
|
void IncNumEntries() {
|
|
|
|
// Only one thread can do write at one time. No need to do atomic
|
|
|
|
// incremental. Update it with relaxed load and store.
|
|
|
|
num_entries.store(GetNumEntries() + 1, std::memory_order_relaxed);
|
|
|
|
}
|
2014-07-01 20:05:05 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
// A data structure used as the header of a skip list of a hash bucket.
|
|
|
|
struct SkipListBucketHeader {
|
|
|
|
BucketHeader Counting_header;
|
|
|
|
MemtableSkipList skip_list;
|
|
|
|
|
|
|
|
explicit SkipListBucketHeader(const MemTableRep::KeyComparator& cmp,
|
2014-12-02 21:09:20 +01:00
|
|
|
MemTableAllocator* allocator, uint32_t count)
|
2014-07-01 20:05:05 +02:00
|
|
|
: Counting_header(this, // Pointing to itself to indicate header type.
|
|
|
|
count),
|
2014-12-02 21:09:20 +01:00
|
|
|
skip_list(cmp, allocator) {}
|
2014-07-01 20:05:05 +02:00
|
|
|
};
|
2013-12-27 21:56:27 +01:00
|
|
|
|
|
|
|
struct Node {
|
|
|
|
// Accessors/mutators for links. Wrapped in methods so we can
|
|
|
|
// add the appropriate barriers as necessary.
|
|
|
|
Node* Next() {
|
|
|
|
// Use an 'acquire load' so that we observe a fully initialized
|
|
|
|
// version of the returned Node.
|
2014-10-27 22:50:21 +01:00
|
|
|
return next_.load(std::memory_order_acquire);
|
2013-12-27 21:56:27 +01:00
|
|
|
}
|
|
|
|
void SetNext(Node* x) {
|
|
|
|
// Use a 'release store' so that anybody who reads through this
|
|
|
|
// pointer observes a fully initialized version of the inserted node.
|
2014-10-27 22:50:21 +01:00
|
|
|
next_.store(x, std::memory_order_release);
|
2013-12-27 21:56:27 +01:00
|
|
|
}
|
|
|
|
// No-barrier variants that can be safely used in a few locations.
|
|
|
|
Node* NoBarrier_Next() {
|
2014-10-27 22:50:21 +01:00
|
|
|
return next_.load(std::memory_order_relaxed);
|
2013-12-27 21:56:27 +01:00
|
|
|
}
|
2014-04-05 00:37:28 +02:00
|
|
|
|
2014-10-27 22:50:21 +01:00
|
|
|
void NoBarrier_SetNext(Node* x) { next_.store(x, std::memory_order_relaxed); }
|
2013-12-27 21:56:27 +01:00
|
|
|
|
2015-07-02 01:13:49 +02:00
|
|
|
// Needed for placement new below which is fine
|
|
|
|
Node() {}
|
|
|
|
|
2014-04-05 00:37:28 +02:00
|
|
|
private:
|
2014-10-27 22:50:21 +01:00
|
|
|
std::atomic<Node*> next_;
|
|
|
|
|
2015-07-02 01:13:49 +02:00
|
|
|
// Prohibit copying due to the below
|
|
|
|
Node(const Node&) = delete;
|
|
|
|
Node& operator=(const Node&) = delete;
|
|
|
|
|
2014-04-05 00:37:28 +02:00
|
|
|
public:
|
2015-07-02 01:13:49 +02:00
|
|
|
char key[1];
|
2013-12-27 21:56:27 +01:00
|
|
|
};
|
|
|
|
|
2014-07-01 20:05:05 +02:00
|
|
|
// Memory structure of the mem table:
|
|
|
|
// It is a hash table, each bucket points to one entry, a linked list or a
|
|
|
|
// skip list. In order to track total number of records in a bucket to determine
|
|
|
|
// whether should switch to skip list, a header is added just to indicate
|
|
|
|
// number of entries in the bucket.
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// +-----> NULL Case 1. Empty bucket
|
|
|
|
// |
|
|
|
|
// |
|
|
|
|
// | +---> +-------+
|
|
|
|
// | | | Next +--> NULL
|
|
|
|
// | | +-------+
|
|
|
|
// +-----+ | | | | Case 2. One Entry in bucket.
|
|
|
|
// | +-+ | | Data | next pointer points to
|
|
|
|
// +-----+ | | | NULL. All other cases
|
|
|
|
// | | | | | next pointer is not NULL.
|
|
|
|
// +-----+ | +-------+
|
|
|
|
// | +---+
|
|
|
|
// +-----+ +-> +-------+ +> +-------+ +-> +-------+
|
|
|
|
// | | | | Next +--+ | Next +--+ | Next +-->NULL
|
|
|
|
// +-----+ | +-------+ +-------+ +-------+
|
|
|
|
// | +-----+ | Count | | | | |
|
|
|
|
// +-----+ +-------+ | Data | | Data |
|
|
|
|
// | | | | | |
|
|
|
|
// +-----+ Case 3. | | | |
|
|
|
|
// | | A header +-------+ +-------+
|
|
|
|
// +-----+ points to
|
|
|
|
// | | a linked list. Count indicates total number
|
|
|
|
// +-----+ of rows in this bucket.
|
|
|
|
// | |
|
|
|
|
// +-----+ +-> +-------+ <--+
|
|
|
|
// | | | | Next +----+
|
|
|
|
// +-----+ | +-------+ Case 4. A header points to a skip
|
|
|
|
// | +----+ | Count | list and next pointer points to
|
|
|
|
// +-----+ +-------+ itself, to distinguish case 3 or 4.
|
|
|
|
// | | | | Count still is kept to indicates total
|
|
|
|
// +-----+ | Skip +--> of entries in the bucket for debugging
|
|
|
|
// | | | List | Data purpose.
|
|
|
|
// | | | +-->
|
|
|
|
// +-----+ | |
|
|
|
|
// | | +-------+
|
|
|
|
// +-----+
|
|
|
|
//
|
|
|
|
// We don't have data race when changing cases because:
|
|
|
|
// (1) When changing from case 2->3, we create a new bucket header, put the
|
|
|
|
// single node there first without changing the original node, and do a
|
|
|
|
// release store when changing the bucket pointer. In that case, a reader
|
|
|
|
// who sees a stale value of the bucket pointer will read this node, while
|
|
|
|
// a reader sees the correct value because of the release store.
|
|
|
|
// (2) When changing case 3->4, a new header is created with skip list points
|
|
|
|
// to the data, before doing an acquire store to change the bucket pointer.
|
|
|
|
// The old header and nodes are never changed, so any reader sees any
|
|
|
|
// of those existing pointers will guarantee to be able to iterate to the
|
|
|
|
// end of the linked list.
|
|
|
|
// (3) Header's next pointer in case 3 might change, but they are never equal
|
|
|
|
// to itself, so no matter a reader sees any stale or newer value, it will
|
|
|
|
// be able to correctly distinguish case 3 and 4.
|
|
|
|
//
|
|
|
|
// The reason that we use case 2 is we want to make the format to be efficient
|
|
|
|
// when the utilization of buckets is relatively low. If we use case 3 for
|
|
|
|
// single entry bucket, we will need to waste 12 bytes for every entry,
|
|
|
|
// which can be significant decrease of memory utilization.
|
2013-12-27 21:56:27 +01:00
|
|
|
class HashLinkListRep : public MemTableRep {
|
|
|
|
public:
|
2014-12-02 21:09:20 +01:00
|
|
|
HashLinkListRep(const MemTableRep::KeyComparator& compare,
|
|
|
|
MemTableAllocator* allocator, const SliceTransform* transform,
|
|
|
|
size_t bucket_size, uint32_t threshold_use_skiplist,
|
|
|
|
size_t huge_page_tlb_size, Logger* logger,
|
|
|
|
int bucket_entries_logging_threshold,
|
2014-06-18 00:58:35 +02:00
|
|
|
bool if_log_bucket_dist_when_flash);
|
2013-12-27 21:56:27 +01:00
|
|
|
|
2014-04-05 00:37:28 +02:00
|
|
|
virtual KeyHandle Allocate(const size_t len, char** buf) override;
|
|
|
|
|
|
|
|
virtual void Insert(KeyHandle handle) override;
|
2013-12-27 21:56:27 +01:00
|
|
|
|
|
|
|
virtual bool Contains(const char* key) const override;
|
|
|
|
|
|
|
|
virtual size_t ApproximateMemoryUsage() override;
|
|
|
|
|
2014-02-11 18:46:30 +01:00
|
|
|
virtual void Get(const LookupKey& k, void* callback_args,
|
|
|
|
bool (*callback_func)(void* arg,
|
|
|
|
const char* entry)) override;
|
|
|
|
|
2013-12-27 21:56:27 +01:00
|
|
|
virtual ~HashLinkListRep();
|
|
|
|
|
In DB::NewIterator(), try to allocate the whole iterator tree in an arena
Summary:
In this patch, try to allocate the whole iterator tree starting from DBIter from an arena
1. ArenaWrappedDBIter is created when serves as the entry point of an iterator tree, with an arena in it.
2. Add an option to create iterator from arena for following iterators: DBIter, MergingIterator, MemtableIterator, all mem table's iterators, all table reader's iterators and two level iterator.
3. MergeIteratorBuilder is created to incrementally build the tree of internal iterators. It is passed to mem table list and version set and add iterators to it.
Limitations:
(1) Only DB::NewIterator() without tailing uses the arena. Other cases, including readonly DB and compactions are still from malloc
(2) Two level iterator itself is allocated in arena, but not iterators inside it.
Test Plan: make all check
Reviewers: ljin, haobo
Reviewed By: haobo
Subscribers: leveldb, dhruba, yhchiang, igor
Differential Revision: https://reviews.facebook.net/D18513
2014-06-03 01:38:00 +02:00
|
|
|
virtual MemTableRep::Iterator* GetIterator(Arena* arena = nullptr) override;
|
2013-12-27 21:56:27 +01:00
|
|
|
|
In DB::NewIterator(), try to allocate the whole iterator tree in an arena
Summary:
In this patch, try to allocate the whole iterator tree starting from DBIter from an arena
1. ArenaWrappedDBIter is created when serves as the entry point of an iterator tree, with an arena in it.
2. Add an option to create iterator from arena for following iterators: DBIter, MergingIterator, MemtableIterator, all mem table's iterators, all table reader's iterators and two level iterator.
3. MergeIteratorBuilder is created to incrementally build the tree of internal iterators. It is passed to mem table list and version set and add iterators to it.
Limitations:
(1) Only DB::NewIterator() without tailing uses the arena. Other cases, including readonly DB and compactions are still from malloc
(2) Two level iterator itself is allocated in arena, but not iterators inside it.
Test Plan: make all check
Reviewers: ljin, haobo
Reviewed By: haobo
Subscribers: leveldb, dhruba, yhchiang, igor
Differential Revision: https://reviews.facebook.net/D18513
2014-06-03 01:38:00 +02:00
|
|
|
virtual MemTableRep::Iterator* GetDynamicPrefixIterator(
|
2014-12-02 21:09:20 +01:00
|
|
|
Arena* arena = nullptr) override;
|
2014-01-16 08:12:31 +01:00
|
|
|
|
2013-12-27 21:56:27 +01:00
|
|
|
private:
|
|
|
|
friend class DynamicIterator;
|
|
|
|
|
|
|
|
size_t bucket_size_;
|
|
|
|
|
|
|
|
// Maps slices (which are transformed user keys) to buckets of keys sharing
|
|
|
|
// the same transform.
|
2014-10-27 22:50:21 +01:00
|
|
|
Pointer* buckets_;
|
2013-12-27 21:56:27 +01:00
|
|
|
|
2014-07-01 20:05:05 +02:00
|
|
|
const uint32_t threshold_use_skiplist_;
|
|
|
|
|
2013-12-27 21:56:27 +01:00
|
|
|
// The user-supplied transform whose domain is the user keys.
|
|
|
|
const SliceTransform* transform_;
|
|
|
|
|
2014-03-10 20:56:46 +01:00
|
|
|
const MemTableRep::KeyComparator& compare_;
|
2013-12-27 21:56:27 +01:00
|
|
|
|
2014-06-18 00:58:35 +02:00
|
|
|
Logger* logger_;
|
|
|
|
int bucket_entries_logging_threshold_;
|
|
|
|
bool if_log_bucket_dist_when_flash_;
|
|
|
|
|
2014-07-01 20:05:05 +02:00
|
|
|
bool LinkListContains(Node* head, const Slice& key) const;
|
|
|
|
|
|
|
|
SkipListBucketHeader* GetSkipListBucketHeader(Pointer* first_next_pointer)
|
|
|
|
const;
|
|
|
|
|
|
|
|
Node* GetLinkListFirstNode(Pointer* first_next_pointer) const;
|
2014-01-25 02:50:59 +01:00
|
|
|
|
|
|
|
Slice GetPrefix(const Slice& internal_key) const {
|
|
|
|
return transform_->Transform(ExtractUserKey(internal_key));
|
|
|
|
}
|
2013-12-27 21:56:27 +01:00
|
|
|
|
|
|
|
size_t GetHash(const Slice& slice) const {
|
2014-11-11 22:47:22 +01:00
|
|
|
return MurmurHash(slice.data(), static_cast<int>(slice.size()), 0) %
|
|
|
|
bucket_size_;
|
2013-12-27 21:56:27 +01:00
|
|
|
}
|
|
|
|
|
2014-07-01 20:05:05 +02:00
|
|
|
Pointer* GetBucket(size_t i) const {
|
2014-10-27 22:50:21 +01:00
|
|
|
return static_cast<Pointer*>(buckets_[i].load(std::memory_order_acquire));
|
2013-12-27 21:56:27 +01:00
|
|
|
}
|
|
|
|
|
2014-07-01 20:05:05 +02:00
|
|
|
Pointer* GetBucket(const Slice& slice) const {
|
2013-12-27 21:56:27 +01:00
|
|
|
return GetBucket(GetHash(slice));
|
|
|
|
}
|
|
|
|
|
2014-01-25 02:50:59 +01:00
|
|
|
bool Equal(const Slice& a, const Key& b) const {
|
|
|
|
return (compare_(b, a) == 0);
|
|
|
|
}
|
|
|
|
|
2013-12-27 21:56:27 +01:00
|
|
|
bool Equal(const Key& a, const Key& b) const { return (compare_(a, b) == 0); }
|
|
|
|
|
2014-01-25 02:50:59 +01:00
|
|
|
bool KeyIsAfterNode(const Slice& internal_key, const Node* n) const {
|
|
|
|
// nullptr n is considered infinite
|
|
|
|
return (n != nullptr) && (compare_(n->key, internal_key) < 0);
|
|
|
|
}
|
|
|
|
|
2013-12-27 21:56:27 +01:00
|
|
|
bool KeyIsAfterNode(const Key& key, const Node* n) const {
|
|
|
|
// nullptr n is considered infinite
|
|
|
|
return (n != nullptr) && (compare_(n->key, key) < 0);
|
|
|
|
}
|
|
|
|
|
2014-01-25 02:50:59 +01:00
|
|
|
|
|
|
|
Node* FindGreaterOrEqualInBucket(Node* head, const Slice& key) const;
|
2013-12-27 21:56:27 +01:00
|
|
|
|
|
|
|
class FullListIterator : public MemTableRep::Iterator {
|
|
|
|
public:
|
2014-12-02 21:09:20 +01:00
|
|
|
explicit FullListIterator(MemtableSkipList* list, Allocator* allocator)
|
|
|
|
: iter_(list), full_list_(list), allocator_(allocator) {}
|
2013-12-27 21:56:27 +01:00
|
|
|
|
|
|
|
virtual ~FullListIterator() {
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns true iff the iterator is positioned at a valid node.
|
2015-02-26 20:28:41 +01:00
|
|
|
virtual bool Valid() const override { return iter_.Valid(); }
|
2013-12-27 21:56:27 +01:00
|
|
|
|
|
|
|
// Returns the key at the current position.
|
|
|
|
// REQUIRES: Valid()
|
2015-02-26 20:28:41 +01:00
|
|
|
virtual const char* key() const override {
|
2013-12-27 21:56:27 +01:00
|
|
|
assert(Valid());
|
|
|
|
return iter_.key();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Advances to the next position.
|
|
|
|
// REQUIRES: Valid()
|
2015-02-26 20:28:41 +01:00
|
|
|
virtual void Next() override {
|
2013-12-27 21:56:27 +01:00
|
|
|
assert(Valid());
|
|
|
|
iter_.Next();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Advances to the previous position.
|
|
|
|
// REQUIRES: Valid()
|
2015-02-26 20:28:41 +01:00
|
|
|
virtual void Prev() override {
|
2013-12-27 21:56:27 +01:00
|
|
|
assert(Valid());
|
|
|
|
iter_.Prev();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Advance to the first entry with a key >= target
|
2015-02-26 20:28:41 +01:00
|
|
|
virtual void Seek(const Slice& internal_key,
|
|
|
|
const char* memtable_key) override {
|
2013-12-27 21:56:27 +01:00
|
|
|
const char* encoded_key =
|
|
|
|
(memtable_key != nullptr) ?
|
|
|
|
memtable_key : EncodeKey(&tmp_, internal_key);
|
|
|
|
iter_.Seek(encoded_key);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Position at the first entry in collection.
|
|
|
|
// Final state of iterator is Valid() iff collection is not empty.
|
2015-02-26 20:28:41 +01:00
|
|
|
virtual void SeekToFirst() override { iter_.SeekToFirst(); }
|
2013-12-27 21:56:27 +01:00
|
|
|
|
|
|
|
// Position at the last entry in collection.
|
|
|
|
// Final state of iterator is Valid() iff collection is not empty.
|
2015-02-26 20:28:41 +01:00
|
|
|
virtual void SeekToLast() override { iter_.SeekToLast(); }
|
2013-12-27 21:56:27 +01:00
|
|
|
private:
|
2014-07-01 20:05:05 +02:00
|
|
|
MemtableSkipList::Iterator iter_;
|
2014-01-10 07:25:03 +01:00
|
|
|
// To destruct with the iterator.
|
2014-07-01 20:05:05 +02:00
|
|
|
std::unique_ptr<MemtableSkipList> full_list_;
|
2014-12-02 21:09:20 +01:00
|
|
|
std::unique_ptr<Allocator> allocator_;
|
2013-12-27 21:56:27 +01:00
|
|
|
std::string tmp_; // For passing to EncodeKey
|
|
|
|
};
|
|
|
|
|
2014-07-01 20:05:05 +02:00
|
|
|
class LinkListIterator : public MemTableRep::Iterator {
|
2013-12-27 21:56:27 +01:00
|
|
|
public:
|
2014-07-01 20:05:05 +02:00
|
|
|
explicit LinkListIterator(const HashLinkListRep* const hash_link_list_rep,
|
|
|
|
Node* head)
|
|
|
|
: hash_link_list_rep_(hash_link_list_rep),
|
|
|
|
head_(head),
|
|
|
|
node_(nullptr) {}
|
2013-12-27 21:56:27 +01:00
|
|
|
|
2014-07-01 20:05:05 +02:00
|
|
|
virtual ~LinkListIterator() {}
|
2013-12-27 21:56:27 +01:00
|
|
|
|
|
|
|
// Returns true iff the iterator is positioned at a valid node.
|
2015-02-26 20:28:41 +01:00
|
|
|
virtual bool Valid() const override { return node_ != nullptr; }
|
2013-12-27 21:56:27 +01:00
|
|
|
|
|
|
|
// Returns the key at the current position.
|
|
|
|
// REQUIRES: Valid()
|
2015-02-26 20:28:41 +01:00
|
|
|
virtual const char* key() const override {
|
2013-12-27 21:56:27 +01:00
|
|
|
assert(Valid());
|
|
|
|
return node_->key;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Advances to the next position.
|
|
|
|
// REQUIRES: Valid()
|
2015-02-26 20:28:41 +01:00
|
|
|
virtual void Next() override {
|
2013-12-27 21:56:27 +01:00
|
|
|
assert(Valid());
|
|
|
|
node_ = node_->Next();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Advances to the previous position.
|
|
|
|
// REQUIRES: Valid()
|
2015-02-26 20:28:41 +01:00
|
|
|
virtual void Prev() override {
|
2013-12-27 21:56:27 +01:00
|
|
|
// Prefix iterator does not support total order.
|
|
|
|
// We simply set the iterator to invalid state
|
|
|
|
Reset(nullptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Advance to the first entry with a key >= target
|
2015-02-26 20:28:41 +01:00
|
|
|
virtual void Seek(const Slice& internal_key,
|
|
|
|
const char* memtable_key) override {
|
2013-12-27 21:56:27 +01:00
|
|
|
node_ = hash_link_list_rep_->FindGreaterOrEqualInBucket(head_,
|
2014-01-25 02:50:59 +01:00
|
|
|
internal_key);
|
2013-12-27 21:56:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Position at the first entry in collection.
|
|
|
|
// Final state of iterator is Valid() iff collection is not empty.
|
2015-02-26 20:28:41 +01:00
|
|
|
virtual void SeekToFirst() override {
|
2013-12-27 21:56:27 +01:00
|
|
|
// Prefix iterator does not support total order.
|
|
|
|
// We simply set the iterator to invalid state
|
|
|
|
Reset(nullptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Position at the last entry in collection.
|
|
|
|
// Final state of iterator is Valid() iff collection is not empty.
|
2015-02-26 20:28:41 +01:00
|
|
|
virtual void SeekToLast() override {
|
2013-12-27 21:56:27 +01:00
|
|
|
// Prefix iterator does not support total order.
|
|
|
|
// We simply set the iterator to invalid state
|
|
|
|
Reset(nullptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void Reset(Node* head) {
|
|
|
|
head_ = head;
|
|
|
|
node_ = nullptr;
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
friend class HashLinkListRep;
|
|
|
|
const HashLinkListRep* const hash_link_list_rep_;
|
|
|
|
Node* head_;
|
|
|
|
Node* node_;
|
|
|
|
|
|
|
|
virtual void SeekToHead() {
|
|
|
|
node_ = head_;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-07-01 20:05:05 +02:00
|
|
|
class DynamicIterator : public HashLinkListRep::LinkListIterator {
|
2013-12-27 21:56:27 +01:00
|
|
|
public:
|
|
|
|
explicit DynamicIterator(HashLinkListRep& memtable_rep)
|
2014-07-01 20:05:05 +02:00
|
|
|
: HashLinkListRep::LinkListIterator(&memtable_rep, nullptr),
|
|
|
|
memtable_rep_(memtable_rep) {}
|
2013-12-27 21:56:27 +01:00
|
|
|
|
|
|
|
// Advance to the first entry with a key >= target
|
2015-02-26 20:28:41 +01:00
|
|
|
virtual void Seek(const Slice& k, const char* memtable_key) override {
|
2014-01-25 02:50:59 +01:00
|
|
|
auto transformed = memtable_rep_.GetPrefix(k);
|
2014-07-01 20:05:05 +02:00
|
|
|
auto* bucket = memtable_rep_.GetBucket(transformed);
|
|
|
|
|
|
|
|
SkipListBucketHeader* skip_list_header =
|
|
|
|
memtable_rep_.GetSkipListBucketHeader(bucket);
|
|
|
|
if (skip_list_header != nullptr) {
|
|
|
|
// The bucket is organized as a skip list
|
|
|
|
if (!skip_list_iter_) {
|
|
|
|
skip_list_iter_.reset(
|
|
|
|
new MemtableSkipList::Iterator(&skip_list_header->skip_list));
|
|
|
|
} else {
|
|
|
|
skip_list_iter_->SetList(&skip_list_header->skip_list);
|
|
|
|
}
|
|
|
|
if (memtable_key != nullptr) {
|
|
|
|
skip_list_iter_->Seek(memtable_key);
|
|
|
|
} else {
|
|
|
|
IterKey encoded_key;
|
|
|
|
encoded_key.EncodeLengthPrefixedKey(k);
|
|
|
|
skip_list_iter_->Seek(encoded_key.GetKey().data());
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// The bucket is organized as a linked list
|
|
|
|
skip_list_iter_.reset();
|
|
|
|
Reset(memtable_rep_.GetLinkListFirstNode(bucket));
|
|
|
|
HashLinkListRep::LinkListIterator::Seek(k, memtable_key);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-26 20:28:41 +01:00
|
|
|
virtual bool Valid() const override {
|
2014-07-01 20:05:05 +02:00
|
|
|
if (skip_list_iter_) {
|
|
|
|
return skip_list_iter_->Valid();
|
|
|
|
}
|
|
|
|
return HashLinkListRep::LinkListIterator::Valid();
|
|
|
|
}
|
|
|
|
|
2015-02-26 20:28:41 +01:00
|
|
|
virtual const char* key() const override {
|
2014-07-01 20:05:05 +02:00
|
|
|
if (skip_list_iter_) {
|
|
|
|
return skip_list_iter_->key();
|
|
|
|
}
|
|
|
|
return HashLinkListRep::LinkListIterator::key();
|
|
|
|
}
|
|
|
|
|
2015-02-26 20:28:41 +01:00
|
|
|
virtual void Next() override {
|
2014-07-01 20:05:05 +02:00
|
|
|
if (skip_list_iter_) {
|
|
|
|
skip_list_iter_->Next();
|
|
|
|
} else {
|
|
|
|
HashLinkListRep::LinkListIterator::Next();
|
|
|
|
}
|
2013-12-27 21:56:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
// the underlying memtable
|
|
|
|
const HashLinkListRep& memtable_rep_;
|
2014-07-01 20:05:05 +02:00
|
|
|
std::unique_ptr<MemtableSkipList::Iterator> skip_list_iter_;
|
2013-12-27 21:56:27 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
class EmptyIterator : public MemTableRep::Iterator {
|
|
|
|
// This is used when there wasn't a bucket. It is cheaper than
|
|
|
|
// instantiating an empty bucket over which to iterate.
|
|
|
|
public:
|
|
|
|
EmptyIterator() { }
|
2015-02-26 20:28:41 +01:00
|
|
|
virtual bool Valid() const override { return false; }
|
|
|
|
virtual const char* key() const override {
|
2013-12-27 21:56:27 +01:00
|
|
|
assert(false);
|
|
|
|
return nullptr;
|
|
|
|
}
|
2015-02-26 20:28:41 +01:00
|
|
|
virtual void Next() override {}
|
|
|
|
virtual void Prev() override {}
|
|
|
|
virtual void Seek(const Slice& user_key,
|
|
|
|
const char* memtable_key) override {}
|
|
|
|
virtual void SeekToFirst() override {}
|
|
|
|
virtual void SeekToLast() override {}
|
|
|
|
|
2013-12-27 21:56:27 +01:00
|
|
|
private:
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2014-03-10 20:56:46 +01:00
|
|
|
HashLinkListRep::HashLinkListRep(const MemTableRep::KeyComparator& compare,
|
2014-12-02 21:09:20 +01:00
|
|
|
MemTableAllocator* allocator,
|
|
|
|
const SliceTransform* transform,
|
2014-07-01 20:05:05 +02:00
|
|
|
size_t bucket_size,
|
|
|
|
uint32_t threshold_use_skiplist,
|
|
|
|
size_t huge_page_tlb_size, Logger* logger,
|
2014-06-18 00:58:35 +02:00
|
|
|
int bucket_entries_logging_threshold,
|
|
|
|
bool if_log_bucket_dist_when_flash)
|
2014-12-02 21:09:20 +01:00
|
|
|
: MemTableRep(allocator),
|
2014-05-04 22:55:53 +02:00
|
|
|
bucket_size_(bucket_size),
|
2014-07-01 20:05:05 +02:00
|
|
|
// Threshold to use skip list doesn't make sense if less than 3, so we
|
|
|
|
// force it to be minimum of 3 to simplify implementation.
|
|
|
|
threshold_use_skiplist_(std::max(threshold_use_skiplist, 3U)),
|
2014-05-04 22:55:53 +02:00
|
|
|
transform_(transform),
|
2014-06-18 00:58:35 +02:00
|
|
|
compare_(compare),
|
|
|
|
logger_(logger),
|
|
|
|
bucket_entries_logging_threshold_(bucket_entries_logging_threshold),
|
|
|
|
if_log_bucket_dist_when_flash_(if_log_bucket_dist_when_flash) {
|
2014-12-02 21:09:20 +01:00
|
|
|
char* mem = allocator_->AllocateAligned(sizeof(Pointer) * bucket_size,
|
2014-05-05 00:52:23 +02:00
|
|
|
huge_page_tlb_size, logger);
|
2013-12-27 21:56:27 +01:00
|
|
|
|
2014-10-27 22:50:21 +01:00
|
|
|
buckets_ = new (mem) Pointer[bucket_size];
|
2013-12-27 21:56:27 +01:00
|
|
|
|
|
|
|
for (size_t i = 0; i < bucket_size_; ++i) {
|
2014-10-27 22:50:21 +01:00
|
|
|
buckets_[i].store(nullptr, std::memory_order_relaxed);
|
2013-12-27 21:56:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
HashLinkListRep::~HashLinkListRep() {
|
|
|
|
}
|
|
|
|
|
2014-04-05 00:37:28 +02:00
|
|
|
KeyHandle HashLinkListRep::Allocate(const size_t len, char** buf) {
|
2014-12-02 21:09:20 +01:00
|
|
|
char* mem = allocator_->AllocateAligned(sizeof(Node) + len);
|
2014-04-05 00:37:28 +02:00
|
|
|
Node* x = new (mem) Node();
|
|
|
|
*buf = x->key;
|
|
|
|
return static_cast<void*>(x);
|
|
|
|
}
|
|
|
|
|
2014-07-01 20:05:05 +02:00
|
|
|
SkipListBucketHeader* HashLinkListRep::GetSkipListBucketHeader(
|
|
|
|
Pointer* first_next_pointer) const {
|
|
|
|
if (first_next_pointer == nullptr) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2014-10-27 22:50:21 +01:00
|
|
|
if (first_next_pointer->load(std::memory_order_relaxed) == nullptr) {
|
2014-07-01 20:05:05 +02:00
|
|
|
// Single entry bucket
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
// Counting header
|
|
|
|
BucketHeader* header = reinterpret_cast<BucketHeader*>(first_next_pointer);
|
|
|
|
if (header->IsSkipListBucket()) {
|
2015-01-29 00:16:25 +01:00
|
|
|
assert(header->GetNumEntries() > threshold_use_skiplist_);
|
2014-07-01 20:05:05 +02:00
|
|
|
auto* skip_list_bucket_header =
|
|
|
|
reinterpret_cast<SkipListBucketHeader*>(header);
|
2014-10-27 22:50:21 +01:00
|
|
|
assert(skip_list_bucket_header->Counting_header.next.load(
|
|
|
|
std::memory_order_relaxed) == header);
|
2014-07-01 20:05:05 +02:00
|
|
|
return skip_list_bucket_header;
|
|
|
|
}
|
2015-01-29 00:16:25 +01:00
|
|
|
assert(header->GetNumEntries() <= threshold_use_skiplist_);
|
2014-07-01 20:05:05 +02:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
Node* HashLinkListRep::GetLinkListFirstNode(Pointer* first_next_pointer) const {
|
|
|
|
if (first_next_pointer == nullptr) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2014-10-27 22:50:21 +01:00
|
|
|
if (first_next_pointer->load(std::memory_order_relaxed) == nullptr) {
|
2014-07-01 20:05:05 +02:00
|
|
|
// Single entry bucket
|
|
|
|
return reinterpret_cast<Node*>(first_next_pointer);
|
|
|
|
}
|
|
|
|
// Counting header
|
|
|
|
BucketHeader* header = reinterpret_cast<BucketHeader*>(first_next_pointer);
|
|
|
|
if (!header->IsSkipListBucket()) {
|
2015-01-29 00:16:25 +01:00
|
|
|
assert(header->GetNumEntries() <= threshold_use_skiplist_);
|
2014-10-27 22:50:21 +01:00
|
|
|
return reinterpret_cast<Node*>(
|
2015-01-29 00:16:25 +01:00
|
|
|
header->next.load(std::memory_order_acquire));
|
2014-07-01 20:05:05 +02:00
|
|
|
}
|
2015-01-29 00:16:25 +01:00
|
|
|
assert(header->GetNumEntries() > threshold_use_skiplist_);
|
2014-07-01 20:05:05 +02:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2014-04-05 00:37:28 +02:00
|
|
|
void HashLinkListRep::Insert(KeyHandle handle) {
|
|
|
|
Node* x = static_cast<Node*>(handle);
|
|
|
|
assert(!Contains(x->key));
|
|
|
|
Slice internal_key = GetLengthPrefixedSlice(x->key);
|
2014-01-25 02:50:59 +01:00
|
|
|
auto transformed = GetPrefix(internal_key);
|
2013-12-27 21:56:27 +01:00
|
|
|
auto& bucket = buckets_[GetHash(transformed)];
|
2014-10-27 22:50:21 +01:00
|
|
|
Pointer* first_next_pointer =
|
|
|
|
static_cast<Pointer*>(bucket.load(std::memory_order_relaxed));
|
2013-12-27 21:56:27 +01:00
|
|
|
|
2014-07-01 20:05:05 +02:00
|
|
|
if (first_next_pointer == nullptr) {
|
|
|
|
// Case 1. empty bucket
|
2013-12-27 21:56:27 +01:00
|
|
|
// NoBarrier_SetNext() suffices since we will add a barrier when
|
|
|
|
// we publish a pointer to "x" in prev[i].
|
|
|
|
x->NoBarrier_SetNext(nullptr);
|
2014-10-27 22:50:21 +01:00
|
|
|
bucket.store(x, std::memory_order_release);
|
2013-12-27 21:56:27 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-07-01 20:05:05 +02:00
|
|
|
BucketHeader* header = nullptr;
|
2014-10-27 22:50:21 +01:00
|
|
|
if (first_next_pointer->load(std::memory_order_relaxed) == nullptr) {
|
2014-07-01 20:05:05 +02:00
|
|
|
// Case 2. only one entry in the bucket
|
|
|
|
// Need to convert to a Counting bucket and turn to case 4.
|
|
|
|
Node* first = reinterpret_cast<Node*>(first_next_pointer);
|
|
|
|
// Need to add a bucket header.
|
|
|
|
// We have to first convert it to a bucket with header before inserting
|
|
|
|
// the new node. Otherwise, we might need to change next pointer of first.
|
|
|
|
// In that case, a reader might sees the next pointer is NULL and wrongly
|
|
|
|
// think the node is a bucket header.
|
2014-12-02 21:09:20 +01:00
|
|
|
auto* mem = allocator_->AllocateAligned(sizeof(BucketHeader));
|
2014-07-01 20:05:05 +02:00
|
|
|
header = new (mem) BucketHeader(first, 1);
|
2014-10-27 22:50:21 +01:00
|
|
|
bucket.store(header, std::memory_order_release);
|
2014-07-01 20:05:05 +02:00
|
|
|
} else {
|
|
|
|
header = reinterpret_cast<BucketHeader*>(first_next_pointer);
|
|
|
|
if (header->IsSkipListBucket()) {
|
|
|
|
// Case 4. Bucket is already a skip list
|
2015-01-29 00:16:25 +01:00
|
|
|
assert(header->GetNumEntries() > threshold_use_skiplist_);
|
2014-07-01 20:05:05 +02:00
|
|
|
auto* skip_list_bucket_header =
|
|
|
|
reinterpret_cast<SkipListBucketHeader*>(header);
|
2015-01-29 00:16:25 +01:00
|
|
|
// Only one thread can execute Insert() at one time. No need to do atomic
|
|
|
|
// incremental.
|
|
|
|
skip_list_bucket_header->Counting_header.IncNumEntries();
|
2014-07-01 20:05:05 +02:00
|
|
|
skip_list_bucket_header->skip_list.Insert(x->key);
|
|
|
|
return;
|
2013-12-27 21:56:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-01 20:05:05 +02:00
|
|
|
if (bucket_entries_logging_threshold_ > 0 &&
|
2015-01-29 00:16:25 +01:00
|
|
|
header->GetNumEntries() ==
|
2014-07-01 20:05:05 +02:00
|
|
|
static_cast<uint32_t>(bucket_entries_logging_threshold_)) {
|
2015-07-13 21:11:05 +02:00
|
|
|
Info(logger_, "HashLinkedList bucket %" ROCKSDB_PRIszt
|
|
|
|
" has more than %d "
|
|
|
|
"entries. Key to insert: %s",
|
2015-01-29 00:16:25 +01:00
|
|
|
GetHash(transformed), header->GetNumEntries(),
|
2014-07-01 20:05:05 +02:00
|
|
|
GetLengthPrefixedSlice(x->key).ToString(true).c_str());
|
|
|
|
}
|
2013-12-27 21:56:27 +01:00
|
|
|
|
2015-01-29 00:16:25 +01:00
|
|
|
if (header->GetNumEntries() == threshold_use_skiplist_) {
|
2014-07-01 20:05:05 +02:00
|
|
|
// Case 3. number of entries reaches the threshold so need to convert to
|
|
|
|
// skip list.
|
|
|
|
LinkListIterator bucket_iter(
|
2014-10-27 22:50:21 +01:00
|
|
|
this, reinterpret_cast<Node*>(
|
|
|
|
first_next_pointer->load(std::memory_order_relaxed)));
|
2014-12-02 21:09:20 +01:00
|
|
|
auto mem = allocator_->AllocateAligned(sizeof(SkipListBucketHeader));
|
2014-07-01 20:05:05 +02:00
|
|
|
SkipListBucketHeader* new_skip_list_header = new (mem)
|
2015-01-29 00:16:25 +01:00
|
|
|
SkipListBucketHeader(compare_, allocator_, header->GetNumEntries() + 1);
|
2014-07-01 20:05:05 +02:00
|
|
|
auto& skip_list = new_skip_list_header->skip_list;
|
|
|
|
|
|
|
|
// Add all current entries to the skip list
|
|
|
|
for (bucket_iter.SeekToHead(); bucket_iter.Valid(); bucket_iter.Next()) {
|
|
|
|
skip_list.Insert(bucket_iter.key());
|
|
|
|
}
|
2013-12-27 21:56:27 +01:00
|
|
|
|
2014-07-01 20:05:05 +02:00
|
|
|
// insert the new entry
|
|
|
|
skip_list.Insert(x->key);
|
|
|
|
// Set the bucket
|
2014-10-27 22:50:21 +01:00
|
|
|
bucket.store(new_skip_list_header, std::memory_order_release);
|
2013-12-27 21:56:27 +01:00
|
|
|
} else {
|
2014-07-01 20:05:05 +02:00
|
|
|
// Case 5. Need to insert to the sorted linked list without changing the
|
|
|
|
// header.
|
2014-10-27 22:50:21 +01:00
|
|
|
Node* first =
|
|
|
|
reinterpret_cast<Node*>(header->next.load(std::memory_order_relaxed));
|
2014-07-01 20:05:05 +02:00
|
|
|
assert(first != nullptr);
|
|
|
|
// Advance counter unless the bucket needs to be advanced to skip list.
|
|
|
|
// In that case, we need to make sure the previous count never exceeds
|
|
|
|
// threshold_use_skiplist_ to avoid readers to cast to wrong format.
|
2015-01-29 00:16:25 +01:00
|
|
|
header->IncNumEntries();
|
2014-07-01 20:05:05 +02:00
|
|
|
|
|
|
|
Node* cur = first;
|
|
|
|
Node* prev = nullptr;
|
|
|
|
while (true) {
|
|
|
|
if (cur == nullptr) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
Node* next = cur->Next();
|
|
|
|
// Make sure the lists are sorted.
|
|
|
|
// If x points to head_ or next points nullptr, it is trivially satisfied.
|
|
|
|
assert((cur == first) || (next == nullptr) ||
|
|
|
|
KeyIsAfterNode(next->key, cur));
|
|
|
|
if (KeyIsAfterNode(internal_key, cur)) {
|
|
|
|
// Keep searching in this list
|
|
|
|
prev = cur;
|
|
|
|
cur = next;
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Our data structure does not allow duplicate insertion
|
|
|
|
assert(cur == nullptr || !Equal(x->key, cur->key));
|
|
|
|
|
|
|
|
// NoBarrier_SetNext() suffices since we will add a barrier when
|
|
|
|
// we publish a pointer to "x" in prev[i].
|
|
|
|
x->NoBarrier_SetNext(cur);
|
|
|
|
|
|
|
|
if (prev) {
|
|
|
|
prev->SetNext(x);
|
|
|
|
} else {
|
2014-10-27 22:50:21 +01:00
|
|
|
header->next.store(static_cast<void*>(x), std::memory_order_release);
|
2014-07-01 20:05:05 +02:00
|
|
|
}
|
2013-12-27 21:56:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool HashLinkListRep::Contains(const char* key) const {
|
2014-01-25 02:50:59 +01:00
|
|
|
Slice internal_key = GetLengthPrefixedSlice(key);
|
|
|
|
|
|
|
|
auto transformed = GetPrefix(internal_key);
|
2013-12-27 21:56:27 +01:00
|
|
|
auto bucket = GetBucket(transformed);
|
|
|
|
if (bucket == nullptr) {
|
|
|
|
return false;
|
|
|
|
}
|
2014-07-01 20:05:05 +02:00
|
|
|
|
|
|
|
SkipListBucketHeader* skip_list_header = GetSkipListBucketHeader(bucket);
|
|
|
|
if (skip_list_header != nullptr) {
|
|
|
|
return skip_list_header->skip_list.Contains(key);
|
|
|
|
} else {
|
|
|
|
return LinkListContains(GetLinkListFirstNode(bucket), internal_key);
|
|
|
|
}
|
2013-12-27 21:56:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
size_t HashLinkListRep::ApproximateMemoryUsage() {
|
2014-12-02 21:09:20 +01:00
|
|
|
// Memory is always allocated from the allocator.
|
2013-12-27 21:56:27 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-02-11 18:46:30 +01:00
|
|
|
void HashLinkListRep::Get(const LookupKey& k, void* callback_args,
|
|
|
|
bool (*callback_func)(void* arg, const char* entry)) {
|
|
|
|
auto transformed = transform_->Transform(k.user_key());
|
|
|
|
auto bucket = GetBucket(transformed);
|
2014-07-01 20:05:05 +02:00
|
|
|
|
|
|
|
auto* skip_list_header = GetSkipListBucketHeader(bucket);
|
|
|
|
if (skip_list_header != nullptr) {
|
|
|
|
// Is a skip list
|
|
|
|
MemtableSkipList::Iterator iter(&skip_list_header->skip_list);
|
|
|
|
for (iter.Seek(k.memtable_key().data());
|
2014-02-11 18:46:30 +01:00
|
|
|
iter.Valid() && callback_func(callback_args, iter.key());
|
|
|
|
iter.Next()) {
|
|
|
|
}
|
2014-07-01 20:05:05 +02:00
|
|
|
} else {
|
|
|
|
auto* link_list_head = GetLinkListFirstNode(bucket);
|
|
|
|
if (link_list_head != nullptr) {
|
|
|
|
LinkListIterator iter(this, link_list_head);
|
|
|
|
for (iter.Seek(k.internal_key(), nullptr);
|
|
|
|
iter.Valid() && callback_func(callback_args, iter.key());
|
|
|
|
iter.Next()) {
|
|
|
|
}
|
|
|
|
}
|
2014-02-11 18:46:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
In DB::NewIterator(), try to allocate the whole iterator tree in an arena
Summary:
In this patch, try to allocate the whole iterator tree starting from DBIter from an arena
1. ArenaWrappedDBIter is created when serves as the entry point of an iterator tree, with an arena in it.
2. Add an option to create iterator from arena for following iterators: DBIter, MergingIterator, MemtableIterator, all mem table's iterators, all table reader's iterators and two level iterator.
3. MergeIteratorBuilder is created to incrementally build the tree of internal iterators. It is passed to mem table list and version set and add iterators to it.
Limitations:
(1) Only DB::NewIterator() without tailing uses the arena. Other cases, including readonly DB and compactions are still from malloc
(2) Two level iterator itself is allocated in arena, but not iterators inside it.
Test Plan: make all check
Reviewers: ljin, haobo
Reviewed By: haobo
Subscribers: leveldb, dhruba, yhchiang, igor
Differential Revision: https://reviews.facebook.net/D18513
2014-06-03 01:38:00 +02:00
|
|
|
MemTableRep::Iterator* HashLinkListRep::GetIterator(Arena* alloc_arena) {
|
2014-03-14 18:02:04 +01:00
|
|
|
// allocate a new arena of similar size to the one currently in use
|
2014-12-02 21:09:20 +01:00
|
|
|
Arena* new_arena = new Arena(allocator_->BlockSize());
|
2014-07-01 20:05:05 +02:00
|
|
|
auto list = new MemtableSkipList(compare_, new_arena);
|
2014-06-18 00:58:35 +02:00
|
|
|
HistogramImpl keys_per_bucket_hist;
|
|
|
|
|
2013-12-27 21:56:27 +01:00
|
|
|
for (size_t i = 0; i < bucket_size_; ++i) {
|
2014-06-18 00:58:35 +02:00
|
|
|
int count = 0;
|
2014-07-01 20:05:05 +02:00
|
|
|
auto* bucket = GetBucket(i);
|
2013-12-27 21:56:27 +01:00
|
|
|
if (bucket != nullptr) {
|
2014-07-01 20:05:05 +02:00
|
|
|
auto* skip_list_header = GetSkipListBucketHeader(bucket);
|
|
|
|
if (skip_list_header != nullptr) {
|
|
|
|
// Is a skip list
|
|
|
|
MemtableSkipList::Iterator itr(&skip_list_header->skip_list);
|
|
|
|
for (itr.SeekToFirst(); itr.Valid(); itr.Next()) {
|
|
|
|
list->Insert(itr.key());
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
auto* link_list_head = GetLinkListFirstNode(bucket);
|
|
|
|
if (link_list_head != nullptr) {
|
|
|
|
LinkListIterator itr(this, link_list_head);
|
|
|
|
for (itr.SeekToHead(); itr.Valid(); itr.Next()) {
|
|
|
|
list->Insert(itr.key());
|
|
|
|
count++;
|
|
|
|
}
|
2014-06-18 00:58:35 +02:00
|
|
|
}
|
2013-12-27 21:56:27 +01:00
|
|
|
}
|
|
|
|
}
|
2014-06-18 00:58:35 +02:00
|
|
|
if (if_log_bucket_dist_when_flash_) {
|
|
|
|
keys_per_bucket_hist.Add(count);
|
|
|
|
}
|
2013-12-27 21:56:27 +01:00
|
|
|
}
|
2014-06-18 00:58:35 +02:00
|
|
|
if (if_log_bucket_dist_when_flash_ && logger_ != nullptr) {
|
|
|
|
Info(logger_, "hashLinkedList Entry distribution among buckets: %s",
|
|
|
|
keys_per_bucket_hist.ToString().c_str());
|
|
|
|
}
|
|
|
|
|
In DB::NewIterator(), try to allocate the whole iterator tree in an arena
Summary:
In this patch, try to allocate the whole iterator tree starting from DBIter from an arena
1. ArenaWrappedDBIter is created when serves as the entry point of an iterator tree, with an arena in it.
2. Add an option to create iterator from arena for following iterators: DBIter, MergingIterator, MemtableIterator, all mem table's iterators, all table reader's iterators and two level iterator.
3. MergeIteratorBuilder is created to incrementally build the tree of internal iterators. It is passed to mem table list and version set and add iterators to it.
Limitations:
(1) Only DB::NewIterator() without tailing uses the arena. Other cases, including readonly DB and compactions are still from malloc
(2) Two level iterator itself is allocated in arena, but not iterators inside it.
Test Plan: make all check
Reviewers: ljin, haobo
Reviewed By: haobo
Subscribers: leveldb, dhruba, yhchiang, igor
Differential Revision: https://reviews.facebook.net/D18513
2014-06-03 01:38:00 +02:00
|
|
|
if (alloc_arena == nullptr) {
|
|
|
|
return new FullListIterator(list, new_arena);
|
|
|
|
} else {
|
|
|
|
auto mem = alloc_arena->AllocateAligned(sizeof(FullListIterator));
|
|
|
|
return new (mem) FullListIterator(list, new_arena);
|
|
|
|
}
|
2013-12-27 21:56:27 +01:00
|
|
|
}
|
|
|
|
|
In DB::NewIterator(), try to allocate the whole iterator tree in an arena
Summary:
In this patch, try to allocate the whole iterator tree starting from DBIter from an arena
1. ArenaWrappedDBIter is created when serves as the entry point of an iterator tree, with an arena in it.
2. Add an option to create iterator from arena for following iterators: DBIter, MergingIterator, MemtableIterator, all mem table's iterators, all table reader's iterators and two level iterator.
3. MergeIteratorBuilder is created to incrementally build the tree of internal iterators. It is passed to mem table list and version set and add iterators to it.
Limitations:
(1) Only DB::NewIterator() without tailing uses the arena. Other cases, including readonly DB and compactions are still from malloc
(2) Two level iterator itself is allocated in arena, but not iterators inside it.
Test Plan: make all check
Reviewers: ljin, haobo
Reviewed By: haobo
Subscribers: leveldb, dhruba, yhchiang, igor
Differential Revision: https://reviews.facebook.net/D18513
2014-06-03 01:38:00 +02:00
|
|
|
MemTableRep::Iterator* HashLinkListRep::GetDynamicPrefixIterator(
|
|
|
|
Arena* alloc_arena) {
|
|
|
|
if (alloc_arena == nullptr) {
|
|
|
|
return new DynamicIterator(*this);
|
|
|
|
} else {
|
|
|
|
auto mem = alloc_arena->AllocateAligned(sizeof(DynamicIterator));
|
|
|
|
return new (mem) DynamicIterator(*this);
|
|
|
|
}
|
2013-12-27 21:56:27 +01:00
|
|
|
}
|
|
|
|
|
2014-07-01 20:05:05 +02:00
|
|
|
bool HashLinkListRep::LinkListContains(Node* head,
|
|
|
|
const Slice& user_key) const {
|
2014-01-25 02:50:59 +01:00
|
|
|
Node* x = FindGreaterOrEqualInBucket(head, user_key);
|
|
|
|
return (x != nullptr && Equal(user_key, x->key));
|
2013-12-27 21:56:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Node* HashLinkListRep::FindGreaterOrEqualInBucket(Node* head,
|
2014-01-25 02:50:59 +01:00
|
|
|
const Slice& key) const {
|
2013-12-27 21:56:27 +01:00
|
|
|
Node* x = head;
|
|
|
|
while (true) {
|
|
|
|
if (x == nullptr) {
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
Node* next = x->Next();
|
|
|
|
// Make sure the lists are sorted.
|
|
|
|
// If x points to head_ or next points nullptr, it is trivially satisfied.
|
|
|
|
assert((x == head) || (next == nullptr) || KeyIsAfterNode(next->key, x));
|
|
|
|
if (KeyIsAfterNode(key, x)) {
|
|
|
|
// Keep searching in this list
|
|
|
|
x = next;
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // anon namespace
|
|
|
|
|
2014-01-16 08:12:31 +01:00
|
|
|
MemTableRep* HashLinkListRepFactory::CreateMemTableRep(
|
2014-12-02 21:09:20 +01:00
|
|
|
const MemTableRep::KeyComparator& compare, MemTableAllocator* allocator,
|
2014-05-05 00:52:23 +02:00
|
|
|
const SliceTransform* transform, Logger* logger) {
|
2014-12-02 21:09:20 +01:00
|
|
|
return new HashLinkListRep(compare, allocator, transform, bucket_count_,
|
2014-07-01 20:05:05 +02:00
|
|
|
threshold_use_skiplist_, huge_page_tlb_size_,
|
|
|
|
logger, bucket_entries_logging_threshold_,
|
|
|
|
if_log_bucket_dist_when_flash_);
|
2013-12-27 21:56:27 +01:00
|
|
|
}
|
|
|
|
|
2014-06-18 00:58:35 +02:00
|
|
|
MemTableRepFactory* NewHashLinkListRepFactory(
|
|
|
|
size_t bucket_count, size_t huge_page_tlb_size,
|
2014-07-01 20:05:05 +02:00
|
|
|
int bucket_entries_logging_threshold, bool if_log_bucket_dist_when_flash,
|
|
|
|
uint32_t threshold_use_skiplist) {
|
|
|
|
return new HashLinkListRepFactory(
|
|
|
|
bucket_count, threshold_use_skiplist, huge_page_tlb_size,
|
|
|
|
bucket_entries_logging_threshold, if_log_bucket_dist_when_flash);
|
2013-12-27 21:56:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace rocksdb
|
2014-04-15 22:39:26 +02:00
|
|
|
#endif // ROCKSDB_LITE
|