Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 24 additions & 1 deletion docs/configuration-parameters-1830bca.md
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,28 @@ Integer

Indirectly, this parameter sets the maximum disk size for storing observability data as described in [Service Plans](service-plans-a9d2d1b.md). This parameter has no effect for the *dev* plan. Needs to be between `2` and `10`. Default is `10`.

</td>
</tr>
<tr>
<td valign="top">

min\_data\_nodes

</td>
<td valign="top">

No

</td>
<td valign="top">

Integer

</td>
<td valign="top">

Specifies the minimum number of OpenSearch data nodes to remain provisioned, regardless of auto-scaling. This allows for prescaling the minimum disk size for storing observability date as described in [Service Plans](service-plans-a9d2d1b.md). Maintaining a minimum baseline of data nodes can help mitigate potential ingestion bottlenecks. This parameter has no effect for the *dev* plan. Needs to be between `2` and `10` and less than or equals to `max_data_nodes`. Default is `2`.

</td>
</tr>
</table>
Expand Down Expand Up @@ -979,7 +1001,8 @@ The following snippet shows a sample payload that could be used for a `standard`
> ```
> {
> "backend": {
> "max_data_nodes": 10
> "max_data_nodes": 10,
> "min_data_nodes": 3
> },
> "dashboards": {
> "custom_label": "My-Label"
Expand Down
Loading