본문 바로가기

SearchDeveloper/ElasticSearch

[Elasticsearch] action.auto_create_index 를 설정하자

색인 시 인덱스 자동 생성을 방지해줄 수 있는 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.ymlaction.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.ymlaction.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.ymlxpack.ml.enabled: false 추가

3. (에러) ES API 조회 시 401 Unauthorized 에러 뜸

(시도) elasticsearch.ymlxpack.security.enabled: false 추가함

(결과) 소용 없어서 제거

(시도) elasticsearch.ymlnetwork.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 에서 확인할 수 있다.

GET _nodes