-
Notifications
You must be signed in to change notification settings - Fork 5
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
improvement: exp backoff for container on failure #189
base: develop
Are you sure you want to change the base?
improvement: exp backoff for container on failure #189
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR implements exponential backoff for restarting containers after failures in the Docker service.
- Adds constants for initial and maximum backoff durations
- Introduces exponential backoff logic that increases wait time based on consecutive failure count
- Resets the failure counter when a container starts successfully
|
||
// wait for backoff period before starting a new container | ||
if elapsed < backoff_seconds { | ||
Console::info("DockerService", &format!("Waiting before starting new container ({}s remaining)...", backoff_seconds - elapsed)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The branch that checks 'if elapsed < backoff_seconds' only logs a message without delaying the loop. Consider introducing an asynchronous sleep (e.g., tokio::time::sleep) to avoid busy waiting.
Console::info("DockerService", &format!("Waiting before starting new container ({}s remaining)...", backoff_seconds - elapsed)); | |
let remaining_time = backoff_seconds - elapsed; | |
Console::info("DockerService", &format!("Waiting before starting new container ({}s remaining)...", remaining_time)); | |
sleep(Duration::from_secs(remaining_time as u64)).await; |
Copilot is powered by AI, so mistakes are possible. Review output carefully before use.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for your contribution! Can you check the fmt / clippy issue?
Addresses #60