This is an automated email from the ASF dual-hosted git repository.
hello-stephen 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 f59397efd94 [fix](regression) Extend rebalance warm-up wait timeout
(#65604)
f59397efd94 is described below
commit f59397efd940d518545e2b06d094cead990386ab
Author: chunping <[email protected]>
AuthorDate: Wed Jul 15 14:24:30 2026 +0800
[fix](regression) Extend rebalance warm-up wait timeout (#65604)
Problem Summary: The cloud rebalance regression case waited only 10
seconds after disabling the warm-up checker debug point. Because the
checker itself runs on a 10-second interval, the final poll could happen
before the next checker cycle and follower replay completed. Extend the
polling timeout to 30 seconds while preserving immediate return once the
expected replica distribution is observed.
---
regression-test/suites/cloud_p0/multi_cluster/test_rebalance.groovy | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/regression-test/suites/cloud_p0/multi_cluster/test_rebalance.groovy
b/regression-test/suites/cloud_p0/multi_cluster/test_rebalance.groovy
index 81f2227ce44..a6e7247f901 100644
--- a/regression-test/suites/cloud_p0/multi_cluster/test_rebalance.groovy
+++ b/regression-test/suites/cloud_p0/multi_cluster/test_rebalance.groovy
@@ -205,7 +205,7 @@ suite('test_rebalance_in_cloud', 'multi_cluster,docker') {
sleep(1 * 1000)
}
GetDebugPoint().disableDebugPointForAllFEs("CloudTabletRebalancer.checkInflghtWarmUpCacheAsync.beNull");
- awaitUntil(10) {
+ awaitUntil(30) {
def ret = sql_return_maparray """ADMIN SHOW REPLICA
DISTRIBUTION FROM table100"""
log.info("replica distribution table100: {}", ret)
ret.any { row ->
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]