-
Notifications
You must be signed in to change notification settings - Fork 124
Open
Description
Hi,
I'm trying to override the index config defaults using the below:
docker run --rm -it --network host oliver006/es-test-data --es_url=http://... --batch_size=1000 --num_of_shards=1 --num_of_replicas=2 --index_name=test_data4
However it seems to ignore the options for shards & replicas
curl http://.../test_data4/ | jq
{
"test_data4": {
"aliases": {},
"mappings": {
"properties": {
"age": {
"type": "long"
},
"last_updated": {
"type": "long"
},
"name": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
}
}
},
"settings": {
"index": {
"creation_date": "1621856375498",
"number_of_shards": "1",
"number_of_replicas": "1",
"uuid": "_LBis-bSTmOqmEIi2lnJNQ",
"version": {
"created": "7040199"
},
"provided_name": "test_data4"
}
}
}
}
Can you confirm that this is working? Am I missing something?
Metadata
Metadata
Assignees
Labels
No labels