Skip to content

Commit 10e03c8

Browse files
committed
Add debug info
Signed-off-by: Yang Zhang <[email protected]>
1 parent 808de9d commit 10e03c8

8 files changed

+26
-12
lines changed

include/titan/options.h

+6-5
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ struct TitanCFOptions : public ColumnFamilyOptions {
166166
// support hole punching, such as ext4, xfs, btrfs, etc.
167167
//
168168
// Default: false
169-
bool hole_punching_gc{false};
169+
bool enable_punch_hole_gc{false};
170170

171171
TitanCFOptions() = default;
172172
explicit TitanCFOptions(const ColumnFamilyOptions& options)
@@ -197,7 +197,8 @@ struct ImmutableTitanCFOptions {
197197
min_gc_batch_size(opts.min_gc_batch_size),
198198
merge_small_file_threshold(opts.merge_small_file_threshold),
199199
level_merge(opts.level_merge),
200-
skip_value_in_compaction_filter(opts.skip_value_in_compaction_filter) {}
200+
skip_value_in_compaction_filter(opts.skip_value_in_compaction_filter),
201+
enable_punch_hole_gc(opts.enable_punch_hole_gc) {}
201202

202203
uint64_t blob_file_target_size;
203204

@@ -212,6 +213,8 @@ struct ImmutableTitanCFOptions {
212213
bool level_merge;
213214

214215
bool skip_value_in_compaction_filter;
216+
217+
bool enable_punch_hole_gc;
215218
};
216219

217220
struct MutableTitanCFOptions {
@@ -221,14 +224,12 @@ struct MutableTitanCFOptions {
221224
: blob_run_mode(opts.blob_run_mode),
222225
min_blob_size(opts.min_blob_size),
223226
blob_file_compression(opts.blob_file_compression),
224-
blob_file_discardable_ratio(opts.blob_file_discardable_ratio),
225-
hole_punching_gc(opts.hole_punching_gc) {}
227+
blob_file_discardable_ratio(opts.blob_file_discardable_ratio) {}
226228

227229
TitanBlobRunMode blob_run_mode;
228230
uint64_t min_blob_size;
229231
CompressionType blob_file_compression;
230232
double blob_file_discardable_ratio;
231-
bool hole_punching_gc;
232233
};
233234

234235
struct TitanOptions : public TitanDBOptions, public TitanCFOptions {

src/blob_file_builder.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ BlobFileBuilder::BlobFileBuilder(const TitanDBOptions& db_options,
3636
#endif
3737
}
3838
// alignment_size_ = cf_options_.alignment_size;
39-
alignment_size_ = cf_options.hole_punching_gc ? 4 * 1024 : 0;
39+
alignment_size_ = cf_options.enable_punch_hole_gc ? 4 * 1024 : 0;
4040
WriteHeader();
4141
}
4242

src/blob_format.cc

+5-2
Original file line numberDiff line numberDiff line change
@@ -302,8 +302,11 @@ TitanInternalStats::StatsType BlobFileMeta::GetDiscardableRatioLevel() const {
302302
}
303303

304304
void BlobFileMeta::Dump(bool with_keys) const {
305-
fprintf(stdout, "file %" PRIu64 ", size %" PRIu64 ", level %" PRIu32,
306-
file_number_, file_size_, file_level_);
305+
fprintf(stdout,
306+
"file %" PRIu64 ", size %" PRIu64 ", level %" PRIu32
307+
"live blocks %" PRIu64 ", hole punchable blocks %" PRIu64,
308+
file_number_, file_size_, file_level_, live_blocks_.load(),
309+
hole_punchable_blocks_.load());
307310
if (with_keys) {
308311
fprintf(stdout, ", smallest key: %s, largest key: %s",
309312
Slice(smallest_key_).ToString(true /*hex*/).c_str(),

src/blob_gc_job_test.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ TEST_F(BlobGCJobTest, PunchHole) {
298298
rocksdb::SyncPoint::GetInstance()->EnableProcessing();
299299

300300
DisableMergeSmall();
301-
options_.hole_punching_gc = true;
301+
options_.enable_punch_hole_gc = true;
302302
options_.disable_background_gc = false;
303303
options_.disable_auto_compactions = false;
304304

@@ -340,7 +340,7 @@ TEST_F(BlobGCJobTest, PunchHole) {
340340
ASSERT_EQ(value, values[i]);
341341
}
342342
}
343-
options_.hole_punching_gc = false;
343+
options_.enable_punch_hole_gc = false;
344344
options_.disable_background_gc = true;
345345
options_.disable_auto_compactions = true;
346346
}

src/blob_storage.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ void BlobStorage::ComputeGCScore() {
266266
score = file.second->GetDiscardableRatio();
267267
}
268268
if (score < cf_options_.blob_file_discardable_ratio &&
269-
cf_options_.hole_punching_gc) {
269+
cf_options_.enable_punch_hole_gc) {
270270
auto punch_hole_score = file.second->GetPunchHoleScore();
271271
if (punch_hole_score > 0) {
272272
GCScore gc_score = {};

src/db_impl_gc.cc

+2
Original file line numberDiff line numberDiff line change
@@ -339,6 +339,8 @@ Status TitanDBImpl::BackgroundGC(LogBuffer* log_buffer, BlobGC* blob_gc) {
339339
// Nothing to do
340340
TITAN_LOG_BUFFER(log_buffer, "Titan GC nothing to do");
341341
} else {
342+
TITAN_LOG_BUFFER(log_buffer, "Titan GC start, using punch hole: %s",
343+
blob_gc->use_punch_hole());
342344
StopWatch gc_sw(env_->GetSystemClock().get(), statistics(stats_.get()),
343345
TITAN_GC_MICROS);
344346
BlobGCJob blob_gc_job(blob_gc, db_, &mutex_, db_options_, env_,

src/edit_collector.h

+5
Original file line numberDiff line numberDiff line change
@@ -309,6 +309,11 @@ class EditCollector {
309309
file.second);
310310
}
311311
}
312+
for (auto& file : updated_files_) {
313+
if (deleted_files_.count(file.first) == 0) {
314+
file.second->Dump(with_keys);
315+
}
316+
}
312317
}
313318

314319
private:

src/options.cc

+4-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ TitanCFOptions::TitanCFOptions(const ColumnFamilyOptions& cf_opts,
4343
merge_small_file_threshold(immutable_opts.merge_small_file_threshold),
4444
blob_run_mode(mutable_opts.blob_run_mode),
4545
skip_value_in_compaction_filter(
46-
immutable_opts.skip_value_in_compaction_filter) {}
46+
immutable_opts.skip_value_in_compaction_filter),
47+
enable_punch_hole_gc(immutable_opts.enable_punch_hole_gc) {}
4748

4849
void TitanCFOptions::Dump(Logger* logger) const {
4950
TITAN_LOG_HEADER(logger,
@@ -94,6 +95,8 @@ void TitanCFOptions::Dump(Logger* logger) const {
9495
}
9596
TITAN_LOG_HEADER(logger, "TitanCFOptions.blob_run_mode : %s",
9697
blob_run_mode_str.c_str());
98+
TITAN_LOG_HEADER(logger, "TitanCFOptions.enable_punch_hole_gc : %s",
99+
enable_punch_hole_gc ? "true" : "false");
97100
}
98101

99102
void TitanCFOptions::UpdateMutableOptions(

0 commit comments

Comments
 (0)