This is an automated email from the ASF dual-hosted git repository. weixiang 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 990dce9a47 [fix](load) fix load channel timeout too fast in routine load task (#17796) 990dce9a47 is described below commit 990dce9a47df514b64569f2969258a8c714acd61 Author: zhengyu <freeman.zhang1...@gmail.com> AuthorDate: Wed Mar 15 21:12:02 2023 +0800 [fix](load) fix load channel timeout too fast in routine load task (#17796) enlarge the timeout in routine load Signed-off-by: freemandealer <freeman.zhang1...@gmail.com> --- .../src/main/java/org/apache/doris/planner/StreamLoadPlanner.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fe/fe-core/src/main/java/org/apache/doris/planner/StreamLoadPlanner.java b/fe/fe-core/src/main/java/org/apache/doris/planner/StreamLoadPlanner.java index 94d3285f0c..c3eec8e23c 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/planner/StreamLoadPlanner.java +++ b/fe/fe-core/src/main/java/org/apache/doris/planner/StreamLoadPlanner.java @@ -231,7 +231,7 @@ public class StreamLoadPlanner { List<Long> partitionIds = getAllPartitionIds(); OlapTableSink olapTableSink = new OlapTableSink(destTable, tupleDesc, partitionIds, Config.enable_single_replica_load); - olapTableSink.init(loadId, taskInfo.getTxnId(), db.getId(), taskInfo.getTimeout(), + olapTableSink.init(loadId, taskInfo.getTxnId(), db.getId(), timeout, taskInfo.getSendBatchParallelism(), taskInfo.isLoadToSingleTablet()); olapTableSink.complete(); --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org