From b9fac82fb1b94bfec1dc696ea2a565cbad4710e5 Mon Sep 17 00:00:00 2001 From: chunping Date: Mon, 13 Mar 2023 11:18:03 +0800 Subject: [PATCH] [fix](regression) adjust regression pipeline config(tablet_create_timeout_second) for avoiding create partition timeout (#17668) This pull request for bellow problem : regression pipleline fail case always meet error "Failed to create partition. Timeout. Unfinished mark: 10003=57059", so adjust tablet_create_timeout_second to 100 --- regression-test/pipeline/p0/conf/fe.conf | 4 ++-- regression-test/pipeline/p1/conf/fe.conf | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/regression-test/pipeline/p0/conf/fe.conf b/regression-test/pipeline/p0/conf/fe.conf index b288d63fb3..f305c13eff 100644 --- a/regression-test/pipeline/p0/conf/fe.conf +++ b/regression-test/pipeline/p0/conf/fe.conf @@ -65,11 +65,11 @@ catalog_trash_expire_second=1 # qe_slow_log_ms = 5000 # -// enable ssl for test +#enable ssl for test enable_ssl = true enable_outfile_to_local = true -tablet_create_timeout_second=20 +tablet_create_timeout_second=100 remote_fragment_exec_timeout_ms=60000 fuzzy_test_type=p0 use_fuzzy_session_variable=true diff --git a/regression-test/pipeline/p1/conf/fe.conf b/regression-test/pipeline/p1/conf/fe.conf index d4f0608e98..0613d4b263 100644 --- a/regression-test/pipeline/p1/conf/fe.conf +++ b/regression-test/pipeline/p1/conf/fe.conf @@ -66,11 +66,11 @@ priority_networks=172.19.0.0/24 # qe_slow_log_ms = 5000 # -// enable ssl for test +#enable ssl for test enable_ssl = true enable_outfile_to_local = true -tablet_create_timeout_second=20 +tablet_create_timeout_second=100 remote_fragment_exec_timeout_ms=60000 fuzzy_test_type=p1 use_fuzzy_session_variable=true