Elasticsearch, ES, _reindex,
https://yookeun.github.io/elasticsearch/2018/12/28/elastic-reindex/
_reindex는 엄밀히 말하면 복사가 아니라 데이터만 넣는 것이기 때문에 mapping정보를 복사(?)로 새로 생성할 인덱스에도 추가해줘야함. dest 부분에 _type을 추가해주면 해결된다.
https://wedul.site/611
Elasticsearch에서 index를 구성하다보면 매핑정보를 추가하거나 수정하고 싶을때가 있다. 내가 아는 내에서는 한번 생성된 index의 매핑정보를 변경하는건 어렵다. 그래서 reindex를 통해 index의 매핑정보를 변..