Elasticsearch 주요 설정 명령

Donghyun Kim·2023년 3월 14일
0

Max Shards 설정

curl -X PUT localhost:9200/_cluster/settings -H "Content-Type: application/json" -d '{ "persistent": { "cluster.max_shards_per_node": "3000" } }'

다수 인덱스 삭제 허용 설정

PUT _cluster/settings
{
    "persistent": {
        "action.destructive_requires_name": false
    }
}
profile
"Hello World"

0개의 댓글