This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
service: storage monitor added (#13082)
* service: storage monitor added Storage monitor added. It uses `notify` create to get notifications about any changes to monitored path (which is database path). Notifications are consumed in essential task which terminates when available storage space drops below given threshold. Closes: #12399 * Cargo.lock updated * misspell * fs events throttling added * minor updates * filter out non mutating events * misspell * ".git/.scripts/commands/fmt/fmt.sh" * Update client/service/src/storage_monitor.rs Co-authored-by: Anton <anton.kalyaev@gmail.com> * storage-monitor crate added * cleanup: configuration + service builder * storage_monitor in custom service (wip) * copy-paste bad desc fixed * notify removed * storage_monitor added to node * fix for clippy * publish = false * Update bin/node/cli/src/command.rs Co-authored-by: Dmitry Markin <dmitry@markin.tech> * Apply suggestions from code review Co-authored-by: Bastian Köcher <git@kchr.de> * crate name: storage-monitor -> sc-storage-monitor * error handling improved * Apply suggestions from code review Co-authored-by: Bastian Köcher <git@kchr.de> * publish=false removed Co-authored-by: command-bot <> Co-authored-by: Anton <anton.kalyaev@gmail.com> Co-authored-by: Dmitry Markin <dmitry@markin.tech> Co-authored-by: Bastian Köcher <git@kchr.de>
- Loading branch information
1 parent
5583d80
commit c3764bb
Showing
11 changed files
with
227 additions
and
10 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[package] | ||
name = "sc-storage-monitor" | ||
version = "0.1.0" | ||
authors = ["Parity Technologies <admin@parity.io>"] | ||
edition = "2021" | ||
license = "GPL-3.0-or-later WITH Classpath-exception-2.0" | ||
repository = "https://github.com/paritytech/substrate" | ||
description = "Storage monitor service for substrate" | ||
homepage = "https://substrate.io" | ||
|
||
[dependencies] | ||
clap = { version = "4.0.9", features = ["derive", "string"] } | ||
futures = "0.3.21" | ||
log = "0.4.17" | ||
nix = { version = "0.26.1", features = ["fs"] } | ||
sc-client-db = { version = "0.10.0-dev", default-features = false, path = "../db" } | ||
sc-utils = { version = "4.0.0-dev", path = "../utils" } | ||
sp-core = { version = "7.0.0", path = "../../primitives/core" } | ||
tokio = "1.22.0" | ||
thiserror = "1.0.30" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,149 @@ | ||
// This file is part of Substrate. | ||
|
||
// Copyright (C) 2022 Parity Technologies (UK) Ltd. | ||
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0 | ||
|
||
// This program is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
|
||
// This program is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
|
||
// You should have received a copy of the GNU General Public License | ||
// along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
|
||
use clap::Args; | ||
use nix::{errno::Errno, sys::statvfs::statvfs}; | ||
use sc_client_db::DatabaseSource; | ||
use sp_core::traits::SpawnEssentialNamed; | ||
use std::{ | ||
path::{Path, PathBuf}, | ||
time::Duration, | ||
}; | ||
|
||
const LOG_TARGET: &str = "storage-monitor"; | ||
|
||
/// Error type used in this crate. | ||
#[derive(Debug, thiserror::Error)] | ||
pub enum Error { | ||
#[error("IO Error")] | ||
IOError(#[from] Errno), | ||
#[error("Out of storage space: available {0}MB, required {1}MB")] | ||
StorageOutOfSpace(u64, u64), | ||
} | ||
|
||
/// Parameters used to create the storage monitor. | ||
#[derive(Default, Debug, Clone, Args)] | ||
pub struct StorageMonitorParams { | ||
/// Required available space on database storage. If available space for DB storage drops below | ||
/// the given threshold, node will be gracefully terminated. If `0` is given monitoring will be | ||
/// disabled. | ||
#[arg(long = "db-storage-threshold", value_name = "MB", default_value_t = 1000)] | ||
pub threshold: u64, | ||
|
||
/// How often available space is polled. | ||
#[arg(long = "db-storage-polling-period", value_name = "SECONDS", default_value_t = 5, value_parser = clap::value_parser!(u32).range(1..))] | ||
pub polling_period: u32, | ||
} | ||
|
||
/// Storage monitor service: checks the available space for the filesystem for fiven path. | ||
pub struct StorageMonitorService { | ||
/// watched path | ||
path: PathBuf, | ||
/// number of megabytes that shall be free on the filesystem for watched path | ||
threshold: u64, | ||
/// storage space polling period (seconds) | ||
polling_period: u32, | ||
} | ||
|
||
impl StorageMonitorService { | ||
/// Creates new StorageMonitorService for given client config | ||
pub fn try_spawn( | ||
parameters: StorageMonitorParams, | ||
database: DatabaseSource, | ||
spawner: &impl SpawnEssentialNamed, | ||
) -> Result<(), Error> { | ||
Ok(match (parameters.threshold, database.path()) { | ||
(0, _) => { | ||
log::info!( | ||
target: LOG_TARGET, | ||
"StorageMonitorService: threshold `0` given, storage monitoring disabled", | ||
); | ||
}, | ||
(_, None) => { | ||
log::warn!( | ||
target: LOG_TARGET, | ||
"StorageMonitorService: no database path to observe", | ||
); | ||
}, | ||
(threshold, Some(path)) => { | ||
log::debug!( | ||
target: LOG_TARGET, | ||
"Initializing StorageMonitorService for db path: {:?}", | ||
path, | ||
); | ||
|
||
Self::check_free_space(&path, threshold)?; | ||
|
||
let storage_monitor_service = StorageMonitorService { | ||
path: path.to_path_buf(), | ||
threshold, | ||
polling_period: parameters.polling_period, | ||
}; | ||
|
||
spawner.spawn_essential( | ||
"storage-monitor", | ||
None, | ||
Box::pin(storage_monitor_service.run()), | ||
); | ||
}, | ||
}) | ||
} | ||
|
||
/// Main monitoring loop, intended to be spawned as essential task. Quits if free space drop | ||
/// below threshold. | ||
async fn run(self) { | ||
loop { | ||
tokio::time::sleep(Duration::from_secs(self.polling_period.into())).await; | ||
if Self::check_free_space(&self.path, self.threshold).is_err() { | ||
break | ||
}; | ||
} | ||
} | ||
|
||
/// Returns free space in MB, or error if statvfs failed. | ||
fn free_space(path: &Path) -> Result<u64, Error> { | ||
statvfs(path) | ||
.map(|stats| stats.blocks_available() * stats.block_size() / 1_000_000) | ||
.map_err(Error::from) | ||
} | ||
|
||
/// Checks if the amount of free space for given `path` is above given `threshold`. | ||
/// If it dropped below, error is returned. | ||
/// System errors are silently ignored. | ||
fn check_free_space(path: &Path, threshold: u64) -> Result<(), Error> { | ||
match StorageMonitorService::free_space(path) { | ||
Ok(available_space) => { | ||
log::trace!( | ||
target: LOG_TARGET, | ||
"free: {available_space} , threshold: {threshold}.", | ||
); | ||
|
||
if available_space < threshold { | ||
log::error!(target: LOG_TARGET, "Available space {available_space}MB for path `{}` dropped below threshold: {threshold}MB , terminating...", path.display()); | ||
Err(Error::StorageOutOfSpace(available_space, threshold)) | ||
} else { | ||
Ok(()) | ||
} | ||
}, | ||
Err(e) => { | ||
log::error!(target: LOG_TARGET, "Could not read available space: {:?}.", e); | ||
Err(e) | ||
}, | ||
} | ||
} | ||
} |