Prajwal-banakar commented on issue #2581: URL: https://github.com/apache/fluss/issues/2581#issuecomment-4056411710
Hi @wuchong, The failure happens because `waitUntilTableReady` has a 1-minute retry timeout, which is not enough on a loaded CI machine for leader election to complete and be written to ZooKeeper across all 3 replicas. Proposed fix: increase the timeout in `waitUntilTableReady` and `waitUntilTablePartitionReady` from `Duration.ofMinutes(1)` to `Duration.ofMinutes(2)`, consistent with `waitUntilSomeLogSegmentsCopyToRemote` in the same class. Happy to submit a PR if this approach looks good. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
