This is an automated email from the ASF dual-hosted git repository.
airborne pushed a commit to branch branch-3.0
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-3.0 by this push:
new 128533950d4 [Test](bloom filter) add retry and retry timeout for bloom
filter test case #42609 (#42673)
128533950d4 is described below
commit 128533950d48cc8c0d62188a273c4bc551d8f0e2
Author: airborne12 <[email protected]>
AuthorDate: Tue Oct 29 13:33:16 2024 +0800
[Test](bloom filter) add retry and retry timeout for bloom filter test case
#42609 (#42673)
cherry pick from #42609
---
.../bloom_filter_p0/test_bloom_filter_hit_with_renamed_column.groovy | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/regression-test/suites/bloom_filter_p0/test_bloom_filter_hit_with_renamed_column.groovy
b/regression-test/suites/bloom_filter_p0/test_bloom_filter_hit_with_renamed_column.groovy
index 46d2e766109..c86be96d4b1 100644
---
a/regression-test/suites/bloom_filter_p0/test_bloom_filter_hit_with_renamed_column.groovy
+++
b/regression-test/suites/bloom_filter_p0/test_bloom_filter_hit_with_renamed_column.groovy
@@ -123,7 +123,7 @@ suite("test_bloom_filter_hit_with_renamed_column") {
while (attempt < maxRetries) {
profiles = httpGet(profileUrl)
- log.debug("profiles attempt ${attempt + 1}: {}", profiles)
+ log.info("profiles attempt ${attempt + 1}: {}", profiles)
if (profiles == null) {
log.warn("Failed to fetch profiles on attempt ${attempt + 1}")
} else {
@@ -156,7 +156,7 @@ suite("test_bloom_filter_hit_with_renamed_column") {
}
def query = """select C_COMMENT_NEW from ${tableName} where
C_COMMENT_NEW='OK'"""
- def profileId = getProfileIdWithRetry(query, 3, 1)
+ def profileId = getProfileIdWithRetry(query, 3, 30)
log.info("profileId:{}", profileId)
def profileDetail = httpGet("/rest/v1/query_profile/" + profileId)
log.info("profileDetail:{}", profileDetail)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]