2. 인덱스 롤링 2-1. 개요홈페이지 번역 문서를 보면 인덱스 롤링에 관한 문서가 있다.인덱스 롤링을 aliase, 별칭을 통해 지정하는데, https://iju707.gitbooks.io/elasticsearch/content/indices-rollover-index.html 설명서 번역본이다. 2-2. 설정 1) template 수정test 템플릿으로 가서, 다음과 같이 추가하였다. .... "settings": { "index.number_of_shards": 3, "index.mapping.total_fields.limit": 10000, "index.refresh_interval": "5s" }, "aliases": { "test_aliase": {} }, "template": "test*"}..