인덱스 생성
{ "settings" : {"number_of_shards":2,"number_of_replicas":1}, "mappings": { "post": { "_source" : { "enabled" : false}, "properties": { "id": {"type":"long", "store":"yes", "precision_step":"8" }, "name": {"type":"string", "store":"yes", "index":"analyzed" }, "published": {"type":"date", "store":"yes", "precision_step":"8" }, "contents": {"type":"string", "store":"no", "index":"analyzed" } } } }..