Re: get elasticsearch settings

2014-05-27 Thread nathan
Looking through the docs, it doesn't seem like we can change the index_buffer_size through the cluster update api. -- You received this message because you are subscribed to the Google Groups "elasticsearch" group. To unsubscribe from this group and stop receiving emails from it, send an email

Re: get elasticsearch settings

2014-05-27 Thread nathan
Unfortunately I cannot help you but I am wondering how to do the same thing. On Friday, March 7, 2014 12:29:18 AM UTC+9, eune...@gmail.com wrote: > > Thanks! > > I still can't seem to find these settings. > > Apologies in advance if I am just missing them... > indices.memory.index_buffer_size > in

Re: get elasticsearch settings

2014-03-06 Thread eunever32
Thanks! I still can't seem to find these settings. Apologies in advance if I am just missing them... indices.memory.index_buffer_size indices.memory.min_shard_index_buffer_size indices.memory.min_index_buffer_size And when I run the _cluster/settings all I get is: { "persistent": {}, "tran

Re: get elasticsearch settings

2014-03-04 Thread Binh Ly
Unfortunately, there is no 1 place to get all settings. However, you can usually get them as follows: 1) Cluster settings: curl "localhost:9200/_cluster/settings?pretty" 2) Index settings: curl "localhost:9200/foo/_settings?pretty" 3) Node settings: curl "localhost:9200/_nodes?pretty" So for e

get elasticsearch settings

2014-03-04 Thread eunever32
I have what I think is an obvious question. If I tweak some settings such as: index.translog.flush_threshold_period or index.merge.policy.use_compound_file or index.refresh_interval or indices.memory.index_buffer_size or index.cache.field.type or index.gateway.snapshot_interval Is it poss