Amazon ES replication and refresh interval

0

A customer wants to build Amazon ES cluster for internal usage with No Replication and Refresh interval as -1. Are these configurations possible with Amazon ES?

AWS
已提問 4 年前檢視次數 222 次
1 個回答
0
已接受的答案

Yes, This can be done by setting Replica to 0 for indices manually or by defining template (https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-templates.html) The default Index configuration for Amazon ES (+2 node) has 5 shards and 1 replica. The Refresh interval can also be set to -1 by APIs. With this, even with multiple nodes, your ES cluster will stay in yellow state.

Amazon ES supports open source ES rest APIs. This can be done by running simple API as shown below.

 curl  -XPUT 'https://vpc-domain01-aaaaaaaaaa.us-west-2.es.amazonaws.com/index-name/_settings' -H 'Content-Type: application/json' -d '
{
 "index" : {
       "refresh_interval" : -1
    }
}'

Similarly you can create template to to disable replicas :

  curl –XPUT https://vpc-domain01-aaaaaaaaaa.us-west-2.es.amazonaws.com/_template/template1 -d 
'{
"template": "logs*",
"settings": 
  {
"index" : 
    {
"number_of_shards": 1,
"number_of_replicas": 0,

    }
  }
}'

This cannot be done directly throught CloudFormation, You have to build init type with EC2 instance to run APIs . https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-init.html

已回答 4 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南