小组成员:姚凯文(kevinyao0901),姜嘉琪
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

393 lines
14 KiB

  1. // Copyright (c) 2011 The LevelDB Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file. See the AUTHORS file for names of contributors.
  4. //
  5. // The representation of a DBImpl consists of a set of Versions. The
  6. // newest version is called "current". Older versions may be kept
  7. // around to provide a consistent view to live iterators.
  8. //
  9. // Each Version keeps track of a set of Table files per level. The
  10. // entire set of versions is maintained in a VersionSet.
  11. //
  12. // Version,VersionSet are thread-compatible, but require external
  13. // synchronization on all accesses.
  14. #ifndef STORAGE_LEVELDB_DB_VERSION_SET_H_
  15. #define STORAGE_LEVELDB_DB_VERSION_SET_H_
  16. #include <map>
  17. #include <set>
  18. #include <vector>
  19. #include "db/dbformat.h"
  20. #include "db/version_edit.h"
  21. #include "port/port.h"
  22. #include "port/thread_annotations.h"
  23. namespace leveldb {
  24. namespace log {
  25. class Writer;
  26. }
  27. class Compaction;
  28. class Iterator;
  29. class MemTable;
  30. class TableBuilder;
  31. class TableCache;
  32. class Version;
  33. class VersionSet;
  34. class WritableFile;
  35. // Return the smallest index i such that files[i]->largest >= key.
  36. // Return files.size() if there is no such file.
  37. // REQUIRES: "files" contains a sorted list of non-overlapping files.
  38. int FindFile(const InternalKeyComparator& icmp,
  39. const std::vector<FileMetaData*>& files, const Slice& key);
  40. // Returns true iff some file in "files" overlaps the user key range
  41. // [*smallest,*largest].
  42. // smallest==nullptr represents a key smaller than all keys in the DB.
  43. // largest==nullptr represents a key largest than all keys in the DB.
  44. // REQUIRES: If disjoint_sorted_files, files[] contains disjoint ranges
  45. // in sorted order.
  46. bool SomeFileOverlapsRange(const InternalKeyComparator& icmp,
  47. bool disjoint_sorted_files,
  48. const std::vector<FileMetaData*>& files,
  49. const Slice* smallest_user_key,
  50. const Slice* largest_user_key);
  51. class Version {
  52. public:
  53. // Append to *iters a sequence of iterators that will
  54. // yield the contents of this Version when merged together.
  55. // REQUIRES: This version has been saved (see VersionSet::SaveTo)
  56. void AddIterators(const ReadOptions&, std::vector<Iterator*>* iters);
  57. // Lookup the value for key. If found, store it in *val and
  58. // return OK. Else return a non-OK status. Fills *stats.
  59. // REQUIRES: lock is not held
  60. struct GetStats {
  61. FileMetaData* seek_file;
  62. int seek_file_level;
  63. };
  64. Status Get(const ReadOptions&, const LookupKey& key, std::string* val,
  65. GetStats* stats);
  66. // Adds "stats" into the current state. Returns true if a new
  67. // compaction may need to be triggered, false otherwise.
  68. // REQUIRES: lock is held
  69. bool UpdateStats(const GetStats& stats);
  70. // Record a sample of bytes read at the specified internal key.
  71. // Samples are taken approximately once every config::kReadBytesPeriod
  72. // bytes. Returns true if a new compaction may need to be triggered.
  73. // REQUIRES: lock is held
  74. bool RecordReadSample(Slice key);
  75. // Reference count management (so Versions do not disappear out from
  76. // under live iterators)
  77. void Ref();
  78. void Unref();
  79. void GetOverlappingInputs(
  80. int level,
  81. const InternalKey* begin, // nullptr means before all keys
  82. const InternalKey* end, // nullptr means after all keys
  83. std::vector<FileMetaData*>* inputs);
  84. // Returns true iff some file in the specified level overlaps
  85. // some part of [*smallest_user_key,*largest_user_key].
  86. // smallest_user_key==nullptr represents a key smaller than all the DB's keys.
  87. // largest_user_key==nullptr represents a key largest than all the DB's keys.
  88. bool OverlapInLevel(int level, const Slice* smallest_user_key,
  89. const Slice* largest_user_key);
  90. // Return the level at which we should place a new memtable compaction
  91. // result that covers the range [smallest_user_key,largest_user_key].
  92. int PickLevelForMemTableOutput(const Slice& smallest_user_key,
  93. const Slice& largest_user_key);
  94. int NumFiles(int level) const { return files_[level].size(); }
  95. // Return a human readable string that describes this version's contents.
  96. std::string DebugString() const;
  97. private:
  98. friend class Compaction;
  99. friend class VersionSet;
  100. class LevelFileNumIterator;
  101. Iterator* NewConcatenatingIterator(const ReadOptions&, int level) const;
  102. // Call func(arg, level, f) for every file that overlaps user_key in
  103. // order from newest to oldest. If an invocation of func returns
  104. // false, makes no more calls.
  105. //
  106. // REQUIRES: user portion of internal_key == user_key.
  107. void ForEachOverlapping(Slice user_key, Slice internal_key, void* arg,
  108. bool (*func)(void*, int, FileMetaData*));
  109. VersionSet* vset_; // VersionSet to which this Version belongs
  110. Version* next_; // Next version in linked list
  111. Version* prev_; // Previous version in linked list
  112. int refs_; // Number of live refs to this version
  113. // List of files per level
  114. std::vector<FileMetaData*> files_[config::kNumLevels];
  115. // Next file to compact based on seek stats.
  116. FileMetaData* file_to_compact_;
  117. int file_to_compact_level_;
  118. // Level that should be compacted next and its compaction score.
  119. // Score < 1 means compaction is not strictly needed. These fields
  120. // are initialized by Finalize().
  121. double compaction_score_;
  122. int compaction_level_;
  123. explicit Version(VersionSet* vset)
  124. : vset_(vset),
  125. next_(this),
  126. prev_(this),
  127. refs_(0),
  128. file_to_compact_(nullptr),
  129. file_to_compact_level_(-1),
  130. compaction_score_(-1),
  131. compaction_level_(-1) {}
  132. ~Version();
  133. // No copying allowed
  134. Version(const Version&);
  135. void operator=(const Version&);
  136. };
  137. class VersionSet {
  138. public:
  139. VersionSet(const std::string& dbname, const Options* options,
  140. TableCache* table_cache, const InternalKeyComparator*);
  141. ~VersionSet();
  142. // Apply *edit to the current version to form a new descriptor that
  143. // is both saved to persistent state and installed as the new
  144. // current version. Will release *mu while actually writing to the file.
  145. // REQUIRES: *mu is held on entry.
  146. // REQUIRES: no other thread concurrently calls LogAndApply()
  147. Status LogAndApply(VersionEdit* edit, port::Mutex* mu)
  148. EXCLUSIVE_LOCKS_REQUIRED(mu);
  149. // Recover the last saved descriptor from persistent storage.
  150. Status Recover(bool* save_manifest);
  151. // Return the current version.
  152. Version* current() const { return current_; }
  153. // Return the current manifest file number
  154. uint64_t ManifestFileNumber() const { return manifest_file_number_; }
  155. // Allocate and return a new file number
  156. uint64_t NewFileNumber() { return next_file_number_++; }
  157. // Arrange to reuse "file_number" unless a newer file number has
  158. // already been allocated.
  159. // REQUIRES: "file_number" was returned by a call to NewFileNumber().
  160. void ReuseFileNumber(uint64_t file_number) {
  161. if (next_file_number_ == file_number + 1) {
  162. next_file_number_ = file_number;
  163. }
  164. }
  165. // Return the number of Table files at the specified level.
  166. int NumLevelFiles(int level) const;
  167. // Return the combined file size of all files at the specified level.
  168. int64_t NumLevelBytes(int level) const;
  169. // Return the last sequence number.
  170. uint64_t LastSequence() const { return last_sequence_; }
  171. // Set the last sequence number to s.
  172. void SetLastSequence(uint64_t s) {
  173. assert(s >= last_sequence_);
  174. last_sequence_ = s;
  175. }
  176. // Mark the specified file number as used.
  177. void MarkFileNumberUsed(uint64_t number);
  178. // Return the current log file number.
  179. uint64_t LogNumber() const { return log_number_; }
  180. // Return the log file number for the log file that is currently
  181. // being compacted, or zero if there is no such log file.
  182. uint64_t PrevLogNumber() const { return prev_log_number_; }
  183. // Pick level and inputs for a new compaction.
  184. // Returns nullptr if there is no compaction to be done.
  185. // Otherwise returns a pointer to a heap-allocated object that
  186. // describes the compaction. Caller should delete the result.
  187. Compaction* PickCompaction();
  188. // Return a compaction object for compacting the range [begin,end] in
  189. // the specified level. Returns nullptr if there is nothing in that
  190. // level that overlaps the specified range. Caller should delete
  191. // the result.
  192. Compaction* CompactRange(int level, const InternalKey* begin,
  193. const InternalKey* end);
  194. // Return the maximum overlapping data (in bytes) at next level for any
  195. // file at a level >= 1.
  196. int64_t MaxNextLevelOverlappingBytes();
  197. // Create an iterator that reads over the compaction inputs for "*c".
  198. // The caller should delete the iterator when no longer needed.
  199. Iterator* MakeInputIterator(Compaction* c);
  200. // Returns true iff some level needs a compaction.
  201. bool NeedsCompaction() const {
  202. Version* v = current_;
  203. return (v->compaction_score_ >= 1) || (v->file_to_compact_ != nullptr);
  204. }
  205. // Add all files listed in any live version to *live.
  206. // May also mutate some internal state.
  207. void AddLiveFiles(std::set<uint64_t>* live);
  208. // Return the approximate offset in the database of the data for
  209. // "key" as of version "v".
  210. uint64_t ApproximateOffsetOf(Version* v, const InternalKey& key);
  211. // Return a human-readable short (single-line) summary of the number
  212. // of files per level. Uses *scratch as backing store.
  213. struct LevelSummaryStorage {
  214. char buffer[100];
  215. };
  216. const char* LevelSummary(LevelSummaryStorage* scratch) const;
  217. private:
  218. class Builder;
  219. friend class Compaction;
  220. friend class Version;
  221. bool ReuseManifest(const std::string& dscname, const std::string& dscbase);
  222. void Finalize(Version* v);
  223. void GetRange(const std::vector<FileMetaData*>& inputs, InternalKey* smallest,
  224. InternalKey* largest);
  225. void GetRange2(const std::vector<FileMetaData*>& inputs1,
  226. const std::vector<FileMetaData*>& inputs2,
  227. InternalKey* smallest, InternalKey* largest);
  228. void SetupOtherInputs(Compaction* c);
  229. // Save current contents to *log
  230. Status WriteSnapshot(log::Writer* log);
  231. void AppendVersion(Version* v);
  232. Env* const env_;
  233. const std::string dbname_;
  234. const Options* const options_;
  235. TableCache* const table_cache_;
  236. const InternalKeyComparator icmp_;
  237. uint64_t next_file_number_;
  238. uint64_t manifest_file_number_;
  239. uint64_t last_sequence_;
  240. uint64_t log_number_;
  241. uint64_t prev_log_number_; // 0 or backing store for memtable being compacted
  242. // Opened lazily
  243. WritableFile* descriptor_file_;
  244. log::Writer* descriptor_log_;
  245. Version dummy_versions_; // Head of circular doubly-linked list of versions.
  246. Version* current_; // == dummy_versions_.prev_
  247. // Per-level key at which the next compaction at that level should start.
  248. // Either an empty string, or a valid InternalKey.
  249. std::string compact_pointer_[config::kNumLevels];
  250. // No copying allowed
  251. VersionSet(const VersionSet&);
  252. void operator=(const VersionSet&);
  253. };
  254. // A Compaction encapsulates information about a compaction.
  255. class Compaction {
  256. public:
  257. ~Compaction();
  258. // Return the level that is being compacted. Inputs from "level"
  259. // and "level+1" will be merged to produce a set of "level+1" files.
  260. int level() const { return level_; }
  261. // Return the object that holds the edits to the descriptor done
  262. // by this compaction.
  263. VersionEdit* edit() { return &edit_; }
  264. // "which" must be either 0 or 1
  265. int num_input_files(int which) const { return inputs_[which].size(); }
  266. // Return the ith input file at "level()+which" ("which" must be 0 or 1).
  267. FileMetaData* input(int which, int i) const { return inputs_[which][i]; }
  268. // Maximum size of files to build during this compaction.
  269. uint64_t MaxOutputFileSize() const { return max_output_file_size_; }
  270. // Is this a trivial compaction that can be implemented by just
  271. // moving a single input file to the next level (no merging or splitting)
  272. bool IsTrivialMove() const;
  273. // Add all inputs to this compaction as delete operations to *edit.
  274. void AddInputDeletions(VersionEdit* edit);
  275. // Returns true if the information we have available guarantees that
  276. // the compaction is producing data in "level+1" for which no data exists
  277. // in levels greater than "level+1".
  278. bool IsBaseLevelForKey(const Slice& user_key);
  279. // Returns true iff we should stop building the current output
  280. // before processing "internal_key".
  281. bool ShouldStopBefore(const Slice& internal_key);
  282. // Release the input version for the compaction, once the compaction
  283. // is successful.
  284. void ReleaseInputs();
  285. private:
  286. friend class Version;
  287. friend class VersionSet;
  288. Compaction(const Options* options, int level);
  289. int level_;
  290. uint64_t max_output_file_size_;
  291. Version* input_version_;
  292. VersionEdit edit_;
  293. // Each compaction reads inputs from "level_" and "level_+1"
  294. std::vector<FileMetaData*> inputs_[2]; // The two sets of inputs
  295. // State used to check for number of overlapping grandparent files
  296. // (parent == level_ + 1, grandparent == level_ + 2)
  297. std::vector<FileMetaData*> grandparents_;
  298. size_t grandparent_index_; // Index in grandparent_starts_
  299. bool seen_key_; // Some output key has been seen
  300. int64_t overlapped_bytes_; // Bytes of overlap between current output
  301. // and grandparent files
  302. // State for implementing IsBaseLevelForKey
  303. // level_ptrs_ holds indices into input_version_->levels_: our state
  304. // is that we are positioned at one of the file ranges for each
  305. // higher level than the ones involved in this compaction (i.e. for
  306. // all L >= level_ + 2).
  307. size_t level_ptrs_[config::kNumLevels];
  308. };
  309. } // namespace leveldb
  310. #endif // STORAGE_LEVELDB_DB_VERSION_SET_H_