This is an automated email from the ASF dual-hosted git repository.
yiguolei 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 fa7d86efbd [improvement](log) log timeout seconds when creating
partitions timeout (#19223)
fa7d86efbd is described below
commit fa7d86efbdd88f2b98cb4921a7d875b0f1d08e83
Author: Yongqiang YANG <[email protected]>
AuthorDate: Thu May 4 17:18:42 2023 +0800
[improvement](log) log timeout seconds when creating partitions timeout
(#19223)
---
.../src/main/java/org/apache/doris/datasource/InternalCatalog.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/fe/fe-core/src/main/java/org/apache/doris/datasource/InternalCatalog.java
b/fe/fe-core/src/main/java/org/apache/doris/datasource/InternalCatalog.java
index 72edcbd4e5..bed44e7e25 100644
--- a/fe/fe-core/src/main/java/org/apache/doris/datasource/InternalCatalog.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/datasource/InternalCatalog.java
@@ -1823,7 +1823,7 @@ public class InternalCatalog implements
CatalogIf<Database> {
}
if (!ok || !countDownLatch.getStatus().ok()) {
- errMsg = "Failed to create partition[" + partitionName + "].
Timeout.";
+ errMsg = "Failed to create partition[" + partitionName + "].
Timeout:" + timeout + " seconds.";
// clear tasks
AgentTaskQueue.removeBatchTask(batchTask, TTaskType.CREATE);
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]