Skip to content

Commit a189225

Browse files
committed
Introduce min_instances parameter
1 parent 8a43374 commit a189225

3 files changed

+29
-3
lines changed

docs/configuration-parameters-1830bca.md

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,30 @@ Integer
382382
</td>
383383
<td valign="top">
384384

385-
Specifies the maximum number of provisionable ingest instances, which are scaled automatically based on their overall CPU utilization. Must be between `2` and `10`. Defaults to `2`. This parameter impacts peak throughput and buffering. Scale-out happens when the overall CPU utilization exceeds 80%. Scale-in happens when the overall CPU utilization or configuration parameter decreases. This parameter has no effect on the *dev* plan, which is limited to a single instance.
385+
Specifies the maximum number of provisionable ingest instances, which are scaled automatically based on their overall CPU and memory utilization. Must be between `2` and `10`. Defaults to `2`. This parameter impacts peak throughput and buffering. Scale-out happens when the overall CPU utilization exceeds 80%. Scale-in happens when the overall CPU utilization or configuration parameter decreases. This parameter has no effect on the *dev* plan, which is limited to a single instance.
386+
387+
</td>
388+
</tr>
389+
</tr>
390+
<tr>
391+
<td valign="top">
392+
393+
min\_instances
394+
395+
</td>
396+
<td valign="top">
397+
398+
No
399+
400+
</td>
401+
<td valign="top">
402+
403+
Integer
404+
405+
</td>
406+
<td valign="top">
407+
408+
Specifies the minimum number Fluentd instances which are always provisioned regardless of auto-scaling. Utilized to guarantee a minimum number of running instances, support predictable workloads, and mitigate autoscaling lag during sudden ingestion bursts. Must be between `2` and `10` and less than or equals to `max_instances`. Default is `2`. This parameter has no effect on the *dev* plan, which is limited to a single instance. If `max_instances` is smaller than `min_instances`, both parameters will be set to the value of `max_instances` (= no autoscaling).
386409

387410
</td>
388411
</tr>
@@ -722,7 +745,8 @@ The following snippet shows a sample payload that could be used for a `standard`
722745
> },
723746
> "feature_flags": [ "upgradeToOpenSearchV2" ],
724747
> "ingest": {
725-
> "max_instances": 10
748+
> "max_instances": 10,
749+
> "min_instances": 2
726750
> },
727751
> "retention_period": 14
728752
> }

docs/create-an-sap-cloud-logging-instance-through-cloud-foundry-cli-3658d09.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ See [Prerequisites](prerequisites-41d8559.md).
3232
"api_enabled": false
3333
},
3434
"ingest": {
35-
"max_instances": 10
35+
"max_instances": 10,
36+
"min_instances": 2
3637
}
3738
}'
3839

docs/create-an-sap-cloud-logging-instance-through-sap-btp-service-operator-f6aa131.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@
5858
retentionPeriod: 14
5959
ingest:
6060
max_instances: 10
61+
min_instances: 2
6162
6263
```
6364

0 commit comments

Comments
 (0)