AWS Docs for AWS ElasticSearch have a section about the shrink API:
The sample shows how to shrink:
{
"settings": {
"index.routing.allocation.require._name": "name-of-the-node-to-shrink-to",
"index.blocks.read_only": true
}
}
PUT https://domain.region.es.amazonaws.com/source-index/_settings
{
"settings": {
"index.routing.allocation.require._name": null,
"index.blocks.read_only": false
}
}
PUT https://domain.region.es.amazonaws.com/shrunken-index/_settings
{
"settings": {
"index.routing.allocation.require._name": null,
"index.blocks.read_only": false
}
}
Where do I get the name-of-the-node-to-shrink-to
, source-index
and shrunken-index
?
For shrink operation:
"name-of-the-node-to-shrink-to" parameter relocates the index’s shards to this particular node.
You can get the nodes name for your cluster using the cat nodes API:
Next, your source-index in the index that you want to perform shrink operation on. This process creates a new target index which will be your shrunken-index
You will make the following API call to perform the shrink operation:
The other two calls that you see in the AWS documentation are for clearing the allocation requirement for the source-index and shrunken-index
You can also follow Elastic's guide on the same.