[Fix](load)Make insert timeout accurate in show load statistics (#20068)

This commit is contained in:
Changming Xiao
2023-05-28 21:19:06 +08:00
committed by GitHub
parent 13c80bdb10
commit 5f9c6e076f
4 changed files with 7 additions and 4 deletions

View File

@ -452,7 +452,7 @@ public class Config extends ConfigBase {
@ConfField(mutable = true, masterOnly = true, description = {"Insert load 的默认超时时间,单位是秒。",
"Default timeout for insert load job, in seconds."})
public static int insert_load_default_timeout_second = 3600; // 1 hour
public static int insert_load_default_timeout_second = 14400; // 4 hour
@ConfField(mutable = true, masterOnly = true, description = {"Stream load 的默认超时时间,单位是秒。",
"Default timeout for stream load job, in seconds."})