-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Flaky-test: BrokerRegistryMetadataStoreIntegrationTest.cleanup #23413
Comments
This flaky test was introduced in #23371. @heesung-sn please take a look. /cc @BewareMyPower |
I believe there was a regression introduced recently. When I upgraded the latest master in the downstream project, I found the broker close time became too long.
There are two brokers that each of them takes 7+ seconds to complete the close. |
log.info("XYZ start health check for {}", brokerId);
admin.brokers().healthcheckAsync(TopicVersion.V2, Optional.of(brokerId))
.whenComplete((__, e) -> {
if (e == null) {
log.info("XYZ Completed health-check broker :{}", brokerId, e);
future.complete(null);
return;
}
log.info("XYZ failed health check {}", brokerId, e); I added some logs and found the |
Search before asking
Example failure
https://github.com/apache/pulsar/actions/runs/11231028428/job/31223989424?pr=23410#step:11:1773
Logs: https://gist.github.com/lhotari/f8271c5229f85862c5a471e56a2c56c9
Exception stacktrace
Are you willing to submit a PR?
The text was updated successfully, but these errors were encountered: