From d53670a17f59cb9715e48ab4931a32baccca21ca Mon Sep 17 00:00:00 2001 From: Mike Petersen Date: Fri, 10 Apr 2020 10:52:06 -0700 Subject: [PATCH] Updated link to autoscale default (#2334) --- docs/serving/samples/autoscale-go/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/serving/samples/autoscale-go/README.md b/docs/serving/samples/autoscale-go/README.md index 06b8e8b43..7c93d3bde 100644 --- a/docs/serving/samples/autoscale-go/README.md +++ b/docs/serving/samples/autoscale-go/README.md @@ -118,7 +118,7 @@ A demonstration of the autoscaling capabilities of a Knative Serving Revision. Knative Serving autoscaling is based on the average number of in-flight requests per pod (concurrency). The system has a default -[target concurrency of 100](https://github.com/knative/serving/blob/3f00c39e289ed4bfb84019131651c2e4ea660ab5/config/config-autoscaler.yaml#L35-L41) +[target concurrency of 100](https://github.com/knative/serving/blob/master/config/core/configmaps/autoscaler.yaml#L54-L60) but [we used 10](service.yaml#L25-L26) for our service. We loaded the service with 50 concurrent requests so the autoscaler created 5 pods (`50 concurrent requests / target of 10 = 5 pods`)