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
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
4680
4686
cluster_max_shards_per_node:
4681
4687
title: cluster.max_shards_per_node
4682
4688
description: Controls the number of shards allowed in the cluster per data node
@@ -5056,6 +5062,38 @@ opensearch:
5056
5062
minimum: 1
5057
5063
maximum: 1e+06
5058
5064
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.
0 commit comments