barnybug
(barnybug)
July 16, 2012, 4:38pm
1
After doing:
curl -XPUT localhost:9200/test/_settings -d '{
"index.routing.allocation.include.tag" : "value"
}'
how do I unset (remove) this requirement?
Tried obvious stuff like setting to null or setting
"index.routing.allocation.include" to {}, but no luck.
cheers
Barnaby
drewr
(Drew Raines)
July 16, 2012, 6:22pm
2
barnybug wrote:
After doing:
curl -XPUT localhost:9200/test/_settings -d '{
"index.routing.allocation.include.tag" : "value"
}'
how do I unset (remove) this requirement?
Tried obvious stuff like setting to null or setting
"index.routing.allocation.include" to {}, but no luck.
You would set it to the empty string, not an object.
-Drew
barnybug
(barnybug)
July 18, 2012, 11:59am
3
Success, thanks
On Monday, 16 July 2012 19:22:45 UTC+1, Drew Raines wrote:
barnybug wrote:
After doing:
curl -XPUT localhost:9200/test/_settings -d '{
"index.routing.allocation.include.tag" : "value"
}'
how do I unset (remove) this requirement?
Tried obvious stuff like setting to null or setting
"index.routing.allocation.include" to {}, but no luck.
You would set it to the empty string, not an object.
-Drew