create index with mapping
text, keyword 는 따로 선 매핑 필요없으나, geo_shape, geo_point같은 경우 필요 { "mappings": { "doc": { "properties": { "city_ancestors":{ "type":"nested", "properties":{ "code":{ "type":"text", "fields":{ "keyword":{ "type":"keyword", "ignore_above":256 } } }, "id":{ "type":"text", "fields":{ "keyword":{ "type":"keyword", "ignore_above":256 } } }, "name":{ "type":"text", "fields":{ "keyword":{ "type":"keyword", "..
create index with mapping
PUT 호스트명/인덱스명 { "mappings": { "_doc": { "properties": { "boundaries": { "type": "geo_shape", "ignore_malformed": true, "precision": "1.0m", "strategy": "recursive", "distance_error_pct": 0.009 }, "boundaries_nearby": { "type": "geo_shape", "ignore_malformed": true, "precision": "1.0m", "strategy": "recursive", "distance_error_pct": 0.009 }, "boundaries_nearby_auto": { "type": "geo_shape", "ignor..