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 df8e7f7f09 [enhancement](msg) add disk root path in message (#23000)
df8e7f7f09 is described below
commit df8e7f7f090e3d61bdad0a89437462afea6ed125
Author: Siyang Tang <[email protected]>
AuthorDate: Fri Aug 18 11:21:59 2023 +0800
[enhancement](msg) add disk root path in message (#23000)
---
.../src/main/java/org/apache/doris/system/SystemInfoService.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
a/fe/fe-core/src/main/java/org/apache/doris/system/SystemInfoService.java
b/fe/fe-core/src/main/java/org/apache/doris/system/SystemInfoService.java
index 6523f9f0f0..f94534ad8b 100644
--- a/fe/fe-core/src/main/java/org/apache/doris/system/SystemInfoService.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/system/SystemInfoService.java
@@ -854,7 +854,8 @@ public class SystemInfoService {
DiskInfo diskInfo = pathHashToDiskInfo.get(pathHash);
if (diskInfo != null && diskInfo.exceedLimit(floodStage)) {
return new Status(TStatusCode.CANCELLED,
- "disk " + pathHash + " on backend " + beId + "
exceed limit usage");
+ "disk " + diskInfo.getRootPath() + " on backend "
+ + beId + " exceed limit usage, path hash:
" + pathHash);
}
}
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]