index-modules.asciidoc 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. [[index-modules]]
  2. = Index Modules
  3. [partintro]
  4. --
  5. Index Modules are modules created per index and control all aspects related to
  6. an index.
  7. [float]
  8. [[index-modules-settings]]
  9. == Index Settings
  10. Index level settings can be set per-index. Settings may be:
  11. _static_::
  12. They can only be set at index creation time or on a
  13. <<indices-open-close,closed index>>.
  14. _dynamic_::
  15. They can be changed on a live index using the
  16. <<indices-update-settings,update-index-settings>> API.
  17. WARNING: Changing static or dynamic index settings on a closed index could
  18. result in incorrect settings that are impossible to rectify without deleting
  19. and recreating the index.
  20. [float]
  21. === Static index settings
  22. Below is a list of all _static_ index settings that are not associated with any
  23. specific index module:
  24. `index.number_of_shards`::
  25. The number of primary shards that an index should have. Defaults to 5.
  26. This setting can only be set at index creation time. It cannot be
  27. changed on a closed index.
  28. `index.shard.check_on_startup`::
  29. +
  30. --
  31. experimental[] Whether or not shards should be checked for corruption before opening. When
  32. corruption is detected, it will prevent the shard from being opened. Accepts:
  33. `false`::
  34. (default) Don't check for corruption when opening a shard.
  35. `checksum`::
  36. Check for physical corruption.
  37. `true`::
  38. Check for both physical and logical corruption. This is much more
  39. expensive in terms of CPU and memory usage.
  40. `fix`::
  41. Check for both physical and logical corruption. Segments that were reported
  42. as corrupted will be automatically removed. This option *may result in data loss*.
  43. Use with extreme caution!
  44. Checking shards may take a lot of time on large indices.
  45. --
  46. [float]
  47. [[dynamic-index-settings]]
  48. === Dynamic index settings
  49. Below is a list of all _dynamic_ index settings that are not associated with any
  50. specific index module:
  51. `index.number_of_replicas`::
  52. The number of replicas each primary shard has. Defaults to 1.
  53. `index.auto_expand_replicas`::
  54. Auto-expand the number of replicas based on the number of available nodes.
  55. Set to a dash delimited lower and upper bound (e.g. `0-5`) or use `all`
  56. for the upper bound (e.g. `0-all`). Defaults to `false` (i.e. disabled).
  57. `index.refresh_interval`::
  58. How often to perform a refresh operation, which makes recent changes to the
  59. index visible to search. Defaults to `1s`. Can be set to `-1` to disable
  60. refresh.
  61. [[index-codec]] `index.codec`::
  62. experimental[] The `default` value compresses stored data with LZ4
  63. compression, but this can be set to `best_compression` for a higher
  64. compression ratio, at the expense of slower stored fields performance.
  65. `index.blocks.read_only`::
  66. Set to `true` to make the index and index metadata read only, `false` to
  67. allow writes and metadata changes.
  68. `index.blocks.read`::
  69. Set to `true` to disable read operations against the index.
  70. `index.blocks.write`::
  71. Set to `true` to disable write operations against the index.
  72. `index.blocks.metadata`::
  73. Set to `true` to disable index metadata reads and writes.
  74. `index.ttl.disable_purge`::
  75. experimental[] Disables the purge of <<mapping-ttl-field,expired docs>> on
  76. the current index.
  77. [[index.recovery.initial_shards]]`index.recovery.initial_shards`::
  78. +
  79. --
  80. A primary shard is only recovered only if there are enough nodes available to
  81. allocate sufficient replicas to form a quorum. It can be set to:
  82. * `quorum` (default)
  83. * `quorum-1` (or `half`)
  84. * `full`
  85. * `full-1`.
  86. * Number values are also supported, e.g. `1`.
  87. --
  88. [float]
  89. === Settings in other index modules
  90. Other index settings are available in index modules:
  91. <<analysis,Analysis>>::
  92. Settings to define analyzers, tokenizers, token filters and character
  93. filters.
  94. <<index-modules-allocation,Index shard allocation>>::
  95. Control over where, when, and how shards are allocated to nodes.
  96. <<index-modules-mapper,Mapping>>::
  97. Enable or disable dynamic mapping for an index.
  98. <<index-modules-merge,Merging>>::
  99. Control over how shards are merged by the background merge process.
  100. <<index-modules-similarity,Similarities>>::
  101. Configure custom similarity settings to customize how search results are
  102. scored.
  103. <<index-modules-slowlog,Slowlog>>::
  104. Control over how slow queries and fetch requests are logged.
  105. <<index-modules-store,Store>>::
  106. Configure the type of filesystem used to access shard data.
  107. <<index-modules-translog,Translog>>::
  108. Control over the transaction log and background flush operations.
  109. --
  110. include::index-modules/analysis.asciidoc[]
  111. include::index-modules/allocation.asciidoc[]
  112. include::index-modules/mapper.asciidoc[]
  113. include::index-modules/merge.asciidoc[]
  114. include::index-modules/similarity.asciidoc[]
  115. include::index-modules/slowlog.asciidoc[]
  116. include::index-modules/store.asciidoc[]
  117. include::index-modules/translog.asciidoc[]