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

yiguolei pushed a commit to branch branch-4.1
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/branch-4.1 by this push:
     new 57b4d23c463 branch-4.1: [fix](regression) Increase variant export load 
timeout #64733 (#64761)
57b4d23c463 is described below

commit 57b4d23c4637636d20788b00fc91d98c6285c6da
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Wed Jun 24 14:52:29 2026 +0800

    branch-4.1: [fix](regression) Increase variant export load timeout #64733 
(#64761)
    
    Cherry-picked from #64733
    
    Co-authored-by: lihangyu <[email protected]>
---
 .../suites/export_p2/test_export_variant_10k_columns.groovy           | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git 
a/regression-test/suites/export_p2/test_export_variant_10k_columns.groovy 
b/regression-test/suites/export_p2/test_export_variant_10k_columns.groovy
index 911d821263e..c3dcaaf71bb 100644
--- a/regression-test/suites/export_p2/test_export_variant_10k_columns.groovy
+++ b/regression-test/suites/export_p2/test_export_variant_10k_columns.groovy
@@ -17,6 +17,7 @@
 
 import java.io.File
 import org.awaitility.Awaitility
+import static java.util.concurrent.TimeUnit.MINUTES;
 import static java.util.concurrent.TimeUnit.SECONDS;
 
 suite("test_export_variant_10k_columns", "p0") {
@@ -189,10 +190,11 @@ suite("test_export_variant_10k_columns", "p0") {
             );
         """
         
-        Awaitility.await().atMost(240, SECONDS).pollInterval(5, 
SECONDS).until({
+        Awaitility.await().atMost(20, MINUTES).pollInterval(5, SECONDS).until({
             def loadResult = sql """
            show load where label = '${load_label}'
            """
+            logger.info("load state: " + loadResult.get(0).get(2))
             if (loadResult.get(0).get(2) == 'CANCELLED' || 
loadResult.get(0).get(2) == 'FAILED') {
                 println("load failed: " + loadResult.get(0))
                 throw new RuntimeException("load failed"+ loadResult.get(0))


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to