{
"settings": {
"number_of_shards": 1,
"number_of_replicas": 1
},
"mappings": {
"properties" : {
"wdate" : {"type":"integer"},
"ip": {"type":"keyword"},
"referer_url": {"type":"keyword"},
"domain" : {"type":"keyword"}
}
}
}
index 변경이 안되어서 새로 테이블을 만들고 그 쪽으로 새로이 index 생성 후 기본 테이블 지우고 그쪽으로 alias 를 설정하면 됨니다 재이텍스시 ?wait_for_completion=false 이것이 없어면 시작 제한에 걸려서 작동이 안된다.
POST _reindex?wait_for_completion=false { "source": {"index": "ins_wave_count_2025_04"}, "dest": {"index": "ins_wave_count_2025_044"} }
DELETE ins_wave_count_2025_04
POST _aliases { "actions": [ { "add": { "index": "ins_wave_count_2025_044", "alias": "ins_wave_count_2025_04" } } ] }
|