Skip to content

Commit

Permalink
branch-3.0: [fix](test) Change case test_index_compaction_p1 waiting …
Browse files Browse the repository at this point in the history
…time. (#43852)

Cherry-picked from #43694

Co-authored-by: zzzxl <[email protected]>
  • Loading branch information
github-actions[bot] and zzzxl1993 authored Nov 14, 2024
1 parent f9f5743 commit 41ebfc1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,15 +71,15 @@ suite("test_index_compaction_p1", "p1, nonConcurrent") {
"disable_auto_compaction" = "true"
);
"""
def executor = Executors.newFixedThreadPool(50)
def executor = Executors.newFixedThreadPool(5)
(1..110).each { i ->
executor.submit {
def fileName = "documents-" + i + ".json"
load_json_data.call(compaction_table_name, """${getS3Url()}/regression/inverted_index_cases/httplogs/${fileName}""")
}
}
executor.shutdown()
executor.awaitTermination(10, TimeUnit.MINUTES)
executor.awaitTermination(30, TimeUnit.MINUTES)

def backendId_to_backendIP = [:]
def backendId_to_backendHttpPort = [:]
Expand Down

0 comments on commit 41ebfc1

Please sign in to comment.