Update settings

Introduced 1.0

You can use the update settings API operation to update index-level settings. You can change dynamic index settings at any time, but static settings cannot be changed after index creation. For more information about static and dynamic index settings, see Create index.

Aside from the static and dynamic index settings, you can also update individual plugins’ settings. To get the full list of updatable settings, run GET <target-index>/_settings?include_defaults=true.

Example

  1. PUT /sample-index1/_settings
  2. {
  3. "index.plugins.index_state_management.rollover_skip": true,
  4. "index": {
  5. "number_of_replicas": 4
  6. }
  7. }

copy

Path and HTTP methods

  1. PUT /<target-index>/_settings

URL parameters

All update settings parameters are optional.

ParameterData typeDescription
allow_no_indicesBooleanWhether to ignore wildcards that don’t match any indexes. Default is true.
expand_wildcardsStringExpands wildcard expressions to different indexes. Combine multiple values with commas. Available values are all (match all indexes), open (match open indexes), closed (match closed indexes), hidden (match hidden indexes), and none (do not accept wildcard expressions), which must be used with open, closed, or both. Default is open.
flat_settingsBooleanWhether to return settings in the flat form, which can improve readability, especially for heavily nested settings. For example, the flat form of “index”: { “creation_date”: “123456789” } is “index.creation_date”: “123456789”.
ignore_unavailableBooleanIf true, OpenSearch does not include missing or closed indexes in the response.
preserve_existingBooleanWhether to preserve existing index settings. Default is false.
master_timeoutTimeHow long to wait for a connection to the master node. Default is 30s.
timeoutTimeHow long to wait for a connection to return. Default is 30s.

Request body

The request body must all of the index settings that you want to update.

  1. {
  2. "index.plugins.index_state_management.rollover_skip": true,
  3. "index": {
  4. "number_of_replicas": 4
  5. }
  6. }

Response

  1. {
  2. "acknowledged": true
  3. }