Skip to content

Commit 37643d2

Browse files
chore(updater): bump pkg/dist/*.yml (2024-12-27) (#242)
Co-authored-by: GitHub <[email protected]>
1 parent 05ce737 commit 37643d2

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

pkg/dist/service_types.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4677,6 +4677,12 @@ opensearch:
46774677
- value: ip
46784678
max_length: 1024
46794679
example: ip
4680+
cluster.routing.allocation.balance.prefer_primary:
4681+
title: cluster.routing.allocation.balance.prefer_primary
4682+
description: When set to true, OpenSearch attempts to evenly distribute the primary shards between the cluster nodes. Enabling this setting does not always guarantee an equal number of primary shards on each node, especially in the event of a failover. Changing this setting to false after it was set to true does not invoke redistribution of primary shards. Default is false.
4683+
type: boolean
4684+
default: false
4685+
example: false
46804686
cluster_max_shards_per_node:
46814687
title: cluster.max_shards_per_node
46824688
description: Controls the number of shards allowed in the cluster per data node
@@ -5056,6 +5062,38 @@ opensearch:
50565062
minimum: 1
50575063
maximum: 1e+06
50585064
example: "10000"
5065+
segrep:
5066+
title: Segment Replication Backpressure Settings
5067+
type: object
5068+
properties:
5069+
pressure.checkpoint.limit:
5070+
title: segrep.pressure.checkpoint.limit
5071+
description: The maximum number of indexing checkpoints that a replica shard can fall behind when copying from primary. Once `segrep.pressure.checkpoint.limit` is breached along with `segrep.pressure.time.limit`, the segment replication backpressure mechanism is initiated. Default is 4 checkpoints.
5072+
type: integer
5073+
default: "4"
5074+
minimum: 0
5075+
example: "4"
5076+
pressure.enabled:
5077+
title: segrep.pressure.enabled
5078+
description: Enables the segment replication backpressure mechanism. Default is false.
5079+
type: boolean
5080+
default: false
5081+
example: false
5082+
pressure.replica.stale.limit:
5083+
title: segrep.pressure.replica.stale.limit
5084+
description: The maximum number of stale replica shards that can exist in a replication group. Once `segrep.pressure.replica.stale.limit` is breached, the segment replication backpressure mechanism is initiated. Default is .5, which is 50% of a replication group.
5085+
type: number
5086+
default: "0.5"
5087+
minimum: 0
5088+
maximum: 1
5089+
example: "0.5"
5090+
pressure.time.limit:
5091+
title: segrep.pressure.time.limit
5092+
description: The maximum amount of time that a replica shard can take to copy from the primary shard. Once segrep.pressure.time.limit is breached along with segrep.pressure.checkpoint.limit, the segment replication backpressure mechanism is initiated. Default is 5 minutes.
5093+
type: string
5094+
default: 5m
5095+
pattern: ^\d+\s*(?:[dhms]|ms|micros|nanos)$
5096+
example: 5m
50595097
shard_indexing_pressure:
50605098
title: Shard indexing back pressure settings
50615099
type: object

0 commit comments

Comments
 (0)