반응형
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 |
Tags
- 프로그래머스
- 크론 표현식
- 쿠버네티스
- @configuration
- 롬복 어노테이션
- 기능개발
- 루씬 인 액션
- 고차원 함수
- 영속 자료구조
- 알고리즘
- 코딩 테스트
- 커링
- Java
- @Setter
- 스택/큐
- 완주하지 못한 선수
- 모던 자바 인 액션
- @Data
- 스프링 스케쥴러
- H-index
- 정렬
- K번째수
- 전화번호 목록
- @EnableScheduling
- 다리를 지나는 트럭
- 검색 기능 확장
- 가장 큰 수
- kubenetes
- @Getter
- 해시
Archives
- Today
- Total
목록ElasticSearch (2)
Today I Learned
Elasticsearch Head를 이용해서 Index Alias 변경하기
Elasticsearch Head 크롬 확장프로그램을 이용해서 Index Alias를 변경할 수 있다. ElasticSearch Head ElasticSearch Head chrome.google.com Actions -> New Alias -> alias 명을 설정한 뒤에 Actions -> Refresh 하면 적용 완료
ElasticSearch
2022. 1. 13. 16:02
FORBIDDEN/12/index read-only / allow delete (api)
엘라스틱 서치 인덱싱 도중에 발생한 오류 원인은 ES에 용량이 부족하게되면 read_only_allow_delete 설정을 자동으로 true로 변경하며 발생하는 문제이다. index [my_index], type [_doc], id [1000094010042], message [ElasticsearchException[Elasticsearch exception [type=cluster_block_exception, reason=index [my_index] blocked by: [FORBIDDEN/12/index read-only / allow delete (api)];]]] 해결방법은 먼저 용량을 확보한 후에, curl -XPUT 'http:////_settings' \ -H 'Content-Type:..
ElasticSearch
2022. 1. 13. 15:57