[Test](bloom filter) add retry and retry timeout for bloom filter test case #42609#42673
Merged
airborne12 merged 1 commit intoOct 29, 2024
Merged
Conversation
…t case (apache#42609) fix case error as below ``` Exception in bloom_filter_p0/test_bloom_filter_hit_with_renamed_column.groovy(line 154): } else { attempt++ if (attempt < maxRetries) { log.info("profileId is null, retrying after ${waitSeconds} second(s)... (Attempt ${attempt + 1}/${maxRetries})") sleep(waitSeconds * 1000) } } } assertTrue(profileId != null, "Failed to retrieve profileId after ${maxRetries} attempts") ^^^^^^^^^^^^^^^^^^^^^^^^^^ERROR LINE^^^^^^^^^^^^^^^^^^^^^^^^^^ return profileId } def query = """select C_COMMENT_NEW from ${tableName} where C_COMMENT_NEW='OK'""" def profileId = getProfileIdWithRetry(query, 3, 1) log.info("profileId:{}", profileId) def profileDetail = httpGet("/rest/v1/query_profile/" + profileId) log.info("profileDetail:{}", profileDetail) assertTrue(profileDetail.contains("BloomFilterFiltered: 15.0K (15000)")) Exception: org.opentest4j.AssertionFailedError: Failed to retrieve profileId after 3 attempts ==> expected: <true> but was: <false> ```
Member
Author
|
run buildall |
|
Thank you for your contribution to Apache Doris. Since 2024-03-18, the Document has been moved to doris-website. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
cherry pick from #42609