DB/ElasticSearch

[ElasticSearch]ElasticSearch Template

HMHA 2023. 2. 6. 11:34
300x250
반응형

Template 생성

	curl -XPUT http://localhost:9201/_template/template_product
	{
	  "template": "product*",
	  "settings": {
	    "number_of_shards": 8
	  },
	  "version": 1
	}

product로 생성되는 index에 shard를 8개 생성한다. 매핑정보와 공통되는 부분을 작업하면 편하다.

Template 조회

	curl -XGET http://localhost:9201/_template

Template 삭제

	curl -XDELETE http://localhost:9201/_template/template_product?pretty

 

 

출처 : https://codezip.tistory.com/757?category=72881 

 

300x250
반응형