[fix](load) fix load channel timeout too fast in routine load task (#17796)

enlarge the timeout in routine load

Signed-off-by: freemandealer <freeman.zhang1992@gmail.com>
This commit is contained in:
zhengyu
2023-03-15 21:12:02 +08:00
committed by GitHub
parent 0ad459fea5
commit 990dce9a47

View File

@ -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();