opensearch.ClusterSettings
Explore with Pulumi AI
Manages a cluster’s (persistent) settings.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as opensearch from "@pulumi/opensearch";
const global = new opensearch.ClusterSettings("global", {
actionAutoCreateIndex: "my-index-000001,index10,-index1*,+ind*",
clusterMaxShardsPerNode: 10,
});
import pulumi
import pulumi_opensearch as opensearch
global_ = opensearch.ClusterSettings("global",
action_auto_create_index="my-index-000001,index10,-index1*,+ind*",
cluster_max_shards_per_node=10)
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/opensearch/v2/opensearch"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := opensearch.NewClusterSettings(ctx, "global", &opensearch.ClusterSettingsArgs{
ActionAutoCreateIndex: pulumi.String("my-index-000001,index10,-index1*,+ind*"),
ClusterMaxShardsPerNode: pulumi.Float64(10),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Opensearch = Pulumi.Opensearch;
return await Deployment.RunAsync(() =>
{
var @global = new Opensearch.ClusterSettings("global", new()
{
ActionAutoCreateIndex = "my-index-000001,index10,-index1*,+ind*",
ClusterMaxShardsPerNode = 10,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.opensearch.ClusterSettings;
import com.pulumi.opensearch.ClusterSettingsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var global = new ClusterSettings("global", ClusterSettingsArgs.builder()
.actionAutoCreateIndex("my-index-000001,index10,-index1*,+ind*")
.clusterMaxShardsPerNode(10)
.build());
}
}
resources:
global:
type: opensearch:ClusterSettings
properties:
actionAutoCreateIndex: my-index-000001,index10,-index1*,+ind*
clusterMaxShardsPerNode: 10
Create ClusterSettings Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ClusterSettings(name: string, args?: ClusterSettingsArgs, opts?: CustomResourceOptions);
@overload
def ClusterSettings(resource_name: str,
args: Optional[ClusterSettingsArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ClusterSettings(resource_name: str,
opts: Optional[ResourceOptions] = None,
action_auto_create_index: Optional[str] = None,
action_destructive_requires_name: Optional[bool] = None,
cluster_blocks_read_only: Optional[bool] = None,
cluster_blocks_read_only_allow_delete: Optional[bool] = None,
cluster_indices_close_enable: Optional[bool] = None,
cluster_info_update_interval: Optional[str] = None,
cluster_max_shards_per_node: Optional[float] = None,
cluster_max_shards_per_node_frozen: Optional[float] = None,
cluster_no_master_block: Optional[str] = None,
cluster_persistent_tasks_allocation_enable: Optional[str] = None,
cluster_persistent_tasks_allocation_recheck_interval: Optional[str] = None,
cluster_routing_allocation_allow_rebalance: Optional[str] = None,
cluster_routing_allocation_awareness_attributes: Optional[str] = None,
cluster_routing_allocation_awareness_force_zone_values: Optional[Sequence[str]] = None,
cluster_routing_allocation_balance_index: Optional[float] = None,
cluster_routing_allocation_balance_shard: Optional[float] = None,
cluster_routing_allocation_balance_threshold: Optional[float] = None,
cluster_routing_allocation_cluster_concurrent_rebalance: Optional[float] = None,
cluster_routing_allocation_disk_include_relocations: Optional[bool] = None,
cluster_routing_allocation_disk_threshold_enabled: Optional[bool] = None,
cluster_routing_allocation_disk_watermark_high: Optional[str] = None,
cluster_routing_allocation_disk_watermark_low: Optional[str] = None,
cluster_routing_allocation_enable: Optional[str] = None,
cluster_routing_allocation_node_concurrent_incoming_recoveries: Optional[float] = None,
cluster_routing_allocation_node_concurrent_outgoing_recoveries: Optional[float] = None,
cluster_routing_allocation_node_concurrent_recoveries: Optional[float] = None,
cluster_routing_allocation_node_initial_primaries_recoveries: Optional[float] = None,
cluster_routing_allocation_same_shard_host: Optional[bool] = None,
cluster_routing_allocation_total_shards_per_node: Optional[float] = None,
cluster_routing_rebalance_enable: Optional[str] = None,
cluster_search_request_slowlog_level: Optional[str] = None,
cluster_search_request_slowlog_threshold_debug: Optional[str] = None,
cluster_search_request_slowlog_threshold_info: Optional[str] = None,
cluster_search_request_slowlog_threshold_trace: Optional[str] = None,
cluster_search_request_slowlog_threshold_warn: Optional[str] = None,
cluster_settings_id: Optional[str] = None,
indices_breaker_fielddata_limit: Optional[str] = None,
indices_breaker_fielddata_overhead: Optional[float] = None,
indices_breaker_request_limit: Optional[str] = None,
indices_breaker_request_overhead: Optional[float] = None,
indices_breaker_total_limit: Optional[str] = None,
indices_recovery_max_bytes_per_sec: Optional[str] = None,
network_breaker_inflight_requests_limit: Optional[str] = None,
network_breaker_inflight_requests_overhead: Optional[float] = None,
script_max_compilations_rate: Optional[str] = None,
search_default_search_timeout: Optional[str] = None)
func NewClusterSettings(ctx *Context, name string, args *ClusterSettingsArgs, opts ...ResourceOption) (*ClusterSettings, error)
public ClusterSettings(string name, ClusterSettingsArgs? args = null, CustomResourceOptions? opts = null)
public ClusterSettings(String name, ClusterSettingsArgs args)
public ClusterSettings(String name, ClusterSettingsArgs args, CustomResourceOptions options)
type: opensearch:ClusterSettings
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ClusterSettingsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ClusterSettingsArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ClusterSettingsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ClusterSettingsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ClusterSettingsArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var clusterSettingsResource = new Opensearch.ClusterSettings("clusterSettingsResource", new()
{
ActionAutoCreateIndex = "string",
ActionDestructiveRequiresName = false,
ClusterBlocksReadOnly = false,
ClusterBlocksReadOnlyAllowDelete = false,
ClusterIndicesCloseEnable = false,
ClusterInfoUpdateInterval = "string",
ClusterMaxShardsPerNode = 0,
ClusterMaxShardsPerNodeFrozen = 0,
ClusterNoMasterBlock = "string",
ClusterPersistentTasksAllocationEnable = "string",
ClusterPersistentTasksAllocationRecheckInterval = "string",
ClusterRoutingAllocationAllowRebalance = "string",
ClusterRoutingAllocationAwarenessAttributes = "string",
ClusterRoutingAllocationAwarenessForceZoneValues = new[]
{
"string",
},
ClusterRoutingAllocationBalanceIndex = 0,
ClusterRoutingAllocationBalanceShard = 0,
ClusterRoutingAllocationBalanceThreshold = 0,
ClusterRoutingAllocationClusterConcurrentRebalance = 0,
ClusterRoutingAllocationDiskIncludeRelocations = false,
ClusterRoutingAllocationDiskThresholdEnabled = false,
ClusterRoutingAllocationDiskWatermarkHigh = "string",
ClusterRoutingAllocationDiskWatermarkLow = "string",
ClusterRoutingAllocationEnable = "string",
ClusterRoutingAllocationNodeConcurrentIncomingRecoveries = 0,
ClusterRoutingAllocationNodeConcurrentOutgoingRecoveries = 0,
ClusterRoutingAllocationNodeConcurrentRecoveries = 0,
ClusterRoutingAllocationNodeInitialPrimariesRecoveries = 0,
ClusterRoutingAllocationSameShardHost = false,
ClusterRoutingAllocationTotalShardsPerNode = 0,
ClusterRoutingRebalanceEnable = "string",
ClusterSearchRequestSlowlogLevel = "string",
ClusterSearchRequestSlowlogThresholdDebug = "string",
ClusterSearchRequestSlowlogThresholdInfo = "string",
ClusterSearchRequestSlowlogThresholdTrace = "string",
ClusterSearchRequestSlowlogThresholdWarn = "string",
ClusterSettingsId = "string",
IndicesBreakerFielddataLimit = "string",
IndicesBreakerFielddataOverhead = 0,
IndicesBreakerRequestLimit = "string",
IndicesBreakerRequestOverhead = 0,
IndicesBreakerTotalLimit = "string",
IndicesRecoveryMaxBytesPerSec = "string",
NetworkBreakerInflightRequestsLimit = "string",
NetworkBreakerInflightRequestsOverhead = 0,
ScriptMaxCompilationsRate = "string",
SearchDefaultSearchTimeout = "string",
});
example, err := opensearch.NewClusterSettings(ctx, "clusterSettingsResource", &opensearch.ClusterSettingsArgs{
ActionAutoCreateIndex: pulumi.String("string"),
ActionDestructiveRequiresName: pulumi.Bool(false),
ClusterBlocksReadOnly: pulumi.Bool(false),
ClusterBlocksReadOnlyAllowDelete: pulumi.Bool(false),
ClusterIndicesCloseEnable: pulumi.Bool(false),
ClusterInfoUpdateInterval: pulumi.String("string"),
ClusterMaxShardsPerNode: pulumi.Float64(0),
ClusterMaxShardsPerNodeFrozen: pulumi.Float64(0),
ClusterNoMasterBlock: pulumi.String("string"),
ClusterPersistentTasksAllocationEnable: pulumi.String("string"),
ClusterPersistentTasksAllocationRecheckInterval: pulumi.String("string"),
ClusterRoutingAllocationAllowRebalance: pulumi.String("string"),
ClusterRoutingAllocationAwarenessAttributes: pulumi.String("string"),
ClusterRoutingAllocationAwarenessForceZoneValues: pulumi.StringArray{
pulumi.String("string"),
},
ClusterRoutingAllocationBalanceIndex: pulumi.Float64(0),
ClusterRoutingAllocationBalanceShard: pulumi.Float64(0),
ClusterRoutingAllocationBalanceThreshold: pulumi.Float64(0),
ClusterRoutingAllocationClusterConcurrentRebalance: pulumi.Float64(0),
ClusterRoutingAllocationDiskIncludeRelocations: pulumi.Bool(false),
ClusterRoutingAllocationDiskThresholdEnabled: pulumi.Bool(false),
ClusterRoutingAllocationDiskWatermarkHigh: pulumi.String("string"),
ClusterRoutingAllocationDiskWatermarkLow: pulumi.String("string"),
ClusterRoutingAllocationEnable: pulumi.String("string"),
ClusterRoutingAllocationNodeConcurrentIncomingRecoveries: pulumi.Float64(0),
ClusterRoutingAllocationNodeConcurrentOutgoingRecoveries: pulumi.Float64(0),
ClusterRoutingAllocationNodeConcurrentRecoveries: pulumi.Float64(0),
ClusterRoutingAllocationNodeInitialPrimariesRecoveries: pulumi.Float64(0),
ClusterRoutingAllocationSameShardHost: pulumi.Bool(false),
ClusterRoutingAllocationTotalShardsPerNode: pulumi.Float64(0),
ClusterRoutingRebalanceEnable: pulumi.String("string"),
ClusterSearchRequestSlowlogLevel: pulumi.String("string"),
ClusterSearchRequestSlowlogThresholdDebug: pulumi.String("string"),
ClusterSearchRequestSlowlogThresholdInfo: pulumi.String("string"),
ClusterSearchRequestSlowlogThresholdTrace: pulumi.String("string"),
ClusterSearchRequestSlowlogThresholdWarn: pulumi.String("string"),
ClusterSettingsId: pulumi.String("string"),
IndicesBreakerFielddataLimit: pulumi.String("string"),
IndicesBreakerFielddataOverhead: pulumi.Float64(0),
IndicesBreakerRequestLimit: pulumi.String("string"),
IndicesBreakerRequestOverhead: pulumi.Float64(0),
IndicesBreakerTotalLimit: pulumi.String("string"),
IndicesRecoveryMaxBytesPerSec: pulumi.String("string"),
NetworkBreakerInflightRequestsLimit: pulumi.String("string"),
NetworkBreakerInflightRequestsOverhead: pulumi.Float64(0),
ScriptMaxCompilationsRate: pulumi.String("string"),
SearchDefaultSearchTimeout: pulumi.String("string"),
})
var clusterSettingsResource = new ClusterSettings("clusterSettingsResource", ClusterSettingsArgs.builder()
.actionAutoCreateIndex("string")
.actionDestructiveRequiresName(false)
.clusterBlocksReadOnly(false)
.clusterBlocksReadOnlyAllowDelete(false)
.clusterIndicesCloseEnable(false)
.clusterInfoUpdateInterval("string")
.clusterMaxShardsPerNode(0)
.clusterMaxShardsPerNodeFrozen(0)
.clusterNoMasterBlock("string")
.clusterPersistentTasksAllocationEnable("string")
.clusterPersistentTasksAllocationRecheckInterval("string")
.clusterRoutingAllocationAllowRebalance("string")
.clusterRoutingAllocationAwarenessAttributes("string")
.clusterRoutingAllocationAwarenessForceZoneValues("string")
.clusterRoutingAllocationBalanceIndex(0)
.clusterRoutingAllocationBalanceShard(0)
.clusterRoutingAllocationBalanceThreshold(0)
.clusterRoutingAllocationClusterConcurrentRebalance(0)
.clusterRoutingAllocationDiskIncludeRelocations(false)
.clusterRoutingAllocationDiskThresholdEnabled(false)
.clusterRoutingAllocationDiskWatermarkHigh("string")
.clusterRoutingAllocationDiskWatermarkLow("string")
.clusterRoutingAllocationEnable("string")
.clusterRoutingAllocationNodeConcurrentIncomingRecoveries(0)
.clusterRoutingAllocationNodeConcurrentOutgoingRecoveries(0)
.clusterRoutingAllocationNodeConcurrentRecoveries(0)
.clusterRoutingAllocationNodeInitialPrimariesRecoveries(0)
.clusterRoutingAllocationSameShardHost(false)
.clusterRoutingAllocationTotalShardsPerNode(0)
.clusterRoutingRebalanceEnable("string")
.clusterSearchRequestSlowlogLevel("string")
.clusterSearchRequestSlowlogThresholdDebug("string")
.clusterSearchRequestSlowlogThresholdInfo("string")
.clusterSearchRequestSlowlogThresholdTrace("string")
.clusterSearchRequestSlowlogThresholdWarn("string")
.clusterSettingsId("string")
.indicesBreakerFielddataLimit("string")
.indicesBreakerFielddataOverhead(0)
.indicesBreakerRequestLimit("string")
.indicesBreakerRequestOverhead(0)
.indicesBreakerTotalLimit("string")
.indicesRecoveryMaxBytesPerSec("string")
.networkBreakerInflightRequestsLimit("string")
.networkBreakerInflightRequestsOverhead(0)
.scriptMaxCompilationsRate("string")
.searchDefaultSearchTimeout("string")
.build());
cluster_settings_resource = opensearch.ClusterSettings("clusterSettingsResource",
action_auto_create_index="string",
action_destructive_requires_name=False,
cluster_blocks_read_only=False,
cluster_blocks_read_only_allow_delete=False,
cluster_indices_close_enable=False,
cluster_info_update_interval="string",
cluster_max_shards_per_node=0,
cluster_max_shards_per_node_frozen=0,
cluster_no_master_block="string",
cluster_persistent_tasks_allocation_enable="string",
cluster_persistent_tasks_allocation_recheck_interval="string",
cluster_routing_allocation_allow_rebalance="string",
cluster_routing_allocation_awareness_attributes="string",
cluster_routing_allocation_awareness_force_zone_values=["string"],
cluster_routing_allocation_balance_index=0,
cluster_routing_allocation_balance_shard=0,
cluster_routing_allocation_balance_threshold=0,
cluster_routing_allocation_cluster_concurrent_rebalance=0,
cluster_routing_allocation_disk_include_relocations=False,
cluster_routing_allocation_disk_threshold_enabled=False,
cluster_routing_allocation_disk_watermark_high="string",
cluster_routing_allocation_disk_watermark_low="string",
cluster_routing_allocation_enable="string",
cluster_routing_allocation_node_concurrent_incoming_recoveries=0,
cluster_routing_allocation_node_concurrent_outgoing_recoveries=0,
cluster_routing_allocation_node_concurrent_recoveries=0,
cluster_routing_allocation_node_initial_primaries_recoveries=0,
cluster_routing_allocation_same_shard_host=False,
cluster_routing_allocation_total_shards_per_node=0,
cluster_routing_rebalance_enable="string",
cluster_search_request_slowlog_level="string",
cluster_search_request_slowlog_threshold_debug="string",
cluster_search_request_slowlog_threshold_info="string",
cluster_search_request_slowlog_threshold_trace="string",
cluster_search_request_slowlog_threshold_warn="string",
cluster_settings_id="string",
indices_breaker_fielddata_limit="string",
indices_breaker_fielddata_overhead=0,
indices_breaker_request_limit="string",
indices_breaker_request_overhead=0,
indices_breaker_total_limit="string",
indices_recovery_max_bytes_per_sec="string",
network_breaker_inflight_requests_limit="string",
network_breaker_inflight_requests_overhead=0,
script_max_compilations_rate="string",
search_default_search_timeout="string")
const clusterSettingsResource = new opensearch.ClusterSettings("clusterSettingsResource", {
actionAutoCreateIndex: "string",
actionDestructiveRequiresName: false,
clusterBlocksReadOnly: false,
clusterBlocksReadOnlyAllowDelete: false,
clusterIndicesCloseEnable: false,
clusterInfoUpdateInterval: "string",
clusterMaxShardsPerNode: 0,
clusterMaxShardsPerNodeFrozen: 0,
clusterNoMasterBlock: "string",
clusterPersistentTasksAllocationEnable: "string",
clusterPersistentTasksAllocationRecheckInterval: "string",
clusterRoutingAllocationAllowRebalance: "string",
clusterRoutingAllocationAwarenessAttributes: "string",
clusterRoutingAllocationAwarenessForceZoneValues: ["string"],
clusterRoutingAllocationBalanceIndex: 0,
clusterRoutingAllocationBalanceShard: 0,
clusterRoutingAllocationBalanceThreshold: 0,
clusterRoutingAllocationClusterConcurrentRebalance: 0,
clusterRoutingAllocationDiskIncludeRelocations: false,
clusterRoutingAllocationDiskThresholdEnabled: false,
clusterRoutingAllocationDiskWatermarkHigh: "string",
clusterRoutingAllocationDiskWatermarkLow: "string",
clusterRoutingAllocationEnable: "string",
clusterRoutingAllocationNodeConcurrentIncomingRecoveries: 0,
clusterRoutingAllocationNodeConcurrentOutgoingRecoveries: 0,
clusterRoutingAllocationNodeConcurrentRecoveries: 0,
clusterRoutingAllocationNodeInitialPrimariesRecoveries: 0,
clusterRoutingAllocationSameShardHost: false,
clusterRoutingAllocationTotalShardsPerNode: 0,
clusterRoutingRebalanceEnable: "string",
clusterSearchRequestSlowlogLevel: "string",
clusterSearchRequestSlowlogThresholdDebug: "string",
clusterSearchRequestSlowlogThresholdInfo: "string",
clusterSearchRequestSlowlogThresholdTrace: "string",
clusterSearchRequestSlowlogThresholdWarn: "string",
clusterSettingsId: "string",
indicesBreakerFielddataLimit: "string",
indicesBreakerFielddataOverhead: 0,
indicesBreakerRequestLimit: "string",
indicesBreakerRequestOverhead: 0,
indicesBreakerTotalLimit: "string",
indicesRecoveryMaxBytesPerSec: "string",
networkBreakerInflightRequestsLimit: "string",
networkBreakerInflightRequestsOverhead: 0,
scriptMaxCompilationsRate: "string",
searchDefaultSearchTimeout: "string",
});
type: opensearch:ClusterSettings
properties:
actionAutoCreateIndex: string
actionDestructiveRequiresName: false
clusterBlocksReadOnly: false
clusterBlocksReadOnlyAllowDelete: false
clusterIndicesCloseEnable: false
clusterInfoUpdateInterval: string
clusterMaxShardsPerNode: 0
clusterMaxShardsPerNodeFrozen: 0
clusterNoMasterBlock: string
clusterPersistentTasksAllocationEnable: string
clusterPersistentTasksAllocationRecheckInterval: string
clusterRoutingAllocationAllowRebalance: string
clusterRoutingAllocationAwarenessAttributes: string
clusterRoutingAllocationAwarenessForceZoneValues:
- string
clusterRoutingAllocationBalanceIndex: 0
clusterRoutingAllocationBalanceShard: 0
clusterRoutingAllocationBalanceThreshold: 0
clusterRoutingAllocationClusterConcurrentRebalance: 0
clusterRoutingAllocationDiskIncludeRelocations: false
clusterRoutingAllocationDiskThresholdEnabled: false
clusterRoutingAllocationDiskWatermarkHigh: string
clusterRoutingAllocationDiskWatermarkLow: string
clusterRoutingAllocationEnable: string
clusterRoutingAllocationNodeConcurrentIncomingRecoveries: 0
clusterRoutingAllocationNodeConcurrentOutgoingRecoveries: 0
clusterRoutingAllocationNodeConcurrentRecoveries: 0
clusterRoutingAllocationNodeInitialPrimariesRecoveries: 0
clusterRoutingAllocationSameShardHost: false
clusterRoutingAllocationTotalShardsPerNode: 0
clusterRoutingRebalanceEnable: string
clusterSearchRequestSlowlogLevel: string
clusterSearchRequestSlowlogThresholdDebug: string
clusterSearchRequestSlowlogThresholdInfo: string
clusterSearchRequestSlowlogThresholdTrace: string
clusterSearchRequestSlowlogThresholdWarn: string
clusterSettingsId: string
indicesBreakerFielddataLimit: string
indicesBreakerFielddataOverhead: 0
indicesBreakerRequestLimit: string
indicesBreakerRequestOverhead: 0
indicesBreakerTotalLimit: string
indicesRecoveryMaxBytesPerSec: string
networkBreakerInflightRequestsLimit: string
networkBreakerInflightRequestsOverhead: 0
scriptMaxCompilationsRate: string
searchDefaultSearchTimeout: string
ClusterSettings Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ClusterSettings resource accepts the following input properties:
- Action
Auto stringCreate Index - Whether to automatically create an index if it doesn’t already exist and apply any configured index template
- Action
Destructive boolRequires Name - When set to true, you must specify the index name to delete an index and it is not possible to delete all indices with _all or use wildcards
- Cluster
Blocks boolRead Only - Make the whole cluster read only and metadata is not allowed to be modified
- Cluster
Blocks boolRead Only Allow Delete - Make the whole cluster read only, but allows to delete indices to free up resources
- Cluster
Indices boolClose Enable - If false, you cannot close open indices
- Cluster
Info stringUpdate Interval - A time string controlling how often OpenSearch should check on disk usage for each node in the cluster
- Cluster
Max doubleShards Per Node - The total number of primary and replica shards for the cluster, this number is multiplied by the number of non-frozen data nodes; shards for closed indices do not count toward this limit
- Cluster
Max doubleShards Per Node Frozen - The total number of primary and replica frozen shards, for the cluster; Ssards for closed indices do not count toward this limit, a cluster with no frozen data nodes is unlimited.
- Cluster
No stringMaster Block - Specifies which operations are rejected when there is no active master in a cluster (all, write)
- Cluster
Persistent stringTasks Allocation Enable - Whether allocation for persistent tasks is active (all, none)
- Cluster
Persistent stringTasks Allocation Recheck Interval - A time string controling how often assignment checks are performed to react to whether persistent tasks can be assigned to nodes
- Cluster
Routing stringAllocation Allow Rebalance - Specify when shard rebalancing is allowed (always, indicesprimariesactive, indicesallactive)
- Cluster
Routing stringAllocation Awareness Attributes - Use custom node attributes to take hardware configuration into account when allocating shards
- Cluster
Routing List<string>Allocation Awareness Force Zone Values - A list of zones for awareness allocation.
- Cluster
Routing doubleAllocation Balance Index - Weight factor for the number of shards per index allocated on a node, increasing this raises the tendency to equalize the number of shards per index across all nodes
- Cluster
Routing doubleAllocation Balance Shard - Weight factor for the total number of shards allocated on a node, increasing this raises the tendency to equalize the number of shards across all nodes
- Cluster
Routing doubleAllocation Balance Threshold - Minimal optimization value of operations that should be performed, raising this will cause the cluster to be less aggressive about optimizing the shard balance
- Cluster
Routing doubleAllocation Cluster Concurrent Rebalance - How many concurrent shard rebalances are allowed cluster wide
- Cluster
Routing boolAllocation Disk Include Relocations - Whether the allocator will take into account shards that are currently being relocated to the target node when computing a node’s disk usage
- Cluster
Routing boolAllocation Disk Threshold Enabled - Whether the disk allocation decider is active
- Cluster
Routing stringAllocation Disk Watermark High - Allocator will attempt to relocate shards away from a node whose disk usage is above this percentage disk used
- Cluster
Routing stringAllocation Disk Watermark Low - Allocator will not allocate shards to nodes that have more than this percentage disk used
- Cluster
Routing stringAllocation Enable - Enable or disable allocation for specific kinds of shards (all, primaries, new_primaries, none)
- Cluster
Routing doubleAllocation Node Concurrent Incoming Recoveries - How many incoming recoveries where the target shard (likely the replica unless a shard is relocating) are allocated on the node
- Cluster
Routing doubleAllocation Node Concurrent Outgoing Recoveries - How many outgoing recoveries where the source shard (likely the primary unless a shard is relocating) are allocated on the node
- Cluster
Routing doubleAllocation Node Concurrent Recoveries - A shortcut to set both incoming and outgoing recoveries
- Cluster
Routing doubleAllocation Node Initial Primaries Recoveries - Set a (usually) higher rate for primary recovery on node restart (usually from disk, so fast)
- Cluster
Routing boolAllocation Same Shard Host - Perform a check to prevent allocation of multiple instances of the same shard on a single host, if multiple nodes are started on the host
- Cluster
Routing doubleAllocation Total Shards Per Node - Maximum number of primary and replica shards allocated to each node
- Cluster
Routing stringRebalance Enable - Allow rebalancing for specific kinds of shards (all, primaries, replicas, none)
- Cluster
Search stringRequest Slowlog Level - Log level for search requests slowlog (TRACE, DEBUG, INFO, WARN)
- Cluster
Search stringRequest Slowlog Threshold Debug - Slowlog threshold for DEBUG level search requests (e.g., 2s)
- Cluster
Search stringRequest Slowlog Threshold Info - Slowlog threshold for INFO level search requests (e.g., 5s)
- Cluster
Search stringRequest Slowlog Threshold Trace - Slowlog threshold for TRACE level search requests (e.g., 10ms)
- Cluster
Search stringRequest Slowlog Threshold Warn - Slowlog threshold for WARN level search requests (e.g., 10s)
- Cluster
Settings stringId - The ID of this resource.
- Indices
Breaker stringFielddata Limit - The percentage of memory above which if loading a field into the field data cache would cause the cache to exceed this limit, an error is returned
- Indices
Breaker doubleFielddata Overhead - A constant that all field data estimations are multiplied by
- Indices
Breaker stringRequest Limit - The percentabge of memory above which per-request data structures (e.g. calculating aggregations) are prevented from exceeding
- Indices
Breaker doubleRequest Overhead - A constant that all request estimations are multiplied by
- Indices
Breaker stringTotal Limit - The percentage of total amount of memory that can be used across all breakers
- Indices
Recovery stringMax Bytes Per Sec - Maximum total inbound and outbound recovery traffic for each node, in mb
- Network
Breaker stringInflight Requests Limit - The percentage limit of memory usage on a node of all currently active incoming requests on transport or HTTP level
- Network
Breaker doubleInflight Requests Overhead - A constant that all in flight requests estimations are multiplied by
- Script
Max stringCompilations Rate - Limit for the number of unique dynamic scripts within a certain interval that are allowed to be compiled, expressed as compilations divided by a time string
- Search
Default stringSearch Timeout - A time string setting a cluster-wide default timeout for all search requests
- Action
Auto stringCreate Index - Whether to automatically create an index if it doesn’t already exist and apply any configured index template
- Action
Destructive boolRequires Name - When set to true, you must specify the index name to delete an index and it is not possible to delete all indices with _all or use wildcards
- Cluster
Blocks boolRead Only - Make the whole cluster read only and metadata is not allowed to be modified
- Cluster
Blocks boolRead Only Allow Delete - Make the whole cluster read only, but allows to delete indices to free up resources
- Cluster
Indices boolClose Enable - If false, you cannot close open indices
- Cluster
Info stringUpdate Interval - A time string controlling how often OpenSearch should check on disk usage for each node in the cluster
- Cluster
Max float64Shards Per Node - The total number of primary and replica shards for the cluster, this number is multiplied by the number of non-frozen data nodes; shards for closed indices do not count toward this limit
- Cluster
Max float64Shards Per Node Frozen - The total number of primary and replica frozen shards, for the cluster; Ssards for closed indices do not count toward this limit, a cluster with no frozen data nodes is unlimited.
- Cluster
No stringMaster Block - Specifies which operations are rejected when there is no active master in a cluster (all, write)
- Cluster
Persistent stringTasks Allocation Enable - Whether allocation for persistent tasks is active (all, none)
- Cluster
Persistent stringTasks Allocation Recheck Interval - A time string controling how often assignment checks are performed to react to whether persistent tasks can be assigned to nodes
- Cluster
Routing stringAllocation Allow Rebalance - Specify when shard rebalancing is allowed (always, indicesprimariesactive, indicesallactive)
- Cluster
Routing stringAllocation Awareness Attributes - Use custom node attributes to take hardware configuration into account when allocating shards
- Cluster
Routing []stringAllocation Awareness Force Zone Values - A list of zones for awareness allocation.
- Cluster
Routing float64Allocation Balance Index - Weight factor for the number of shards per index allocated on a node, increasing this raises the tendency to equalize the number of shards per index across all nodes
- Cluster
Routing float64Allocation Balance Shard - Weight factor for the total number of shards allocated on a node, increasing this raises the tendency to equalize the number of shards across all nodes
- Cluster
Routing float64Allocation Balance Threshold - Minimal optimization value of operations that should be performed, raising this will cause the cluster to be less aggressive about optimizing the shard balance
- Cluster
Routing float64Allocation Cluster Concurrent Rebalance - How many concurrent shard rebalances are allowed cluster wide
- Cluster
Routing boolAllocation Disk Include Relocations - Whether the allocator will take into account shards that are currently being relocated to the target node when computing a node’s disk usage
- Cluster
Routing boolAllocation Disk Threshold Enabled - Whether the disk allocation decider is active
- Cluster
Routing stringAllocation Disk Watermark High - Allocator will attempt to relocate shards away from a node whose disk usage is above this percentage disk used
- Cluster
Routing stringAllocation Disk Watermark Low - Allocator will not allocate shards to nodes that have more than this percentage disk used
- Cluster
Routing stringAllocation Enable - Enable or disable allocation for specific kinds of shards (all, primaries, new_primaries, none)
- Cluster
Routing float64Allocation Node Concurrent Incoming Recoveries - How many incoming recoveries where the target shard (likely the replica unless a shard is relocating) are allocated on the node
- Cluster
Routing float64Allocation Node Concurrent Outgoing Recoveries - How many outgoing recoveries where the source shard (likely the primary unless a shard is relocating) are allocated on the node
- Cluster
Routing float64Allocation Node Concurrent Recoveries - A shortcut to set both incoming and outgoing recoveries
- Cluster
Routing float64Allocation Node Initial Primaries Recoveries - Set a (usually) higher rate for primary recovery on node restart (usually from disk, so fast)
- Cluster
Routing boolAllocation Same Shard Host - Perform a check to prevent allocation of multiple instances of the same shard on a single host, if multiple nodes are started on the host
- Cluster
Routing float64Allocation Total Shards Per Node - Maximum number of primary and replica shards allocated to each node
- Cluster
Routing stringRebalance Enable - Allow rebalancing for specific kinds of shards (all, primaries, replicas, none)
- Cluster
Search stringRequest Slowlog Level - Log level for search requests slowlog (TRACE, DEBUG, INFO, WARN)
- Cluster
Search stringRequest Slowlog Threshold Debug - Slowlog threshold for DEBUG level search requests (e.g., 2s)
- Cluster
Search stringRequest Slowlog Threshold Info - Slowlog threshold for INFO level search requests (e.g., 5s)
- Cluster
Search stringRequest Slowlog Threshold Trace - Slowlog threshold for TRACE level search requests (e.g., 10ms)
- Cluster
Search stringRequest Slowlog Threshold Warn - Slowlog threshold for WARN level search requests (e.g., 10s)
- Cluster
Settings stringId - The ID of this resource.
- Indices
Breaker stringFielddata Limit - The percentage of memory above which if loading a field into the field data cache would cause the cache to exceed this limit, an error is returned
- Indices
Breaker float64Fielddata Overhead - A constant that all field data estimations are multiplied by
- Indices
Breaker stringRequest Limit - The percentabge of memory above which per-request data structures (e.g. calculating aggregations) are prevented from exceeding
- Indices
Breaker float64Request Overhead - A constant that all request estimations are multiplied by
- Indices
Breaker stringTotal Limit - The percentage of total amount of memory that can be used across all breakers
- Indices
Recovery stringMax Bytes Per Sec - Maximum total inbound and outbound recovery traffic for each node, in mb
- Network
Breaker stringInflight Requests Limit - The percentage limit of memory usage on a node of all currently active incoming requests on transport or HTTP level
- Network
Breaker float64Inflight Requests Overhead - A constant that all in flight requests estimations are multiplied by
- Script
Max stringCompilations Rate - Limit for the number of unique dynamic scripts within a certain interval that are allowed to be compiled, expressed as compilations divided by a time string
- Search
Default stringSearch Timeout - A time string setting a cluster-wide default timeout for all search requests
- action
Auto StringCreate Index - Whether to automatically create an index if it doesn’t already exist and apply any configured index template
- action
Destructive BooleanRequires Name - When set to true, you must specify the index name to delete an index and it is not possible to delete all indices with _all or use wildcards
- cluster
Blocks BooleanRead Only - Make the whole cluster read only and metadata is not allowed to be modified
- cluster
Blocks BooleanRead Only Allow Delete - Make the whole cluster read only, but allows to delete indices to free up resources
- cluster
Indices BooleanClose Enable - If false, you cannot close open indices
- cluster
Info StringUpdate Interval - A time string controlling how often OpenSearch should check on disk usage for each node in the cluster
- cluster
Max DoubleShards Per Node - The total number of primary and replica shards for the cluster, this number is multiplied by the number of non-frozen data nodes; shards for closed indices do not count toward this limit
- cluster
Max DoubleShards Per Node Frozen - The total number of primary and replica frozen shards, for the cluster; Ssards for closed indices do not count toward this limit, a cluster with no frozen data nodes is unlimited.
- cluster
No StringMaster Block - Specifies which operations are rejected when there is no active master in a cluster (all, write)
- cluster
Persistent StringTasks Allocation Enable - Whether allocation for persistent tasks is active (all, none)
- cluster
Persistent StringTasks Allocation Recheck Interval - A time string controling how often assignment checks are performed to react to whether persistent tasks can be assigned to nodes
- cluster
Routing StringAllocation Allow Rebalance - Specify when shard rebalancing is allowed (always, indicesprimariesactive, indicesallactive)
- cluster
Routing StringAllocation Awareness Attributes - Use custom node attributes to take hardware configuration into account when allocating shards
- cluster
Routing List<String>Allocation Awareness Force Zone Values - A list of zones for awareness allocation.
- cluster
Routing DoubleAllocation Balance Index - Weight factor for the number of shards per index allocated on a node, increasing this raises the tendency to equalize the number of shards per index across all nodes
- cluster
Routing DoubleAllocation Balance Shard - Weight factor for the total number of shards allocated on a node, increasing this raises the tendency to equalize the number of shards across all nodes
- cluster
Routing DoubleAllocation Balance Threshold - Minimal optimization value of operations that should be performed, raising this will cause the cluster to be less aggressive about optimizing the shard balance
- cluster
Routing DoubleAllocation Cluster Concurrent Rebalance - How many concurrent shard rebalances are allowed cluster wide
- cluster
Routing BooleanAllocation Disk Include Relocations - Whether the allocator will take into account shards that are currently being relocated to the target node when computing a node’s disk usage
- cluster
Routing BooleanAllocation Disk Threshold Enabled - Whether the disk allocation decider is active
- cluster
Routing StringAllocation Disk Watermark High - Allocator will attempt to relocate shards away from a node whose disk usage is above this percentage disk used
- cluster
Routing StringAllocation Disk Watermark Low - Allocator will not allocate shards to nodes that have more than this percentage disk used
- cluster
Routing StringAllocation Enable - Enable or disable allocation for specific kinds of shards (all, primaries, new_primaries, none)
- cluster
Routing DoubleAllocation Node Concurrent Incoming Recoveries - How many incoming recoveries where the target shard (likely the replica unless a shard is relocating) are allocated on the node
- cluster
Routing DoubleAllocation Node Concurrent Outgoing Recoveries - How many outgoing recoveries where the source shard (likely the primary unless a shard is relocating) are allocated on the node
- cluster
Routing DoubleAllocation Node Concurrent Recoveries - A shortcut to set both incoming and outgoing recoveries
- cluster
Routing DoubleAllocation Node Initial Primaries Recoveries - Set a (usually) higher rate for primary recovery on node restart (usually from disk, so fast)
- cluster
Routing BooleanAllocation Same Shard Host - Perform a check to prevent allocation of multiple instances of the same shard on a single host, if multiple nodes are started on the host
- cluster
Routing DoubleAllocation Total Shards Per Node - Maximum number of primary and replica shards allocated to each node
- cluster
Routing StringRebalance Enable - Allow rebalancing for specific kinds of shards (all, primaries, replicas, none)
- cluster
Search StringRequest Slowlog Level - Log level for search requests slowlog (TRACE, DEBUG, INFO, WARN)
- cluster
Search StringRequest Slowlog Threshold Debug - Slowlog threshold for DEBUG level search requests (e.g., 2s)
- cluster
Search StringRequest Slowlog Threshold Info - Slowlog threshold for INFO level search requests (e.g., 5s)
- cluster
Search StringRequest Slowlog Threshold Trace - Slowlog threshold for TRACE level search requests (e.g., 10ms)
- cluster
Search StringRequest Slowlog Threshold Warn - Slowlog threshold for WARN level search requests (e.g., 10s)
- cluster
Settings StringId - The ID of this resource.
- indices
Breaker StringFielddata Limit - The percentage of memory above which if loading a field into the field data cache would cause the cache to exceed this limit, an error is returned
- indices
Breaker DoubleFielddata Overhead - A constant that all field data estimations are multiplied by
- indices
Breaker StringRequest Limit - The percentabge of memory above which per-request data structures (e.g. calculating aggregations) are prevented from exceeding
- indices
Breaker DoubleRequest Overhead - A constant that all request estimations are multiplied by
- indices
Breaker StringTotal Limit - The percentage of total amount of memory that can be used across all breakers
- indices
Recovery StringMax Bytes Per Sec - Maximum total inbound and outbound recovery traffic for each node, in mb
- network
Breaker StringInflight Requests Limit - The percentage limit of memory usage on a node of all currently active incoming requests on transport or HTTP level
- network
Breaker DoubleInflight Requests Overhead - A constant that all in flight requests estimations are multiplied by
- script
Max StringCompilations Rate - Limit for the number of unique dynamic scripts within a certain interval that are allowed to be compiled, expressed as compilations divided by a time string
- search
Default StringSearch Timeout - A time string setting a cluster-wide default timeout for all search requests
- action
Auto stringCreate Index - Whether to automatically create an index if it doesn’t already exist and apply any configured index template
- action
Destructive booleanRequires Name - When set to true, you must specify the index name to delete an index and it is not possible to delete all indices with _all or use wildcards
- cluster
Blocks booleanRead Only - Make the whole cluster read only and metadata is not allowed to be modified
- cluster
Blocks booleanRead Only Allow Delete - Make the whole cluster read only, but allows to delete indices to free up resources
- cluster
Indices booleanClose Enable - If false, you cannot close open indices
- cluster
Info stringUpdate Interval - A time string controlling how often OpenSearch should check on disk usage for each node in the cluster
- cluster
Max numberShards Per Node - The total number of primary and replica shards for the cluster, this number is multiplied by the number of non-frozen data nodes; shards for closed indices do not count toward this limit
- cluster
Max numberShards Per Node Frozen - The total number of primary and replica frozen shards, for the cluster; Ssards for closed indices do not count toward this limit, a cluster with no frozen data nodes is unlimited.
- cluster
No stringMaster Block - Specifies which operations are rejected when there is no active master in a cluster (all, write)
- cluster
Persistent stringTasks Allocation Enable - Whether allocation for persistent tasks is active (all, none)
- cluster
Persistent stringTasks Allocation Recheck Interval - A time string controling how often assignment checks are performed to react to whether persistent tasks can be assigned to nodes
- cluster
Routing stringAllocation Allow Rebalance - Specify when shard rebalancing is allowed (always, indicesprimariesactive, indicesallactive)
- cluster
Routing stringAllocation Awareness Attributes - Use custom node attributes to take hardware configuration into account when allocating shards
- cluster
Routing string[]Allocation Awareness Force Zone Values - A list of zones for awareness allocation.
- cluster
Routing numberAllocation Balance Index - Weight factor for the number of shards per index allocated on a node, increasing this raises the tendency to equalize the number of shards per index across all nodes
- cluster
Routing numberAllocation Balance Shard - Weight factor for the total number of shards allocated on a node, increasing this raises the tendency to equalize the number of shards across all nodes
- cluster
Routing numberAllocation Balance Threshold - Minimal optimization value of operations that should be performed, raising this will cause the cluster to be less aggressive about optimizing the shard balance
- cluster
Routing numberAllocation Cluster Concurrent Rebalance - How many concurrent shard rebalances are allowed cluster wide
- cluster
Routing booleanAllocation Disk Include Relocations - Whether the allocator will take into account shards that are currently being relocated to the target node when computing a node’s disk usage
- cluster
Routing booleanAllocation Disk Threshold Enabled - Whether the disk allocation decider is active
- cluster
Routing stringAllocation Disk Watermark High - Allocator will attempt to relocate shards away from a node whose disk usage is above this percentage disk used
- cluster
Routing stringAllocation Disk Watermark Low - Allocator will not allocate shards to nodes that have more than this percentage disk used
- cluster
Routing stringAllocation Enable - Enable or disable allocation for specific kinds of shards (all, primaries, new_primaries, none)
- cluster
Routing numberAllocation Node Concurrent Incoming Recoveries - How many incoming recoveries where the target shard (likely the replica unless a shard is relocating) are allocated on the node
- cluster
Routing numberAllocation Node Concurrent Outgoing Recoveries - How many outgoing recoveries where the source shard (likely the primary unless a shard is relocating) are allocated on the node
- cluster
Routing numberAllocation Node Concurrent Recoveries - A shortcut to set both incoming and outgoing recoveries
- cluster
Routing numberAllocation Node Initial Primaries Recoveries - Set a (usually) higher rate for primary recovery on node restart (usually from disk, so fast)
- cluster
Routing booleanAllocation Same Shard Host - Perform a check to prevent allocation of multiple instances of the same shard on a single host, if multiple nodes are started on the host
- cluster
Routing numberAllocation Total Shards Per Node - Maximum number of primary and replica shards allocated to each node
- cluster
Routing stringRebalance Enable - Allow rebalancing for specific kinds of shards (all, primaries, replicas, none)
- cluster
Search stringRequest Slowlog Level - Log level for search requests slowlog (TRACE, DEBUG, INFO, WARN)
- cluster
Search stringRequest Slowlog Threshold Debug - Slowlog threshold for DEBUG level search requests (e.g., 2s)
- cluster
Search stringRequest Slowlog Threshold Info - Slowlog threshold for INFO level search requests (e.g., 5s)
- cluster
Search stringRequest Slowlog Threshold Trace - Slowlog threshold for TRACE level search requests (e.g., 10ms)
- cluster
Search stringRequest Slowlog Threshold Warn - Slowlog threshold for WARN level search requests (e.g., 10s)
- cluster
Settings stringId - The ID of this resource.
- indices
Breaker stringFielddata Limit - The percentage of memory above which if loading a field into the field data cache would cause the cache to exceed this limit, an error is returned
- indices
Breaker numberFielddata Overhead - A constant that all field data estimations are multiplied by
- indices
Breaker stringRequest Limit - The percentabge of memory above which per-request data structures (e.g. calculating aggregations) are prevented from exceeding
- indices
Breaker numberRequest Overhead - A constant that all request estimations are multiplied by
- indices
Breaker stringTotal Limit - The percentage of total amount of memory that can be used across all breakers
- indices
Recovery stringMax Bytes Per Sec - Maximum total inbound and outbound recovery traffic for each node, in mb
- network
Breaker stringInflight Requests Limit - The percentage limit of memory usage on a node of all currently active incoming requests on transport or HTTP level
- network
Breaker numberInflight Requests Overhead - A constant that all in flight requests estimations are multiplied by
- script
Max stringCompilations Rate - Limit for the number of unique dynamic scripts within a certain interval that are allowed to be compiled, expressed as compilations divided by a time string
- search
Default stringSearch Timeout - A time string setting a cluster-wide default timeout for all search requests
- action_
auto_ strcreate_ index - Whether to automatically create an index if it doesn’t already exist and apply any configured index template
- action_
destructive_ boolrequires_ name - When set to true, you must specify the index name to delete an index and it is not possible to delete all indices with _all or use wildcards
- cluster_
blocks_ boolread_ only - Make the whole cluster read only and metadata is not allowed to be modified
- cluster_
blocks_ boolread_ only_ allow_ delete - Make the whole cluster read only, but allows to delete indices to free up resources
- cluster_
indices_ boolclose_ enable - If false, you cannot close open indices
- cluster_
info_ strupdate_ interval - A time string controlling how often OpenSearch should check on disk usage for each node in the cluster
- cluster_
max_ floatshards_ per_ node - The total number of primary and replica shards for the cluster, this number is multiplied by the number of non-frozen data nodes; shards for closed indices do not count toward this limit
- cluster_
max_ floatshards_ per_ node_ frozen - The total number of primary and replica frozen shards, for the cluster; Ssards for closed indices do not count toward this limit, a cluster with no frozen data nodes is unlimited.
- cluster_
no_ strmaster_ block - Specifies which operations are rejected when there is no active master in a cluster (all, write)
- cluster_
persistent_ strtasks_ allocation_ enable - Whether allocation for persistent tasks is active (all, none)
- cluster_
persistent_ strtasks_ allocation_ recheck_ interval - A time string controling how often assignment checks are performed to react to whether persistent tasks can be assigned to nodes
- cluster_
routing_ strallocation_ allow_ rebalance - Specify when shard rebalancing is allowed (always, indicesprimariesactive, indicesallactive)
- cluster_
routing_ strallocation_ awareness_ attributes - Use custom node attributes to take hardware configuration into account when allocating shards
- cluster_
routing_ Sequence[str]allocation_ awareness_ force_ zone_ values - A list of zones for awareness allocation.
- cluster_
routing_ floatallocation_ balance_ index - Weight factor for the number of shards per index allocated on a node, increasing this raises the tendency to equalize the number of shards per index across all nodes
- cluster_
routing_ floatallocation_ balance_ shard - Weight factor for the total number of shards allocated on a node, increasing this raises the tendency to equalize the number of shards across all nodes
- cluster_
routing_ floatallocation_ balance_ threshold - Minimal optimization value of operations that should be performed, raising this will cause the cluster to be less aggressive about optimizing the shard balance
- cluster_
routing_ floatallocation_ cluster_ concurrent_ rebalance - How many concurrent shard rebalances are allowed cluster wide
- cluster_
routing_ boolallocation_ disk_ include_ relocations - Whether the allocator will take into account shards that are currently being relocated to the target node when computing a node’s disk usage
- cluster_
routing_ boolallocation_ disk_ threshold_ enabled - Whether the disk allocation decider is active
- cluster_
routing_ strallocation_ disk_ watermark_ high - Allocator will attempt to relocate shards away from a node whose disk usage is above this percentage disk used
- cluster_
routing_ strallocation_ disk_ watermark_ low - Allocator will not allocate shards to nodes that have more than this percentage disk used
- cluster_
routing_ strallocation_ enable - Enable or disable allocation for specific kinds of shards (all, primaries, new_primaries, none)
- cluster_
routing_ floatallocation_ node_ concurrent_ incoming_ recoveries - How many incoming recoveries where the target shard (likely the replica unless a shard is relocating) are allocated on the node
- cluster_
routing_ floatallocation_ node_ concurrent_ outgoing_ recoveries - How many outgoing recoveries where the source shard (likely the primary unless a shard is relocating) are allocated on the node
- cluster_
routing_ floatallocation_ node_ concurrent_ recoveries - A shortcut to set both incoming and outgoing recoveries
- cluster_
routing_ floatallocation_ node_ initial_ primaries_ recoveries - Set a (usually) higher rate for primary recovery on node restart (usually from disk, so fast)
- cluster_
routing_ boolallocation_ same_ shard_ host - Perform a check to prevent allocation of multiple instances of the same shard on a single host, if multiple nodes are started on the host
- cluster_
routing_ floatallocation_ total_ shards_ per_ node - Maximum number of primary and replica shards allocated to each node
- cluster_
routing_ strrebalance_ enable - Allow rebalancing for specific kinds of shards (all, primaries, replicas, none)
- cluster_
search_ strrequest_ slowlog_ level - Log level for search requests slowlog (TRACE, DEBUG, INFO, WARN)
- cluster_
search_ strrequest_ slowlog_ threshold_ debug - Slowlog threshold for DEBUG level search requests (e.g., 2s)
- cluster_
search_ strrequest_ slowlog_ threshold_ info - Slowlog threshold for INFO level search requests (e.g., 5s)
- cluster_
search_ strrequest_ slowlog_ threshold_ trace - Slowlog threshold for TRACE level search requests (e.g., 10ms)
- cluster_
search_ strrequest_ slowlog_ threshold_ warn - Slowlog threshold for WARN level search requests (e.g., 10s)
- cluster_
settings_ strid - The ID of this resource.
- indices_
breaker_ strfielddata_ limit - The percentage of memory above which if loading a field into the field data cache would cause the cache to exceed this limit, an error is returned
- indices_
breaker_ floatfielddata_ overhead - A constant that all field data estimations are multiplied by
- indices_
breaker_ strrequest_ limit - The percentabge of memory above which per-request data structures (e.g. calculating aggregations) are prevented from exceeding
- indices_
breaker_ floatrequest_ overhead - A constant that all request estimations are multiplied by
- indices_
breaker_ strtotal_ limit - The percentage of total amount of memory that can be used across all breakers
- indices_
recovery_ strmax_ bytes_ per_ sec - Maximum total inbound and outbound recovery traffic for each node, in mb
- network_
breaker_ strinflight_ requests_ limit - The percentage limit of memory usage on a node of all currently active incoming requests on transport or HTTP level
- network_
breaker_ floatinflight_ requests_ overhead - A constant that all in flight requests estimations are multiplied by
- script_
max_ strcompilations_ rate - Limit for the number of unique dynamic scripts within a certain interval that are allowed to be compiled, expressed as compilations divided by a time string
- search_
default_ strsearch_ timeout - A time string setting a cluster-wide default timeout for all search requests
- action
Auto StringCreate Index - Whether to automatically create an index if it doesn’t already exist and apply any configured index template
- action
Destructive BooleanRequires Name - When set to true, you must specify the index name to delete an index and it is not possible to delete all indices with _all or use wildcards
- cluster
Blocks BooleanRead Only - Make the whole cluster read only and metadata is not allowed to be modified
- cluster
Blocks BooleanRead Only Allow Delete - Make the whole cluster read only, but allows to delete indices to free up resources
- cluster
Indices BooleanClose Enable - If false, you cannot close open indices
- cluster
Info StringUpdate Interval - A time string controlling how often OpenSearch should check on disk usage for each node in the cluster
- cluster
Max NumberShards Per Node - The total number of primary and replica shards for the cluster, this number is multiplied by the number of non-frozen data nodes; shards for closed indices do not count toward this limit
- cluster
Max NumberShards Per Node Frozen - The total number of primary and replica frozen shards, for the cluster; Ssards for closed indices do not count toward this limit, a cluster with no frozen data nodes is unlimited.
- cluster
No StringMaster Block - Specifies which operations are rejected when there is no active master in a cluster (all, write)
- cluster
Persistent StringTasks Allocation Enable - Whether allocation for persistent tasks is active (all, none)
- cluster
Persistent StringTasks Allocation Recheck Interval - A time string controling how often assignment checks are performed to react to whether persistent tasks can be assigned to nodes
- cluster
Routing StringAllocation Allow Rebalance - Specify when shard rebalancing is allowed (always, indicesprimariesactive, indicesallactive)
- cluster
Routing StringAllocation Awareness Attributes - Use custom node attributes to take hardware configuration into account when allocating shards
- cluster
Routing List<String>Allocation Awareness Force Zone Values - A list of zones for awareness allocation.
- cluster
Routing NumberAllocation Balance Index - Weight factor for the number of shards per index allocated on a node, increasing this raises the tendency to equalize the number of shards per index across all nodes
- cluster
Routing NumberAllocation Balance Shard - Weight factor for the total number of shards allocated on a node, increasing this raises the tendency to equalize the number of shards across all nodes
- cluster
Routing NumberAllocation Balance Threshold - Minimal optimization value of operations that should be performed, raising this will cause the cluster to be less aggressive about optimizing the shard balance
- cluster
Routing NumberAllocation Cluster Concurrent Rebalance - How many concurrent shard rebalances are allowed cluster wide
- cluster
Routing BooleanAllocation Disk Include Relocations - Whether the allocator will take into account shards that are currently being relocated to the target node when computing a node’s disk usage
- cluster
Routing BooleanAllocation Disk Threshold Enabled - Whether the disk allocation decider is active
- cluster
Routing StringAllocation Disk Watermark High - Allocator will attempt to relocate shards away from a node whose disk usage is above this percentage disk used
- cluster
Routing StringAllocation Disk Watermark Low - Allocator will not allocate shards to nodes that have more than this percentage disk used
- cluster
Routing StringAllocation Enable - Enable or disable allocation for specific kinds of shards (all, primaries, new_primaries, none)
- cluster
Routing NumberAllocation Node Concurrent Incoming Recoveries - How many incoming recoveries where the target shard (likely the replica unless a shard is relocating) are allocated on the node
- cluster
Routing NumberAllocation Node Concurrent Outgoing Recoveries - How many outgoing recoveries where the source shard (likely the primary unless a shard is relocating) are allocated on the node
- cluster
Routing NumberAllocation Node Concurrent Recoveries - A shortcut to set both incoming and outgoing recoveries
- cluster
Routing NumberAllocation Node Initial Primaries Recoveries - Set a (usually) higher rate for primary recovery on node restart (usually from disk, so fast)
- cluster
Routing BooleanAllocation Same Shard Host - Perform a check to prevent allocation of multiple instances of the same shard on a single host, if multiple nodes are started on the host
- cluster
Routing NumberAllocation Total Shards Per Node - Maximum number of primary and replica shards allocated to each node
- cluster
Routing StringRebalance Enable - Allow rebalancing for specific kinds of shards (all, primaries, replicas, none)
- cluster
Search StringRequest Slowlog Level - Log level for search requests slowlog (TRACE, DEBUG, INFO, WARN)
- cluster
Search StringRequest Slowlog Threshold Debug - Slowlog threshold for DEBUG level search requests (e.g., 2s)
- cluster
Search StringRequest Slowlog Threshold Info - Slowlog threshold for INFO level search requests (e.g., 5s)
- cluster
Search StringRequest Slowlog Threshold Trace - Slowlog threshold for TRACE level search requests (e.g., 10ms)
- cluster
Search StringRequest Slowlog Threshold Warn - Slowlog threshold for WARN level search requests (e.g., 10s)
- cluster
Settings StringId - The ID of this resource.
- indices
Breaker StringFielddata Limit - The percentage of memory above which if loading a field into the field data cache would cause the cache to exceed this limit, an error is returned
- indices
Breaker NumberFielddata Overhead - A constant that all field data estimations are multiplied by
- indices
Breaker StringRequest Limit - The percentabge of memory above which per-request data structures (e.g. calculating aggregations) are prevented from exceeding
- indices
Breaker NumberRequest Overhead - A constant that all request estimations are multiplied by
- indices
Breaker StringTotal Limit - The percentage of total amount of memory that can be used across all breakers
- indices
Recovery StringMax Bytes Per Sec - Maximum total inbound and outbound recovery traffic for each node, in mb
- network
Breaker StringInflight Requests Limit - The percentage limit of memory usage on a node of all currently active incoming requests on transport or HTTP level
- network
Breaker NumberInflight Requests Overhead - A constant that all in flight requests estimations are multiplied by
- script
Max StringCompilations Rate - Limit for the number of unique dynamic scripts within a certain interval that are allowed to be compiled, expressed as compilations divided by a time string
- search
Default StringSearch Timeout - A time string setting a cluster-wide default timeout for all search requests
Outputs
All input properties are implicitly available as output properties. Additionally, the ClusterSettings resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing ClusterSettings Resource
Get an existing ClusterSettings resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ClusterSettingsState, opts?: CustomResourceOptions): ClusterSettings
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
action_auto_create_index: Optional[str] = None,
action_destructive_requires_name: Optional[bool] = None,
cluster_blocks_read_only: Optional[bool] = None,
cluster_blocks_read_only_allow_delete: Optional[bool] = None,
cluster_indices_close_enable: Optional[bool] = None,
cluster_info_update_interval: Optional[str] = None,
cluster_max_shards_per_node: Optional[float] = None,
cluster_max_shards_per_node_frozen: Optional[float] = None,
cluster_no_master_block: Optional[str] = None,
cluster_persistent_tasks_allocation_enable: Optional[str] = None,
cluster_persistent_tasks_allocation_recheck_interval: Optional[str] = None,
cluster_routing_allocation_allow_rebalance: Optional[str] = None,
cluster_routing_allocation_awareness_attributes: Optional[str] = None,
cluster_routing_allocation_awareness_force_zone_values: Optional[Sequence[str]] = None,
cluster_routing_allocation_balance_index: Optional[float] = None,
cluster_routing_allocation_balance_shard: Optional[float] = None,
cluster_routing_allocation_balance_threshold: Optional[float] = None,
cluster_routing_allocation_cluster_concurrent_rebalance: Optional[float] = None,
cluster_routing_allocation_disk_include_relocations: Optional[bool] = None,
cluster_routing_allocation_disk_threshold_enabled: Optional[bool] = None,
cluster_routing_allocation_disk_watermark_high: Optional[str] = None,
cluster_routing_allocation_disk_watermark_low: Optional[str] = None,
cluster_routing_allocation_enable: Optional[str] = None,
cluster_routing_allocation_node_concurrent_incoming_recoveries: Optional[float] = None,
cluster_routing_allocation_node_concurrent_outgoing_recoveries: Optional[float] = None,
cluster_routing_allocation_node_concurrent_recoveries: Optional[float] = None,
cluster_routing_allocation_node_initial_primaries_recoveries: Optional[float] = None,
cluster_routing_allocation_same_shard_host: Optional[bool] = None,
cluster_routing_allocation_total_shards_per_node: Optional[float] = None,
cluster_routing_rebalance_enable: Optional[str] = None,
cluster_search_request_slowlog_level: Optional[str] = None,
cluster_search_request_slowlog_threshold_debug: Optional[str] = None,
cluster_search_request_slowlog_threshold_info: Optional[str] = None,
cluster_search_request_slowlog_threshold_trace: Optional[str] = None,
cluster_search_request_slowlog_threshold_warn: Optional[str] = None,
cluster_settings_id: Optional[str] = None,
indices_breaker_fielddata_limit: Optional[str] = None,
indices_breaker_fielddata_overhead: Optional[float] = None,
indices_breaker_request_limit: Optional[str] = None,
indices_breaker_request_overhead: Optional[float] = None,
indices_breaker_total_limit: Optional[str] = None,
indices_recovery_max_bytes_per_sec: Optional[str] = None,
network_breaker_inflight_requests_limit: Optional[str] = None,
network_breaker_inflight_requests_overhead: Optional[float] = None,
script_max_compilations_rate: Optional[str] = None,
search_default_search_timeout: Optional[str] = None) -> ClusterSettings
func GetClusterSettings(ctx *Context, name string, id IDInput, state *ClusterSettingsState, opts ...ResourceOption) (*ClusterSettings, error)
public static ClusterSettings Get(string name, Input<string> id, ClusterSettingsState? state, CustomResourceOptions? opts = null)
public static ClusterSettings get(String name, Output<String> id, ClusterSettingsState state, CustomResourceOptions options)
resources: _: type: opensearch:ClusterSettings get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Action
Auto stringCreate Index - Whether to automatically create an index if it doesn’t already exist and apply any configured index template
- Action
Destructive boolRequires Name - When set to true, you must specify the index name to delete an index and it is not possible to delete all indices with _all or use wildcards
- Cluster
Blocks boolRead Only - Make the whole cluster read only and metadata is not allowed to be modified
- Cluster
Blocks boolRead Only Allow Delete - Make the whole cluster read only, but allows to delete indices to free up resources
- Cluster
Indices boolClose Enable - If false, you cannot close open indices
- Cluster
Info stringUpdate Interval - A time string controlling how often OpenSearch should check on disk usage for each node in the cluster
- Cluster
Max doubleShards Per Node - The total number of primary and replica shards for the cluster, this number is multiplied by the number of non-frozen data nodes; shards for closed indices do not count toward this limit
- Cluster
Max doubleShards Per Node Frozen - The total number of primary and replica frozen shards, for the cluster; Ssards for closed indices do not count toward this limit, a cluster with no frozen data nodes is unlimited.
- Cluster
No stringMaster Block - Specifies which operations are rejected when there is no active master in a cluster (all, write)
- Cluster
Persistent stringTasks Allocation Enable - Whether allocation for persistent tasks is active (all, none)
- Cluster
Persistent stringTasks Allocation Recheck Interval - A time string controling how often assignment checks are performed to react to whether persistent tasks can be assigned to nodes
- Cluster
Routing stringAllocation Allow Rebalance - Specify when shard rebalancing is allowed (always, indicesprimariesactive, indicesallactive)
- Cluster
Routing stringAllocation Awareness Attributes - Use custom node attributes to take hardware configuration into account when allocating shards
- Cluster
Routing List<string>Allocation Awareness Force Zone Values - A list of zones for awareness allocation.
- Cluster
Routing doubleAllocation Balance Index - Weight factor for the number of shards per index allocated on a node, increasing this raises the tendency to equalize the number of shards per index across all nodes
- Cluster
Routing doubleAllocation Balance Shard - Weight factor for the total number of shards allocated on a node, increasing this raises the tendency to equalize the number of shards across all nodes
- Cluster
Routing doubleAllocation Balance Threshold - Minimal optimization value of operations that should be performed, raising this will cause the cluster to be less aggressive about optimizing the shard balance
- Cluster
Routing doubleAllocation Cluster Concurrent Rebalance - How many concurrent shard rebalances are allowed cluster wide
- Cluster
Routing boolAllocation Disk Include Relocations - Whether the allocator will take into account shards that are currently being relocated to the target node when computing a node’s disk usage
- Cluster
Routing boolAllocation Disk Threshold Enabled - Whether the disk allocation decider is active
- Cluster
Routing stringAllocation Disk Watermark High - Allocator will attempt to relocate shards away from a node whose disk usage is above this percentage disk used
- Cluster
Routing stringAllocation Disk Watermark Low - Allocator will not allocate shards to nodes that have more than this percentage disk used
- Cluster
Routing stringAllocation Enable - Enable or disable allocation for specific kinds of shards (all, primaries, new_primaries, none)
- Cluster
Routing doubleAllocation Node Concurrent Incoming Recoveries - How many incoming recoveries where the target shard (likely the replica unless a shard is relocating) are allocated on the node
- Cluster
Routing doubleAllocation Node Concurrent Outgoing Recoveries - How many outgoing recoveries where the source shard (likely the primary unless a shard is relocating) are allocated on the node
- Cluster
Routing doubleAllocation Node Concurrent Recoveries - A shortcut to set both incoming and outgoing recoveries
- Cluster
Routing doubleAllocation Node Initial Primaries Recoveries - Set a (usually) higher rate for primary recovery on node restart (usually from disk, so fast)
- Cluster
Routing boolAllocation Same Shard Host - Perform a check to prevent allocation of multiple instances of the same shard on a single host, if multiple nodes are started on the host
- Cluster
Routing doubleAllocation Total Shards Per Node - Maximum number of primary and replica shards allocated to each node
- Cluster
Routing stringRebalance Enable - Allow rebalancing for specific kinds of shards (all, primaries, replicas, none)
- Cluster
Search stringRequest Slowlog Level - Log level for search requests slowlog (TRACE, DEBUG, INFO, WARN)
- Cluster
Search stringRequest Slowlog Threshold Debug - Slowlog threshold for DEBUG level search requests (e.g., 2s)
- Cluster
Search stringRequest Slowlog Threshold Info - Slowlog threshold for INFO level search requests (e.g., 5s)
- Cluster
Search stringRequest Slowlog Threshold Trace - Slowlog threshold for TRACE level search requests (e.g., 10ms)
- Cluster
Search stringRequest Slowlog Threshold Warn - Slowlog threshold for WARN level search requests (e.g., 10s)
- Cluster
Settings stringId - The ID of this resource.
- Indices
Breaker stringFielddata Limit - The percentage of memory above which if loading a field into the field data cache would cause the cache to exceed this limit, an error is returned
- Indices
Breaker doubleFielddata Overhead - A constant that all field data estimations are multiplied by
- Indices
Breaker stringRequest Limit - The percentabge of memory above which per-request data structures (e.g. calculating aggregations) are prevented from exceeding
- Indices
Breaker doubleRequest Overhead - A constant that all request estimations are multiplied by
- Indices
Breaker stringTotal Limit - The percentage of total amount of memory that can be used across all breakers
- Indices
Recovery stringMax Bytes Per Sec - Maximum total inbound and outbound recovery traffic for each node, in mb
- Network
Breaker stringInflight Requests Limit - The percentage limit of memory usage on a node of all currently active incoming requests on transport or HTTP level
- Network
Breaker doubleInflight Requests Overhead - A constant that all in flight requests estimations are multiplied by
- Script
Max stringCompilations Rate - Limit for the number of unique dynamic scripts within a certain interval that are allowed to be compiled, expressed as compilations divided by a time string
- Search
Default stringSearch Timeout - A time string setting a cluster-wide default timeout for all search requests
- Action
Auto stringCreate Index - Whether to automatically create an index if it doesn’t already exist and apply any configured index template
- Action
Destructive boolRequires Name - When set to true, you must specify the index name to delete an index and it is not possible to delete all indices with _all or use wildcards
- Cluster
Blocks boolRead Only - Make the whole cluster read only and metadata is not allowed to be modified
- Cluster
Blocks boolRead Only Allow Delete - Make the whole cluster read only, but allows to delete indices to free up resources
- Cluster
Indices boolClose Enable - If false, you cannot close open indices
- Cluster
Info stringUpdate Interval - A time string controlling how often OpenSearch should check on disk usage for each node in the cluster
- Cluster
Max float64Shards Per Node - The total number of primary and replica shards for the cluster, this number is multiplied by the number of non-frozen data nodes; shards for closed indices do not count toward this limit
- Cluster
Max float64Shards Per Node Frozen - The total number of primary and replica frozen shards, for the cluster; Ssards for closed indices do not count toward this limit, a cluster with no frozen data nodes is unlimited.
- Cluster
No stringMaster Block - Specifies which operations are rejected when there is no active master in a cluster (all, write)
- Cluster
Persistent stringTasks Allocation Enable - Whether allocation for persistent tasks is active (all, none)
- Cluster
Persistent stringTasks Allocation Recheck Interval - A time string controling how often assignment checks are performed to react to whether persistent tasks can be assigned to nodes
- Cluster
Routing stringAllocation Allow Rebalance - Specify when shard rebalancing is allowed (always, indicesprimariesactive, indicesallactive)
- Cluster
Routing stringAllocation Awareness Attributes - Use custom node attributes to take hardware configuration into account when allocating shards
- Cluster
Routing []stringAllocation Awareness Force Zone Values - A list of zones for awareness allocation.
- Cluster
Routing float64Allocation Balance Index - Weight factor for the number of shards per index allocated on a node, increasing this raises the tendency to equalize the number of shards per index across all nodes
- Cluster
Routing float64Allocation Balance Shard - Weight factor for the total number of shards allocated on a node, increasing this raises the tendency to equalize the number of shards across all nodes
- Cluster
Routing float64Allocation Balance Threshold - Minimal optimization value of operations that should be performed, raising this will cause the cluster to be less aggressive about optimizing the shard balance
- Cluster
Routing float64Allocation Cluster Concurrent Rebalance - How many concurrent shard rebalances are allowed cluster wide
- Cluster
Routing boolAllocation Disk Include Relocations - Whether the allocator will take into account shards that are currently being relocated to the target node when computing a node’s disk usage
- Cluster
Routing boolAllocation Disk Threshold Enabled - Whether the disk allocation decider is active
- Cluster
Routing stringAllocation Disk Watermark High - Allocator will attempt to relocate shards away from a node whose disk usage is above this percentage disk used
- Cluster
Routing stringAllocation Disk Watermark Low - Allocator will not allocate shards to nodes that have more than this percentage disk used
- Cluster
Routing stringAllocation Enable - Enable or disable allocation for specific kinds of shards (all, primaries, new_primaries, none)
- Cluster
Routing float64Allocation Node Concurrent Incoming Recoveries - How many incoming recoveries where the target shard (likely the replica unless a shard is relocating) are allocated on the node
- Cluster
Routing float64Allocation Node Concurrent Outgoing Recoveries - How many outgoing recoveries where the source shard (likely the primary unless a shard is relocating) are allocated on the node
- Cluster
Routing float64Allocation Node Concurrent Recoveries - A shortcut to set both incoming and outgoing recoveries
- Cluster
Routing float64Allocation Node Initial Primaries Recoveries - Set a (usually) higher rate for primary recovery on node restart (usually from disk, so fast)
- Cluster
Routing boolAllocation Same Shard Host - Perform a check to prevent allocation of multiple instances of the same shard on a single host, if multiple nodes are started on the host
- Cluster
Routing float64Allocation Total Shards Per Node - Maximum number of primary and replica shards allocated to each node
- Cluster
Routing stringRebalance Enable - Allow rebalancing for specific kinds of shards (all, primaries, replicas, none)
- Cluster
Search stringRequest Slowlog Level - Log level for search requests slowlog (TRACE, DEBUG, INFO, WARN)
- Cluster
Search stringRequest Slowlog Threshold Debug - Slowlog threshold for DEBUG level search requests (e.g., 2s)
- Cluster
Search stringRequest Slowlog Threshold Info - Slowlog threshold for INFO level search requests (e.g., 5s)
- Cluster
Search stringRequest Slowlog Threshold Trace - Slowlog threshold for TRACE level search requests (e.g., 10ms)
- Cluster
Search stringRequest Slowlog Threshold Warn - Slowlog threshold for WARN level search requests (e.g., 10s)
- Cluster
Settings stringId - The ID of this resource.
- Indices
Breaker stringFielddata Limit - The percentage of memory above which if loading a field into the field data cache would cause the cache to exceed this limit, an error is returned
- Indices
Breaker float64Fielddata Overhead - A constant that all field data estimations are multiplied by
- Indices
Breaker stringRequest Limit - The percentabge of memory above which per-request data structures (e.g. calculating aggregations) are prevented from exceeding
- Indices
Breaker float64Request Overhead - A constant that all request estimations are multiplied by
- Indices
Breaker stringTotal Limit - The percentage of total amount of memory that can be used across all breakers
- Indices
Recovery stringMax Bytes Per Sec - Maximum total inbound and outbound recovery traffic for each node, in mb
- Network
Breaker stringInflight Requests Limit - The percentage limit of memory usage on a node of all currently active incoming requests on transport or HTTP level
- Network
Breaker float64Inflight Requests Overhead - A constant that all in flight requests estimations are multiplied by
- Script
Max stringCompilations Rate - Limit for the number of unique dynamic scripts within a certain interval that are allowed to be compiled, expressed as compilations divided by a time string
- Search
Default stringSearch Timeout - A time string setting a cluster-wide default timeout for all search requests
- action
Auto StringCreate Index - Whether to automatically create an index if it doesn’t already exist and apply any configured index template
- action
Destructive BooleanRequires Name - When set to true, you must specify the index name to delete an index and it is not possible to delete all indices with _all or use wildcards
- cluster
Blocks BooleanRead Only - Make the whole cluster read only and metadata is not allowed to be modified
- cluster
Blocks BooleanRead Only Allow Delete - Make the whole cluster read only, but allows to delete indices to free up resources
- cluster
Indices BooleanClose Enable - If false, you cannot close open indices
- cluster
Info StringUpdate Interval - A time string controlling how often OpenSearch should check on disk usage for each node in the cluster
- cluster
Max DoubleShards Per Node - The total number of primary and replica shards for the cluster, this number is multiplied by the number of non-frozen data nodes; shards for closed indices do not count toward this limit
- cluster
Max DoubleShards Per Node Frozen - The total number of primary and replica frozen shards, for the cluster; Ssards for closed indices do not count toward this limit, a cluster with no frozen data nodes is unlimited.
- cluster
No StringMaster Block - Specifies which operations are rejected when there is no active master in a cluster (all, write)
- cluster
Persistent StringTasks Allocation Enable - Whether allocation for persistent tasks is active (all, none)
- cluster
Persistent StringTasks Allocation Recheck Interval - A time string controling how often assignment checks are performed to react to whether persistent tasks can be assigned to nodes
- cluster
Routing StringAllocation Allow Rebalance - Specify when shard rebalancing is allowed (always, indicesprimariesactive, indicesallactive)
- cluster
Routing StringAllocation Awareness Attributes - Use custom node attributes to take hardware configuration into account when allocating shards
- cluster
Routing List<String>Allocation Awareness Force Zone Values - A list of zones for awareness allocation.
- cluster
Routing DoubleAllocation Balance Index - Weight factor for the number of shards per index allocated on a node, increasing this raises the tendency to equalize the number of shards per index across all nodes
- cluster
Routing DoubleAllocation Balance Shard - Weight factor for the total number of shards allocated on a node, increasing this raises the tendency to equalize the number of shards across all nodes
- cluster
Routing DoubleAllocation Balance Threshold - Minimal optimization value of operations that should be performed, raising this will cause the cluster to be less aggressive about optimizing the shard balance
- cluster
Routing DoubleAllocation Cluster Concurrent Rebalance - How many concurrent shard rebalances are allowed cluster wide
- cluster
Routing BooleanAllocation Disk Include Relocations - Whether the allocator will take into account shards that are currently being relocated to the target node when computing a node’s disk usage
- cluster
Routing BooleanAllocation Disk Threshold Enabled - Whether the disk allocation decider is active
- cluster
Routing StringAllocation Disk Watermark High - Allocator will attempt to relocate shards away from a node whose disk usage is above this percentage disk used
- cluster
Routing StringAllocation Disk Watermark Low - Allocator will not allocate shards to nodes that have more than this percentage disk used
- cluster
Routing StringAllocation Enable - Enable or disable allocation for specific kinds of shards (all, primaries, new_primaries, none)
- cluster
Routing DoubleAllocation Node Concurrent Incoming Recoveries - How many incoming recoveries where the target shard (likely the replica unless a shard is relocating) are allocated on the node
- cluster
Routing DoubleAllocation Node Concurrent Outgoing Recoveries - How many outgoing recoveries where the source shard (likely the primary unless a shard is relocating) are allocated on the node
- cluster
Routing DoubleAllocation Node Concurrent Recoveries - A shortcut to set both incoming and outgoing recoveries
- cluster
Routing DoubleAllocation Node Initial Primaries Recoveries - Set a (usually) higher rate for primary recovery on node restart (usually from disk, so fast)
- cluster
Routing BooleanAllocation Same Shard Host - Perform a check to prevent allocation of multiple instances of the same shard on a single host, if multiple nodes are started on the host
- cluster
Routing DoubleAllocation Total Shards Per Node - Maximum number of primary and replica shards allocated to each node
- cluster
Routing StringRebalance Enable - Allow rebalancing for specific kinds of shards (all, primaries, replicas, none)
- cluster
Search StringRequest Slowlog Level - Log level for search requests slowlog (TRACE, DEBUG, INFO, WARN)
- cluster
Search StringRequest Slowlog Threshold Debug - Slowlog threshold for DEBUG level search requests (e.g., 2s)
- cluster
Search StringRequest Slowlog Threshold Info - Slowlog threshold for INFO level search requests (e.g., 5s)
- cluster
Search StringRequest Slowlog Threshold Trace - Slowlog threshold for TRACE level search requests (e.g., 10ms)
- cluster
Search StringRequest Slowlog Threshold Warn - Slowlog threshold for WARN level search requests (e.g., 10s)
- cluster
Settings StringId - The ID of this resource.
- indices
Breaker StringFielddata Limit - The percentage of memory above which if loading a field into the field data cache would cause the cache to exceed this limit, an error is returned
- indices
Breaker DoubleFielddata Overhead - A constant that all field data estimations are multiplied by
- indices
Breaker StringRequest Limit - The percentabge of memory above which per-request data structures (e.g. calculating aggregations) are prevented from exceeding
- indices
Breaker DoubleRequest Overhead - A constant that all request estimations are multiplied by
- indices
Breaker StringTotal Limit - The percentage of total amount of memory that can be used across all breakers
- indices
Recovery StringMax Bytes Per Sec - Maximum total inbound and outbound recovery traffic for each node, in mb
- network
Breaker StringInflight Requests Limit - The percentage limit of memory usage on a node of all currently active incoming requests on transport or HTTP level
- network
Breaker DoubleInflight Requests Overhead - A constant that all in flight requests estimations are multiplied by
- script
Max StringCompilations Rate - Limit for the number of unique dynamic scripts within a certain interval that are allowed to be compiled, expressed as compilations divided by a time string
- search
Default StringSearch Timeout - A time string setting a cluster-wide default timeout for all search requests
- action
Auto stringCreate Index - Whether to automatically create an index if it doesn’t already exist and apply any configured index template
- action
Destructive booleanRequires Name - When set to true, you must specify the index name to delete an index and it is not possible to delete all indices with _all or use wildcards
- cluster
Blocks booleanRead Only - Make the whole cluster read only and metadata is not allowed to be modified
- cluster
Blocks booleanRead Only Allow Delete - Make the whole cluster read only, but allows to delete indices to free up resources
- cluster
Indices booleanClose Enable - If false, you cannot close open indices
- cluster
Info stringUpdate Interval - A time string controlling how often OpenSearch should check on disk usage for each node in the cluster
- cluster
Max numberShards Per Node - The total number of primary and replica shards for the cluster, this number is multiplied by the number of non-frozen data nodes; shards for closed indices do not count toward this limit
- cluster
Max numberShards Per Node Frozen - The total number of primary and replica frozen shards, for the cluster; Ssards for closed indices do not count toward this limit, a cluster with no frozen data nodes is unlimited.
- cluster
No stringMaster Block - Specifies which operations are rejected when there is no active master in a cluster (all, write)
- cluster
Persistent stringTasks Allocation Enable - Whether allocation for persistent tasks is active (all, none)
- cluster
Persistent stringTasks Allocation Recheck Interval - A time string controling how often assignment checks are performed to react to whether persistent tasks can be assigned to nodes
- cluster
Routing stringAllocation Allow Rebalance - Specify when shard rebalancing is allowed (always, indicesprimariesactive, indicesallactive)
- cluster
Routing stringAllocation Awareness Attributes - Use custom node attributes to take hardware configuration into account when allocating shards
- cluster
Routing string[]Allocation Awareness Force Zone Values - A list of zones for awareness allocation.
- cluster
Routing numberAllocation Balance Index - Weight factor for the number of shards per index allocated on a node, increasing this raises the tendency to equalize the number of shards per index across all nodes
- cluster
Routing numberAllocation Balance Shard - Weight factor for the total number of shards allocated on a node, increasing this raises the tendency to equalize the number of shards across all nodes
- cluster
Routing numberAllocation Balance Threshold - Minimal optimization value of operations that should be performed, raising this will cause the cluster to be less aggressive about optimizing the shard balance
- cluster
Routing numberAllocation Cluster Concurrent Rebalance - How many concurrent shard rebalances are allowed cluster wide
- cluster
Routing booleanAllocation Disk Include Relocations - Whether the allocator will take into account shards that are currently being relocated to the target node when computing a node’s disk usage
- cluster
Routing booleanAllocation Disk Threshold Enabled - Whether the disk allocation decider is active
- cluster
Routing stringAllocation Disk Watermark High - Allocator will attempt to relocate shards away from a node whose disk usage is above this percentage disk used
- cluster
Routing stringAllocation Disk Watermark Low - Allocator will not allocate shards to nodes that have more than this percentage disk used
- cluster
Routing stringAllocation Enable - Enable or disable allocation for specific kinds of shards (all, primaries, new_primaries, none)
- cluster
Routing numberAllocation Node Concurrent Incoming Recoveries - How many incoming recoveries where the target shard (likely the replica unless a shard is relocating) are allocated on the node
- cluster
Routing numberAllocation Node Concurrent Outgoing Recoveries - How many outgoing recoveries where the source shard (likely the primary unless a shard is relocating) are allocated on the node
- cluster
Routing numberAllocation Node Concurrent Recoveries - A shortcut to set both incoming and outgoing recoveries
- cluster
Routing numberAllocation Node Initial Primaries Recoveries - Set a (usually) higher rate for primary recovery on node restart (usually from disk, so fast)
- cluster
Routing booleanAllocation Same Shard Host - Perform a check to prevent allocation of multiple instances of the same shard on a single host, if multiple nodes are started on the host
- cluster
Routing numberAllocation Total Shards Per Node - Maximum number of primary and replica shards allocated to each node
- cluster
Routing stringRebalance Enable - Allow rebalancing for specific kinds of shards (all, primaries, replicas, none)
- cluster
Search stringRequest Slowlog Level - Log level for search requests slowlog (TRACE, DEBUG, INFO, WARN)
- cluster
Search stringRequest Slowlog Threshold Debug - Slowlog threshold for DEBUG level search requests (e.g., 2s)
- cluster
Search stringRequest Slowlog Threshold Info - Slowlog threshold for INFO level search requests (e.g., 5s)
- cluster
Search stringRequest Slowlog Threshold Trace - Slowlog threshold for TRACE level search requests (e.g., 10ms)
- cluster
Search stringRequest Slowlog Threshold Warn - Slowlog threshold for WARN level search requests (e.g., 10s)
- cluster
Settings stringId - The ID of this resource.
- indices
Breaker stringFielddata Limit - The percentage of memory above which if loading a field into the field data cache would cause the cache to exceed this limit, an error is returned
- indices
Breaker numberFielddata Overhead - A constant that all field data estimations are multiplied by
- indices
Breaker stringRequest Limit - The percentabge of memory above which per-request data structures (e.g. calculating aggregations) are prevented from exceeding
- indices
Breaker numberRequest Overhead - A constant that all request estimations are multiplied by
- indices
Breaker stringTotal Limit - The percentage of total amount of memory that can be used across all breakers
- indices
Recovery stringMax Bytes Per Sec - Maximum total inbound and outbound recovery traffic for each node, in mb
- network
Breaker stringInflight Requests Limit - The percentage limit of memory usage on a node of all currently active incoming requests on transport or HTTP level
- network
Breaker numberInflight Requests Overhead - A constant that all in flight requests estimations are multiplied by
- script
Max stringCompilations Rate - Limit for the number of unique dynamic scripts within a certain interval that are allowed to be compiled, expressed as compilations divided by a time string
- search
Default stringSearch Timeout - A time string setting a cluster-wide default timeout for all search requests
- action_
auto_ strcreate_ index - Whether to automatically create an index if it doesn’t already exist and apply any configured index template
- action_
destructive_ boolrequires_ name - When set to true, you must specify the index name to delete an index and it is not possible to delete all indices with _all or use wildcards
- cluster_
blocks_ boolread_ only - Make the whole cluster read only and metadata is not allowed to be modified
- cluster_
blocks_ boolread_ only_ allow_ delete - Make the whole cluster read only, but allows to delete indices to free up resources
- cluster_
indices_ boolclose_ enable - If false, you cannot close open indices
- cluster_
info_ strupdate_ interval - A time string controlling how often OpenSearch should check on disk usage for each node in the cluster
- cluster_
max_ floatshards_ per_ node - The total number of primary and replica shards for the cluster, this number is multiplied by the number of non-frozen data nodes; shards for closed indices do not count toward this limit
- cluster_
max_ floatshards_ per_ node_ frozen - The total number of primary and replica frozen shards, for the cluster; Ssards for closed indices do not count toward this limit, a cluster with no frozen data nodes is unlimited.
- cluster_
no_ strmaster_ block - Specifies which operations are rejected when there is no active master in a cluster (all, write)
- cluster_
persistent_ strtasks_ allocation_ enable - Whether allocation for persistent tasks is active (all, none)
- cluster_
persistent_ strtasks_ allocation_ recheck_ interval - A time string controling how often assignment checks are performed to react to whether persistent tasks can be assigned to nodes
- cluster_
routing_ strallocation_ allow_ rebalance - Specify when shard rebalancing is allowed (always, indicesprimariesactive, indicesallactive)
- cluster_
routing_ strallocation_ awareness_ attributes - Use custom node attributes to take hardware configuration into account when allocating shards
- cluster_
routing_ Sequence[str]allocation_ awareness_ force_ zone_ values - A list of zones for awareness allocation.
- cluster_
routing_ floatallocation_ balance_ index - Weight factor for the number of shards per index allocated on a node, increasing this raises the tendency to equalize the number of shards per index across all nodes
- cluster_
routing_ floatallocation_ balance_ shard - Weight factor for the total number of shards allocated on a node, increasing this raises the tendency to equalize the number of shards across all nodes
- cluster_
routing_ floatallocation_ balance_ threshold - Minimal optimization value of operations that should be performed, raising this will cause the cluster to be less aggressive about optimizing the shard balance
- cluster_
routing_ floatallocation_ cluster_ concurrent_ rebalance - How many concurrent shard rebalances are allowed cluster wide
- cluster_
routing_ boolallocation_ disk_ include_ relocations - Whether the allocator will take into account shards that are currently being relocated to the target node when computing a node’s disk usage
- cluster_
routing_ boolallocation_ disk_ threshold_ enabled - Whether the disk allocation decider is active
- cluster_
routing_ strallocation_ disk_ watermark_ high - Allocator will attempt to relocate shards away from a node whose disk usage is above this percentage disk used
- cluster_
routing_ strallocation_ disk_ watermark_ low - Allocator will not allocate shards to nodes that have more than this percentage disk used
- cluster_
routing_ strallocation_ enable - Enable or disable allocation for specific kinds of shards (all, primaries, new_primaries, none)
- cluster_
routing_ floatallocation_ node_ concurrent_ incoming_ recoveries - How many incoming recoveries where the target shard (likely the replica unless a shard is relocating) are allocated on the node
- cluster_
routing_ floatallocation_ node_ concurrent_ outgoing_ recoveries - How many outgoing recoveries where the source shard (likely the primary unless a shard is relocating) are allocated on the node
- cluster_
routing_ floatallocation_ node_ concurrent_ recoveries - A shortcut to set both incoming and outgoing recoveries
- cluster_
routing_ floatallocation_ node_ initial_ primaries_ recoveries - Set a (usually) higher rate for primary recovery on node restart (usually from disk, so fast)
- cluster_
routing_ boolallocation_ same_ shard_ host - Perform a check to prevent allocation of multiple instances of the same shard on a single host, if multiple nodes are started on the host
- cluster_
routing_ floatallocation_ total_ shards_ per_ node - Maximum number of primary and replica shards allocated to each node
- cluster_
routing_ strrebalance_ enable - Allow rebalancing for specific kinds of shards (all, primaries, replicas, none)
- cluster_
search_ strrequest_ slowlog_ level - Log level for search requests slowlog (TRACE, DEBUG, INFO, WARN)
- cluster_
search_ strrequest_ slowlog_ threshold_ debug - Slowlog threshold for DEBUG level search requests (e.g., 2s)
- cluster_
search_ strrequest_ slowlog_ threshold_ info - Slowlog threshold for INFO level search requests (e.g., 5s)
- cluster_
search_ strrequest_ slowlog_ threshold_ trace - Slowlog threshold for TRACE level search requests (e.g., 10ms)
- cluster_
search_ strrequest_ slowlog_ threshold_ warn - Slowlog threshold for WARN level search requests (e.g., 10s)
- cluster_
settings_ strid - The ID of this resource.
- indices_
breaker_ strfielddata_ limit - The percentage of memory above which if loading a field into the field data cache would cause the cache to exceed this limit, an error is returned
- indices_
breaker_ floatfielddata_ overhead - A constant that all field data estimations are multiplied by
- indices_
breaker_ strrequest_ limit - The percentabge of memory above which per-request data structures (e.g. calculating aggregations) are prevented from exceeding
- indices_
breaker_ floatrequest_ overhead - A constant that all request estimations are multiplied by
- indices_
breaker_ strtotal_ limit - The percentage of total amount of memory that can be used across all breakers
- indices_
recovery_ strmax_ bytes_ per_ sec - Maximum total inbound and outbound recovery traffic for each node, in mb
- network_
breaker_ strinflight_ requests_ limit - The percentage limit of memory usage on a node of all currently active incoming requests on transport or HTTP level
- network_
breaker_ floatinflight_ requests_ overhead - A constant that all in flight requests estimations are multiplied by
- script_
max_ strcompilations_ rate - Limit for the number of unique dynamic scripts within a certain interval that are allowed to be compiled, expressed as compilations divided by a time string
- search_
default_ strsearch_ timeout - A time string setting a cluster-wide default timeout for all search requests
- action
Auto StringCreate Index - Whether to automatically create an index if it doesn’t already exist and apply any configured index template
- action
Destructive BooleanRequires Name - When set to true, you must specify the index name to delete an index and it is not possible to delete all indices with _all or use wildcards
- cluster
Blocks BooleanRead Only - Make the whole cluster read only and metadata is not allowed to be modified
- cluster
Blocks BooleanRead Only Allow Delete - Make the whole cluster read only, but allows to delete indices to free up resources
- cluster
Indices BooleanClose Enable - If false, you cannot close open indices
- cluster
Info StringUpdate Interval - A time string controlling how often OpenSearch should check on disk usage for each node in the cluster
- cluster
Max NumberShards Per Node - The total number of primary and replica shards for the cluster, this number is multiplied by the number of non-frozen data nodes; shards for closed indices do not count toward this limit
- cluster
Max NumberShards Per Node Frozen - The total number of primary and replica frozen shards, for the cluster; Ssards for closed indices do not count toward this limit, a cluster with no frozen data nodes is unlimited.
- cluster
No StringMaster Block - Specifies which operations are rejected when there is no active master in a cluster (all, write)
- cluster
Persistent StringTasks Allocation Enable - Whether allocation for persistent tasks is active (all, none)
- cluster
Persistent StringTasks Allocation Recheck Interval - A time string controling how often assignment checks are performed to react to whether persistent tasks can be assigned to nodes
- cluster
Routing StringAllocation Allow Rebalance - Specify when shard rebalancing is allowed (always, indicesprimariesactive, indicesallactive)
- cluster
Routing StringAllocation Awareness Attributes - Use custom node attributes to take hardware configuration into account when allocating shards
- cluster
Routing List<String>Allocation Awareness Force Zone Values - A list of zones for awareness allocation.
- cluster
Routing NumberAllocation Balance Index - Weight factor for the number of shards per index allocated on a node, increasing this raises the tendency to equalize the number of shards per index across all nodes
- cluster
Routing NumberAllocation Balance Shard - Weight factor for the total number of shards allocated on a node, increasing this raises the tendency to equalize the number of shards across all nodes
- cluster
Routing NumberAllocation Balance Threshold - Minimal optimization value of operations that should be performed, raising this will cause the cluster to be less aggressive about optimizing the shard balance
- cluster
Routing NumberAllocation Cluster Concurrent Rebalance - How many concurrent shard rebalances are allowed cluster wide
- cluster
Routing BooleanAllocation Disk Include Relocations - Whether the allocator will take into account shards that are currently being relocated to the target node when computing a node’s disk usage
- cluster
Routing BooleanAllocation Disk Threshold Enabled - Whether the disk allocation decider is active
- cluster
Routing StringAllocation Disk Watermark High - Allocator will attempt to relocate shards away from a node whose disk usage is above this percentage disk used
- cluster
Routing StringAllocation Disk Watermark Low - Allocator will not allocate shards to nodes that have more than this percentage disk used
- cluster
Routing StringAllocation Enable - Enable or disable allocation for specific kinds of shards (all, primaries, new_primaries, none)
- cluster
Routing NumberAllocation Node Concurrent Incoming Recoveries - How many incoming recoveries where the target shard (likely the replica unless a shard is relocating) are allocated on the node
- cluster
Routing NumberAllocation Node Concurrent Outgoing Recoveries - How many outgoing recoveries where the source shard (likely the primary unless a shard is relocating) are allocated on the node
- cluster
Routing NumberAllocation Node Concurrent Recoveries - A shortcut to set both incoming and outgoing recoveries
- cluster
Routing NumberAllocation Node Initial Primaries Recoveries - Set a (usually) higher rate for primary recovery on node restart (usually from disk, so fast)
- cluster
Routing BooleanAllocation Same Shard Host - Perform a check to prevent allocation of multiple instances of the same shard on a single host, if multiple nodes are started on the host
- cluster
Routing NumberAllocation Total Shards Per Node - Maximum number of primary and replica shards allocated to each node
- cluster
Routing StringRebalance Enable - Allow rebalancing for specific kinds of shards (all, primaries, replicas, none)
- cluster
Search StringRequest Slowlog Level - Log level for search requests slowlog (TRACE, DEBUG, INFO, WARN)
- cluster
Search StringRequest Slowlog Threshold Debug - Slowlog threshold for DEBUG level search requests (e.g., 2s)
- cluster
Search StringRequest Slowlog Threshold Info - Slowlog threshold for INFO level search requests (e.g., 5s)
- cluster
Search StringRequest Slowlog Threshold Trace - Slowlog threshold for TRACE level search requests (e.g., 10ms)
- cluster
Search StringRequest Slowlog Threshold Warn - Slowlog threshold for WARN level search requests (e.g., 10s)
- cluster
Settings StringId - The ID of this resource.
- indices
Breaker StringFielddata Limit - The percentage of memory above which if loading a field into the field data cache would cause the cache to exceed this limit, an error is returned
- indices
Breaker NumberFielddata Overhead - A constant that all field data estimations are multiplied by
- indices
Breaker StringRequest Limit - The percentabge of memory above which per-request data structures (e.g. calculating aggregations) are prevented from exceeding
- indices
Breaker NumberRequest Overhead - A constant that all request estimations are multiplied by
- indices
Breaker StringTotal Limit - The percentage of total amount of memory that can be used across all breakers
- indices
Recovery StringMax Bytes Per Sec - Maximum total inbound and outbound recovery traffic for each node, in mb
- network
Breaker StringInflight Requests Limit - The percentage limit of memory usage on a node of all currently active incoming requests on transport or HTTP level
- network
Breaker NumberInflight Requests Overhead - A constant that all in flight requests estimations are multiplied by
- script
Max StringCompilations Rate - Limit for the number of unique dynamic scripts within a certain interval that are allowed to be compiled, expressed as compilations divided by a time string
- search
Default StringSearch Timeout - A time string setting a cluster-wide default timeout for all search requests
Package Details
- Repository
- opensearch opensearch-project/terraform-provider-opensearch
- License
- Notes
- This Pulumi package is based on the
opensearch
Terraform Provider.