This is an automated email from the ASF dual-hosted git repository.
dataroaring pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new 411fae951ba [fix](trash core) fix get trash directory core when stop
be (#25428) (#25829)
411fae951ba is described below
commit 411fae951ba81b765380688af1adce6f5cfd2ab9
Author: yujun <[email protected]>
AuthorDate: Wed Oct 25 11:05:25 2023 +0800
[fix](trash core) fix get trash directory core when stop be (#25428)
(#25829)
---
be/src/olap/data_dir.cpp | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/be/src/olap/data_dir.cpp b/be/src/olap/data_dir.cpp
index c6c456153dd..3bcdc156298 100644
--- a/be/src/olap/data_dir.cpp
+++ b/be/src/olap/data_dir.cpp
@@ -842,7 +842,12 @@ Status DataDir::update_capacity() {
void DataDir::update_trash_capacity() {
auto trash_path = fmt::format("{}/{}", _path, TRASH_PREFIX);
- _trash_used_bytes =
StorageEngine::instance()->get_file_or_directory_size(trash_path);
+ try {
+ _trash_used_bytes =
StorageEngine::instance()->get_file_or_directory_size(trash_path);
+ } catch (const std::filesystem::filesystem_error& e) {
+ LOG(WARNING) << "update trash capacity failed, path: " << _path << ",
err: " << e.what();
+ return;
+ }
disks_trash_used_capacity->set_value(_trash_used_bytes);
LOG(INFO) << "path: " << _path << " trash capacity: " << _trash_used_bytes;
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]