We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5565ecf commit e7af643Copy full SHA for e7af643
docs/reference/indices/update-settings.asciidoc
@@ -19,6 +19,20 @@ PUT /twitter/_settings
19
// CONSOLE
20
// TEST[setup:twitter]
21
22
+To reset a setting back to the default value, use `null`. For example:
23
+
24
+[source,js]
25
+--------------------------------------------------
26
+PUT /twitter/_settings
27
+{
28
+ "index" : {
29
+ "refresh_interval" : null
30
+ }
31
+}
32
33
+// CONSOLE
34
+// TEST[setup:twitter]
35
36
The list of per-index settings which can be updated dynamically on live
37
indices can be found in <<index-modules>>.
38
To preserve existing settings from being updated, the `preserve_existing`
0 commit comments