mmodzelewski opened a new issue, #2416: URL: https://github.com/apache/iggy/issues/2416
Currently, HTTP requests to the configuration server can fail due to transient network issues, temporary server unavailability, or rate limiting. The requests fail immediately without retry, reducing reliability. ## Proposed Solution Implement exponential backoff retry logic for HTTP requests in the connectors' config provider. The retry mechanism could be configurable. Below is the example of how the configuration could look, but any other ideas can be discussed. ```toml [connectors] config_type = "http" base_url = "http://api.example.com" [connectors.retry] enabled = true max_attempts = 3 initial_backoff = "1 s" max_backoff = "30 s" backoff_multiplier = 2.0 ``` -- 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]
