[fix](regression) segcompaction timeout too short (#16731) (#17565)

Signed-off-by: freemandealer <freeman.zhang1992@gmail.com>
This commit is contained in:
zhengyu
2023-03-13 11:19:21 +08:00
committed by GitHub
parent b9fac82fb1
commit 2b31fc1472
4 changed files with 4 additions and 4 deletions

View File

@ -105,7 +105,7 @@ suite("test_segcompaction_agg_keys") {
)
"""
def max_try_milli_secs = 300000
def max_try_milli_secs = 900000
while (max_try_milli_secs > 0) {
String[][] result = sql """ show load where label="$uuid" order by createtime desc limit 1; """
if (result[0][2].equals("FINISHED")) {

View File

@ -105,7 +105,7 @@ suite("test_segcompaction_dup_keys") {
)
"""
def max_try_milli_secs = 300000
def max_try_milli_secs = 900000
while (max_try_milli_secs > 0) {
String[][] result = sql """ show load where label="$uuid" order by createtime desc limit 1; """
if (result[0][2].equals("FINISHED")) {

View File

@ -105,7 +105,7 @@ suite("test_segcompaction_unique_keys") {
)
"""
def max_try_milli_secs = 300000
def max_try_milli_secs = 900000
while (max_try_milli_secs > 0) {
String[][] result = sql """ show load where label="$uuid" order by createtime desc limit 1; """
if (result[0][2].equals("FINISHED")) {

View File

@ -109,7 +109,7 @@ suite("test_segcompaction_unique_keys_mow") {
)
"""
def max_try_milli_secs = 300000
def max_try_milli_secs = 900000
while (max_try_milli_secs > 0) {
String[][] result = sql """ show load where label="$uuid" order by createtime desc limit 1; """
if (result[0][2].equals("FINISHED")) {