compaction.cc 9.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
//  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.
//
// 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.

#include "db/compaction.h"
I
Igor Canadi 已提交
11

L
liuhuahang 已提交
12
#ifndef __STDC_FORMAT_MACROS
I
Igor Canadi 已提交
13
#define __STDC_FORMAT_MACROS
L
liuhuahang 已提交
14 15
#endif

I
Igor Canadi 已提交
16 17 18
#include <inttypes.h>
#include <vector>

I
Igor Canadi 已提交
19
#include "db/column_family.h"
I
Igor Canadi 已提交
20
#include "util/logging.h"
21 22 23

namespace rocksdb {

M
miguelportilla 已提交
24
uint64_t TotalFileSize(const std::vector<FileMetaData*>& files) {
25 26
  uint64_t sum = 0;
  for (size_t i = 0; i < files.size() && files[i]; i++) {
27
    sum += files[i]->fd.GetFileSize();
28 29 30 31
  }
  return sum;
}

32
Compaction::Compaction(Version* input_version, int start_level, int out_level,
33 34
                       uint64_t target_file_size,
                       uint64_t max_grandparent_overlap_bytes,
35
                       uint32_t output_path_id,
36
                       CompressionType output_compression, bool seek_compaction,
I
Igor Canadi 已提交
37
                       bool deletion_compaction)
38 39
    : start_level_(start_level),
      output_level_(out_level),
40
      max_output_file_size_(target_file_size),
I
Igor Canadi 已提交
41
      max_grandparent_overlap_bytes_(max_grandparent_overlap_bytes),
42 43
      input_version_(input_version),
      number_levels_(input_version_->NumberLevels()),
I
Igor Canadi 已提交
44
      cfd_(input_version_->cfd_),
45
      output_path_id_(output_path_id),
46
      output_compression_(output_compression),
47
      seek_compaction_(seek_compaction),
I
Igor Canadi 已提交
48
      deletion_compaction_(deletion_compaction),
49 50 51 52 53 54 55 56
      grandparent_index_(0),
      seen_key_(false),
      overlapped_bytes_(0),
      base_index_(-1),
      parent_index_(-1),
      score_(0),
      bottommost_level_(false),
      is_full_compaction_(false),
57
      is_manual_compaction_(false),
58 59
      level_ptrs_(std::vector<size_t>(number_levels_)) {

60
  cfd_->Ref();
61 62
  input_version_->Ref();
  edit_ = new VersionEdit();
I
Igor Canadi 已提交
63
  edit_->SetColumnFamily(cfd_->GetID());
64 65 66
  for (int i = 0; i < number_levels_; i++) {
    level_ptrs_[i] = 0;
  }
67
  int num_levels = output_level_ - start_level_ + 1;
68
  input_levels_.resize(num_levels);
69 70 71
  inputs_.resize(num_levels);
  for (int i = 0; i < num_levels; ++i) {
    inputs_[i].level = start_level_ + i;
72
  }
73 74 75 76 77 78 79
}

Compaction::~Compaction() {
  delete edit_;
  if (input_version_ != nullptr) {
    input_version_->Unref();
  }
80 81 82 83 84
  if (cfd_ != nullptr) {
    if (cfd_->Unref()) {
      delete cfd_;
    }
  }
85 86
}

F
Feng Zhu 已提交
87
void Compaction::GenerateFileLevels() {
88 89
  input_levels_.resize(num_input_levels());
  for (int which = 0; which < num_input_levels(); which++) {
90
    DoGenerateFileLevel(&input_levels_[which], inputs_[which].files, &arena_);
F
Feng Zhu 已提交
91 92 93
  }
}

94 95 96 97
bool Compaction::IsTrivialMove() const {
  // Avoid a move if there is lots of overlapping grandparent data.
  // Otherwise, the move could create a parent file that will require
  // a very expensive merge later on.
98 99 100 101
  // If start_level_== output_level_, the purpose is to force compaction
  // filter to be applied to that level, and thus cannot be a trivia move.
  return (start_level_ != output_level_ &&
          num_input_levels() == 2 &&
102 103
          num_input_files(0) == 1 &&
          num_input_files(1) == 0 &&
I
Igor Canadi 已提交
104
          TotalFileSize(grandparents_) <= max_grandparent_overlap_bytes_);
105 106 107
}

void Compaction::AddInputDeletions(VersionEdit* edit) {
108
  for (int which = 0; which < num_input_levels(); which++) {
109
    for (size_t i = 0; i < inputs_[which].size(); i++) {
110
      edit->DeleteFile(level(which), inputs_[which][i]->fd.GetNumber());
111 112 113 114
    }
  }
}

115
bool Compaction::KeyNotExistsBeyondOutputLevel(const Slice& user_key) {
116 117
  assert(cfd_->ioptions()->compaction_style != kCompactionStyleFIFO);
  if (cfd_->ioptions()->compaction_style == kCompactionStyleUniversal) {
118 119 120
    return bottommost_level_;
  }
  // Maybe use binary search to find right entry instead of linear search?
I
Igor Canadi 已提交
121
  const Comparator* user_cmp = cfd_->user_comparator();
122
  for (int lvl = output_level_ + 1; lvl < number_levels_; lvl++) {
123 124 125 126 127 128
    const std::vector<FileMetaData*>& files = input_version_->files_[lvl];
    for (; level_ptrs_[lvl] < files.size(); ) {
      FileMetaData* f = files[level_ptrs_[lvl]];
      if (user_cmp->Compare(user_key, f->largest.user_key()) <= 0) {
        // We've advanced far enough
        if (user_cmp->Compare(user_key, f->smallest.user_key()) >= 0) {
129 130
          // Key falls in this file's range, so definitely
          // exists beyond output level
131 132 133 134 135 136 137 138 139 140 141 142
          return false;
        }
        break;
      }
      level_ptrs_[lvl]++;
    }
  }
  return true;
}

bool Compaction::ShouldStopBefore(const Slice& internal_key) {
  // Scan to find earliest grandparent file that contains key.
I
Igor Canadi 已提交
143
  const InternalKeyComparator* icmp = &cfd_->internal_comparator();
144 145 146 147
  while (grandparent_index_ < grandparents_.size() &&
      icmp->Compare(internal_key,
                    grandparents_[grandparent_index_]->largest.Encode()) > 0) {
    if (seen_key_) {
148
      overlapped_bytes_ += grandparents_[grandparent_index_]->fd.GetFileSize();
149 150 151 152 153 154 155 156 157
    }
    assert(grandparent_index_ + 1 >= grandparents_.size() ||
           icmp->Compare(grandparents_[grandparent_index_]->largest.Encode(),
                         grandparents_[grandparent_index_+1]->smallest.Encode())
                         < 0);
    grandparent_index_++;
  }
  seen_key_ = true;

I
Igor Canadi 已提交
158
  if (overlapped_bytes_ > max_grandparent_overlap_bytes_) {
159 160 161 162 163 164 165 166 167
    // Too much overlap for current output; start new output
    overlapped_bytes_ = 0;
    return true;
  } else {
    return false;
  }
}

// Mark (or clear) each file that is being compacted
168 169
void Compaction::MarkFilesBeingCompacted(bool mark_as_compacted) {
  for (int i = 0; i < num_input_levels(); i++) {
170
    for (unsigned int j = 0; j < inputs_[i].size(); j++) {
171 172 173
      assert(mark_as_compacted ? !inputs_[i][j]->being_compacted :
                                  inputs_[i][j]->being_compacted);
      inputs_[i][j]->being_compacted = mark_as_compacted;
174 175 176 177 178
    }
  }
}

// Is this compaction producing files at the bottommost level?
179
void Compaction::SetupBottomMostLevel(bool is_manual) {
180 181
  assert(cfd_->ioptions()->compaction_style != kCompactionStyleFIFO);
  if (cfd_->ioptions()->compaction_style == kCompactionStyleUniversal) {
182 183 184 185 186 187
    // If universal compaction style is used and manual
    // compaction is occuring, then we are guaranteed that
    // all files will be picked in a single compaction
    // run. We can safely set bottommost_level_ = true.
    // If it is not manual compaction, then bottommost_level_
    // is already set when the Compaction was created.
188
    if (is_manual) {
189 190 191 192 193
      bottommost_level_ = true;
    }
    return;
  }
  bottommost_level_ = true;
194 195
  // checks whether there are files living beyond the output_level.
  for (int i = output_level_ + 1; i < number_levels_; i++) {
196 197 198 199 200 201 202 203 204 205 206 207
    if (input_version_->NumLevelFiles(i) > 0) {
      bottommost_level_ = false;
      break;
    }
  }
}

void Compaction::ReleaseInputs() {
  if (input_version_ != nullptr) {
    input_version_->Unref();
    input_version_ = nullptr;
  }
208 209 210 211 212 213
  if (cfd_ != nullptr) {
    if (cfd_->Unref()) {
      delete cfd_;
    }
    cfd_ = nullptr;
  }
214 215
}

I
Igor Canadi 已提交
216 217 218 219
void Compaction::ReleaseCompactionFiles(Status status) {
  cfd_->compaction_picker()->ReleaseCompactionFiles(this, status);
}

220
void Compaction::ResetNextCompactionIndex() {
221
  input_version_->ResetNextCompactionIndex(start_level_);
222 223
}

I
Igor Canadi 已提交
224 225 226
namespace {
int InputSummary(const std::vector<FileMetaData*>& files, char* output,
                 int len) {
227
  *output = '\0';
228 229 230
  int write = 0;
  for (unsigned int i = 0; i < files.size(); i++) {
    int sz = len - write;
M
Mike Lin 已提交
231 232
    int ret;
    char sztxt[16];
233 234 235
    AppendHumanBytes(files.at(i)->fd.GetFileSize(), sztxt, 16);
    ret = snprintf(output + write, sz, "%" PRIu64 "(%s) ",
                   files.at(i)->fd.GetNumber(), sztxt);
I
Igor Canadi 已提交
236
    if (ret < 0 || ret >= sz) break;
237 238
    write += ret;
  }
I
Igor Canadi 已提交
239 240
  // if files.size() is non-zero, overwrite the last space
  return write - !!files.size();
241
}
I
Igor Canadi 已提交
242
}  // namespace
243 244

void Compaction::Summary(char* output, int len) {
I
Igor Canadi 已提交
245 246 247
  int write =
      snprintf(output, len, "Base version %" PRIu64
                            " Base level %d, seek compaction:%d, inputs: [",
248 249
               input_version_->GetVersionNumber(),
               start_level_, seek_compaction_);
250
  if (write < 0 || write >= len) {
251 252 253
    return;
  }

254 255 256 257 258 259 260 261 262 263 264
  for (int level = 0; level < num_input_levels(); ++level) {
    if (level > 0) {
      write += snprintf(output + write, len - write, "], [");
      if (write < 0 || write >= len) {
        return;
      }
    }
    write += InputSummary(inputs_[level].files, output + write, len - write);
    if (write < 0 || write >= len) {
      return;
    }
265 266
  }

I
Igor Canadi 已提交
267
  snprintf(output + write, len - write, "]");
268 269
}

270 271 272
uint64_t Compaction::OutputFilePreallocationSize() {
  uint64_t preallocation_size = 0;

273
  if (cfd_->ioptions()->compaction_style == kCompactionStyleLevel) {
274 275 276
    preallocation_size =
        cfd_->compaction_picker()->MaxFileSizeForLevel(output_level());
  } else {
277 278 279 280
    for (int level = 0; level < num_input_levels(); ++level) {
      for (const auto& f : inputs_[level].files) {
        preallocation_size += f->fd.GetFileSize();
      }
281 282 283 284 285 286 287
    }
  }
  // Over-estimate slightly so we don't end up just barely crossing
  // the threshold
  return preallocation_size * 1.1;
}

288
}  // namespace rocksdb