version_set.h 17.7 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>
26
#include <atomic>
27
#include <limits>
J
jorlow@chromium.org 已提交
28 29 30
#include "db/dbformat.h"
#include "db/version_edit.h"
#include "port/port.h"
31
#include "db/table_cache.h"
32
#include "db/compaction.h"
I
Igor Canadi 已提交
33
#include "db/compaction_picker.h"
I
Igor Canadi 已提交
34 35
#include "db/column_family.h"
#include "db/log_reader.h"
J
jorlow@chromium.org 已提交
36

37
namespace rocksdb {
J
jorlow@chromium.org 已提交
38 39 40 41

namespace log { class Writer; }

class Compaction;
I
Igor Canadi 已提交
42
class CompactionPicker;
J
jorlow@chromium.org 已提交
43 44 45 46
class Iterator;
class MemTable;
class Version;
class VersionSet;
47
class MergeContext;
I
Igor Canadi 已提交
48
class ColumnFamilyData;
I
Igor Canadi 已提交
49
class ColumnFamilySet;
50
class LookupKey;
J
jorlow@chromium.org 已提交
51

52 53 54 55 56 57 58
// 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);

59
// Returns true iff some file in "files" overlaps the user key range
G
Gabor Cselle 已提交
60
// [*smallest,*largest].
A
Abhishek Kona 已提交
61 62
// 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 已提交
63 64
// REQUIRES: If disjoint_sorted_files, files[] contains disjoint ranges
//           in sorted order.
65 66
extern bool SomeFileOverlapsRange(
    const InternalKeyComparator& icmp,
G
Gabor Cselle 已提交
67
    bool disjoint_sorted_files,
68
    const std::vector<FileMetaData*>& files,
G
Gabor Cselle 已提交
69 70
    const Slice* smallest_user_key,
    const Slice* largest_user_key);
71

J
jorlow@chromium.org 已提交
72 73 74 75 76
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 已提交
77
  void AddIterators(const ReadOptions&, const EnvOptions& soptions,
78
                    std::vector<Iterator*>* iters);
J
jorlow@chromium.org 已提交
79

80 81
  // Lookup the value for key.  If found, store it in *val and
  // return OK.  Else return a non-OK status.  Fills *stats.
82
  // Uses *operands to store merge_operator operations to apply later
83 84 85 86 87
  // REQUIRES: lock is not held
  struct GetStats {
    FileMetaData* seek_file;
    int seek_file_level;
  };
88
  void Get(const ReadOptions&, const LookupKey& key, std::string* val,
89
           Status* status, MergeContext* merge_context,
K
kailiu 已提交
90 91
           GetStats* stats, const Options& db_option,
           bool* value_found = nullptr);
92 93 94 95 96 97

  // 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);

98 99 100 101 102
  // Updates internal structures that keep track of compaction scores
  // We use compaction scores to figure out which compaction to do next
  // Also pre-sorts level0 files for Get()
  void Finalize(std::vector<uint64_t>& size_being_compacted);

J
jorlow@chromium.org 已提交
103 104 105
  // Reference count management (so Versions do not disappear out from
  // under live iterators)
  void Ref();
106 107 108
  // Decrease reference count. Delete the object if no reference left
  // and return true. Otherwise, return false.
  bool Unref();
J
jorlow@chromium.org 已提交
109

110 111 112 113 114 115 116 117 118
  // Returns true iff some level needs a compaction.
  bool NeedsCompaction() const;

  // Returns the maxmimum compaction score for levels 1 to max
  double MaxCompactionScore() const { return max_compaction_score_; }

  // See field declaration
  int MaxCompactionScoreLevel() const { return max_compaction_score_level_; }

G
Gabor Cselle 已提交
119 120
  void GetOverlappingInputs(
      int level,
A
Abhishek Kona 已提交
121 122
      const InternalKey* begin,         // nullptr means before all keys
      const InternalKey* end,           // nullptr means after all keys
123 124
      std::vector<FileMetaData*>* inputs,
      int hint_index = -1,              // index of overlap file
A
Abhishek Kona 已提交
125
      int* file_index = nullptr);          // return index of overlap file
G
Gabor Cselle 已提交
126

127 128
  void GetOverlappingInputsBinarySearch(
      int level,
A
Abhishek Kona 已提交
129 130
      const Slice& begin,         // nullptr means before all keys
      const Slice& end,           // nullptr means after all keys
131 132 133
      std::vector<FileMetaData*>* inputs,
      int hint_index,             // index of overlap file
      int* file_index);           // return index of overlap file
134 135 136

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

142
  // Returns true iff some file in the specified level overlaps
G
Gabor Cselle 已提交
143 144 145
  // 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.
146
  bool OverlapInLevel(int level,
G
Gabor Cselle 已提交
147 148 149
                      const Slice* smallest_user_key,
                      const Slice* largest_user_key);

150 151 152 153 154 155 156 157
  // 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 已提交
158 159 160 161
  // 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);
162

163 164 165 166
  int NumberLevels() const { return num_levels_; }

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

168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189
  // 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);
190

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

194
  // Returns the version nuber of this version
195
  uint64_t GetVersionNumber() const { return version_number_; }
196

197 198 199 200 201 202
  // REQUIRES: lock is held
  // On success, *props will be populated with all SSTables' table properties.
  // The keys of `props` are the sst file name, the values of `props` are the
  // tables' propertis, represented as shared_ptr.
  Status GetPropertiesOfAllTables(TablePropertiesCollection* props);

203 204 205 206 207
  // used to sort files by size
  struct Fsize {
    int index;
    FileMetaData* file;
  };
208

J
jorlow@chromium.org 已提交
209 210 211
 private:
  friend class Compaction;
  friend class VersionSet;
212
  friend class DBImpl;
I
Igor Canadi 已提交
213
  friend class ColumnFamilyData;
I
Igor Canadi 已提交
214 215 216
  friend class CompactionPicker;
  friend class LevelCompactionPicker;
  friend class UniversalCompactionPicker;
J
jorlow@chromium.org 已提交
217 218

  class LevelFileNumIterator;
219
  Iterator* NewConcatenatingIterator(const ReadOptions&,
H
Haobo Xu 已提交
220
                                     const EnvOptions& soptions,
221
                                     int level) const;
T
Tyler Harter 已提交
222 223
  bool PrefixMayMatch(const ReadOptions& options, const EnvOptions& soptions,
                      const Slice& internal_prefix, Iterator* level_iter) const;
J
jorlow@chromium.org 已提交
224

225 226 227 228
  // 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();

229
  ColumnFamilyData* cfd_;  // ColumnFamilyData to which this Version belongs
J
jorlow@chromium.org 已提交
230 231
  VersionSet* vset_;            // VersionSet to which this Version belongs
  Version* next_;               // Next version in linked list
232
  Version* prev_;               // Previous version in linked list
J
jorlow@chromium.org 已提交
233
  int refs_;                    // Number of live refs to this version
234
  int num_levels_;              // Number of levels
J
jorlow@chromium.org 已提交
235

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

A
Abhishek Kona 已提交
240 241
  // A list for the same set of files that are stored in files_,
  // but files in each level are now sorted based on file
242 243
  // size. The file with the largest size is at the front.
  // This vector stores the index of the file from files_.
I
Igor Canadi 已提交
244
  std::vector<std::vector<int>> files_by_size_;
245

246 247 248 249 250 251 252 253 254 255 256
  // 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;

257 258 259 260
  // Next file to compact based on seek stats.
  FileMetaData* file_to_compact_;
  int file_to_compact_level_;

J
jorlow@chromium.org 已提交
261 262 263
  // Level that should be compacted next and its compaction score.
  // Score < 1 means compaction is not strictly needed.  These fields
  // are initialized by Finalize().
264 265 266 267
  // 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_;
268
  double max_compaction_score_; // max score in l1 to ln-1
269
  int max_compaction_score_level_; // level on which max score occurs
J
jorlow@chromium.org 已提交
270

271 272 273 274
  // A version number that uniquely represents this version. This is
  // used for debugging and logging purposes only.
  uint64_t version_number_;

275
  Version(ColumnFamilyData* cfd, VersionSet* vset, uint64_t version_number = 0);
J
jorlow@chromium.org 已提交
276 277 278

  ~Version();

279 280 281 282
  // 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 已提交
283
  }
284

J
jorlow@chromium.org 已提交
285 286 287 288 289 290 291
  // No copying allowed
  Version(const Version&);
  void operator=(const Version&);
};

class VersionSet {
 public:
I
Igor Canadi 已提交
292
  VersionSet(const std::string& dbname, const DBOptions* options,
I
Igor Canadi 已提交
293
             const EnvOptions& storage_options, Cache* table_cache);
J
jorlow@chromium.org 已提交
294 295 296 297
  ~VersionSet();

  // Apply *edit to the current version to form a new descriptor that
  // is both saved to persistent state and installed as the new
298
  // current version.  Will release *mu while actually writing to the file.
299
  // column_family_options has to be set if edit is column family add
300 301
  // REQUIRES: *mu is held on entry.
  // REQUIRES: no other thread concurrently calls LogAndApply()
302 303
  Status LogAndApply(ColumnFamilyData* column_family_data, VersionEdit* edit,
                     port::Mutex* mu, Directory* db_directory = nullptr,
304 305 306
                     bool new_descriptor_log = false,
                     const ColumnFamilyOptions* column_family_options =
                         nullptr);
307

J
jorlow@chromium.org 已提交
308
  // Recover the last saved descriptor from persistent storage.
I
Igor Canadi 已提交
309 310 311 312 313 314
  Status Recover(const std::vector<ColumnFamilyDescriptor>& column_families);

  // Reads a manifest file and returns a list of column families in
  // column_families.
  static Status ListColumnFamilies(std::vector<std::string>* column_families,
                                   const std::string& dbname, Env* env);
J
jorlow@chromium.org 已提交
315

316 317 318
  // 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.
319 320 321
  // The call is static, since number of levels is immutable during
  // the lifetime of a RocksDB instance. It reduces number of levels
  // in a DB by applying changes to manifest.
322 323 324
  // 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.
325 326 327 328
  static Status ReduceNumberOfLevels(const std::string& dbname,
                                     const Options* options,
                                     const EnvOptions& storage_options,
                                     int new_levels);
329

J
jorlow@chromium.org 已提交
330 331 332 333 334 335
  // 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 已提交
336 337 338 339 340 341 342 343 344
  // 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;
    }
  }

345
  // Return the last sequence number.
I
Igor Canadi 已提交
346 347 348
  uint64_t LastSequence() const {
    return last_sequence_.load(std::memory_order_acquire);
  }
349 350 351 352

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

356 357 358
  // Mark the specified file number as used.
  void MarkFileNumberUsed(uint64_t number);

359 360 361 362
  // 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_; }

363 364 365
  // Returns the minimum log number such that all
  // log numbers less than or equal to it can be deleted
  uint64_t MinLogNumber() const {
366
    uint64_t min_log_num = std::numeric_limits<uint64_t>::max();
367
    for (auto cfd : *column_family_set_) {
368
      if (min_log_num > cfd->GetLogNumber()) {
369
        min_log_num = cfd->GetLogNumber();
370 371 372 373 374
      }
    }
    return min_log_num;
  }

J
jorlow@chromium.org 已提交
375 376 377 378 379
  // 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);

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

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

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

390
  // Return the size of the current manifest file
391
  uint64_t ManifestFileSize() const { return manifest_file_size_; }
392 393 394 395 396 397 398

  // 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);

399
  Status GetMetadataForFile(uint64_t number, int* filelevel,
400
                            FileMetaData** metadata, ColumnFamilyData** cfd);
401 402 403 404

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

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

I
Igor Canadi 已提交
407
  ColumnFamilySet* GetColumnFamilySet() { return column_family_set_.get(); }
408

J
jorlow@chromium.org 已提交
409 410
 private:
  class Builder;
411
  struct ManifestWriter;
J
jorlow@chromium.org 已提交
412 413 414

  friend class Version;

I
Igor Canadi 已提交
415 416 417 418 419 420 421
  struct LogReporter : public log::Reader::Reporter {
    Status* status;
    virtual void Corruption(size_t bytes, const Status& s) {
      if (this->status->ok()) *this->status = s;
    }
  };

422 423 424
  // Save current contents to *log
  Status WriteSnapshot(log::Writer* log);

425
  void AppendVersion(ColumnFamilyData* column_family_data, Version* v);
426

427 428
  bool ManifestContains(const std::string& record) const;

429 430 431
  ColumnFamilyData* CreateColumnFamily(const ColumnFamilyOptions& options,
                                       VersionEdit* edit);

I
Igor Canadi 已提交
432 433
  std::unique_ptr<ColumnFamilySet> column_family_set_;

J
jorlow@chromium.org 已提交
434 435
  Env* const env_;
  const std::string dbname_;
I
Igor Canadi 已提交
436
  const DBOptions* const options_;
J
jorlow@chromium.org 已提交
437 438
  uint64_t next_file_number_;
  uint64_t manifest_file_number_;
I
Igor Canadi 已提交
439
  std::atomic<uint64_t> last_sequence_;
440
  uint64_t prev_log_number_;  // 0 or backing store for memtable being compacted
J
jorlow@chromium.org 已提交
441 442

  // Opened lazily
443
  unique_ptr<log::Writer> descriptor_log_;
J
jorlow@chromium.org 已提交
444

445 446 447 448 449 450
  // 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_;

451
  // Current size of manifest file
452
  uint64_t manifest_file_size_;
A
Abhishek Kona 已提交
453

I
Igor Canadi 已提交
454 455
  std::vector<FileMetaData*> obsolete_files_;

456
  // storage options for all reads and writes except compactions
H
Haobo Xu 已提交
457
  const EnvOptions& storage_options_;
458 459 460

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

J
jorlow@chromium.org 已提交
463 464 465
  // No copying allowed
  VersionSet(const VersionSet&);
  void operator=(const VersionSet&);
466

467 468
  void LogAndApplyHelper(ColumnFamilyData* cfd, Builder* b, Version* v,
                         VersionEdit* edit, port::Mutex* mu);
J
jorlow@chromium.org 已提交
469 470
};

471
}  // namespace rocksdb