Retry mechanism for data plane self-registration #4390
SaschaIsele
started this conversation in
Ideas
Replies: 1 comment 2 replies
-
hi, it already exists, you can set it using the (by default it's 5 retries with a backoff starting from 500ms to 10s) |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Retry mechanism for data plane self-registration
This proposal aims to introduce a retry mechanism for the data plane self-registration.
Why we want this?
Faster Startup
If the control plane and the data plane are started simultaneously, it can occur that the data plane is done first.
In this case, the data plane tries to register itself but fails and goes in an error state.
The only solution is then to restart the data plane and wait for it to startup again.
A retry mechanism would alleviate this problem and make the startup faster and more predictable.
Affected Areas
Data plane self registration extension
Solution Proposal
Implement the retry mechanism which is able to retry the self registration, in case it fails the first time.
The retry mechanism should ideally have a configurable amount of retries, together with a retry delay.
Beta Was this translation helpful? Give feedback.
All reactions