Will replica shards in single node cluster consume jvm heap memory

Hi,

I am using single node with 8 GB JVM (half of total 16 GB).
Total shards = 1951

I know ES will refuse to allocate both the primary shard and a replica shard on the same machine.but is this replica shards consuming heap?

to my understanding 1951 shards is incuding 5 replica shards for each index.
So is this unassigned shards consuming heap.

Kindly clarify.And this ES node is crashing so often.So need to come up with shrink API for shard reduction

Replica shards are not allocated, so do not consume heap. You however have far too many shards so I would recommend you look to reduce this dramatically as it impacts performance and potentially also stability.

wow..thank you so much for quick reply.
Kindly advice whether doing the following will improve performance.
1 .making 3 node cluster
2. using shrink API reducing number of shards

Incase of 3 node cluster without shards reduction will there will be overhead on one node ??

How much space does your indices take up on disk? Shrinking the indices will help, but if they are very small it may be better to reindex into e.g. consolidated monthly indices in order to reduce the shard count further. Adding nodes will help but may not be necessary unless you want to improve resiliency and achieve high availability.

Using GET /_cluster/stats in kibana under
fs{
total :229 GB
free : 94 GB
}
mem{
total 16 GBB
free 1 percent
}

And to add already daily index have been consolidated to monthly.As max shards/per node can be 20/jvm heap,my jvm heap is 8GB ,thus 8*20 = 160 shards.but there are 1500+ shards .

  "mem" : {
    "heap_max_" : 8 GB }

any help on this

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.