> For the complete documentation index, see [llms.txt](https://cortex-docs.paloaltonetworks.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cortex-docs.paloaltonetworks.com/cortex-xsoar-6-installation-guides/6.14/cortex-xsoar-installation-guide/single-server-installation/install-cortex-xsoar-with-elasticsearch/elasticsearch-best-practices.md).

# Elasticsearch Best Practices

The following are the recommended best practices to install Cortex XSOAR with Elasticsearch.

* It is important to utilize Elasticsearch versatile behavior using shards and replicas. If you are using more than 1 node, we recommend that you set the **`elasticsearch.defaultShardsPerIndex`** and **`elasticsearch.defaultReplicasPerIndex`** to 1 and 2, respectively. You can also use **`elasticsearch.shards`** and **`elasticsearch.replicas`** to configure specific number of shards and replicas respectively on each index.

  For example, setting the following values in **`demisto.conf`** sets 2 replicas for each shard for the incidents index:

  **`"elasticsearch": { "shards": { "common-incident": 1 }, "replicas": { "common-incident": 2 } } }`**

  <div data-gb-custom-block data-tag="hint" data-style="info" class="hint hint-info"><h3>Note</h3><p>This configuration takes effect when the index is created.</p></div>
* Suggested configuration based on the number of data nodes in the Elasticsearch cluster:

  | Configuration                                                    | 2 Data Nodes | 3 Data Nodes | 4 Data Nodes |
  | ---------------------------------------------------------------- | ------------ | ------------ | ------------ |
  | defaultShardsPerIndex                                            | 1            | 1            | 1            |
  | defaultReplicasPerIndex                                          | 1            | 2            | 3            |
  | <p>Shards:</p><p>- common entry</p><p>- common-invplaybook</p>   | 2            | 3            | 4            |
  | <p>Replicas:</p><p>- common entry</p><p>- common-invplaybook</p> | 1            | 1            | 1            |
* Cortex XSOAR uses internal batch to Elasticsearch to avoid heavy requests and large indexing latency. You can increase the batch size using **`elasticsearch.innerBatchSize`** to increase performance and speed, or decrease the value if Elasticsearch is not optimized.
* Due to Cortex XSOAR’s high usage of Elasticsearch, we recommend having the lowest latency possible between the Cortex XSOAR server and the Elasticsearch nodes configured. We also recommend having low latency between nodes to avoid slow indexing or possible data loss on outages. Any latency between Cortex XSOAR and Elasticsearch will greatly impact performance.
* Elasticsearch uses an inner memory management implemented in JAVA that is called the [heap size](https://www.elastic.co/guide/en/elasticsearch/reference/current/important-settings.html#heap-size-settings). It defaults to 1GB and Cortex XSOAR recommends you increase the heap size to 50% of machine's memory, or more if the machine is dedicated to Elasticsearch.
* Elasticsearch uses a refreshing mechanism to flush updated documents to the disk every configured seconds. We recommend setting the configuration index to 1 second. You can use the Cortex XSOAR **`demisto.conf`** file to set a specific refreshing interval in seconds for each index using **`elasticsearch.refreshIntervals`**.

  For example, the following sets the configuration index to 1 second:

  **`"elasticsearch": { "refreshIntervals": { "common-configuration": 1s } }`**

  <div data-gb-custom-block data-tag="hint" data-style="info" class="hint hint-info"><h3>Note</h3><p>This configuration takes effect when the index is created.</p></div>
* We recommend using the most recent supported version of Elasticsearch, to ensure you have the latest features and all security updates.
* Circuit breakers in Elasticsearch are enabled by default. Verify they are enabled and configured correctly, specifically the **request circuit breaker** and the **parent circuit breaker**. These circuit breakers will prevent data nodes from crashing on high memory consumption and will also drop certain requests that Cortex XSOAR will retry later.
* Elasticsearch requires a large number of open file descriptors. Verify that the [limit on the number of open file descriptors](https://www.elastic.co/guide/en/elasticsearch/reference/current/file-descriptors.html) is sufficient to handle a high load of requests, to avoid possible data loss or service interruptions.

**Scaling**

To optimize an Elasticsearch deployment for scaling, we recommend using dedicated a master node as well as coordinating nodes to handle requests, thus having all connections and requests go through the coordinating nodes. Using dedicated coordinating nodes improves Elasticsearch balancing when some data nodes might be unavailable or unresponsive due to high load. Dedicated master node(s) ease data nodes responsibility around shard management, snapshots and monitoring. Elasticsearch distributes the requests more efficiently through the use of master and coordinating nodes.

We also recommend using a load balancer or round-robin DNS server when configuring an elasticsearch.url that points to all/any coordinating nodes. A load balancer enables you to swap, add or remove data nodes, master nodes and coordinating nodes without having to update the Cortex XSOAR configuration file and restart the Cortex XSOAR service, thus significantly decreasing downtime for any changes.

**Mapping**

Indexes with custom fields such as incidents, evidence, and indicators might exceed the max fields mapping limit in Elasticsearch. By default, Cortex XSOAR sets the limit to 2000. If you require more, you can increase the **`elasticsearch.totalFields`** field in the **`demisto.conf`** file.

For example, the following sets the incidents index maximum to 3000 mapped fields:

**`"elasticsearch": { "totalFields": { "common-incident": 3000 } }`**

{% hint style="info" %}

### Note

This configuration takes effect when the index is created.
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://cortex-docs.paloaltonetworks.com/cortex-xsoar-6-installation-guides/6.14/cortex-xsoar-installation-guide/single-server-installation/install-cortex-xsoar-with-elasticsearch/elasticsearch-best-practices.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
