blob: 693fc6fa9c51a12a9e99e095e183fe1a6cfd87dc [file] [log] [blame]
jorlow@chromium.orgf67e15e2011-03-18 22:37:00 +00001// 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
15#ifndef STORAGE_LEVELDB_DB_VERSION_SET_H_
16#define STORAGE_LEVELDB_DB_VERSION_SET_H_
17
18#include <map>
19#include <set>
20#include <vector>
21#include "db/dbformat.h"
22#include "db/version_edit.h"
23#include "port/port.h"
24
25namespace leveldb {
26
jorlow@chromium.orgf67e15e2011-03-18 22:37:00 +000027namespace log { class Writer; }
28
29class Compaction;
30class Iterator;
31class MemTable;
32class TableBuilder;
33class TableCache;
34class Version;
35class VersionSet;
36class WritableFile;
37
gabor@google.comccf0fcd2011-06-22 02:36:45 +000038// Return the smallest index i such that files[i]->largest >= key.
39// Return files.size() if there is no such file.
40// REQUIRES: "files" contains a sorted list of non-overlapping files.
41extern int FindFile(const InternalKeyComparator& icmp,
42 const std::vector<FileMetaData*>& files,
43 const Slice& key);
44
gabor@google.com6699c7e2011-07-15 00:20:57 +000045// Returns true iff some file in "files" overlaps the user key range
gabor@google.comccf0fcd2011-06-22 02:36:45 +000046// [smallest,largest].
47extern bool SomeFileOverlapsRange(
48 const InternalKeyComparator& icmp,
49 const std::vector<FileMetaData*>& files,
gabor@google.com6699c7e2011-07-15 00:20:57 +000050 const Slice& smallest_user_key,
51 const Slice& largest_user_key);
gabor@google.comccf0fcd2011-06-22 02:36:45 +000052
jorlow@chromium.orgf67e15e2011-03-18 22:37:00 +000053class Version {
54 public:
55 // Append to *iters a sequence of iterators that will
56 // yield the contents of this Version when merged together.
57 // REQUIRES: This version has been saved (see VersionSet::SaveTo)
58 void AddIterators(const ReadOptions&, std::vector<Iterator*>* iters);
59
gabor@google.comccf0fcd2011-06-22 02:36:45 +000060 // Lookup the value for key. If found, store it in *val and
61 // return OK. Else return a non-OK status. Fills *stats.
62 // REQUIRES: lock is not held
63 struct GetStats {
64 FileMetaData* seek_file;
65 int seek_file_level;
66 };
67 Status Get(const ReadOptions&, const LookupKey& key, std::string* val,
68 GetStats* stats);
69
70 // Adds "stats" into the current state. Returns true if a new
71 // compaction may need to be triggered, false otherwise.
72 // REQUIRES: lock is held
73 bool UpdateStats(const GetStats& stats);
74
jorlow@chromium.orgf67e15e2011-03-18 22:37:00 +000075 // Reference count management (so Versions do not disappear out from
76 // under live iterators)
77 void Ref();
78 void Unref();
79
gabor@google.comccf0fcd2011-06-22 02:36:45 +000080 // Returns true iff some file in the specified level overlaps
gabor@google.com6699c7e2011-07-15 00:20:57 +000081 // some part of [smallest_user_key,largest_user_key].
gabor@google.comccf0fcd2011-06-22 02:36:45 +000082 bool OverlapInLevel(int level,
gabor@google.com6699c7e2011-07-15 00:20:57 +000083 const Slice& smallest_user_key,
84 const Slice& largest_user_key);
gabor@google.comccf0fcd2011-06-22 02:36:45 +000085
86 int NumFiles(int level) const { return files_[level].size(); }
87
jorlow@chromium.orgf67e15e2011-03-18 22:37:00 +000088 // Return a human readable string that describes this version's contents.
89 std::string DebugString() const;
90
91 private:
92 friend class Compaction;
93 friend class VersionSet;
94
95 class LevelFileNumIterator;
96 Iterator* NewConcatenatingIterator(const ReadOptions&, int level) const;
97
98 VersionSet* vset_; // VersionSet to which this Version belongs
99 Version* next_; // Next version in linked list
dgrogan@chromium.orgda799092011-05-21 02:17:43 +0000100 Version* prev_; // Previous version in linked list
jorlow@chromium.orgf67e15e2011-03-18 22:37:00 +0000101 int refs_; // Number of live refs to this version
jorlow@chromium.orgf67e15e2011-03-18 22:37:00 +0000102
103 // List of files per level
104 std::vector<FileMetaData*> files_[config::kNumLevels];
105
gabor@google.comccf0fcd2011-06-22 02:36:45 +0000106 // Next file to compact based on seek stats.
107 FileMetaData* file_to_compact_;
108 int file_to_compact_level_;
109
jorlow@chromium.orgf67e15e2011-03-18 22:37:00 +0000110 // Level that should be compacted next and its compaction score.
111 // Score < 1 means compaction is not strictly needed. These fields
112 // are initialized by Finalize().
113 double compaction_score_;
114 int compaction_level_;
115
116 explicit Version(VersionSet* vset)
dgrogan@chromium.orgda799092011-05-21 02:17:43 +0000117 : vset_(vset), next_(this), prev_(this), refs_(0),
gabor@google.comccf0fcd2011-06-22 02:36:45 +0000118 file_to_compact_(NULL),
119 file_to_compact_level_(-1),
jorlow@chromium.orgf67e15e2011-03-18 22:37:00 +0000120 compaction_score_(-1),
121 compaction_level_(-1) {
122 }
123
124 ~Version();
125
126 // No copying allowed
127 Version(const Version&);
128 void operator=(const Version&);
129};
130
131class VersionSet {
132 public:
133 VersionSet(const std::string& dbname,
134 const Options* options,
135 TableCache* table_cache,
136 const InternalKeyComparator*);
137 ~VersionSet();
138
139 // Apply *edit to the current version to form a new descriptor that
140 // is both saved to persistent state and installed as the new
dgrogan@chromium.orgda799092011-05-21 02:17:43 +0000141 // current version.
142 Status LogAndApply(VersionEdit* edit);
jorlow@chromium.orgf67e15e2011-03-18 22:37:00 +0000143
144 // Recover the last saved descriptor from persistent storage.
dgrogan@chromium.orgf779e7a2011-04-12 19:38:58 +0000145 Status Recover();
jorlow@chromium.orgf67e15e2011-03-18 22:37:00 +0000146
147 // Save current contents to *log
148 Status WriteSnapshot(log::Writer* log);
149
150 // Return the current version.
151 Version* current() const { return current_; }
152
153 // Return the current manifest file number
154 uint64_t ManifestFileNumber() const { return manifest_file_number_; }
155
156 // Allocate and return a new file number
157 uint64_t NewFileNumber() { return next_file_number_++; }
158
159 // Return the number of Table files at the specified level.
160 int NumLevelFiles(int level) const;
161
dgrogan@chromium.orgf779e7a2011-04-12 19:38:58 +0000162 // Return the combined file size of all files at the specified level.
163 int64_t NumLevelBytes(int level) const;
164
165 // Return the last sequence number.
166 uint64_t LastSequence() const { return last_sequence_; }
167
168 // Set the last sequence number to s.
169 void SetLastSequence(uint64_t s) {
170 assert(s >= last_sequence_);
171 last_sequence_ = s;
172 }
173
174 // Return the current log file number.
175 uint64_t LogNumber() const { return log_number_; }
176
177 // Return the log file number for the log file that is currently
178 // being compacted, or zero if there is no such log file.
179 uint64_t PrevLogNumber() const { return prev_log_number_; }
180
jorlow@chromium.orgf67e15e2011-03-18 22:37:00 +0000181 // Pick level and inputs for a new compaction.
182 // Returns NULL if there is no compaction to be done.
183 // Otherwise returns a pointer to a heap-allocated object that
184 // describes the compaction. Caller should delete the result.
185 Compaction* PickCompaction();
186
187 // Return a compaction object for compacting the range [begin,end] in
188 // the specified level. Returns NULL if there is nothing in that
189 // level that overlaps the specified range. Caller should delete
190 // the result.
191 Compaction* CompactRange(
192 int level,
193 const InternalKey& begin,
194 const InternalKey& end);
195
jorlow@chromium.org13b72af2011-03-22 18:32:49 +0000196 // Return the maximum overlapping data (in bytes) at next level for any
197 // file at a level >= 1.
jorlow@chromium.org8303bb12011-03-22 23:24:02 +0000198 int64_t MaxNextLevelOverlappingBytes();
jorlow@chromium.org13b72af2011-03-22 18:32:49 +0000199
jorlow@chromium.orgf67e15e2011-03-18 22:37:00 +0000200 // 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
204 // Returns true iff some level needs a compaction.
gabor@google.comccf0fcd2011-06-22 02:36:45 +0000205 bool NeedsCompaction() const {
206 Version* v = current_;
207 return (v->compaction_score_ >= 1) || (v->file_to_compact_ != NULL);
208 }
jorlow@chromium.orgf67e15e2011-03-18 22:37:00 +0000209
210 // Add all files listed in any live version to *live.
211 // May also mutate some internal state.
212 void AddLiveFiles(std::set<uint64_t>* live);
213
214 // Return the approximate offset in the database of the data for
215 // "key" as of version "v".
216 uint64_t ApproximateOffsetOf(Version* v, const InternalKey& key);
217
dgrogan@chromium.orgda799092011-05-21 02:17:43 +0000218 // Return a human-readable short (single-line) summary of the number
219 // of files per level. Uses *scratch as backing store.
220 struct LevelSummaryStorage {
221 char buffer[100];
222 };
223 const char* LevelSummary(LevelSummaryStorage* scratch) const;
224
jorlow@chromium.orgf67e15e2011-03-18 22:37:00 +0000225 private:
226 class Builder;
227
228 friend class Compaction;
229 friend class Version;
230
dgrogan@chromium.orgda799092011-05-21 02:17:43 +0000231 void Finalize(Version* v);
jorlow@chromium.orgf67e15e2011-03-18 22:37:00 +0000232
233 void GetOverlappingInputs(
234 int level,
235 const InternalKey& begin,
236 const InternalKey& end,
237 std::vector<FileMetaData*>* inputs);
238
239 void GetRange(const std::vector<FileMetaData*>& inputs,
240 InternalKey* smallest,
241 InternalKey* largest);
242
jorlow@chromium.org13b72af2011-03-22 18:32:49 +0000243 void GetRange2(const std::vector<FileMetaData*>& inputs1,
244 const std::vector<FileMetaData*>& inputs2,
245 InternalKey* smallest,
246 InternalKey* largest);
247
248 void SetupOtherInputs(Compaction* c);
249
dgrogan@chromium.orgda799092011-05-21 02:17:43 +0000250 void AppendVersion(Version* v);
251
jorlow@chromium.orgf67e15e2011-03-18 22:37:00 +0000252 Env* const env_;
253 const std::string dbname_;
254 const Options* const options_;
255 TableCache* const table_cache_;
256 const InternalKeyComparator icmp_;
257 uint64_t next_file_number_;
258 uint64_t manifest_file_number_;
dgrogan@chromium.orgf779e7a2011-04-12 19:38:58 +0000259 uint64_t last_sequence_;
260 uint64_t log_number_;
261 uint64_t prev_log_number_; // 0 or backing store for memtable being compacted
jorlow@chromium.orgf67e15e2011-03-18 22:37:00 +0000262
263 // Opened lazily
264 WritableFile* descriptor_file_;
265 log::Writer* descriptor_log_;
dgrogan@chromium.orgda799092011-05-21 02:17:43 +0000266 Version dummy_versions_; // Head of circular doubly-linked list of versions.
267 Version* current_; // == dummy_versions_.prev_
jorlow@chromium.orgf67e15e2011-03-18 22:37:00 +0000268
jorlow@chromium.orgf67e15e2011-03-18 22:37:00 +0000269 // Per-level key at which the next compaction at that level should start.
270 // Either an empty string, or a valid InternalKey.
271 std::string compact_pointer_[config::kNumLevels];
272
273 // No copying allowed
274 VersionSet(const VersionSet&);
275 void operator=(const VersionSet&);
276};
277
278// A Compaction encapsulates information about a compaction.
279class Compaction {
280 public:
281 ~Compaction();
282
283 // Return the level that is being compacted. Inputs from "level"
284 // and "level+1" will be merged to produce a set of "level+1" files.
285 int level() const { return level_; }
286
287 // Return the object that holds the edits to the descriptor done
288 // by this compaction.
289 VersionEdit* edit() { return &edit_; }
290
291 // "which" must be either 0 or 1
292 int num_input_files(int which) const { return inputs_[which].size(); }
293
294 // Return the ith input file at "level()+which" ("which" must be 0 or 1).
295 FileMetaData* input(int which, int i) const { return inputs_[which][i]; }
296
297 // Maximum size of files to build during this compaction.
298 uint64_t MaxOutputFileSize() const { return max_output_file_size_; }
299
jorlow@chromium.org13b72af2011-03-22 18:32:49 +0000300 // Is this a trivial compaction that can be implemented by just
301 // moving a single input file to the next level (no merging or splitting)
302 bool IsTrivialMove() const;
303
jorlow@chromium.orgf67e15e2011-03-18 22:37:00 +0000304 // Add all inputs to this compaction as delete operations to *edit.
305 void AddInputDeletions(VersionEdit* edit);
306
307 // Returns true if the information we have available guarantees that
308 // the compaction is producing data in "level+1" for which no data exists
309 // in levels greater than "level+1".
310 bool IsBaseLevelForKey(const Slice& user_key);
311
jorlow@chromium.org13b72af2011-03-22 18:32:49 +0000312 // Returns true iff we should stop building the current output
dgrogan@chromium.orgda799092011-05-21 02:17:43 +0000313 // before processing "internal_key".
314 bool ShouldStopBefore(const Slice& internal_key);
jorlow@chromium.org13b72af2011-03-22 18:32:49 +0000315
jorlow@chromium.orgf67e15e2011-03-18 22:37:00 +0000316 // Release the input version for the compaction, once the compaction
317 // is successful.
318 void ReleaseInputs();
319
320 private:
321 friend class Version;
322 friend class VersionSet;
323
324 explicit Compaction(int level);
325
326 int level_;
327 uint64_t max_output_file_size_;
328 Version* input_version_;
329 VersionEdit edit_;
330
331 // Each compaction reads inputs from "level_" and "level_+1"
332 std::vector<FileMetaData*> inputs_[2]; // The two sets of inputs
333
jorlow@chromium.org13b72af2011-03-22 18:32:49 +0000334 // State used to check for number of of overlapping grandparent files
335 // (parent == level_ + 1, grandparent == level_ + 2)
336 std::vector<FileMetaData*> grandparents_;
dgrogan@chromium.orgba6dac02011-04-20 22:48:11 +0000337 size_t grandparent_index_; // Index in grandparent_starts_
jorlow@chromium.org8303bb12011-03-22 23:24:02 +0000338 bool seen_key_; // Some output key has been seen
339 int64_t overlapped_bytes_; // Bytes of overlap between current output
340 // and grandparent files
jorlow@chromium.org13b72af2011-03-22 18:32:49 +0000341
jorlow@chromium.orgf67e15e2011-03-18 22:37:00 +0000342 // State for implementing IsBaseLevelForKey
343
344 // level_ptrs_ holds indices into input_version_->levels_: our state
345 // is that we are positioned at one of the file ranges for each
346 // higher level than the ones involved in this compaction (i.e. for
347 // all L >= level_ + 2).
dgrogan@chromium.orgba6dac02011-04-20 22:48:11 +0000348 size_t level_ptrs_[config::kNumLevels];
jorlow@chromium.orgf67e15e2011-03-18 22:37:00 +0000349};
350
351}
352
353#endif // STORAGE_LEVELDB_DB_VERSION_SET_H_