10225501448 李度 10225101546 陈胤遒 10215501422 高宇菲
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.

395 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. struct GetStats {
  54. FileMetaData* seek_file;
  55. int seek_file_level;
  56. };
  57. // Append to *iters a sequence of iterators that will
  58. // yield the contents of this Version when merged together.
  59. // REQUIRES: This version has been saved (see VersionSet::SaveTo)
  60. void AddIterators(const ReadOptions&, std::vector<Iterator*>* iters);
  61. // Lookup the value for key. If found, store it in *val and
  62. // return OK. Else return a non-OK status. Fills *stats.
  63. // REQUIRES: lock is not held
  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. const std::vector<FileMetaData*>& Files(int level) const {return files_[level]; }
  96. // Return a human readable string that describes this version's contents.
  97. std::string DebugString() const;
  98. private:
  99. friend class Compaction;
  100. friend class VersionSet;
  101. class LevelFileNumIterator;
  102. explicit Version(VersionSet* vset)
  103. : vset_(vset),
  104. next_(this),
  105. prev_(this),
  106. refs_(0),
  107. file_to_compact_(nullptr),
  108. file_to_compact_level_(-1),
  109. compaction_score_(-1),
  110. compaction_level_(-1) {}
  111. Version(const Version&) = delete;
  112. Version& operator=(const Version&) = delete;
  113. ~Version();
  114. Iterator* NewConcatenatingIterator(const ReadOptions&, int level) const;
  115. // Call func(arg, level, f) for every file that overlaps user_key in
  116. // order from newest to oldest. If an invocation of func returns
  117. // false, makes no more calls.
  118. //
  119. // REQUIRES: user portion of internal_key == user_key.
  120. void ForEachOverlapping(Slice user_key, Slice internal_key, void* arg,
  121. bool (*func)(void*, int, FileMetaData*));
  122. VersionSet* vset_; // VersionSet to which this Version belongs
  123. Version* next_; // Next version in linked list
  124. Version* prev_; // Previous version in linked list
  125. int refs_; // Number of live refs to this version
  126. // List of files per level
  127. std::vector<FileMetaData*> files_[config::kNumLevels];
  128. // Next file to compact based on seek stats.
  129. FileMetaData* file_to_compact_;
  130. int file_to_compact_level_;
  131. // Level that should be compacted next and its compaction score.
  132. // Score < 1 means compaction is not strictly needed. These fields
  133. // are initialized by Finalize().
  134. double compaction_score_;
  135. int compaction_level_;
  136. };
  137. class VersionSet {
  138. public:
  139. VersionSet(const std::string& dbname, const Options* options,
  140. TableCache* table_cache, const InternalKeyComparator*);
  141. VersionSet(const VersionSet&) = delete;
  142. VersionSet& operator=(const VersionSet&) = delete;
  143. ~VersionSet();
  144. // Apply *edit to the current version to form a new descriptor that
  145. // is both saved to persistent state and installed as the new
  146. // current version. Will release *mu while actually writing to the file.
  147. // REQUIRES: *mu is held on entry.
  148. // REQUIRES: no other thread concurrently calls LogAndApply()
  149. Status LogAndApply(VersionEdit* edit, port::Mutex* mu)
  150. EXCLUSIVE_LOCKS_REQUIRED(mu);
  151. // Recover the last saved descriptor from persistent storage.
  152. Status Recover(bool* save_manifest);
  153. // Return the current version.
  154. Version* current() const { return current_; }
  155. // Return the current manifest file number
  156. uint64_t ManifestFileNumber() const { return manifest_file_number_; }
  157. // Allocate and return a new file number
  158. uint64_t NewFileNumber() { return next_file_number_++; }
  159. // Arrange to reuse "file_number" unless a newer file number has
  160. // already been allocated.
  161. // REQUIRES: "file_number" was returned by a call to NewFileNumber().
  162. void ReuseFileNumber(uint64_t file_number) {
  163. if (next_file_number_ == file_number + 1) {
  164. next_file_number_ = file_number;
  165. }
  166. }
  167. // Return the number of Table files at the specified level.
  168. int NumLevelFiles(int level) const;
  169. // Return the combined file size of all files at the specified level.
  170. int64_t NumLevelBytes(int level) const;
  171. // Return the last sequence number.
  172. uint64_t LastSequence() const { return last_sequence_; }
  173. // Set the last sequence number to s.
  174. void SetLastSequence(uint64_t s) {
  175. assert(s >= last_sequence_);
  176. last_sequence_ = s;
  177. }
  178. // Mark the specified file number as used.
  179. void MarkFileNumberUsed(uint64_t number);
  180. // Return the current log file number.
  181. uint64_t LogNumber() const { return log_number_; }
  182. // Return the log file number for the log file that is currently
  183. // being compacted, or zero if there is no such log file.
  184. uint64_t PrevLogNumber() const { return prev_log_number_; }
  185. // Pick level and inputs for a new compaction.
  186. // Returns nullptr if there is no compaction to be done.
  187. // Otherwise returns a pointer to a heap-allocated object that
  188. // describes the compaction. Caller should delete the result.
  189. Compaction* PickCompaction();
  190. // Return a compaction object for compacting the range [begin,end] in
  191. // the specified level. Returns nullptr if there is nothing in that
  192. // level that overlaps the specified range. Caller should delete
  193. // the result.
  194. Compaction* CompactRange(int level, const InternalKey* begin,
  195. const InternalKey* end);
  196. // Return the maximum overlapping data (in bytes) at next level for any
  197. // file at a level >= 1.
  198. int64_t MaxNextLevelOverlappingBytes();
  199. // Create an iterator that reads over the compaction inputs for "*c".
  200. // The caller should delete the iterator when no longer needed.
  201. Iterator* MakeInputIterator(Compaction* c);
  202. // Returns true iff some level needs a compaction.
  203. bool NeedsCompaction() const {
  204. Version* v = current_;
  205. return (v->compaction_score_ >= 1) || (v->file_to_compact_ != nullptr);
  206. }
  207. // Add all files listed in any live version to *live.
  208. // May also mutate some internal state.
  209. void AddLiveFiles(std::set<uint64_t>* live);
  210. // Return the approximate offset in the database of the data for
  211. // "key" as of version "v".
  212. uint64_t ApproximateOffsetOf(Version* v, const InternalKey& key);
  213. // Return a human-readable short (single-line) summary of the number
  214. // of files per level. Uses *scratch as backing store.
  215. struct LevelSummaryStorage {
  216. char buffer[100];
  217. };
  218. const char* LevelSummary(LevelSummaryStorage* scratch) const;
  219. private:
  220. class Builder;
  221. friend class Compaction;
  222. friend class Version;
  223. bool ReuseManifest(const std::string& dscname, const std::string& dscbase);
  224. void Finalize(Version* v);
  225. void GetRange(const std::vector<FileMetaData*>& inputs, InternalKey* smallest,
  226. InternalKey* largest);
  227. void GetRange2(const std::vector<FileMetaData*>& inputs1,
  228. const std::vector<FileMetaData*>& inputs2,
  229. InternalKey* smallest, InternalKey* largest);
  230. void SetupOtherInputs(Compaction* c);
  231. // Save current contents to *log
  232. Status WriteSnapshot(log::Writer* log);
  233. void AppendVersion(Version* v);
  234. Env* const env_;
  235. const std::string dbname_;
  236. const Options* const options_;
  237. TableCache* const table_cache_;
  238. const InternalKeyComparator icmp_;
  239. uint64_t next_file_number_;
  240. uint64_t manifest_file_number_;
  241. uint64_t last_sequence_;
  242. uint64_t log_number_;
  243. uint64_t prev_log_number_; // 0 or backing store for memtable being compacted
  244. // Opened lazily
  245. WritableFile* descriptor_file_;
  246. log::Writer* descriptor_log_;
  247. Version dummy_versions_; // Head of circular doubly-linked list of versions.
  248. Version* current_; // == dummy_versions_.prev_
  249. // Per-level key at which the next compaction at that level should start.
  250. // Either an empty string, or a valid InternalKey.
  251. std::string compact_pointer_[config::kNumLevels];
  252. };
  253. // A Compaction encapsulates information about a compaction.
  254. class Compaction {
  255. public:
  256. ~Compaction();
  257. // Return the level that is being compacted. Inputs from "level"
  258. // and "level+1" will be merged to produce a set of "level+1" files.
  259. int level() const { return level_; }
  260. // Return the object that holds the edits to the descriptor done
  261. // by this compaction.
  262. VersionEdit* edit() { return &edit_; }
  263. // "which" must be either 0 or 1
  264. int num_input_files(int which) const { return inputs_[which].size(); }
  265. // Return the ith input file at "level()+which" ("which" must be 0 or 1).
  266. FileMetaData* input(int which, int i) const { return inputs_[which][i]; }
  267. // Maximum size of files to build during this compaction.
  268. uint64_t MaxOutputFileSize() const { return max_output_file_size_; }
  269. // Is this a trivial compaction that can be implemented by just
  270. // moving a single input file to the next level (no merging or splitting)
  271. bool IsTrivialMove() const;
  272. // Add all inputs to this compaction as delete operations to *edit.
  273. void AddInputDeletions(VersionEdit* edit);
  274. // Returns true if the information we have available guarantees that
  275. // the compaction is producing data in "level+1" for which no data exists
  276. // in levels greater than "level+1".
  277. bool IsBaseLevelForKey(const Slice& user_key);
  278. // Returns true iff we should stop building the current output
  279. // before processing "internal_key".
  280. bool ShouldStopBefore(const Slice& internal_key);
  281. // Release the input version for the compaction, once the compaction
  282. // is successful.
  283. void ReleaseInputs();
  284. private:
  285. friend class Version;
  286. friend class VersionSet;
  287. Compaction(const Options* options, int level);
  288. int level_;
  289. uint64_t max_output_file_size_;
  290. Version* input_version_;
  291. VersionEdit edit_;
  292. // Each compaction reads inputs from "level_" and "level_+1"
  293. std::vector<FileMetaData*> inputs_[2]; // The two sets of inputs
  294. // State used to check for number of overlapping grandparent files
  295. // (parent == level_ + 1, grandparent == level_ + 2)
  296. std::vector<FileMetaData*> grandparents_;
  297. size_t grandparent_index_; // Index in grandparent_starts_
  298. bool seen_key_; // Some output key has been seen
  299. int64_t overlapped_bytes_; // Bytes of overlap between current output
  300. // and grandparent files
  301. // State for implementing IsBaseLevelForKey
  302. // level_ptrs_ holds indices into input_version_->levels_: our state
  303. // is that we are positioned at one of the file ranges for each
  304. // higher level than the ones involved in this compaction (i.e. for
  305. // all L >= level_ + 2).
  306. size_t level_ptrs_[config::kNumLevels];
  307. };
  308. } // namespace leveldb
  309. #endif // STORAGE_LEVELDB_DB_VERSION_SET_H_