-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
feat: update azure records concurrently #4665
feat: update azure records concurrently #4665
Conversation
Signed-off-by: tanujd11 <[email protected]>
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Hi @tanujd11. Thanks for your PR. I'm waiting for a kubernetes-sigs member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
Thank you @tanujd11 |
Thanks for this interesting PR. Is this possible with Azure to send changes with batch ? Like it's done on AWS ? |
@mloiseleur , I understand it spins a goroutine per endpoint. Theoretically it is still safe to create 1000 or so requests in parallel. The actual thing which we will need to worry in this case is azure ratelimit which is about 200 Create or update calls. Also there is no batch request concept for Azure at the moment like AWS. |
We can always limit the number of goroutines if that's what is needed for this PR to go through. |
There are known user of external-dns with thousand of records. So yes, this PR needs to be improved to support them and avoid rate-limit. |
PR needs rebase. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
I'm closing this PR, since there is no update since #4665 (comment) Feel free to re-open it or open a new one if needed. |
@mloiseleur: Closed this PR. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
Description
DNS records concurrently for faster propagation of DNS records to Azure DNS Zone. This call need not be a blocking call.
Fixes #4608
Checklist