Elasticsearch 7.7.0v에서 default 격인 Index Template를 추가하고 싶습니다.

안녕하세요?

7.8 버전에서부터는 priority 설정이 추가되어, 그 설정을 이용해 default격 Index template를 생성 하면 됐지만. 7.7은 priority 설정이 없는것으로 압니다.

이미 입력된 Template의 Index_patterns에 해당되는 Index 외에
다른 Index에 적용될 Template 설정 방법이 있을까요?

아 죄송합니다. 찾았습니다.

7.7에선 "priority" 가 아닌 "order" 라는 설정이 있었습니다.

order 설정을 999로 한 default template을 추가했습니다.

{
  ...
  "default" : {
    "order" : 999,  
    "index_patterns" : [
      "*"
    ],
    "settings" : {
      "index" : {
        "number_of_shards" : "1",
        "number_of_replicas" : "0"
      }
    },
  }
}
1 Like

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