You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/en/containers/autoscaling/_index.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -232,8 +232,8 @@ There are three ways to enable autoscaling for a workload. Pick the path that ma
232
232
The fastest way to get started is the [Setup page][11] in the Datadog UI. The wizard walks you through five steps: select a cluster, verify Agent and permission requirements, choose an install method, pick a scaling template, and deploy. Templates available in the wizard:
233
233
234
234
- **Optimize cost**: high CPU utilization target, aggressive scale-down, lowest replica floor. Best for stateless, cost-sensitive workloads.
235
-
- **Optimize balance**: moderate utilization target, balanced scale-up and scale-down. Best for most stateless workloads.
236
-
- **Optimize performance**: conservative utilization target, slow scale-down, higher replica floor. Best for stateful or critical services.
235
+
- **Optimize balance**: moderate utilization target, fast scale-up, balanced scale-down. Best for most stateless workloads.
236
+
- **Optimize performance**: conservative utilization target, fast scale-up, slow scale-down, higher replica floor. Best for stateful or critical services.
237
237
- **Customize**: start from any of the above and tune CPU target, replicas, and stabilization windows yourself.
238
238
239
239
The Setup wizard is best for trying autoscaling on a single workload, getting hands-on with a recommendation, or onboarding a small set of workloads. (Requires `Workload Scaling Write` and `Autoscaling Manage` permissions.)
@@ -282,7 +282,7 @@ spec:
282
282
- periodSeconds: 120
283
283
type: Percent
284
284
value: 50
285
-
stabilizationWindowSeconds: 300
285
+
stabilizationWindowSeconds: 190
286
286
update:
287
287
strategy: Auto
288
288
constraints:
@@ -302,7 +302,7 @@ spec:
302
302
{{% /tab %}}
303
303
{{% tab "Optimize Balance" %}}
304
304
305
-
Pick this template when you want savings without trading off availability. It's a sensible default for most stateless workloads. The defining setting is the moderate CPU utilization target (70%) paired with a conservative scale-down (20% every 20 minutes) and a two-replica minimum. The controller adds capacity rapidly but removes it slowly.
305
+
Pick this template when you want savings without trading off availability. It's a sensible default for most stateless workloads. The defining setting is the moderate CPU utilization target (70%) paired with a conservative scale-down and a two-replica minimum. The controller adds capacity rapidly but removes it slowly.
306
306
307
307
```yaml
308
308
apiVersion: datadoghq.com/v1alpha2
@@ -330,7 +330,7 @@ spec:
330
330
- periodSeconds: 120
331
331
type: Percent
332
332
value: 50
333
-
stabilizationWindowSeconds: 600
333
+
stabilizationWindowSeconds: 130
334
334
update:
335
335
strategy: Auto
336
336
constraints:
@@ -417,7 +417,7 @@ spec:
417
417
- periodSeconds: 120
418
418
type: Percent
419
419
value: 50
420
-
stabilizationWindowSeconds: 600
420
+
stabilizationWindowSeconds: 130
421
421
# Vertical updates disabled — horizontal only
422
422
update:
423
423
strategy: Disabled
@@ -472,9 +472,9 @@ The Cluster Agent ships three built-in profiles and recreates them on startup, s
472
472
473
473
| Profile | CPU target | Min replicas | Profile of behavior |
474
474
|---|---|---|---|
475
-
| `datadog-optimize-cost` | 85% | 1 | Stateless, cost-sensitive workloads. Fast scale-up and scale-down (5-minute stabilization windows, 50% step every 2 minutes). |
476
-
| `datadog-optimize-balance` | 70% | 2 | Default for most stateless workloads. Balanced 10-minute stabilization windows, conservative scale-down (20% step every 20 minutes). |
477
-
| `datadog-optimize-performance` | 60% | 3 | Stateful or latency-sensitive workloads. Very conservative scale-down (15-minute stabilization windows, 10% step every 30 minutes). |
475
+
| `datadog-optimize-cost` | 85% | 1 | High CPU utilization target, aggressive scale-down, lowest replica floor. Best for stateless, cost-sensitive workloads. |
476
+
| `datadog-optimize-balance` | 70% | 2 | Moderate utilization target, fast scale-up, balanced scale-down. Best for most stateless workloads. |
477
+
| `datadog-optimize-performance` | 60% | 3 | Conservative utilization target, fast scale-up, slow scale-down, higher replica floor. Best for stateful or critical services. |
478
478
479
479
To activate a profile on a single workload, add the label to the workload's `metadata.labels`:
0 commit comments