db_impl.h 14.7 KB
Newer Older
J
jorlow@chromium.org 已提交
1 2 3 4 5 6 7
// 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.

#ifndef STORAGE_LEVELDB_DB_DB_IMPL_H_
#define STORAGE_LEVELDB_DB_DB_IMPL_H_

H
Haobo Xu 已提交
8
#include <atomic>
9
#include <deque>
J
jorlow@chromium.org 已提交
10
#include <set>
11
#include <vector>
J
jorlow@chromium.org 已提交
12
#include "db/dbformat.h"
13
#include "db/log_file.h"
J
jorlow@chromium.org 已提交
14 15
#include "db/log_writer.h"
#include "db/snapshot.h"
16 17
#include "leveldb/db.h"
#include "leveldb/env.h"
J
jorlow@chromium.org 已提交
18
#include "port/port.h"
19
#include "util/stats_logger.h"
20
#include "memtablelist.h"
21 22 23 24 25

#ifdef USE_SCRIBE
#include "scribe/scribe_logger.h"
#endif

J
jorlow@chromium.org 已提交
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
namespace leveldb {

class MemTable;
class TableCache;
class Version;
class VersionEdit;
class VersionSet;

class DBImpl : public DB {
 public:
  DBImpl(const Options& options, const std::string& dbname);
  virtual ~DBImpl();

  // Implementations of the DB interface
  virtual Status Put(const WriteOptions&, const Slice& key, const Slice& value);
41 42
  virtual Status Merge(const WriteOptions&, const Slice& key,
                       const Slice& value);
J
jorlow@chromium.org 已提交
43 44 45 46 47
  virtual Status Delete(const WriteOptions&, const Slice& key);
  virtual Status Write(const WriteOptions& options, WriteBatch* updates);
  virtual Status Get(const ReadOptions& options,
                     const Slice& key,
                     std::string* value);
48 49 50
  virtual std::vector<Status> MultiGet(const ReadOptions& options,
                                       const std::vector<Slice>& keys,
                                       std::vector<std::string>* values);
51 52 53 54

  // Returns false if key can't exist- based on memtable, immutable-memtable and
  // bloom-filters; true otherwise. No IO is performed
  virtual bool KeyMayExist(const Slice& key);
J
jorlow@chromium.org 已提交
55 56 57
  virtual Iterator* NewIterator(const ReadOptions&);
  virtual const Snapshot* GetSnapshot();
  virtual void ReleaseSnapshot(const Snapshot* snapshot);
58
  virtual bool GetProperty(const Slice& property, std::string* value);
J
jorlow@chromium.org 已提交
59
  virtual void GetApproximateSizes(const Range* range, int n, uint64_t* sizes);
60 61
  virtual void CompactRange(const Slice* begin, const Slice* end,
                            bool reduce_level = false);
62 63 64
  virtual int NumberLevels();
  virtual int MaxMemCompactionLevel();
  virtual int Level0StopWriteTrigger();
H
heyongqiang 已提交
65
  virtual Status Flush(const FlushOptions& options);
66 67
  virtual Status DisableFileDeletions();
  virtual Status EnableFileDeletions();
68
  virtual Status GetLiveFiles(std::vector<std::string>&,
69
                              uint64_t* manifest_file_size);
70
  virtual SequenceNumber GetLatestSequenceNumber();
71
  virtual Status GetUpdatesSince(SequenceNumber seq_number,
72
                                 unique_ptr<TransactionLogIterator>* iter);
73

J
jorlow@chromium.org 已提交
74 75
  // Extra methods (for testing) that are not in the public DB interface

76
  // Compact any files in the named level that overlap [*begin, *end]
G
Gabor Cselle 已提交
77
  void TEST_CompactRange(int level, const Slice* begin, const Slice* end);
J
jorlow@chromium.org 已提交
78 79 80 81

  // Force current memtable contents to be compacted.
  Status TEST_CompactMemTable();

82 83 84 85 86 87
  // Wait for memtable compaction
  Status TEST_WaitForCompactMemTable();

  // Wait for any compaction
  Status TEST_WaitForCompact();

J
jorlow@chromium.org 已提交
88 89 90 91 92
  // Return an internal iterator over the current state of the database.
  // The keys of this iterator are internal keys (see format.h).
  // The returned iterator should be deleted when no longer needed.
  Iterator* TEST_NewInternalIterator();

93 94
  // Return the maximum overlapping data (in bytes) at next level for any
  // file at a level >= 1.
J
jorlow@chromium.org 已提交
95
  int64_t TEST_MaxNextLevelOverlappingBytes();
96

97 98 99
  // Simulate a db crash, no elegant closing of database.
  void TEST_Destroy_DBImpl();

A
Abhishek Kona 已提交
100 101
  // Return the current manifest file no.
  uint64_t TEST_Current_Manifest_FileNo();
102 103 104 105

  // Trigger's a background call for testing.
  void TEST_PurgeObsoleteteWAL();

106 107 108 109 110 111 112 113 114
  // KeyMayExist's internal function, but can be called internally from rocksdb
  // to check memtable from sequence_number=read_from_seq. This is useful to
  // check presence of key in db when key's existence is to be also checked in
  // an incompletely written WriteBatch in memtable. eg. Database doesn't have
  // key A and WriteBatch=[PutA,B; DelA]. A KeyMayExist called from DelA also
  // needs to check itself for any PutA to be sure to not drop the delete.
  bool KeyMayExistImpl(const Slice& key,
                       const SequenceNumber read_from_seq);

115
 protected:
H
heyongqiang 已提交
116 117
  Env* const env_;
  const std::string dbname_;
118
  unique_ptr<VersionSet> versions_;
H
heyongqiang 已提交
119 120 121 122 123 124
  const InternalKeyComparator internal_comparator_;
  const Options options_;  // options_.comparator == &internal_comparator_

  const Comparator* user_comparator() const {
    return internal_comparator_.user_comparator();
  }
125

126 127
  MemTable* GetMemTable() {
    return mem_;
A
Abhishek Kona 已提交
128
  }
H
heyongqiang 已提交
129

130 131 132
  Iterator* NewInternalIterator(const ReadOptions&,
                                SequenceNumber* latest_snapshot);

J
jorlow@chromium.org 已提交
133 134
 private:
  friend class DB;
135 136
  struct CompactionState;
  struct Writer;
D
Dhruba Borthakur 已提交
137
  struct DeletionState;
J
jorlow@chromium.org 已提交
138 139 140 141 142 143

  Status NewDB();

  // Recover the descriptor from persistent storage.  May do a significant
  // amount of work to recover recently logged updates.  Any changes to
  // be made to the descriptor are added to *edit.
144
  Status Recover(VersionEdit* edit, MemTable* external_table = nullptr,
H
heyongqiang 已提交
145
      bool error_if_log_file_exist = false);
J
jorlow@chromium.org 已提交
146 147 148

  void MaybeIgnoreError(Status* s) const;

149 150
  const Status CreateArchivalDirectory();

J
jorlow@chromium.org 已提交
151 152 153 154 155
  // Delete any unneeded files and stale in-memory entries.
  void DeleteObsoleteFiles();

  // Compact the in-memory write buffer to disk.  Switches to a new
  // log-file/memtable and writes a new descriptor iff successful.
156
  Status CompactMemTable(bool* madeProgress = nullptr);
J
jorlow@chromium.org 已提交
157 158 159

  Status RecoverLogFile(uint64_t log_number,
                        VersionEdit* edit,
160 161
                        SequenceNumber* max_sequence,
                        MemTable* external_table);
J
jorlow@chromium.org 已提交
162

163 164 165 166 167 168
  // The following two methods are used to flush a memtable to
  // storage. The first one is used atdatabase RecoveryTime (when the
  // database is opened) and is heavyweight because it holds the mutex
  // for the entire period. The second method WriteLevel0Table supports
  // concurrent flush memtables to storage.
  Status WriteLevel0TableForRecovery(MemTable* mem, VersionEdit* edit);
169
  Status WriteLevel0Table(std::vector<MemTable*> &mems, VersionEdit* edit,
170
                                uint64_t* filenumber);
J
jorlow@chromium.org 已提交
171

172
  Status MakeRoomForWrite(bool force /* compact even if there is room? */);
173
  WriteBatch* BuildBatchGroup(Writer** last_writer);
J
jorlow@chromium.org 已提交
174

H
heyongqiang 已提交
175 176 177 178 179 180
  // Force current memtable contents to be flushed.
  Status FlushMemTable(const FlushOptions& options);

  // Wait for memtable compaction
  Status WaitForCompactMemTable();

181
  void MaybeScheduleLogDBDeployStats();
182 183
  static void BGLogDBDeployStats(void* db);
  void LogDBDeployStats();
184

J
jorlow@chromium.org 已提交
185 186 187
  void MaybeScheduleCompaction();
  static void BGWork(void* db);
  void BackgroundCall();
188
  Status BackgroundCompaction(bool* madeProgress, DeletionState& deletion_state);
J
jorlow@chromium.org 已提交
189 190 191 192 193 194
  void CleanupCompaction(CompactionState* compact);
  Status DoCompactionWork(CompactionState* compact);

  Status OpenCompactionOutputFile(CompactionState* compact);
  Status FinishCompactionOutputFile(CompactionState* compact, Iterator* input);
  Status InstallCompactionResults(CompactionState* compact);
195 196
  void AllocateCompactionOutputFileNumbers(CompactionState* compact);
  void ReleaseCompactionUnusedFileNumbers(CompactionState* compact);
A
Abhishek Kona 已提交
197

J
jorlow@chromium.org 已提交
198

D
Dhruba Borthakur 已提交
199 200 201 202 203 204 205 206 207 208 209 210
  // Returns the list of live files in 'live' and the list
  // of all files in the filesystem in 'allfiles'.
  void FindObsoleteFiles(DeletionState& deletion_state);

  // Diffs the files listed in filenames and those that do not
  // belong to live files are posibly removed. If the removed file
  // is a sst file, then it returns the file number in files_to_evict.
  void PurgeObsoleteFiles(DeletionState& deletion_state);

  // Removes the file listed in files_to_evict from the table_cache
  void EvictObsoleteFiles(DeletionState& deletion_state);

211
  void PurgeObsoleteWALFiles();
212 213 214 215 216 217 218 219 220 221

  Status ListAllWALFiles(const std::string& path,
                         std::vector<LogFile>* logFiles,
                         WalFileType type);

  //  Find's all the log files which contain updates with seq no.
  //  Greater Than or Equal to the requested SequenceNumber
  Status FindProbableWALFiles(std::vector<LogFile>* const allLogs,
                              std::vector<LogFile>* const result,
                              const SequenceNumber target);
222 223
  //  return true if
  bool CheckFileExistsAndEmpty(const LogFile& file);
224 225 226 227

  Status ReadFirstRecord(const LogFile& file, WriteBatch* const result);

  Status ReadFirstLine(const std::string& fname, WriteBatch* const batch);
228

229 230
  void PrintStatistics();

231 232 233
  // dump leveldb.stats to LOG
  void MaybeDumpStats();

234 235 236 237 238 239 240 241
  // Return the minimum empty level that could hold the total data in the
  // input level. Return the input level, if such level could not be found.
  int FindMinimumEmptyLevelFitting(int level);

  // Move the files in the input level to the minimum level that could hold
  // the data set.
  void ReFitLevel(int level);

J
jorlow@chromium.org 已提交
242
  // Constant after construction
S
Sanjay Ghemawat 已提交
243
  const InternalFilterPolicy internal_filter_policy_;
J
jorlow@chromium.org 已提交
244 245 246
  bool owns_info_log_;

  // table_cache_ provides its own synchronization
247
  unique_ptr<TableCache> table_cache_;
J
jorlow@chromium.org 已提交
248

249
  // Lock over the persistent DB state.  Non-nullptr iff successfully acquired.
J
jorlow@chromium.org 已提交
250 251 252 253 254
  FileLock* db_lock_;

  // State below is protected by mutex_
  port::Mutex mutex_;
  port::AtomicPointer shutting_down_;
H
hans@chromium.org 已提交
255
  port::CondVar bg_cv_;          // Signalled when background work finishes
J
jorlow@chromium.org 已提交
256
  MemTable* mem_;
257
  MemTableList imm_;             // Memtable that are not changing
258
  uint64_t logfile_number_;
259
  unique_ptr<log::Writer> log_;
260

261 262
  std::string host_name_;

263 264
  // Queue of writers.
  std::deque<Writer*> writers_;
265
  WriteBatch tmp_batch_;
266

J
jorlow@chromium.org 已提交
267 268 269 270 271 272
  SnapshotList snapshots_;

  // Set of table files to protect from deletion because they are
  // part of ongoing compactions.
  std::set<uint64_t> pending_outputs_;

273 274
  // count how many background compaction been scheduled or is running?
  int bg_compaction_scheduled_;
J
jorlow@chromium.org 已提交
275

276 277 278
  // Has a background stats log thread scheduled?
  bool bg_logstats_scheduled_;

H
hans@chromium.org 已提交
279 280 281
  // Information for a manual compaction
  struct ManualCompaction {
    int level;
G
Gabor Cselle 已提交
282
    bool done;
283
    bool in_progress;           // compaction request being processed?
284 285
    const InternalKey* begin;   // nullptr means beginning of key range
    const InternalKey* end;     // nullptr means end of key range
G
Gabor Cselle 已提交
286
    InternalKey tmp_storage;    // Used to keep track of compaction progress
H
hans@chromium.org 已提交
287 288
  };
  ManualCompaction* manual_compaction_;
J
jorlow@chromium.org 已提交
289 290 291 292

  // Have we encountered a background error in paranoid mode?
  Status bg_error_;

293
  std::unique_ptr<StatsLogger> logger_;
294

295
  int64_t volatile last_log_ts;
296

297 298 299
  // shall we disable deletion of obsolete files
  bool disable_delete_obsolete_files_;

300 301 302
  // last time when DeleteObsoleteFiles was invoked
  uint64_t delete_obsolete_files_last_run_;

303 304 305
  // last time when PurgeObsoleteWALFiles ran.
  uint64_t purge_wal_files_last_run_;

306
  // last time stats were dumped to LOG
H
Haobo Xu 已提交
307
  std::atomic<uint64_t> last_stats_dump_time_microsec_;
308

M
Mark Callaghan 已提交
309 310 311 312
  // These count the number of microseconds for which MakeRoomForWrite stalls.
  uint64_t stall_level0_slowdown_;
  uint64_t stall_memtable_compaction_;
  uint64_t stall_level0_num_files_;
313
  std::vector<uint64_t> stall_leveln_slowdown_;
M
Mark Callaghan 已提交
314 315 316 317

  // Time at which this instance was started.
  const uint64_t started_at_;

318 319
  bool flush_on_destroy_; // Used when disableWAL is true.

320 321 322
  // Per level compaction stats.  stats_[level] stores the stats for
  // compactions that produced data for the specified "level".
  struct CompactionStats {
A
Abhishek Kona 已提交
323
    uint64_t micros;
M
Mark Callaghan 已提交
324 325 326 327 328 329 330 331

    // Bytes read from level N during compaction between levels N and N+1
    int64_t bytes_readn;

    // Bytes read from level N+1 during compaction between levels N and N+1
    int64_t bytes_readnp1;

    // Total bytes written during compaction between levels N and N+1
332 333
    int64_t bytes_written;

M
Mark Callaghan 已提交
334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349
    // Files read from level N during compaction between levels N and N+1
    int     files_in_leveln;

    // Files read from level N+1 during compaction between levels N and N+1
    int     files_in_levelnp1;

    // Files written during compaction between levels N and N+1
    int     files_out_levelnp1;

    // Number of compactions done
    int     count;

    CompactionStats() : micros(0), bytes_readn(0), bytes_readnp1(0),
                        bytes_written(0), files_in_leveln(0),
                        files_in_levelnp1(0), files_out_levelnp1(0),
                        count(0) { }
350 351 352

    void Add(const CompactionStats& c) {
      this->micros += c.micros;
M
Mark Callaghan 已提交
353 354
      this->bytes_readn += c.bytes_readn;
      this->bytes_readnp1 += c.bytes_readnp1;
355
      this->bytes_written += c.bytes_written;
M
Mark Callaghan 已提交
356 357 358 359
      this->files_in_leveln += c.files_in_leveln;
      this->files_in_levelnp1 += c.files_in_levelnp1;
      this->files_out_levelnp1 += c.files_out_levelnp1;
      this->count += 1;
360 361
    }
  };
M
Mark Callaghan 已提交
362

363
  std::vector<CompactionStats> stats_;
364

365 366 367 368 369 370 371 372 373 374 375 376 377
  // Used to compute per-interval statistics
  struct StatsSnapshot {
    uint64_t bytes_read_;
    uint64_t bytes_written_;
    uint64_t bytes_new_;
    double   seconds_up_;

    StatsSnapshot() : bytes_read_(0), bytes_written_(0),
                      bytes_new_(0), seconds_up_(0) {}
  };

  StatsSnapshot last_stats_;

H
heyongqiang 已提交
378
  static const int KEEP_LOG_FILE_NUM = 1000;
H
heyongqiang 已提交
379
  std::string db_absolute_path_;
H
heyongqiang 已提交
380

381 382 383
  // count of the number of contiguous delaying writes
  int delayed_writes_;

384 385 386 387
  // store the last flushed sequence.
  // Used by transaction log iterator.
  SequenceNumber last_flushed_sequence_;

388
  // The options to access storage files
H
Haobo Xu 已提交
389
  const EnvOptions storage_options_;
390

391 392 393 394 395 396
  // A value of true temporarily disables scheduling of background work
  bool bg_work_gate_closed_;

  // Guard against multiple concurrent refitting
  bool refitting_level_;

J
jorlow@chromium.org 已提交
397 398 399 400
  // No copying allowed
  DBImpl(const DBImpl&);
  void operator=(const DBImpl&);

401 402
  // dump the delayed_writes_ to the log file and reset counter.
  void DelayLoggingAndReset();
403

404 405 406 407 408 409
  // Return the earliest snapshot where seqno is visible.
  // Store the snapshot right before that, if any, in prev_snapshot
  inline SequenceNumber findEarliestVisibleSnapshot(
    SequenceNumber in,
    std::vector<SequenceNumber>& snapshots,
    SequenceNumber* prev_snapshot);
410

411
  // Function that Get and KeyMayExistImpl call with no_io true or false
412 413 414
  Status GetImpl(const ReadOptions& options,
                 const Slice& key,
                 std::string* value,
415
                 const bool no_io = false);
J
jorlow@chromium.org 已提交
416 417 418 419 420 421
};

// Sanitize db options.  The caller should delete result.info_log if
// it is not equal to src.info_log.
extern Options SanitizeOptions(const std::string& db,
                               const InternalKeyComparator* icmp,
S
Sanjay Ghemawat 已提交
422
                               const InternalFilterPolicy* ipolicy,
J
jorlow@chromium.org 已提交
423 424
                               const Options& src);

H
Hans Wennborg 已提交
425
}  // namespace leveldb
J
jorlow@chromium.org 已提交
426 427

#endif  // STORAGE_LEVELDB_DB_DB_IMPL_H_