Unable to disable shard allocation when an index is stored in memory

2015-01-21 Thread bplsilva
Hello, I have been writing a script that for properly restarting all the nodes of an ES cluster and I have noticed a few particular things in the process. The process is quite simple, it is the same described in the official ES documentation

Re: Unable to disable shard allocation when an index is stored in memory

2015-01-21 Thread bplsilva
As suggested here in the documentation (http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/index-modules-store.html), we have performed the following command curl -XPUT hostName:9200/indexName -d '{ settings: { index.store.type: memory } }'; when creating the index. This

Re: Unable to disable shard allocation when an index is stored in memory

2015-01-21 Thread Mark Walkom
Can you elaborate on how you are storing this index in memory? On 22 January 2015 at 08:17, bplsi...@chaordicsystems.com wrote: Hello, I have been writing a script that for properly restarting all the nodes of an ES cluster and I have noticed a few particular things in the process. The