manuzhang opened a new pull request, #11974: URL: https://github.com/apache/iceberg/pull/11974
https://github.com/apache/iceberg/pull/11654 attempted to fix flaky tests (https://github.com/apache/iceberg/issues/11066, https://github.com/apache/iceberg/issues/11651) due to timeout by adding two table properties `COMMIT_MIN_RETRY_WAIT_MS=10` and `COMMIT_MAX_RETRY_WAIT_MS=1000`. However, it has brought in more failures due to `CommitFailedException`. The max retry wait time is actually not effective, since the default retry times is 4 (max wait time is 10 * 2^4 = 80). This PR attempts to fix it by increasing the retry times to 7 (10 * 2^7 = 1280) -- 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: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org