Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ElasticSearch - How does sharding affect indexing performance?

I'm doing some benchmarks on a single-node cluster of ElasticSearch.

I faced to the situation that more shards will reduce the indexing performance -at least in a single node- (both in latency and throughput)

These are some of my numbers:

  • Index with 1 shard it indexed +6K documents per minute
  • Index with 5 shards it indexed +3K documents per minute
  • Index with 20 shards it indexed +1K documents per minute

I had the same results with bulk API. So I'm wondering what's the relation and why this happens?

Note: I don't have the resource problem! Resources are free (CPU & Memory)

like image 963
Reza Same'ei Avatar asked Nov 08 '18 19:11

Reza Same'ei


People also ask

What is the purpose of Sharding in Elasticsearch?

The shard is the unit at which Elasticsearch distributes data around the cluster. The speed at which Elasticsearch can move shards around when rebalancing data, e.g. following a failure, will depend on the size and number of shards as well as network and disk performance.

Is Sharding the same as indexing?

Indexing is the process of storing the column values in a datastructure like B-Tree or Hashing. It makes the search or join query faster than without index as looking for the values take less time. Sharding is to split a single table in multiple machine.

How many shards should Elasticsearch indexes have?

An Elasticsearch index consists of one or more primary shards. As of Elasticsearch version 7, the current default value for the number of primary shards per index is 1. In earlier versions, the default was 5 shards.


1 Answers

Just to have you on the same page:

Your data is organized in indices, each made of shards and distributed across multiple nodes. If a new document needs to be indexed, a new id is being generated and the destination shard is being calculated based on this id. After that, the write is delegated to the node, which is holding the calculated destination shard. This will distribute your documents pretty well across all of your shards.

Finding documents by id is now easy, as the shard, containing the wanted document, can be calulated just based on the id. There is no need for searching all shards. BTW, that's the reason why you can't change the number of shards afterwards. The changed shard number will result in a different document distribution across your shards.

Now, just to make it clear, each shard is a separate lucene index, made of segment files located on your disk. When writing, new segments will be created. If a particular number of segment files will be reached, the segments will be merged. So just introducing more shards without distributing them to other nodes will just introduce a higher I/O and memory consumption for your single node. While searching, the query will be executed against each shard. Afterwards the results of all shards needs to be merged into one result - more shards, more cpu work to do...

Coming back to your question:

For your write heavy indexing case, with just one node, the optimal number of indices and shards is 1!

But for the search case (not accessing by id), the optimal number of shards per node is the number of CPUs available. In such a way, searching can be done in multiple threads, resulting in better search performance. Correction: Searching and indexing are multithreaded, a single shard can fully utilize all CPU cores from a node.

But what are the benefits of sharding?

  1. Availability: By replicating the shards to other nodes you can still serve if some of your nodes can´t be reached anymore!

  2. Performance: Distibuting the primary shards to different nodes, will distribute the workload too.

So if your scenario is write heavy, keep the number of shards per index low. If you need better search performance, increase the number of shards, but keep the "physics" in mind. If you need reliability, take the number of nodes/replicas into account.

Further readings:

https://www.elastic.co/guide/en/elasticsearch/reference/current/_basic_concepts.html

https://www.elastic.co/guide/en/elasticsearch/reference/current/tune-for-indexing-speed.html

https://www.elastic.co/guide/en/elasticsearch/reference/current/tune-for-search-speed.html

https://www.elastic.co/de/blog/how-many-shards-should-i-have-in-my-elasticsearch-cluster

https://thoughts.t37.net/designing-the-perfect-elasticsearch-cluster-the-almost-definitive-guide-e614eabc1a87

like image 62
ibexit Avatar answered Jan 01 '23 12:01

ibexit