Skip to content

Commit f2418e1

Browse files
committed
acrolinx
Signed-off-by: Hannah Hunter <[email protected]>
1 parent 7985687 commit f2418e1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/container-apps/dapr-keda-scaling.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ In the following scenario, we examine the Bicep for:
2121

2222
The `checkout` publisher is a headless service that runs indefinitely and never scales down to zero.
2323

24-
We do this by setting the `minReplicas` to "1", which ensures the container app doesn't follow the default behavior.
24+
Below, we've set the `minReplicas` to "1", which ensures the container app doesn't follow the default behavior.
2525

2626
```bicep
2727
resource checkout 'Microsoft.App/containerApps@2022-03-01' = {
@@ -216,7 +216,7 @@ metadata: {
216216
}
217217
```
218218

219-
This property tells KEDA how many messages each instance of our application can process at the same time. Since the application is single-threaded, we'd normally set this value to 1, resulting in KEDA scaling up our application to match the number of messages waiting in the queue. For example, if 5 messages are waiting, KEDA will scale our app up to 5 instances. In our scenario, we set a `maxReplicas` value of 10, so KEDA scales upt to 10 instances.
219+
This property tells KEDA how many messages each instance of our application can process at the same time. Since the application is single-threaded, we'd normally set this value to 1, resulting in KEDA scaling up our application to match the number of messages waiting in the queue. For example, if five messages are waiting, KEDA scales our app up to five instances. In our scenario, we set a `maxReplicas` value of 10, so KEDA scales up to 10 instances.
220220

221221
## Next steps
222222

0 commit comments

Comments
 (0)