-
Notifications
You must be signed in to change notification settings - Fork 51
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
Maintain data plane client connections concurrently #127
Labels
area/maintenance
lifecycle/frozen
Indicates that an issue or PR should not be auto-closed due to staleness.
priority/important-longterm
Important over the long term, but may not be staffed and/or may need multiple releases to complete.
Milestone
Comments
shaneutt
added
area/maintenance
priority/important-soon
Must be staffed and worked on either currently, or very soon, ideally in time for the next release.
labels
Oct 27, 2023
shaneutt
added
priority/important-longterm
Important over the long term, but may not be staffed and/or may need multiple releases to complete.
and removed
priority/important-soon
Must be staffed and worked on either currently, or very soon, ideally in time for the next release.
labels
Oct 27, 2023
The Kubernetes project currently lacks enough contributors to adequately respond to all issues. This bot triages un-triaged issues according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle stale |
k8s-ci-robot
added
the
lifecycle/stale
Denotes an issue or PR has remained open with no activity and has become stale.
label
Jan 31, 2024
Not stale, wanted for https://github.com/kubernetes-sigs/blixt/milestone/6 /remove-lifecycle stale |
k8s-ci-robot
removed
the
lifecycle/stale
Denotes an issue or PR has remained open with no activity and has become stale.
label
Jan 31, 2024
shaneutt
modified the milestones:
v1.0.0 - Reference Implementation,
v0.6.0 - Hardening
Apr 19, 2024
k8s-ci-robot
added
the
lifecycle/stale
Denotes an issue or PR has remained open with no activity and has become stale.
label
Jul 18, 2024
k8s-ci-robot
added
lifecycle/rotten
Denotes an issue or PR that has aged beyond stale and will be auto-closed.
and removed
lifecycle/stale
Denotes an issue or PR has remained open with no activity and has become stale.
labels
Aug 17, 2024
shaneutt
removed
the
lifecycle/rotten
Denotes an issue or PR that has aged beyond stale and will be auto-closed.
label
Oct 20, 2024
planned for v0.6.0 /lifecycle frozen |
k8s-ci-robot
added
the
lifecycle/frozen
Indicates that an issue or PR should not be auto-closed due to staleness.
label
Oct 20, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
area/maintenance
lifecycle/frozen
Indicates that an issue or PR should not be auto-closed due to staleness.
priority/important-longterm
Important over the long term, but may not be staffed and/or may need multiple releases to complete.
#93 introduced support for maintaining multiple gRPC client connections. However, the creation and destruction of the connections is done serially. First, we're closing outdated connections and then creating new connections, each happens one by one.
In large clusters, this will introduce significant delays at the reconciliation phase of the data-plane controller.
The text was updated successfully, but these errors were encountered: