티스토리 뷰
Data/ELK
[에러 해결] Bulk indexing has failures. Use ElasticsearchException.getFailedDocuments()
zeroco2 2023. 12. 18. 16:05ClusterBlockException[blocked by: [FORBIDDEN/12/index read-only / allow delete (api)];]
인덱스 setting 확인
> GET my_index/_settings
{
"my_index": {
"settings": {
"index": {
"refresh_interval": "5s",
"number_of_shards": "1",
"blocks": {
"read_only_allow_delete": "true"
},
"provided_name": "my_index",
"creation_date": "1586831203626",
"number_of_replicas": "0",
"uuid": "",
"version": {
"created": "6030299"
}
}
}
}
}
blocks.read_only_allow_delete : "true"로 설정되어 있습니다. 이것은 해당 인덱스가 읽기 전용 상태이며 삭제만 허용된다는 것을 나타냅니다.
해결 방법 : 인덱스 setting 수정
curl -X PUT "localhost:9200/ma_customer_cafe24/_settings" -H 'Content-Type: application/json' -d '{
"index": {
"blocks.read_only_allow_delete": "false"
}
}'
PUT /ma_customer_cafe24/_settings
{
"settings": {
"index.blocks.read_only_allow_delete": false
}
}
'Data > ELK' 카테고리의 다른 글
[ELK] Elasticsearch 노드의 종류 (0) | 2023.12.18 |
---|---|
ES 인덱스 내부 데이터 싹 삭제하기 (1) | 2023.12.08 |
[Elastic Search] ElasticSearch 자주 쓰는 Query (0) | 2023.07.21 |
[ELK] 빅데이터 플랫폼에서의 엘라스틱 스택의 사용 (0) | 2023.06.14 |
[ELK] 엘라스틱 스택(ELK) 이란? (0) | 2023.06.13 |