Index Configuration
number_of_shards: 5 number_of_replicas: 1curl -XPUT 'localhost:9200/orders' \ -H 'Content-Type: application/json' \ -d' { "settings": { "number_of_shards": 1, "number_of_replicas": 0 } }'
Last updated
number_of_shards: 5
number_of_replicas: 1curl -XPUT 'localhost:9200/orders' \
-H 'Content-Type: application/json' \
-d'
{
"settings": {
"number_of_shards": 1,
"number_of_replicas": 0
}
}'Last updated