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

add retries for node validations #428

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

tatlat
Copy link
Member

@tatlat tatlat commented Mar 27, 2025

Issue #, if available:

Description of changes:

Testing (if applicable):

Documentation added/planned (if applicable):

By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.

@tatlat tatlat force-pushed the node-validation-retry branch from 8157640 to 5fe11f1 Compare March 27, 2025 21:28
)
var pods *corev1.PodList
consecutiveErrors := 0
err = wait.PollUntilContextTimeout(ctx, nodeValidationInterval, nodeValidationTimeout, true, func(ctx context.Context) (bool, error) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

good idea
could we test this?

Comment on lines 20 to 21
nodeValidationInterval = 30 * time.Second
nodeValidationTimeout = 5 * time.Minute
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are this random values or we have some reason behind them?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Those were random placeholders while I test. I'm going to change it to 5 second intervals and 1 minute timeout. Since it stops after 5 consecutive errors, 1 minute makes sense since it allows for up to 6 retries assuming there's no delay in getting nodes. 5 seconds should be enough time for transient issues to resolve without polling too frequently.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If it turns out that's not enough, we can increase the duration in the future.

@tatlat tatlat force-pushed the node-validation-retry branch from 5fe11f1 to c89abc9 Compare March 28, 2025 01:16
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.

3 participants