Support purging logs from separate log directory

Summary:
1. Support purging info logs from a separate paths from DB path. Refactor the codes of generating info log prefixes so that it can be called when generating new files and scanning log directory.
2. Fix the bug of not scanning multiple DB paths (should only impact multiple DB paths)

Test Plan:
Add unit test for generating and parsing info log files
Add end-to-end test in db_test

Reviewers: yhchiang, ljin

Reviewed By: ljin

Subscribers: leveldb, igor, dhruba

Differential Revision: https://reviews.facebook.net/D21801
main
sdong 10 years ago
parent 2da53b1e06
commit 58b0f9d890
  1. 28
      db/db_impl.cc
  2. 31
      db/db_test.cc
  3. 63
      db/filename.cc
  4. 19
      db/filename.h
  5. 62
      db/filename_test.cc

@ -585,7 +585,8 @@ void DBImpl::FindObsoleteFiles(DeletionState& deletion_state,
// set of all files in the directory. We'll exclude files that are still // set of all files in the directory. We'll exclude files that are still
// alive in the subsequent processings. // alive in the subsequent processings.
std::vector<std::string> files; std::vector<std::string> files;
env_->GetChildren(dbname_, &files); // Ignore errors env_->GetChildren(options_.db_paths[path_id].path,
&files); // Ignore errors
for (std::string file : files) { for (std::string file : files) {
deletion_state.candidate_files.emplace_back(file, path_id); deletion_state.candidate_files.emplace_back(file, path_id);
} }
@ -599,6 +600,14 @@ void DBImpl::FindObsoleteFiles(DeletionState& deletion_state,
deletion_state.candidate_files.emplace_back(log_file, 0); deletion_state.candidate_files.emplace_back(log_file, 0);
} }
} }
// Add info log files in db_log_dir
if (!options_.db_log_dir.empty() && options_.db_log_dir != dbname_) {
std::vector<std::string> info_log_files;
env_->GetChildren(options_.db_log_dir, &info_log_files); // Ignore errors
for (std::string log_file : info_log_files) {
deletion_state.candidate_files.emplace_back(log_file, 0);
}
}
} }
} }
@ -665,14 +674,14 @@ void DBImpl::PurgeObsoleteFiles(DeletionState& state) {
candidate_files.end()); candidate_files.end());
std::vector<std::string> old_info_log_files; std::vector<std::string> old_info_log_files;
InfoLogPrefix info_log_prefix(!options_.db_log_dir.empty(), dbname_);
for (const auto& candidate_file : candidate_files) { for (const auto& candidate_file : candidate_files) {
std::string to_delete = candidate_file.file_name; std::string to_delete = candidate_file.file_name;
uint32_t path_id = candidate_file.path_id; uint32_t path_id = candidate_file.path_id;
uint64_t number; uint64_t number;
FileType type; FileType type;
// Ignore file if we cannot recognize it. // Ignore file if we cannot recognize it.
if (!ParseFileName(to_delete, &number, &type)) { if (!ParseFileName(to_delete, &number, info_log_prefix.prefix, &type)) {
continue; continue;
} }
@ -747,16 +756,17 @@ void DBImpl::PurgeObsoleteFiles(DeletionState& state) {
// Delete old info log files. // Delete old info log files.
size_t old_info_log_file_count = old_info_log_files.size(); size_t old_info_log_file_count = old_info_log_files.size();
// NOTE: Currently we only support log purge when options_.db_log_dir is if (old_info_log_file_count >= options_.keep_log_file_num) {
// located in `dbname` directory.
if (old_info_log_file_count >= options_.keep_log_file_num &&
options_.db_log_dir.empty()) {
std::sort(old_info_log_files.begin(), old_info_log_files.end()); std::sort(old_info_log_files.begin(), old_info_log_files.end());
size_t end = old_info_log_file_count - options_.keep_log_file_num; size_t end = old_info_log_file_count - options_.keep_log_file_num;
for (unsigned int i = 0; i <= end; i++) { for (unsigned int i = 0; i <= end; i++) {
std::string& to_delete = old_info_log_files.at(i); std::string& to_delete = old_info_log_files.at(i);
Log(options_.info_log, "Delete info log file %s\n", to_delete.c_str()); std::string full_path_to_delete =
Status s = env_->DeleteFile(dbname_ + "/" + to_delete); (options_.db_log_dir.empty() ? dbname_ : options_.db_log_dir) + "/" +
to_delete;
Log(options_.info_log, "Delete info log file %s\n",
full_path_to_delete.c_str());
Status s = env_->DeleteFile(full_path_to_delete);
if (!s.ok()) { if (!s.ok()) {
Log(options_.info_log, "Delete info log file %s FAILED -- %s\n", Log(options_.info_log, "Delete info log file %s FAILED -- %s\n",
to_delete.c_str(), s.ToString().c_str()); to_delete.c_str(), s.ToString().c_str());

@ -6054,6 +6054,37 @@ TEST(DBTest, WALArchivalSizeLimit) {
} while (ChangeCompactOptions()); } while (ChangeCompactOptions());
} }
TEST(DBTest, PurgeInfoLogs) {
Options options = CurrentOptions();
options.keep_log_file_num = 5;
options.create_if_missing = true;
for (int mode = 0; mode <= 1; mode++) {
if (mode == 1) {
options.db_log_dir = dbname_ + "_logs";
env_->CreateDirIfMissing(options.db_log_dir);
} else {
options.db_log_dir = "";
}
for (int i = 0; i < 8; i++) {
Reopen(&options);
}
std::vector<std::string> files;
env_->GetChildren(options.db_log_dir.empty() ? dbname_ : options.db_log_dir,
&files);
int info_log_count = 0;
for (std::string file : files) {
if (file.find("LOG") != std::string::npos) {
if (mode == 1) {
env_->DeleteFile(options.db_log_dir + "/" + file);
}
info_log_count++;
}
}
ASSERT_EQ(5, info_log_count);
}
}
namespace { namespace {
SequenceNumber ReadRecords( SequenceNumber ReadRecords(
std::unique_ptr<TransactionLogIterator>& iter, std::unique_ptr<TransactionLogIterator>& iter,

@ -20,14 +20,16 @@
namespace rocksdb { namespace rocksdb {
// Given a path, flatten the path name by replacing all chars not in // Given a path, flatten the path name by replacing all chars not in
// {[0-9,a-z,A-Z,-,_,.]} with _. And append '\0' at the end. // {[0-9,a-z,A-Z,-,_,.]} with _. And append '_LOG\0' at the end.
// Return the number of chars stored in dest not including the trailing '\0'. // Return the number of chars stored in dest not including the trailing '\0'.
static int FlattenPath(const std::string& path, char* dest, int len) { static size_t GetInfoLogPrefix(const std::string& path, char* dest, int len) {
int write_idx = 0; const char suffix[] = "_LOG";
int i = 0;
int src_len = path.size();
while (i < src_len && write_idx < len - 1) { size_t write_idx = 0;
size_t i = 0;
size_t src_len = path.size();
while (i < src_len && write_idx < len - sizeof(suffix)) {
if ((path[i] >= 'a' && path[i] <= 'z') || if ((path[i] >= 'a' && path[i] <= 'z') ||
(path[i] >= '0' && path[i] <= '9') || (path[i] >= '0' && path[i] <= '9') ||
(path[i] >= 'A' && path[i] <= 'Z') || (path[i] >= 'A' && path[i] <= 'Z') ||
@ -41,8 +43,10 @@ static int FlattenPath(const std::string& path, char* dest, int len) {
} }
i++; i++;
} }
assert(sizeof(suffix) <= len - write_idx);
dest[write_idx] = '\0'; // "\0" is automatically added by snprintf
snprintf(dest + write_idx, len - write_idx, suffix);
write_idx += sizeof(suffix) - 1;
return write_idx; return write_idx;
} }
@ -118,14 +122,26 @@ std::string TempFileName(const std::string& dbname, uint64_t number) {
return MakeFileName(dbname, number, "dbtmp"); return MakeFileName(dbname, number, "dbtmp");
} }
InfoLogPrefix::InfoLogPrefix(bool has_log_dir,
const std::string& db_absolute_path) {
if (!has_log_dir) {
const char kInfoLogPrefix[] = "LOG";
// "\0" is automatically added to the end
snprintf(buf, sizeof(buf), kInfoLogPrefix);
prefix = Slice(buf, sizeof(kInfoLogPrefix) - 1);
} else {
size_t len = GetInfoLogPrefix(db_absolute_path, buf, sizeof(buf));
prefix = Slice(buf, len);
}
}
std::string InfoLogFileName(const std::string& dbname, std::string InfoLogFileName(const std::string& dbname,
const std::string& db_path, const std::string& log_dir) { const std::string& db_path, const std::string& log_dir) {
if (log_dir.empty()) if (log_dir.empty())
return dbname + "/LOG"; return dbname + "/LOG";
char flatten_db_path[256]; InfoLogPrefix info_log_prefix(true, db_path);
FlattenPath(db_path, flatten_db_path, 256); return log_dir + "/" + info_log_prefix.buf;
return log_dir + "/" + flatten_db_path + "_LOG";
} }
// Return the name of the old info log file for "dbname". // Return the name of the old info log file for "dbname".
@ -137,9 +153,8 @@ std::string OldInfoLogFileName(const std::string& dbname, uint64_t ts,
if (log_dir.empty()) if (log_dir.empty())
return dbname + "/LOG.old." + buf; return dbname + "/LOG.old." + buf;
char flatten_db_path[256]; InfoLogPrefix info_log_prefix(true, db_path);
FlattenPath(db_path, flatten_db_path, 256); return log_dir + "/" + info_log_prefix.buf + ".old." + buf;
return log_dir + "/" + flatten_db_path + "_LOG.old." + buf;
} }
std::string MetaDatabaseName(const std::string& dbname, uint64_t number) { std::string MetaDatabaseName(const std::string& dbname, uint64_t number) {
@ -157,8 +172,8 @@ std::string IdentityFileName(const std::string& dbname) {
// dbname/IDENTITY // dbname/IDENTITY
// dbname/CURRENT // dbname/CURRENT
// dbname/LOCK // dbname/LOCK
// dbname/LOG // dbname/<info_log_name_prefix>
// dbname/LOG.old.[0-9]+ // dbname/<info_log_name_prefix>.old.[0-9]+
// dbname/MANIFEST-[0-9]+ // dbname/MANIFEST-[0-9]+
// dbname/[0-9]+.(log|sst) // dbname/[0-9]+.(log|sst)
// dbname/METADB-[0-9]+ // dbname/METADB-[0-9]+
@ -167,6 +182,12 @@ bool ParseFileName(const std::string& fname,
uint64_t* number, uint64_t* number,
FileType* type, FileType* type,
WalFileType* log_type) { WalFileType* log_type) {
return ParseFileName(fname, number, "", type, log_type);
}
bool ParseFileName(const std::string& fname, uint64_t* number,
const Slice& info_log_name_prefix, FileType* type,
WalFileType* log_type) {
Slice rest(fname); Slice rest(fname);
if (fname.length() > 1 && fname[0] == '/') { if (fname.length() > 1 && fname[0] == '/') {
rest.remove_prefix(1); rest.remove_prefix(1);
@ -180,18 +201,22 @@ bool ParseFileName(const std::string& fname,
} else if (rest == "LOCK") { } else if (rest == "LOCK") {
*number = 0; *number = 0;
*type = kDBLockFile; *type = kDBLockFile;
} else if (rest == "LOG" || rest == "LOG.old") { } else if (info_log_name_prefix.size() > 0 &&
rest.starts_with(info_log_name_prefix)) {
rest.remove_prefix(info_log_name_prefix.size());
if (rest == "" || rest == ".old") {
*number = 0; *number = 0;
*type = kInfoLogFile; *type = kInfoLogFile;
} else if (rest.starts_with("LOG.old.")) { } else if (rest.starts_with(".old.")) {
uint64_t ts_suffix; uint64_t ts_suffix;
// sizeof also counts the trailing '\0'. // sizeof also counts the trailing '\0'.
rest.remove_prefix(sizeof("LOG.old.") - 1); rest.remove_prefix(sizeof(".old.") - 1);
if (!ConsumeDecimalNumber(&rest, &ts_suffix)) { if (!ConsumeDecimalNumber(&rest, &ts_suffix)) {
return false; return false;
} }
*number = ts_suffix; *number = ts_suffix;
*type = kInfoLogFile; *type = kInfoLogFile;
}
} else if (rest.starts_with("MANIFEST-")) { } else if (rest.starts_with("MANIFEST-")) {
rest.remove_prefix(strlen("MANIFEST-")); rest.remove_prefix(strlen("MANIFEST-"));
uint64_t num; uint64_t num;

@ -86,6 +86,16 @@ extern std::string LockFileName(const std::string& dbname);
// The result will be prefixed with "dbname". // The result will be prefixed with "dbname".
extern std::string TempFileName(const std::string& dbname, uint64_t number); extern std::string TempFileName(const std::string& dbname, uint64_t number);
// A helper structure for prefix of info log names.
struct InfoLogPrefix {
char buf[260];
Slice prefix;
// Prefix with DB absolute path encoded
explicit InfoLogPrefix(bool has_log_dir, const std::string& db_absolute_path);
// Default Prefix
explicit InfoLogPrefix();
};
// Return the name of the info log file for "dbname". // Return the name of the info log file for "dbname".
extern std::string InfoLogFileName(const std::string& dbname, extern std::string InfoLogFileName(const std::string& dbname,
const std::string& db_path="", const std::string& log_dir=""); const std::string& db_path="", const std::string& log_dir="");
@ -107,10 +117,13 @@ extern std::string IdentityFileName(const std::string& dbname);
// If filename is a rocksdb file, store the type of the file in *type. // If filename is a rocksdb file, store the type of the file in *type.
// The number encoded in the filename is stored in *number. If the // The number encoded in the filename is stored in *number. If the
// filename was successfully parsed, returns true. Else return false. // filename was successfully parsed, returns true. Else return false.
extern bool ParseFileName(const std::string& filename, // info_log_name_prefix is the path of info logs.
uint64_t* number, extern bool ParseFileName(const std::string& filename, uint64_t* number,
FileType* type, const Slice& info_log_name_prefix, FileType* type,
WalFileType* log_type = nullptr); WalFileType* log_type = nullptr);
// Same as previous function, but skip info log files.
extern bool ParseFileName(const std::string& filename, uint64_t* number,
FileType* type, WalFileType* log_type = nullptr);
// Make the CURRENT file point to the descriptor file with the // Make the CURRENT file point to the descriptor file with the
// specified number. // specified number.

@ -23,31 +23,51 @@ TEST(FileNameTest, Parse) {
FileType type; FileType type;
uint64_t number; uint64_t number;
char kDefautInfoLogDir = 1;
char kDifferentInfoLogDir = 2;
char kNoCheckLogDir = 4;
char kAllMode = kDefautInfoLogDir | kDifferentInfoLogDir | kNoCheckLogDir;
// Successful parses // Successful parses
static struct { static struct {
const char* fname; const char* fname;
uint64_t number; uint64_t number;
FileType type; FileType type;
char mode;
} cases[] = { } cases[] = {
{ "100.log", 100, kLogFile }, {"100.log", 100, kLogFile, kAllMode},
{ "0.log", 0, kLogFile }, {"0.log", 0, kLogFile, kAllMode},
{ "0.sst", 0, kTableFile }, {"0.sst", 0, kTableFile, kAllMode},
{ "CURRENT", 0, kCurrentFile }, {"CURRENT", 0, kCurrentFile, kAllMode},
{ "LOCK", 0, kDBLockFile }, {"LOCK", 0, kDBLockFile, kAllMode},
{ "MANIFEST-2", 2, kDescriptorFile }, {"MANIFEST-2", 2, kDescriptorFile, kAllMode},
{ "MANIFEST-7", 7, kDescriptorFile }, {"MANIFEST-7", 7, kDescriptorFile, kAllMode},
{ "METADB-2", 2, kMetaDatabase }, {"METADB-2", 2, kMetaDatabase, kAllMode},
{ "METADB-7", 7, kMetaDatabase }, {"METADB-7", 7, kMetaDatabase, kAllMode},
{ "LOG", 0, kInfoLogFile }, {"LOG", 0, kInfoLogFile, kDefautInfoLogDir},
{ "LOG.old", 0, kInfoLogFile }, {"LOG.old", 0, kInfoLogFile, kDefautInfoLogDir},
{ "18446744073709551615.log", 18446744073709551615ull, kLogFile }, {"LOG.old.6688", 6688, kInfoLogFile, kDefautInfoLogDir},
}; {"rocksdb_dir_LOG", 0, kInfoLogFile, kDifferentInfoLogDir},
{"rocksdb_dir_LOG.old", 0, kInfoLogFile, kDifferentInfoLogDir},
{"rocksdb_dir_LOG.old.6688", 6688, kInfoLogFile, kDifferentInfoLogDir},
{"18446744073709551615.log", 18446744073709551615ull, kLogFile,
kAllMode}, };
for (char mode : {kDifferentInfoLogDir, kDefautInfoLogDir, kNoCheckLogDir}) {
for (unsigned int i = 0; i < sizeof(cases) / sizeof(cases[0]); i++) { for (unsigned int i = 0; i < sizeof(cases) / sizeof(cases[0]); i++) {
InfoLogPrefix info_log_prefix(mode != kDefautInfoLogDir, "/rocksdb/dir");
if (cases[i].mode & mode) {
std::string f = cases[i].fname; std::string f = cases[i].fname;
if (mode == kNoCheckLogDir) {
ASSERT_TRUE(ParseFileName(f, &number, &type)) << f; ASSERT_TRUE(ParseFileName(f, &number, &type)) << f;
} else {
ASSERT_TRUE(ParseFileName(f, &number, info_log_prefix.prefix, &type))
<< f;
}
ASSERT_EQ(cases[i].type, type) << f; ASSERT_EQ(cases[i].type, type) << f;
ASSERT_EQ(cases[i].number, number) << f; ASSERT_EQ(cases[i].number, number) << f;
} }
}
}
// Errors // Errors
static const char* errors[] = { static const char* errors[] = {
@ -85,6 +105,22 @@ TEST(FileNameTest, Parse) {
}; };
} }
TEST(FileNameTest, InfoLogFileName) {
std::string dbname = ("/data/rocksdb");
std::string db_absolute_path;
Env::Default()->GetAbsolutePath(dbname, &db_absolute_path);
ASSERT_EQ("/data/rocksdb/LOG", InfoLogFileName(dbname, db_absolute_path, ""));
ASSERT_EQ("/data/rocksdb/LOG.old.666",
OldInfoLogFileName(dbname, 666u, db_absolute_path, ""));
ASSERT_EQ("/data/rocksdb_log/data_rocksdb_LOG",
InfoLogFileName(dbname, db_absolute_path, "/data/rocksdb_log"));
ASSERT_EQ(
"/data/rocksdb_log/data_rocksdb_LOG.old.666",
OldInfoLogFileName(dbname, 666u, db_absolute_path, "/data/rocksdb_log"));
}
TEST(FileNameTest, Construction) { TEST(FileNameTest, Construction) {
uint64_t number; uint64_t number;
FileType type; FileType type;

Loading…
Cancel
Save