0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-10-01 05:08:59 +02:00

ircd::db: Adjust db open and close log messages for where waiting happens.

This commit is contained in:
Jason Volk 2018-04-12 22:43:42 -07:00
parent ae528af7cd
commit b5dd434e7c

View file

@ -442,10 +442,10 @@ try
fs::mkdir(path);
// Announce attempt before usual point where exceptions are thrown
log.debug("Opening database \"%s\" @ `%s' columns[%zu]",
this->name,
path,
columns.size());
log.info("Opening database \"%s\" @ `%s' with %zu columns...",
this->name,
path,
columns.size());
// Open DB into ptr
rocksdb::DB *ptr;
@ -535,15 +535,15 @@ catch(const std::exception &e)
ircd::db::database::~database()
noexcept
{
rocksdb::CancelAllBackgroundWork(d.get(), true); // true = blocking
log.debug("'%s': closing database @ `%s'; background_errors: %lu",
name,
path,
property<uint64_t>(*this, rocksdb::DB::Properties::kBackgroundErrors));
log.info("'%s': closing database @ `%s'...",
name,
path);
rocksdb::CancelAllBackgroundWork(d.get(), true); // true = blocking
this->columns.clear();
log.debug("'%s': flushed columns; synchronizing...",
name);
log.debug("'%s': flushed columns; background_errors: %lu; synchronizing...",
name,
property<uint64_t>(*this, rocksdb::DB::Properties::kBackgroundErrors));
sync(*this);
log.debug("'%s': synchronized with hardware.",