This is an automated email from the ASF dual-hosted git repository.

jianliangqi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new 5084e1ff072 [fix](test) Change case test_index_compaction_p1 waiting 
time. (#43694)
5084e1ff072 is described below

commit 5084e1ff072d1d20698b93327e314c638a34d457
Author: zzzxl <yangs...@selectdb.com>
AuthorDate: Wed Nov 13 14:15:48 2024 +0800

    [fix](test) Change case test_index_compaction_p1 waiting time. (#43694)
    
    Problem Summary:
    1. Increase test_index_compaction_p1 timeout duration.
---
 .../index_compaction/test_index_compaction_p1.groovy                  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/regression-test/suites/inverted_index_p1/index_compaction/test_index_compaction_p1.groovy
 
b/regression-test/suites/inverted_index_p1/index_compaction/test_index_compaction_p1.groovy
index a64e4da7d82..27a8470bd26 100644
--- 
a/regression-test/suites/inverted_index_p1/index_compaction/test_index_compaction_p1.groovy
+++ 
b/regression-test/suites/inverted_index_p1/index_compaction/test_index_compaction_p1.groovy
@@ -71,7 +71,7 @@ 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"
@@ -79,7 +79,7 @@ suite("test_index_compaction_p1", "p1, nonConcurrent") {
         }
     }
     executor.shutdown()
-    executor.awaitTermination(10, TimeUnit.MINUTES)
+    executor.awaitTermination(30, TimeUnit.MINUTES)
 
     def backendId_to_backendIP = [:]
     def backendId_to_backendHttpPort = [:]


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to