색인 시 인덱스 자동 생성을 방지해줄 수 있는 action.auto_create_index 설정을 해보자
최종 elasticsearch.yml
discovery.type: single-node
bootstrap.memory_lock: true
action.auto_create_index: ".watches,.triggered_watches,.watcher-history-*"
xpack.ml.enabled: false
network.host: 0.0.0.0
ES 7.1.1
1. elasticsearch.yml
에 action.auto_create_index=false
설정
항상 컨네이너 삭제 후 재시작함
(에러) 컨테이너 뜰 때 Caused by: java.lang.IllegalArgumentException: the [action.auto_create_index] setting value [false] is too restrictive. disable [action.auto_create_index] or set it to [.watches,.triggered_watches,.watcher-history-*]
(시도) elasticsearch.yml
에 action.auto_create_index: ".watches,.triggered_watches,.watcher-history-*"
추가
2. (에러) 컨테이너 뜰 때 아래 에러 남
Caused by: org.elasticsearch.ElasticsearchException: X-Pack is not supported and Machine Learning is not available for [linux-aarch64]; you can use the other X-Pack features (unsupported) by setting xpack.ml.enabled: false in elasticsearch.yml
(시도)elasticsearch.yml
에 xpack.ml.enabled: false
추가
3. (에러) ES API 조회 시 401 Unauthorized 에러 뜸
(시도) elasticsearch.yml
에 xpack.security.enabled: false
추가함
(결과) 소용 없어서 제거
(시도) elasticsearch.yml
에 network.host: 0.0.0.0
추가함
성공! 401 에러 안 남
최종 elasticsearch.yml
discovery.type: single-node
bootstrap.memory_lock: true
action.auto_create_index: ".watches,.triggered_watches,.watcher-history-*"
xpack.ml.enabled: false
network.host: 0.0.0.0
알게된 것
1) docker-compose.yml
에서 elasticsearch.yml
가 추가되면 environment
에 설정한 것들은 사라진다. (덮어씌어져서)
environment:
- discovery.type=single-node # yml 있으면 사라짐. yml 에 다시 써줘야함
- bootstrap.memory_lock=true # yml 있으면 사라짐
volumes:
- ./elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml
2) environment
에서 auto_create_index
옵션은 안 먹힌다.
environment:
- action.auto_create_index=false # 안 먹힘
3) elasticsearch.yml
설정은 GET _nodes 에서 확인할 수 있다.
'SearchDeveloper > ElasticSearch' 카테고리의 다른 글
[ElasticSearch] update_by_query version_conflict_engine_exception & update 쿼리 비교 (1) | 2024.07.14 |
---|---|
[ElasticSearch] synonym_graph 의 start_offset, end_offset, position, position_length 이해하기 (0) | 2024.03.07 |
노리 형태소 분석기 이해하기 (2/2) (2) | 2023.04.11 |
노리 형태소 분석기 이해하기 (1/2) (0) | 2023.04.01 |
[트러블슈팅] Too many dynamic script compilations within, max: [75/5m] (0) | 2022.11.16 |