Skip to content

Instantly share code, notes, and snippets.

@maprangzth
Forked from angristan/single-node-es.md
Created May 25, 2021 05:14
Show Gist options
  • Save maprangzth/b4d9988a4162e529e2674539dc5f4c02 to your computer and use it in GitHub Desktop.
Save maprangzth/b4d9988a4162e529e2674539dc5f4c02 to your computer and use it in GitHub Desktop.
Elasticsearch settings for single-node cluster (1 shard, 0 replica)

Elasticsearch settings for single-node cluster

1 shard, 0 replica.

For future indices

Update default template:

curl -X PUT http://localhost:9200/_template/default -H 'Content-Type: application/json' -d '{"index_patterns": ["*"],"order": -1,"settings": {"number_of_shards": "1","number_of_replicas": "0"}}' 

For existing indices

If yellow indices exist, you can update them with:

curl -X PUT http://localhost:9200/_settings -H 'Content-Type: application/json' -d '{"index": {"number_of_shards": "1","number_of_replicas": "0"}}'

If you get this error:

{"error":{"root_cause":[{"type":"cluster_block_exception","reason":"blocked by: [FORBIDDEN/12/index read-only / allow delete (api)];"}],"type":"cluster_block_exception","reason":"blocked by: [FORBIDDEN/12/index read-only / allow delete (api)];"},"status":403}

You can fix it with:

curl -X PUT http://localhost:9200/_settings -H 'Content-Type: application/json' -d '{"index": {"blocks": {"read_only_allow_delete": "false"}}}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment