[improvement](config) enlarge default value of create_table_timeout and remove disable_stream_load_2pc (#13520)
Users do not need to set create_table_timeout, it is a ddl command and when encounter a timeout event users will set a lager timeout and retry. Stream load 2pc is used by default in flink connector, so we should not disable it by config, the config item is useless.
This commit is contained in:
@ -455,7 +455,7 @@ public class Config extends ConfigBase {
|
||||
* In order not to wait too long for create table(index), set a max timeout.
|
||||
*/
|
||||
@ConfField(mutable = true, masterOnly = true)
|
||||
public static int max_create_table_timeout_second = 60;
|
||||
public static int max_create_table_timeout_second = 3600;
|
||||
|
||||
/**
|
||||
* Maximal waiting time for all publish version tasks of one transaction to be finished
|
||||
|
||||
Reference in New Issue
Block a user