-
Notifications
You must be signed in to change notification settings - Fork 5.2k
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
Proposal: HPA using external metrics #1801
Conversation
@kubernetes/sig-autoscaling-proposals @DirectXMan12 - we discussed this during sig-autoscaling, can you take a look? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
couple of nits inline.
You need to discuss more concretely how this maps to the external metrics API proposed in #1802.
I like the targetAverageValue
change. No matter what happens with the rest of this PR, I've become convinced that we should land that, because it helps with certain aspects of queue-based scaling (it's insufficient on its own, IMO, but together with a "traffic intensity" metric it should work).
That being said: this needs to have a more serious discussion of alternatives, because there are some. I'm not saying that this isn't the solution (it very well might be the easiest to work with), but we need documentation on what alternatives we considered, and why they were rejected.
I'm going to play the Devil's Advocate here for a moment.
What, fundamentally, prevents you from associating your metrics with some cluster-level object, or the namespace object itself? Couldn't we add the metricSelector
field to the pods
and object
metrics (to allow further drilling down of a particular metric), and then say "if you have external services that produce metrics, use relabeling to attach metadata to those services so that they're associate with some object, such as the "default" namespace?
What are the downsides to that approach? What does this approach buy/lose us in terms of reducing user complexity and confusion? What does this approach buy/lose us in terms of operator complexity and confusion?
ResourceMetricSourceType MetricSourceType = "Resource" | ||
// ExternalMetricSourceType is a global metric coming from | ||
// outside of Kubernetes. It allows autoscaling based on information | ||
// coming from components running outside of cluster |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is a bit of a documentation issue, but I think "coming from outside the cluster" is the wrong term here. I think it's better to stress that this is for the case when the metrics aren't immediately associatable with objects inside the cluster.
For instance, I could run a DBaaS that runs outside the cluster, but still provide metrics to track usage per namespace, and thus not have to use the external
type.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good point. Updated all comments as per your suggestion.
MetricSelector metav1.LabelSelector `json:"metricSelector" protobuf:"bytes,2,name=metricSelector"` | ||
|
||
// CurrentValue is the current value of the metric (as a quantity) | ||
CurrentValue resource.Quantity `json:"currentValue" protobuf:"bytes,3,name=currentValue"` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This also needs currentAverageValue *resource.Quantity
as an optional field.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added.
holding due to needing some further some further consideration of the alternatives |
9bbb929
to
4e93010
Compare
@DirectXMan12 I've added a section discussing considered alternatives. Can you take a look? |
This proposal details an extension to the HPA that would allow autoscaling based on metrics coming from outside kubernetes cluster.
4e93010
to
b2f8d0b
Compare
So, after a bit discussion with @MaciekPytel offline, I'm inclined to accept this proposal, with a caveat. I'm still hesitant about potential confusion on the part of end-users (when do I use I believe we still need an @kubernetes/api-reviewers on the sibling proposal, so we should hold off merge until that gets the ok. |
@MaciekPytel sorry for stupid question (I honestly read full proposal ;)). But how this different from existing API (e.g. in our use-case we wrote api-adapter for external system and use ObjectMetricSourceType in HPA)? |
@eghobo With ObjectMetricSource users have to bind their metrics to some kubernetes object (thus possibly modify their definition in the monitoring solution). With external metrics we allow to use unmodified metrics (like pubsub queue lenghth, external load balancer qps, etc) in HPA. |
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: MaciekPytel, mwielgus The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
@eghobo The goal is to allow autoscaling based on metrics that have no inherent relationship to any k8s object. For example if your application use a hosted service and you want to autoscale based on its metrics, which contain no reference to your kubernetes object. The design of Object metric (even the name :) ) is suited to use metrics inherently associated with some k8s object. |
/hold for api review |
#60096 is approved by API reviewer (@thockin). @DirectXMan12 Can we unhold? |
/unhold yep |
(although I kind-of wanted approval on the external metrics API, too) |
@MaciekPytel thx for details, we are using adapter to access external metrics now. Sorry, but I am very skeptical about |
Automatic merge from submit-queue (batch tested with PRs 60208, 60084, 60183, 59713, 60096). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. Add external metric type to HPA API **What this PR does / why we need it**: Add external metric type to HPA API proposed in xref kubernetes/community#1801 **Release note**: ```release-note Allows HorizontalPodAutoscaler to use global metrics not associated with any Kubernetes object (for example metrics from a hoster service running outside of Kubernetes cluster). ```
Automatic merge from submit-queue (batch tested with PRs 60208, 60084, 60183, 59713, 60096). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. Add external metric type to HPA API **What this PR does / why we need it**: Add external metric type to HPA API proposed in xref kubernetes/community#1801 **Release note**: ```release-note Allows HorizontalPodAutoscaler to use global metrics not associated with any Kubernetes object (for example metrics from a hoster service running outside of Kubernetes cluster). ``` Kubernetes-commit: b22b7853459db50a2c0619faa398f9fa1e98228e
Automatic merge from submit-queue (batch tested with PRs 60208, 60084, 60183, 59713, 60096). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. Add external metric type to HPA API **What this PR does / why we need it**: Add external metric type to HPA API proposed in xref kubernetes/community#1801 **Release note**: ```release-note Allows HorizontalPodAutoscaler to use global metrics not associated with any Kubernetes object (for example metrics from a hoster service running outside of Kubernetes cluster). ``` Kubernetes-commit: b22b7853459db50a2c0619faa398f9fa1e98228e
Automatic merge from submit-queue (batch tested with PRs 60208, 60084, 60183, 59713, 60096). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. Add external metric type to HPA API **What this PR does / why we need it**: Add external metric type to HPA API proposed in xref kubernetes/community#1801 **Release note**: ```release-note Allows HorizontalPodAutoscaler to use global metrics not associated with any Kubernetes object (for example metrics from a hoster service running outside of Kubernetes cluster). ``` Kubernetes-commit: b22b7853459db50a2c0619faa398f9fa1e98228e
Automatic merge from submit-queue (batch tested with PRs 60208, 60084, 60183, 59713, 60096). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. Add external metric type to HPA API **What this PR does / why we need it**: Add external metric type to HPA API proposed in xref kubernetes/community#1801 **Release note**: ```release-note Allows HorizontalPodAutoscaler to use global metrics not associated with any Kubernetes object (for example metrics from a hoster service running outside of Kubernetes cluster). ``` Kubernetes-commit: b22b7853459db50a2c0619faa398f9fa1e98228e
Proposal: HPA using external metrics
This proposal describes an extension to the HPA v2 API that would allow autoscaling based on metrics coming from outside kubernetes cluster. This is not possible using existing API.
Common use-cases are autoscaling pods using a hosted service (ex. hosted message queue) or autoscaling in systems that have (so far) only partly moved to Kubernetes.
#1802 describes External Metrics API used internally by HPA to retrieve metrics.
/sig-autoscaling