﻿---
title: General index settings
description: This document contains the static and dynamic index settings that are not associated with any specific index module. The following list contains all static...
url: https://www.elastic.co/elastic/docs-builder/docs/3028/reference/elasticsearch/index-settings/index-modules
products:
  - Elasticsearch
applies_to:
  - Elastic Cloud Serverless: Generally available
  - Elastic Stack: Generally available
---

# General index settings
<admonition title="Settings supported in Serverless">
  Elastic Cloud Serverless projects [restrict the available Elasticsearch settings](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3028/deploy-manage/deploy/elastic-cloud/differences-from-other-elasticsearch-offerings#elasticsearch-differences-serverless-settings-availability) to a supported subset, identified with a `Serverless` badge next to the setting name. For a complete list of available index settings, refer to the [Serverless index settings list](https://www.elastic.co/elastic/docs-builder/docs/3028/reference/elasticsearch/index-settings/serverless).
</admonition>

This document contains the static and dynamic index settings that are not associated with any specific index module.

## Static index settings

The following list contains all *static* index settings that are not associated with any specific index module:

<definitions>
  <definition term="index.number_of_shards">
    The number of primary shards that an index should have. Defaults to `1`. This setting can only be set at index creation time. It cannot be changed on a closed index.
    <note>
      The number of shards are limited to `1024` per index. This limitation is a safety limit to prevent accidental creation of indices that can destabilize a cluster due to resource allocation. The limit can be modified by specifying `export ES_JAVA_OPTS="-Des.index.max_number_of_shards=128"` system property on every node that is part of the cluster.
    </note>
  </definition>
</definitions>


<definitions>
  <definition term="index.number_of_routing_shards">
    <admonition title="Admonition">
      Integer value used with [`index.number_of_shards`](#index-number-of-shards) to route documents to a primary shard. See [`_routing` field](https://www.elastic.co/elastic/docs-builder/docs/3028/reference/elasticsearch/mapping-reference/mapping-routing-field).
    </admonition>
  </definition>
</definitions>

Elasticsearch uses this value when splitting an index. For example, a 5 shard index with `number_of_routing_shards` set to `30` (`5 x 2 x 3`) could be split by a factor of `2` or `3`. In other words, it could be split as follows:
- `5` → `10` → `30`  (split by 2, then by 3)
- `5` → `15` → `30` (split by 3, then by 2)
- `5` → `30` (split by 6)

This setting’s default value depends on the number of primary shards in the index. The default is designed to allow you to split by factors of 2 up to a maximum of 1024 shards.
<note>
  In Elasticsearch 7.0.0 and later versions, this setting affects how documents are distributed across shards. When reindexing an older index with custom routing, you must explicitly set `index.number_of_routing_shards` to maintain the same document distribution. See the [related breaking change](https://www.elastic.co/guide/en/elasticsearch/reference/7.0/breaking-changes-7.0.html#_document_distribution_changes).
</note>

<definitions>
  <definition term="index.codec Elastic Cloud Serverless: Generally available">
    The `default` value compresses stored data with LZ4 compression, but this can be set to `best_compression` which uses [ZSTD](https://en.wikipedia.org/wiki/Zstd) for a higher compression ratio, at the expense of slower stored fields read performance. If you are updating the compression type, the new one will be applied after segments are merged. Segment merging can be forced using [force merge](https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-indices-forcemerge). Experiments with indexing log datasets have shown that `best_compression` gives up to ~28% lower storage usage and similar indexing throughput (sometimes a bit slower or faster depending on other used options) compared to `default` while affecting get by id latencies between ~10% and ~33%. The higher get by id latencies is not a concern for many use cases like logging or metrics, since these don’t really rely on get by id functionality (Get APIs or searching by _id).
  </definition>
  <definition term="index.mode Elastic Cloud Serverless: Generally available">
    The `index.mode` setting is used to control settings applied in specific domains like ingestion of time series data or logs. Different mutually exclusive modes exist, which are used to apply settings or default values controlling indexing of documents, sorting and other parameters whose value affects indexing or query performance.
    **Example**
    ```json
    {
      "settings": {
        "index":{
          "mode":"standard" <1>
        }
      }
    }
    ```
    The `index.mode` setting supports the following values:
    - `null`:   Default value (same as `standard`).
    - `standard`:   Standard indexing with default settings.
    - `lookup`: Index that can be used for [LOOKUP JOIN](https://www.elastic.co/elastic/docs-builder/docs/3028/reference/query-languages/esql/esql-lookup-join) in ES|QL. Limited to 1 shard.
    - `time_series`:   *(data streams only)* Index mode optimized for storage of metrics. For more information, see [Time series index settings](https://www.elastic.co/elastic/docs-builder/docs/3028/reference/elasticsearch/index-settings/time-series).
    - `logsdb`: *(data streams only)* Index mode optimized for [logs](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3028/manage-data/data-store/data-streams/logs-data-stream).
  </definition>
  <definition term="index.routing_partition_size">
    The number of shards a custom routing value can go to. Defaults to 1 and can only be set at index creation time. This value must be less than the `index.number_of_routing_shards` unless the `index.number_of_routing_shards` value is also 1. for more details about how this setting is used, refer to [_routing field > Routing to an index partition](/elastic/docs-builder/docs/3028/reference/elasticsearch/mapping-reference/mapping-routing-field#routing-index-partition).
  </definition>
</definitions>


<definitions>
  <definition term="index.soft_deletes.enabled">
    <admonition title="Deprecated in 7.6.0">
      This setting was deprecated in 7.6.0.
    </admonition>
    Indicates whether soft deletes are enabled on the index. Soft deletes can only be configured at index creation and only on indices created on or after Elasticsearch 6.5.0. Defaults to `true`.
  </definition>
</definitions>


<definitions>
  <definition term="index.soft_deletes.retention_lease.period">
    The maximum period to retain a shard history retention lease before it is considered expired. Shard history retention leases ensure that soft deletes are retained during merges on the Lucene index. If a soft delete is merged away before it can be replicated to a follower the following process will fail due to incomplete history on the leader. Defaults to `12h`.
  </definition>
  <definition term="index.load_fixed_bitset_filters_eagerly">
    Indicates whether [cached filters](https://www.elastic.co/elastic/docs-builder/docs/3028/reference/query-languages/query-dsl/query-filter-context) are pre-loaded for nested queries. Possible values are `true` (default) and `false`.
  </definition>
  <definition term="index.shard.check_on_startup">
    <warning>
      Expert users only. This setting enables some very expensive processing at shard startup and is only ever useful while diagnosing a problem in your cluster. If you do use it, you should do so only temporarily and remove it once it is no longer needed.
    </warning>
    Elasticsearch automatically performs integrity checks on the contents of shards at various points during their lifecycle. For instance, it verifies the checksum of every file transferred when recovering a replica or taking a snapshot. It also verifies the integrity of many important files when opening a shard, which happens when starting up a node and when finishing a shard recovery or relocation. You can therefore manually verify the integrity of a whole shard while it is running by taking a snapshot of it into a fresh repository or by recovering it onto a fresh node.
    This setting determines whether Elasticsearch performs additional integrity checks while opening a shard. If these checks detect corruption then they will prevent the shard from being opened. It accepts the following values:
    <definitions>
      <definition term="false">
        Don’t perform additional checks for corruption when opening a shard. This is the default and recommended behaviour.
      </definition>
      <definition term="checksum">
        Verify that the checksum of every file in the shard matches its contents. This will detect cases where the data read from disk differ from the data that Elasticsearch originally wrote, for instance due to undetected disk corruption or other hardware failures. These checks require reading the entire shard from disk which takes substantial time and IO bandwidth and may affect cluster performance by evicting important data from your filesystem cache.
      </definition>
      <definition term="true">
        Performs the same checks as `checksum` and also checks for logical inconsistencies in the shard, which could for instance be caused by the data being corrupted while it was being written due to faulty RAM or other hardware failures. These checks require reading the entire shard from disk which takes substantial time and IO bandwidth, and then performing various checks on the contents of the shard which take substantial time, CPU and memory.
      </definition>
    </definitions>
  </definition>
  <definition term="index.disable_sequence_numbers">
    <warning>
      This setting is experimental and might be changed or removed in a future release. Available in Elastic Cloud Serverless and Elastic Stack 9.4+.
    </warning>
    Controls whether the index maintains sequence numbers for document operations. When set to `true`, sequence numbers are not available, trading some consistency guarantees for reduced storage overhead. Defaults to `false`. This setting can only be set at index creation time and cannot be changed afterwards. Requires `index.seq_no.index_options` to be set to `doc_values_only`.
    Disabling sequence numbers introduces the following limitations:
    - **No [optimistic concurrency control](https://www.elastic.co/elastic/docs-builder/docs/3028/reference/elasticsearch/rest-apis/optimistic-concurrency-control)**: The `if_seq_no` and `if_primary_term` parameters cannot be used with [index](https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-index) or [bulk](https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-bulk) requests.
    - **Sentinel values in responses**: [Index](https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-index), [bulk](https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-bulk), [get](https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-get), and [search](https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-search) responses return sentinel values for `_seq_no` and `_primary_term` instead of real sequence numbers.
    - **Updates not supported**: Single-document [update](https://www.elastic.co/elastic/docs-builder/docs/3028/reference/elasticsearch/rest-apis/update-document) operations and update actions within [bulk](https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-bulk) requests are not supported and will be rejected.
    - **Weaker consistency for update-by-query and delete-by-query**: [Update by query](https://www.elastic.co/elastic/docs-builder/docs/3028/reference/elasticsearch/rest-apis/update-by-query-api) and [delete by query](https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-delete-by-query) operations proceed without sequence number-based conflict detection. This means concurrent modifications to documents during these operations may be silently overwritten rather than triggering version conflicts.
    - **`_seq_no` field not queryable**: Queries, filters, and sorts on the `_seq_no` field are not supported.
    - **`random_score` requires an explicit `field`**: The [`random_score`](https://www.elastic.co/elastic/docs-builder/docs/3028/reference/query-languages/query-dsl/query-dsl-function-score-query) function cannot fall back to using `_seq_no` as a source of randomness. A `field` parameter must be specified explicitly.
  </definition>
</definitions>


## Dynamic index settings

Below is a list of all *dynamic* index settings that are not associated with any specific index module:

<definitions>
  <definition term="index.number_of_replicas">
    The number of replicas each primary shard has. Defaults to 1.
    ```
    WARNING: Configuring it to 0 may lead to temporary availability loss
    during node restarts or permanent data loss in case of data corruption.
    ```
  </definition>
</definitions>


<definitions>
  <definition term="index.auto_expand_replicas">
    Auto-expand the number of replicas based on the number of data nodes in the cluster. Set to a dash delimited lower and upper bound (e.g. `0-5`) or use `all` for the upper bound (e.g. `0-all`). Defaults to `false` (i.e. disabled). Note that the auto-expanded number of replicas only takes [allocation filtering](https://www.elastic.co/elastic/docs-builder/docs/3028/reference/elasticsearch/index-settings/shard-allocation) rules into account, but ignores other allocation rules such as [total shards per node](https://www.elastic.co/elastic/docs-builder/docs/3028/reference/elasticsearch/index-settings/total-shards-per-node), and this can lead to the cluster health becoming `YELLOW` if the applicable rules prevent all the replicas from being allocated.
    If the upper bound is `all` then shard allocation awareness and `cluster.routing.allocation.same_shard.host` are ignored for this index. For more information about this setting, refer to [Cluster-level shard allocation and routing settings](https://www.elastic.co/elastic/docs-builder/docs/3028/reference/elasticsearch/configuration-reference/cluster-level-shard-allocation-routing-settings)
  </definition>
</definitions>


<definitions>
  <definition term="index.search.idle.after">
    How long a shard can not receive a search or get request until it’s considered search idle. (default is `30s`)
  </definition>
</definitions>


<definitions>
  <definition term="index.refresh_interval Elastic Cloud Serverless: Generally available">
    How often to perform a refresh operation, which makes recent changes to the index visible to search. If this setting is not explicitly set, shards that haven’t seen search traffic for at least `index.search.idle.after` seconds will not receive background refreshes until they receive a search request. Searches that hit an idle shard where a refresh is pending will trigger a refresh as part of the search operation for that shard only. This behavior aims to automatically optimize bulk indexing in the default case when no searches are performed. To opt out of this behavior, set an explicit value for the refresh interval, even if it matches the default value.
    The value defaults to `1s` in Elastic Stack and `5s` in Serverless. In Serverless, `5s` is also the minimum value that can be set.
    In both cases, the setting can be set to `-1` to disable refresh.
  </definition>
</definitions>


<definitions>
  <definition term="index.max_result_window">
    The maximum value of `from + size` for searches to this index. Defaults to `10000`. Search requests take heap memory and time proportional to `from + size` and this limits that memory. See [Scroll](/elastic/docs-builder/docs/3028/reference/elasticsearch/rest-apis/paginate-search-results#scroll-search-results) or [Search After](/elastic/docs-builder/docs/3028/reference/elasticsearch/rest-apis/paginate-search-results#search-after) for a more efficient alternative to raising this.
  </definition>
  <definition term="index.max_inner_result_window">
    The maximum value of `from + size` for inner hits definition and top hits aggregations to this index. Defaults to `100`. Inner hits and top hits aggregation take heap memory and time proportional to `from + size` and this limits that memory.
  </definition>
  <definition term="index.max_rescore_window">
    The maximum value of `window_size` for `rescore` requests in searches of this index. Defaults to `index.max_result_window` which defaults to `10000`. Search requests take heap memory and time proportional to `max(window_size, from + size)` and this limits that memory.
  </definition>
  <definition term="index.max_docvalue_fields_search">
    The maximum number of `docvalue_fields` that are allowed in a query. Defaults to `100`. Doc-value fields are costly since they might incur a per-field per-document seek.
  </definition>
  <definition term="index.max_script_fields">
    The maximum number of `script_fields` that are allowed in a query. Defaults to `32`.
  </definition>
</definitions>


<definitions>
  <definition term="index.max_ngram_diff">
    The maximum allowed difference between min_gram and max_gram for NGramTokenizer and NGramTokenFilter. Defaults to `1`.
  </definition>
</definitions>


<definitions>
  <definition term="index.max_shingle_diff">
    The maximum allowed difference between max_shingle_size and min_shingle_size for the [`shingle` token filter](https://www.elastic.co/elastic/docs-builder/docs/3028/reference/text-analysis/analysis-shingle-tokenfilter). Defaults to `3`.
  </definition>
  <definition term="index.max_refresh_listeners">
    Maximum number of refresh listeners available on each shard of the index. These listeners are used to implement `refresh=wait_for`.
  </definition>
  <definition term="index.analyze.max_token_count">
    The maximum number of tokens that can be produced using _analyze API. Defaults to `10000`.
  </definition>
</definitions>


<definitions>
  <definition term="index.highlight.max_analyzed_offset">
    The maximum number of characters that will be analyzed for a highlight request. This setting is only applicable when highlighting is requested on a text that was indexed without offsets or term vectors. Defaults to `1000000`.
  </definition>
</definitions>


<definitions>
  <definition term="index.max_terms_count">
    The maximum number of terms that can be used in Terms Query. Defaults to `65536`.
  </definition>
</definitions>


<definitions>
  <definition term="index.max_regex_length">
    The maximum length of value that can be used in `regexp` or `prefix` query. Defaults to `1000`.
  </definition>
</definitions>


<definitions>
  <definition term="index.query.default_field Elastic Cloud Serverless: Generally available">
    (string or array of strings) Wildcard (`*`) patterns matching one or more fields. The following query types search these matching fields by default:
  </definition>
</definitions>

- [More like this](https://www.elastic.co/elastic/docs-builder/docs/3028/reference/query-languages/query-dsl/query-dsl-mlt-query)
- [Multi-match](https://www.elastic.co/elastic/docs-builder/docs/3028/reference/query-languages/query-dsl/query-dsl-multi-match-query)
- [Query string](https://www.elastic.co/elastic/docs-builder/docs/3028/reference/query-languages/query-dsl/query-dsl-query-string-query)
- [Simple query string](https://www.elastic.co/elastic/docs-builder/docs/3028/reference/query-languages/query-dsl/query-dsl-simple-query-string-query)

Defaults to `*`, which matches all fields eligible for [term-level queries](https://www.elastic.co/elastic/docs-builder/docs/3028/reference/query-languages/query-dsl/term-level-queries), excluding metadata fields.

<definitions>
  <definition term="index.routing.allocation.enable">
    Controls shard allocation for this index. It can be set to:
    - `all` (default) - Allows shard allocation for all shards.
    - `primaries` - Allows shard allocation only for primary shards.
    - `new_primaries` - Allows shard allocation only for newly-created primary shards.
    - `none` - No shard allocation is allowed.
  </definition>
  <definition term="index.routing.rebalance.enable">
    Enables shard rebalancing for this index. It can be set to:
    - `all` (default) - Allows shard rebalancing for all shards.
    - `primaries` - Allows shard rebalancing only for primary shards.
    - `replicas` - Allows shard rebalancing only for replica shards.
    - `none` - No shard rebalancing is allowed.
  </definition>
  <definition term="index.gc_deletes">
    The length of time that a deleted document's version number remains available for further versioned operations. Defaults to `60s`.
  </definition>
</definitions>


<definitions>
  <definition term="index.default_pipeline Elastic Cloud Serverless: Generally available">
    Default ingest pipeline for the index. Index requests will fail if the default pipeline is set and the pipeline does not exist. The default may be overridden using the `pipeline` parameter. The special pipeline name `_none` indicates no default ingest pipeline will run.
  </definition>
</definitions>


<definitions>
  <definition term="index.final_pipeline Elastic Cloud Serverless: Generally available">
    Final ingest pipeline for the index. Indexing requests will fail if the final pipeline is set and the pipeline does not exist. The final pipeline always runs after the request pipeline (if specified) and the default pipeline (if it exists). The special pipeline name `_none` indicates no final ingest pipeline will run.
    <note>
      You can’t use a final pipeline to change the `_index` field. If the pipeline attempts to change the `_index` field, the indexing request will fail.
    </note>
  </definition>
  <definition term="index.hidden Elastic Cloud Serverless: Generally available">
    Indicates whether the index should be hidden by default. Hidden indices are not returned by default when using a wildcard expression. This behavior is controlled per request through the use of the `expand_wildcards` parameter. Possible values are `true` and `false` (default).
  </definition>
  <definition term="index.dense_vector.hnsw_filter_heuristic Elastic Cloud Serverless: Preview Elastic Stack: Preview since 9.1">
    The heuristic to utilize when executing a filtered search against vectors in an HNSW graph. It can be set to:
  </definition>
</definitions>

- `acorn` (default) - Only vectors that match the filter criteria are searched. This is the fastest option, and generally provides faster searches at similar recall to `fanout`, but `num_candidates` might need to be increased for exceptionally high recall requirements.
- `fanout` - All vectors are compared with the query vector, but only those passing the criteria are added to the search results. Can be slower than `acorn`, but may yield higher recall.


<definitions>
  <definition term="index.esql.stored_fields_sequential_proportion Elastic Stack: Generally available since 9.1">
    Tuning parameter for deciding when ES|QL will load [stored fields](/elastic/docs-builder/docs/3028/reference/elasticsearch/rest-apis/retrieve-selected-fields#stored-fields) using a strategy tuned for loading dense sequence of documents. Allows values between 0.0 and 1.0 and defaults to 0.2. Indices with documents smaller than 10kb may see speed improvements loading `text` fields by setting this lower.
  </definition>
  <definition term="index.dense_vector.hnsw_early_termination Elastic Stack: Generally available since 9.2 Elastic Cloud Serverless: Generally available">
    Whether to apply _patience_ based early termination strategy to knn queries over HNSW graphs (see [paper](https://cs.uwaterloo.ca/~jimmylin/publications/Teofili_Lin_ECIR2025.pdf)). This is only applicable to `dense_vector` fields with `hnsw`, `int8_hnsw`, `int4_hnsw` and `bbq_hnsw` index types. Defaults to `true` for indexes created with Elasticsearch 9.3, `false` for indexes created with older versions.
  </definition>
  <definition term="index.use_time_series_doc_values_format Elastic Stack: Generally available since 9.3">
    Indicates whether the time series doc values format should be used. Defaults to `true` if `index.mode` is `time_series` or `logsdb`, otherwise `false`.
  </definition>
</definitions>