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

liaoxin 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 a4681f3763d [regression-test](opt) add debug log (#45307)
a4681f3763d is described below

commit a4681f3763d1fcb5ee1dea125f286af5da27be9f
Author: shuke <sh...@selectdb.com>
AuthorDate: Wed Dec 11 22:16:06 2024 +0800

    [regression-test](opt) add debug log (#45307)
    
    When running stream load in regression tests and loading same file into
    different tables, "org.apache.http.ConnectionClosedException: Premature
    end of Content-Length delimited message body (expected: 129,961,387;
    received: 125,351,592)" maybe met.
    This pr add log to try to debug this problem.
---
 .../groovy/org/apache/doris/regression/action/StreamLoadAction.groovy    | 1 +
 1 file changed, 1 insertion(+)

diff --git 
a/regression-test/framework/src/main/groovy/org/apache/doris/regression/action/StreamLoadAction.groovy
 
b/regression-test/framework/src/main/groovy/org/apache/doris/regression/action/StreamLoadAction.groovy
index 70a7f41e82b..97b6d038fa7 100644
--- 
a/regression-test/framework/src/main/groovy/org/apache/doris/regression/action/StreamLoadAction.groovy
+++ 
b/regression-test/framework/src/main/groovy/org/apache/doris/regression/action/StreamLoadAction.groovy
@@ -279,6 +279,7 @@ class StreamLoadAction implements SuiteAction {
                     fileName = cacheHttpFile(client, fileName)
                 } else {
                     entity = new InputStreamEntity(httpGetStream(client, 
fileName))
+                    log.info("http entity length is ${entity.contentLength}")
                     return entity;
                 }
             }


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

Reply via email to