반응형
curl -X PUT "localhost:9200/shard_index?pretty" -H 'Content-Type: application/json' -d'
> {
> "index.number_of_shard": 5
> }
> '
인덱스 생성하면서 샤드 설정해주는데 다음과 같은 에러 발생
elasticsearch unknown key [index.number_of_shards] for create index curl
원인은 버전업이 되서 api 가 변경된것같음
다음과 같이 settings 를 넣어줘야함
curl -X PUT "localhost:9200/shard_index?pretty" -H 'Content-Type: application/json' -d'
{
"settings": {
"index": {
"number_of_shards":2
}
}
}
'
https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-create-index.html
반응형
'ElasticSearch' 카테고리의 다른 글
Elasticsearch 와 metircbeat 연결(연동) 안될때 (1) | 2022.09.23 |
---|---|
elasticsearch 자바 환경변수 설정 (0) | 2022.09.20 |
elasticsearch 자주쓰이는 명령어 (0) | 2022.09.02 |
ElasticSearch)Malformed content, found extra data after parsing: START_OBJECT 에러 (2) | 2022.09.02 |
ElasticSearch 문서 색인 조회 (0) | 2022.09.01 |
댓글