version_set.h 20.2 KB
Newer Older
1 2 3 4 5
//  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.
//
J
jorlow@chromium.org 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19
// 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.
//
// The representation of a DBImpl consists of a set of Versions.  The
// newest version is called "current".  Older versions may be kept
// around to provide a consistent view to live iterators.
//
// Each Version keeps track of a set of Table files per level.  The
// entire set of versions is maintained in a VersionSet.
//
// Version,VersionSet are thread-compatible, but require external
// synchronization on all accesses.

20
#pragma once
J
jorlow@chromium.org 已提交
21
#include <map>
22
#include <memory>
J
jorlow@chromium.org 已提交
23 24
#include <set>
#include <vector>
25
#include <deque>
J
jorlow@chromium.org 已提交
26 27 28
#include "db/dbformat.h"
#include "db/version_edit.h"
#include "port/port.h"
29
#include "db/table_cache.h"
30
#include "db/compaction.h"
J
jorlow@chromium.org 已提交
31

32
namespace rocksdb {
J
jorlow@chromium.org 已提交
33 34 35 36 37 38 39 40 41

namespace log { class Writer; }

class Compaction;
class Iterator;
class MemTable;
class TableCache;
class Version;
class VersionSet;
42
class MergeContext;
J
jorlow@chromium.org 已提交
43

44 45 46 47 48 49 50
// Return the smallest index i such that files[i]->largest >= key.
// Return files.size() if there is no such file.
// REQUIRES: "files" contains a sorted list of non-overlapping files.
extern int FindFile(const InternalKeyComparator& icmp,
                    const std::vector<FileMetaData*>& files,
                    const Slice& key);

51
// Returns true iff some file in "files" overlaps the user key range
G
Gabor Cselle 已提交
52
// [*smallest,*largest].
A
Abhishek Kona 已提交
53 54
// smallest==nullptr represents a key smaller than all keys in the DB.
// largest==nullptr represents a key largest than all keys in the DB.
G
Gabor Cselle 已提交
55 56
// REQUIRES: If disjoint_sorted_files, files[] contains disjoint ranges
//           in sorted order.
57 58
extern bool SomeFileOverlapsRange(
    const InternalKeyComparator& icmp,
G
Gabor Cselle 已提交
59
    bool disjoint_sorted_files,
60
    const std::vector<FileMetaData*>& files,
G
Gabor Cselle 已提交
61 62
    const Slice* smallest_user_key,
    const Slice* largest_user_key);
63

J
jorlow@chromium.org 已提交
64 65 66 67 68
class Version {
 public:
  // Append to *iters a sequence of iterators that will
  // yield the contents of this Version when merged together.
  // REQUIRES: This version has been saved (see VersionSet::SaveTo)
H
Haobo Xu 已提交
69
  void AddIterators(const ReadOptions&, const EnvOptions& soptions,
70
                    std::vector<Iterator*>* iters);
J
jorlow@chromium.org 已提交
71

72 73
  // Lookup the value for key.  If found, store it in *val and
  // return OK.  Else return a non-OK status.  Fills *stats.
74
  // Uses *operands to store merge_operator operations to apply later
75 76 77 78 79
  // REQUIRES: lock is not held
  struct GetStats {
    FileMetaData* seek_file;
    int seek_file_level;
  };
80
  void Get(const ReadOptions&, const LookupKey& key, std::string* val,
81 82 83
           Status* status, MergeContext* merge_context,
           GetStats* stats, const Options& db_option, bool* value_found =
               nullptr);
84 85 86 87 88 89

  // Adds "stats" into the current state.  Returns true if a new
  // compaction may need to be triggered, false otherwise.
  // REQUIRES: lock is held
  bool UpdateStats(const GetStats& stats);

J
jorlow@chromium.org 已提交
90 91 92 93 94
  // Reference count management (so Versions do not disappear out from
  // under live iterators)
  void Ref();
  void Unref();

G
Gabor Cselle 已提交
95 96
  void GetOverlappingInputs(
      int level,
A
Abhishek Kona 已提交
97 98
      const InternalKey* begin,         // nullptr means before all keys
      const InternalKey* end,           // nullptr means after all keys
99 100
      std::vector<FileMetaData*>* inputs,
      int hint_index = -1,              // index of overlap file
A
Abhishek Kona 已提交
101
      int* file_index = nullptr);          // return index of overlap file
G
Gabor Cselle 已提交
102

103 104
  void GetOverlappingInputsBinarySearch(
      int level,
A
Abhishek Kona 已提交
105 106
      const Slice& begin,         // nullptr means before all keys
      const Slice& end,           // nullptr means after all keys
107 108 109
      std::vector<FileMetaData*>* inputs,
      int hint_index,             // index of overlap file
      int* file_index);           // return index of overlap file
110 111 112

  void ExtendOverlappingInputs(
      int level,
A
Abhishek Kona 已提交
113 114
      const Slice& begin,         // nullptr means before all keys
      const Slice& end,           // nullptr means after all keys
115
      std::vector<FileMetaData*>* inputs,
116
      unsigned int index);                 // start extending from this index
117

118
  // Returns true iff some file in the specified level overlaps
G
Gabor Cselle 已提交
119 120 121
  // some part of [*smallest_user_key,*largest_user_key].
  // smallest_user_key==NULL represents a key smaller than all keys in the DB.
  // largest_user_key==NULL represents a key largest than all keys in the DB.
122
  bool OverlapInLevel(int level,
G
Gabor Cselle 已提交
123 124 125
                      const Slice* smallest_user_key,
                      const Slice* largest_user_key);

126 127 128 129 130 131 132 133
  // Returns true iff the first or last file in inputs contains
  // an overlapping user key to the file "just outside" of it (i.e.
  // just after the last file, or just before the first file)
  // REQUIRES: "*inputs" is a sorted list of non-overlapping files
  bool HasOverlappingUserKey(const std::vector<FileMetaData*>* inputs,
                             int level);


G
Gabor Cselle 已提交
134 135 136 137
  // Return the level at which we should place a new memtable compaction
  // result that covers the range [smallest_user_key,largest_user_key].
  int PickLevelForMemTableOutput(const Slice& smallest_user_key,
                                 const Slice& largest_user_key);
138

139 140 141 142
  int NumberLevels() const { return num_levels_; }

  // REQUIRES: lock is held
  int NumLevelFiles(int level) const { return files_[level].size(); }
143

144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
  // Return the combined file size of all files at the specified level.
  int64_t NumLevelBytes(int level) const;

  // Return a human-readable short (single-line) summary of the number
  // of files per level.  Uses *scratch as backing store.
  struct LevelSummaryStorage {
    char buffer[100];
  };
  struct FileSummaryStorage {
    char buffer[1000];
  };
  const char* LevelSummary(LevelSummaryStorage* scratch) const;
  // Return a human-readable short (single-line) summary of files
  // in a specified level.  Uses *scratch as backing store.
  const char* LevelFileSummary(FileSummaryStorage* scratch, int level) const;

  // Return the maximum overlapping data (in bytes) at next level for any
  // file at a level >= 1.
  int64_t MaxNextLevelOverlappingBytes();

  // Add all files listed in the current version to *live.
  void AddLiveFiles(std::set<uint64_t>* live);

J
jorlow@chromium.org 已提交
167
  // Return a human readable string that describes this version's contents.
Z
Zheng Shao 已提交
168
  std::string DebugString(bool hex = false) const;
J
jorlow@chromium.org 已提交
169

170
  // Returns the version nuber of this version
171
  uint64_t GetVersionNumber() const { return version_number_; }
172

J
jorlow@chromium.org 已提交
173 174 175
 private:
  friend class Compaction;
  friend class VersionSet;
176
  friend class DBImpl;
J
jorlow@chromium.org 已提交
177 178

  class LevelFileNumIterator;
179
  Iterator* NewConcatenatingIterator(const ReadOptions&,
H
Haobo Xu 已提交
180
                                     const EnvOptions& soptions,
181
                                     int level) const;
T
Tyler Harter 已提交
182 183
  bool PrefixMayMatch(const ReadOptions& options, const EnvOptions& soptions,
                      const Slice& internal_prefix, Iterator* level_iter) const;
J
jorlow@chromium.org 已提交
184 185 186

  VersionSet* vset_;            // VersionSet to which this Version belongs
  Version* next_;               // Next version in linked list
187
  Version* prev_;               // Previous version in linked list
J
jorlow@chromium.org 已提交
188
  int refs_;                    // Number of live refs to this version
189
  int num_levels_;              // Number of levels
J
jorlow@chromium.org 已提交
190

191 192
  // List of files per level, files in each level are arranged
  // in increasing order of keys
193
  std::vector<FileMetaData*>* files_;
J
jorlow@chromium.org 已提交
194

A
Abhishek Kona 已提交
195 196
  // A list for the same set of files that are stored in files_,
  // but files in each level are now sorted based on file
197 198 199 200
  // size. The file with the largest size is at the front.
  // This vector stores the index of the file from files_.
  std::vector< std::vector<int> > files_by_size_;

201 202 203 204 205 206 207 208 209 210 211
  // An index into files_by_size_ that specifies the first
  // file that is not yet compacted
  std::vector<int> next_file_to_compact_by_size_;

  // Only the first few entries of files_by_size_ are sorted.
  // There is no need to sort all the files because it is likely
  // that on a running system, we need to look at only the first
  // few largest files because a new version is created every few
  // seconds/minutes (because of concurrent compactions).
  static const int number_of_files_to_sort_ = 50;

212 213 214 215
  // Next file to compact based on seek stats.
  FileMetaData* file_to_compact_;
  int file_to_compact_level_;

J
jorlow@chromium.org 已提交
216 217 218
  // Level that should be compacted next and its compaction score.
  // Score < 1 means compaction is not strictly needed.  These fields
  // are initialized by Finalize().
219 220 221 222
  // The most critical level to be compacted is listed first
  // These are used to pick the best compaction level
  std::vector<double> compaction_score_;
  std::vector<int> compaction_level_;
223
  double max_compaction_score_; // max score in l1 to ln-1
224
  int max_compaction_score_level_; // level on which max score occurs
J
jorlow@chromium.org 已提交
225

226 227 228 229 230
  // A version number that uniquely represents this version. This is
  // used for debugging and logging purposes only.
  uint64_t version_number_;

  explicit Version(VersionSet* vset, uint64_t version_number = 0);
J
jorlow@chromium.org 已提交
231 232 233

  ~Version();

234 235 236 237
  // re-initializes the index that is used to offset into files_by_size_
  // to find the next compaction candidate file.
  void ResetNextCompactionIndex(int level) {
    next_file_to_compact_by_size_[level] = 0;
A
Abhishek Kona 已提交
238
  }
239

J
jorlow@chromium.org 已提交
240 241 242 243 244 245 246
  // No copying allowed
  Version(const Version&);
  void operator=(const Version&);
};

class VersionSet {
 public:
247 248
  VersionSet(const std::string& dbname, const Options* options,
             const EnvOptions& storage_options, TableCache* table_cache,
J
jorlow@chromium.org 已提交
249 250 251 252 253
             const InternalKeyComparator*);
  ~VersionSet();

  // Apply *edit to the current version to form a new descriptor that
  // is both saved to persistent state and installed as the new
254 255 256
  // current version.  Will release *mu while actually writing to the file.
  // REQUIRES: *mu is held on entry.
  // REQUIRES: no other thread concurrently calls LogAndApply()
257
  Status LogAndApply(VersionEdit* edit, port::Mutex* mu,
258
                     bool new_descriptor_log = false);
J
jorlow@chromium.org 已提交
259 260

  // Recover the last saved descriptor from persistent storage.
261
  Status Recover();
J
jorlow@chromium.org 已提交
262

263 264 265 266 267 268 269 270
  // Try to reduce the number of levels. This call is valid when
  // only one level from the new max level to the old
  // max level containing files.
  // For example, a db currently has 7 levels [0-6], and a call to
  // to reduce to 5 [0-4] can only be executed when only one level
  // among [4-6] contains files.
  Status ReduceNumberOfLevels(int new_levels, port::Mutex* mu);

J
jorlow@chromium.org 已提交
271 272 273
  // Return the current version.
  Version* current() const { return current_; }

274 275 276
  // A Flag indicating whether write needs to slowdown because of there are
  // too many number of level0 files.
  bool NeedSlowdownForNumLevel0Files() const {
277
    return need_slowdown_for_num_level0_files_;
278 279
  }

J
jorlow@chromium.org 已提交
280 281 282 283 284 285
  // Return the current manifest file number
  uint64_t ManifestFileNumber() const { return manifest_file_number_; }

  // Allocate and return a new file number
  uint64_t NewFileNumber() { return next_file_number_++; }

H
heyongqiang 已提交
286 287 288 289 290 291 292 293 294
  // Arrange to reuse "file_number" unless a newer file number has
  // already been allocated.
  // REQUIRES: "file_number" was returned by a call to NewFileNumber().
  void ReuseFileNumber(uint64_t file_number) {
    if (next_file_number_ == file_number + 1) {
      next_file_number_ = file_number;
    }
  }

295
  // Return the last sequence number.
I
Igor Canadi 已提交
296 297 298
  uint64_t LastSequence() const {
    return last_sequence_.load(std::memory_order_acquire);
  }
299 300 301 302

  // Set the last sequence number to s.
  void SetLastSequence(uint64_t s) {
    assert(s >= last_sequence_);
I
Igor Canadi 已提交
303
    last_sequence_.store(s, std::memory_order_release);
304 305
  }

306 307 308
  // Mark the specified file number as used.
  void MarkFileNumberUsed(uint64_t number);

309 310 311 312 313 314 315
  // Return the current log file number.
  uint64_t LogNumber() const { return log_number_; }

  // Return the log file number for the log file that is currently
  // being compacted, or zero if there is no such log file.
  uint64_t PrevLogNumber() const { return prev_log_number_; }

316
  int NumberLevels() const { return num_levels_; }
317

J
jorlow@chromium.org 已提交
318
  // Pick level and inputs for a new compaction.
A
Abhishek Kona 已提交
319
  // Returns nullptr if there is no compaction to be done.
J
jorlow@chromium.org 已提交
320 321 322 323 324
  // Otherwise returns a pointer to a heap-allocated object that
  // describes the compaction.  Caller should delete the result.
  Compaction* PickCompaction();

  // Return a compaction object for compacting the range [begin,end] in
A
Abhishek Kona 已提交
325
  // the specified level.  Returns nullptr if there is nothing in that
J
jorlow@chromium.org 已提交
326 327
  // level that overlaps the specified range.  Caller should delete
  // the result.
328 329 330 331 332 333 334 335 336 337 338 339
  //
  // The returned Compaction might not include the whole requested range.
  // In that case, compaction_end will be set to the next key that needs
  // compacting. In case the compaction will compact the whole range,
  // compaction_end will be set to nullptr.
  // Client is responsible for compaction_end storage -- when called,
  // *compaction_end should point to valid InternalKey!
  Compaction* CompactRange(int input_level,
                           int output_level,
                           const InternalKey* begin,
                           const InternalKey* end,
                           InternalKey** compaction_end);
J
jorlow@chromium.org 已提交
340 341 342 343 344

  // Create an iterator that reads over the compaction inputs for "*c".
  // The caller should delete the iterator when no longer needed.
  Iterator* MakeInputIterator(Compaction* c);

345 346 347
  // Returns true iff some level needs a compaction because it has
  // exceeded its target size.
  bool NeedsSizeCompaction() const {
348 349 350 351 352 353 354 355 356 357 358
    // In universal compaction case, this check doesn't really
    // check the compaction condition, but checks num of files threshold
    // only. We are not going to miss any compaction opportunity
    // but it's likely that more compactions are scheduled but
    // ending up with nothing to do. We can improve it later.
    // TODO: improve this function to be accurate for universal
    //       compactions.
    int num_levels_to_check =
        (options_->compaction_style != kCompactionStyleUniversal) ?
            NumberLevels() - 1 : 1;
    for (int i = 0; i < num_levels_to_check; i++) {
359 360 361 362 363 364
      if (current_->compaction_score_[i] >= 1) {
        return true;
      }
    }
    return false;
  }
J
jorlow@chromium.org 已提交
365
  // Returns true iff some level needs a compaction.
366
  bool NeedsCompaction() const {
A
Abhishek Kona 已提交
367
    return ((current_->file_to_compact_ != nullptr) ||
368
            NeedsSizeCompaction());
369
  }
J
jorlow@chromium.org 已提交
370

371 372
  // Returns the maxmimum compaction score for levels 1 to max
  double MaxCompactionScore() const {
373
    return current_->max_compaction_score_;
374 375
  }

376 377 378 379 380
  // See field declaration
  int MaxCompactionScoreLevel() const {
    return current_->max_compaction_score_level_;
  }

J
jorlow@chromium.org 已提交
381
  // Add all files listed in any live version to *live.
382
  void AddLiveFiles(std::vector<uint64_t>* live_list);
J
jorlow@chromium.org 已提交
383 384 385 386 387

  // Return the approximate offset in the database of the data for
  // "key" as of version "v".
  uint64_t ApproximateOffsetOf(Version* v, const InternalKey& key);

388
  // printf contents (for debugging)
389
  Status DumpManifest(Options& options, std::string& manifestFileName,
Z
Zheng Shao 已提交
390
                      bool verbose, bool hex = false);
391

392
  // Return the size of the current manifest file
393
  uint64_t ManifestFileSize() const { return manifest_file_size_; }
394

395
  // For the specfied level, pick a compaction.
A
Abhishek Kona 已提交
396
  // Returns nullptr if there is no compaction to be done.
397
  // If level is 0 and there is already a compaction on that level, this
A
Abhishek Kona 已提交
398
  // function will return nullptr.
399
  Compaction* PickCompactionBySize(int level, double score);
400

401 402
  // Pick files to compact in Universal mode
  Compaction* PickCompactionUniversal(int level, double score);
403 404 405 406 407 408 409

  // Pick Universal compaction to limit read amplification
  Compaction* PickCompactionUniversalReadAmp(int level, double score,
                unsigned int ratio, unsigned int num_files);

  // Pick Universal compaction to limit space amplification.
  Compaction* PickCompactionUniversalSizeAmp(int level, double score);
410

411
  // Free up the files that were participated in a compaction
412
  void ReleaseCompactionFiles(Compaction* c, Status status);
413 414 415 416 417 418 419

  // verify that the files that we started with for a compaction
  // still exist in the current version and in the same original level.
  // This ensures that a concurrent compaction did not erroneously
  // pick the same files to compact.
  bool VerifyCompactionFileConsistency(Compaction* c);

420 421 422 423 424 425 426 427 428 429
  // used to sort files by size
  typedef struct fsize {
    int index;
    FileMetaData* file;
  } Fsize;

  // Sort all files for this version based on their file size and
  // record results in files_by_size_. The largest files are listed first.
  void UpdateFilesBySize(Version *v);

430 431 432
  // Get the max file size in a given level.
  uint64_t MaxFileSizeForLevel(int level);

433 434
  double MaxBytesForLevel(int level);

435 436 437 438 439 440
  Status GetMetadataForFile(
    uint64_t number, int *filelevel, FileMetaData *metadata);

  void GetLiveFilesMetaData(
    std::vector<LiveFileMetaData> *metadata);

441
  void GetObsoleteFiles(std::vector<FileMetaData*>* files);
I
Igor Canadi 已提交
442

J
jorlow@chromium.org 已提交
443 444
 private:
  class Builder;
445
  struct ManifestWriter;
J
jorlow@chromium.org 已提交
446 447 448 449

  friend class Compaction;
  friend class Version;

450 451
  void Init(int num_levels);

452
  void Finalize(Version* v, std::vector<uint64_t>&);
J
jorlow@chromium.org 已提交
453 454 455 456 457

  void GetRange(const std::vector<FileMetaData*>& inputs,
                InternalKey* smallest,
                InternalKey* largest);

458 459 460 461 462
  void GetRange2(const std::vector<FileMetaData*>& inputs1,
                 const std::vector<FileMetaData*>& inputs2,
                 InternalKey* smallest,
                 InternalKey* largest);

463 464
  void ExpandWhileOverlapping(Compaction* c);

465 466
  void SetupOtherInputs(Compaction* c);

467 468 469
  // Save current contents to *log
  Status WriteSnapshot(log::Writer* log);

470 471
  void AppendVersion(Version* v);

472 473
  bool ManifestContains(const std::string& record) const;

474
  uint64_t ExpandedCompactionByteSizeLimit(int level);
475

476
  uint64_t MaxGrandParentOverlapBytes(int level);
477

J
jorlow@chromium.org 已提交
478 479 480 481 482 483 484
  Env* const env_;
  const std::string dbname_;
  const Options* const options_;
  TableCache* const table_cache_;
  const InternalKeyComparator icmp_;
  uint64_t next_file_number_;
  uint64_t manifest_file_number_;
I
Igor Canadi 已提交
485
  std::atomic<uint64_t> last_sequence_;
486 487
  uint64_t log_number_;
  uint64_t prev_log_number_;  // 0 or backing store for memtable being compacted
J
jorlow@chromium.org 已提交
488

489 490
  int num_levels_;

J
jorlow@chromium.org 已提交
491
  // Opened lazily
492
  unique_ptr<log::Writer> descriptor_log_;
493 494
  Version dummy_versions_;  // Head of circular doubly-linked list of versions.
  Version* current_;        // == dummy_versions_.prev_
J
jorlow@chromium.org 已提交
495

496 497 498
  // A flag indicating whether we should delay writes because
  // we have too many level 0 files
  bool need_slowdown_for_num_level0_files_;
499

J
jorlow@chromium.org 已提交
500 501
  // Per-level key at which the next compaction at that level should start.
  // Either an empty string, or a valid InternalKey.
502 503 504 505 506 507 508
  std::string* compact_pointer_;

  // Per-level target file size.
  uint64_t* max_file_size_;

  // Per-level max bytes
  uint64_t* level_max_bytes_;
J
jorlow@chromium.org 已提交
509

510 511 512 513 514 515 516 517 518
  // record all the ongoing compactions for all levels
  std::vector<std::set<Compaction*> > compactions_in_progress_;

  // generates a increasing version number for every new version
  uint64_t current_version_number_;

  // Queue of writers to the manifest file
  std::deque<ManifestWriter*> manifest_writers_;

519 520
  // Current size of manifest file
  uint64_t manifest_file_size_;
A
Abhishek Kona 已提交
521

I
Igor Canadi 已提交
522 523
  std::vector<FileMetaData*> obsolete_files_;

524
  // storage options for all reads and writes except compactions
H
Haobo Xu 已提交
525
  const EnvOptions& storage_options_;
526 527 528

  // storage options used for compactions. This is a copy of
  // storage_options_ but with readaheads set to readahead_compactions_.
H
Haobo Xu 已提交
529
  const EnvOptions storage_options_compactions_;
530

J
jorlow@chromium.org 已提交
531 532 533
  // No copying allowed
  VersionSet(const VersionSet&);
  void operator=(const VersionSet&);
534 535

  // Return the total amount of data that is undergoing
536 537
  // compactions per level
  void SizeBeingCompacted(std::vector<uint64_t>&);
538 539

  // Returns true if any one of the parent files are being compacted
A
Abhishek Kona 已提交
540
  bool ParentRangeInCompaction(const InternalKey* smallest,
541
    const InternalKey* largest, int level, int* index);
542 543 544 545 546 547

  // Returns true if any one of the specified files are being compacted
  bool FilesInCompaction(std::vector<FileMetaData*>& files);

  void LogAndApplyHelper(Builder*b, Version* v,
                           VersionEdit* edit, port::Mutex* mu);
J
jorlow@chromium.org 已提交
548 549
};

550
}  // namespace rocksdb