This is an automated email from the ASF dual-hosted git repository. kxiao pushed a commit to branch branch-2.0 in repository https://gitbox.apache.org/repos/asf/doris.git
commit c1b6f457c3c15c1511c76ea38fb0554aec37cbf3 Author: Siyang Tang <82279870+tangsiyang2...@users.noreply.github.com> 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 b2e5d7df40..8826fbbf64 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: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org