Skip to content

Commit

Permalink
[fix](regression) segcompaction timeout too short (apache#16731)
Browse files Browse the repository at this point in the history
Signed-off-by: freemandealer <[email protected]>
  • Loading branch information
freemandealer committed Mar 8, 2023
1 parent 678f34c commit 12ecbf5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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")) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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")) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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")) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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")) {
Expand Down

0 comments on commit 12ecbf5

Please sign in to comment.