version_set.h 14 KB

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