﻿---
title: Elasticsearch scaling considerations
description: Knowing when and how to scale your deployment is critical, especially when unexpected workloads hit. Adding more nodes or adjusting resources is not always...
url: https://www.elastic.co/elastic/docs-builder/docs/3028/deploy-manage/production-guidance/scaling-considerations
products:
  - Elastic Cloud Enterprise
  - Elastic Cloud Hosted
  - Elastic Cloud on Kubernetes
  - Elasticsearch
applies_to:
  - Elastic Cloud Hosted: Generally available
  - Elastic Cloud on Kubernetes: Generally available
  - Elastic Cloud Enterprise: Generally available
  - Self-managed Elastic deployments: Generally available
---

# Elasticsearch scaling considerations
Knowing when and how to scale your deployment is critical, especially when unexpected workloads hit. Adding more nodes or adjusting resources is not always the best solution. Instead, scaling should be based on real workload patterns and informed decision-making.
In orchestrated or managed deployments, [Autoscaling](https://www.elastic.co/elastic/docs-builder/docs/3028/deploy-manage/autoscaling) can automatically adjust cluster resources based on demand, reducing operational overhead. However, if you choose not to use it, or in self-managed environments, scaling becomes a manual process that requires careful planning to adapt to workload changes and ensure the cluster remains performant and resilient.
<note>
  In **Elastic Cloud Serverless** projects, Elastic manages all scaling and performance tuning automatically. You don't need to configure nodes, resources, or autoscaling parameters.
</note>

Refer to [Sizing Elasticsearch: Scaling up and out](https://www.elastic.co/blog/found-sizing-elasticsearch) to identify which questions to ask yourself when determining which cluster size is the best fit for your Elasticsearch use case.

## Monitoring and scaling decisions

To make informed scaling decisions, [cluster monitoring](https://www.elastic.co/elastic/docs-builder/docs/3028/deploy-manage/monitor) is essential. Metrics such as CPU usage, memory pressure, disk I/O, query response times, and shard distribution provide insights into when scaling may be necessary.

## Performance optimizations and scaling

Scaling isn’t just about adding more nodes—it also involves [optimizing the cluster configuration for better performance](https://www.elastic.co/elastic/docs-builder/docs/3028/deploy-manage/production-guidance/optimize-performance). Adjustments such as shard and index tuning, query optimizations, caching strategies, and efficient resource allocation can improve performance without requiring additional hardware. These optimizations directly influence scaling strategies, because a well-tuned cluster can handle more workload with fewer resources.

## Scaling and fault tolerance

When adding zones for fault tolerance or high availability (HA), it might seem like you’re also scaling up. While additional zones might improve the performance, they should not be relied upon for additional capacity.
In Elastic Cloud Hosted and Elastic Cloud Enterprise, the concept of zones is intended for:
- High availability (two zones)
- Fault tolerance (three zones)

Neither will work if the cluster relies on the resources from those zones to be operational.
For true HA at the zone level, the recommended approach is to **first scale up** resources within a single zone until the cluster can take the full load (add some buffer to be prepared for a peak of requests), **then scale out** by adding additional zones depending on your requirements: two zones for high availability, three zones for fault tolerance.
Although the previous is the general recommendation, you should design your cluster to best support your HA requirements. Just make sure you fully understand the implications of your choices and plan accordingly.

## How to scale

Scaling Elasticsearch depends on how you deploy it. Refer to the appropriate guides below based on your deployment type.

### Orchestrated deployments

These platforms offer built-in autoscaling and flexible resource management:
- [Autoscaling](https://www.elastic.co/elastic/docs-builder/docs/3028/deploy-manage/autoscaling): Available in Elastic Cloud Hosted, Elastic Cloud Enterprise, and Elastic Cloud on Kubernetes.
  <note>
  An enterprise license is required for ECK autoscaling.
  </note>
- [Configure Elastic Cloud Hosted deployments](https://www.elastic.co/elastic/docs-builder/docs/3028/deploy-manage/deploy/elastic-cloud/configure): Change instance sizes, increase capacity, or [select a different hardware profile](https://www.elastic.co/elastic/docs-builder/docs/3028/deploy-manage/deploy/elastic-cloud/ec-change-hardware-profile).
- [Resize an ECE deployment](https://www.elastic.co/elastic/docs-builder/docs/3028/deploy-manage/deploy/cloud-enterprise/resize-deployment): Adjust deployment size or topology in the Elastic Cloud Enterprise console.
- [Configure ECK deployments](https://www.elastic.co/elastic/docs-builder/docs/3028/deploy-manage/deploy/cloud-on-k8s/configure-deployments): Change the number of Elasticsearch nodes, [customize compute resources](https://www.elastic.co/elastic/docs-builder/docs/3028/deploy-manage/deploy/cloud-on-k8s/manage-compute-resources), or configure `nodeSets` to adjust the cluster architecture and topology.


### Self-managed deployments

In self-managed environments, scaling requires manual intervention:
- [Add Elasticsearch nodes](https://www.elastic.co/elastic/docs-builder/docs/3028/deploy-manage/deploy/self-managed/installing-elasticsearch)
- [Uninstall Elasticsearch nodes](https://www.elastic.co/elastic/docs-builder/docs/3028/deploy-manage/uninstall)