반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- centOS
- 컨테이너
- devops
- 부스트코스
- Python
- 데브옵스
- 클라우드
- 프로세스
- 도커 이미지
- 쿠버네티스
- 도커 컨테이너
- boj
- 인프라
- linux
- 네트워크
- docker
- NGINX
- C++
- 운영체제
- centOS7
- ios
- Swift
- k8s
- 도커 명령어
- os
- AWS
- 리눅스
- 도커
- swift 클로저
- kubernetes
Archives
- Today
- Total
귀염둥이의 메모
[ElasticSearch] node does not match index setting [index.routing.allocation.require] filters [box_type:\"hot\"] 본문
Infra & Devops/ElasticSearch
[ElasticSearch] node does not match index setting [index.routing.allocation.require] filters [box_type:\"hot\"]
겸둥이xz 2023. 3. 9. 00:43반응형
UNASSIGNED 상태인 shard의 원인을 explain API를 사용하여 확인할 수 있다.
# explain API
curl -XGET "localhost:9200/_cluster/allocation/explain?pretty"
"node does not match index setting [index.routing.allocation.require] filters [box_type:\"hot\"]"
box_type 설정이 잘 못된 경우이다.
hot-warm 구조를 사용하지 않지만, 잘못된 template 설정으로 인하여 box_type: hot 으로 설정된 경우가 있다.
문제가 있는 인덱스의 "index.routing.allocation.require.box_type": null 으로 설정하여 일시적으로 해결 가능하다.
curl -XPUT -H 'Content-Type: application/json' -d '{"settings" : { "index.routing.allocation.require.box_type": null } }' "localhost:9200/${INDEX}/_settings"
하지만 template이 잘못 설정된 경우에는 일시적인 방법이므로 template을 수정하여 색인을 진행해야한다.
반응형
'Infra & Devops > ElasticSearch' 카테고리의 다른 글
Comments