[Elasticsearch] Create Index Settings & Mappings 템플릿.
Elastic/Elasticsearch 2016. 3. 2. 12:30그냥 복습 하는 차원에서 기록 합니다.
$ curl -XPUT "http://localhost:9200/INDEX_NAME" -d'
{
"settings": {
...설정할 정보를 넣으세요...
},
"mapping": {
...설정할 정보를 넣으세요...
}
}
별 내용 없습니다.
그냥 rest api를 이용해서 index 생성 할 때 필요한 설정 정보를 작성하는 틀 정도 입니다.
type 정보는 mappings 안에 넣으시면 됩니다.
기본적으로 해당 설정은 지정한 INDEX_NAME 에 한해서 적용되는 것입니다. 별도의 global 설정을 하고 싶으시다면 template 기능을 활용하시기 바랍니다.
참고링크)
https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-put-mapping.html
https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping.html
https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-templates.html
https://www.elastic.co/guide/en/elasticsearch/reference/current/dynamic-templates.html