일래스틱서치에서는 인덱스 이름을 변경할 수 있는 방법이 거의 없지만..
유일하게 스냅샷을 복구할 때 인덱스 이름을 유일하게 변경할 수 있다.
$ curl -XPOST "http://localhost:9200/_snapshot/es/snapshot_1/_restore" -d'
{
"indices": "my_index",
"ignore_unavailable": "true",
"rename_replacement": "your_index"
}'
'Elasticsearch' 카테고리의 다른 글
[elasticsearch5] 축소(shrink) api 예제 (0) | 2017.06.19 |
---|---|
[일래스틱서치5] 트라이브(tribe) 노드는 7.0부터 사라질 예정 (0) | 2017.06.12 |
[elasticsearch5] 스냅샷(snapshot) 생성/정보 얻기 (0) | 2017.06.08 |
[elasticsearch5] cat API 간단 설명과 유용한 cat API 예제 (0) | 2017.06.06 |
[elasticsearch5] yaml 응답 보기 (0) | 2017.06.06 |