This is an automated email from the ASF dual-hosted git repository.
weixiang pushed a commit to branch branch-1.2-lts
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-1.2-lts by this push:
new 87f8e41f85 [fix](load) fix load channel timeout too fast in routine
load task (#17788)
87f8e41f85 is described below
commit 87f8e41f8558271030303ca053bb341c0655ab7b
Author: zhengyu <[email protected]>
AuthorDate: Wed Mar 15 21:13:32 2023 +0800
[fix](load) fix load channel timeout too fast in routine load task (#17788)
enlarge the timeout for routine load
Signed-off-by: freemandealer <[email protected]>
---
.../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 07ff6caf64..634379ed7d 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
@@ -216,7 +216,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: [email protected]
For additional commands, e-mail: [email protected]