Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve logging message for retryable background IO errors #2317

Merged
merged 7 commits into from
May 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions src/server/server.cc
Original file line number Diff line number Diff line change
Expand Up @@ -808,8 +808,12 @@ void Server::cron() {
// In order to properly handle all possible situations on rocksdb, we manually resume here
// when encountering no space error and disk quota exceeded error.
if (counter != 0 && counter % 600 == 0 && storage->IsDBInRetryableIOError()) {
storage->GetDB()->Resume();
LOG(INFO) << "[server] Schedule to resume DB after retryable IO error";
auto s = storage->GetDB()->Resume();
if (s.ok()) {
LOG(WARNING) << "[server] Successfully resumed DB after retryable IO error";
} else {
LOG(ERROR) << "[server] Failed to resume DB after retryable IO error: " << s.ToString();
}
storage->SetDBInRetryableIOError(false);
}

Expand Down
Loading