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

feat: update azure records concurrently #4665

Conversation

tanujd11
Copy link
Contributor

@tanujd11 tanujd11 commented Aug 8, 2024

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

  • Unit tests updated
  • End user documentation updated

@k8s-ci-robot
Copy link
Contributor

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by:
Once this PR has been reviewed and has the lgtm label, please assign szuecs for approval. For more information see the Kubernetes Code Review Process.

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 /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@k8s-ci-robot k8s-ci-robot added cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. labels Aug 8, 2024
@k8s-ci-robot
Copy link
Contributor

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 /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work. Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

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.

@k8s-ci-robot k8s-ci-robot added the size/L Denotes a PR that changes 100-499 lines, ignoring generated files. label Aug 8, 2024
@deva26
Copy link

deva26 commented Aug 8, 2024

Thank you @tanujd11

@mloiseleur
Copy link
Contributor

Thanks for this interesting PR.
Mmmm 🤔 this approach comes with many risks.
When a user has 1000 endpoints, it will create 1000 requests in parallel.

Is this possible with Azure to send changes with batch ? Like it's done on AWS ?

@tanujd11
Copy link
Contributor Author

tanujd11 commented Aug 8, 2024

@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.

@tanujd11
Copy link
Contributor Author

tanujd11 commented Aug 8, 2024

We can always limit the number of goroutines if that's what is needed for this PR to go through.

@mloiseleur
Copy link
Contributor

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.

@k8s-ci-robot k8s-ci-robot added the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label Oct 19, 2024
@k8s-ci-robot
Copy link
Contributor

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.

@mloiseleur
Copy link
Contributor

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.
/close

@k8s-ci-robot
Copy link
Contributor

@mloiseleur: Closed this PR.

In response to this:

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.
/close

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. size/L Denotes a PR that changes 100-499 lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Concurrently Create Records in Azure
4 participants