mqliang opened a new pull request, #8845: URL: https://github.com/apache/pinot/pull/8845
When downloadURI is backed by a large number of instances, say 9 instances, the backoff logic may take up to 2 days: ``` retry delay time for attempt 0: 0 sec retry delay time for attempt 1: 2 sec retry delay time for attempt 2: 10 sec retry delay time for attempt 3: 28 sec retry delay time for attempt 4: 88 sec retry delay time for attempt 5: 723 sec retry delay time for attempt 6: 5389 sec retry delay time for attempt 7: 36734 sec retry delay time for attempt 8: 171520 sec ``` This change use the number of IP Addresses as default retry count when "retry.count" is not configured, otherwise, use the configured value. cc @snleee -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
