Skip to content
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

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from

Conversation

spaghettic0de
Copy link
Contributor

Addresses #60

@JannikSt JannikSt requested a review from Copilot March 28, 2025 22:06
Copy link
Contributor

@Copilot Copilot AI left a 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));
Copy link
Preview

Copilot AI Mar 28, 2025

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.

Suggested change
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.

Copy link
Member

@JannikSt JannikSt left a 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?

@spaghettic0de spaghettic0de requested a review from JannikSt March 29, 2025 15:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants