Re: Disk-based shard allocation per node settings

2014-10-02 Thread Andrew Mehler
If I hava multiple data dirs on a node, can I apply these settings to each directory individually? On Friday, May 16, 2014 9:31:11 AM UTC-4, Itamar Syn-Hershko wrote: > > The link you provided is for transient settings, meaning they will reset > once the cluster restarts. Doing this via the conf

Re: Java API or REST API for client development ?

2014-08-21 Thread Andrew Mehler
I believe this is true again. Aggregations API recently changed, and code no longer compiles. The REST apis definitely change at a slower rate. On Wednesday, March 26, 2014 8:12:56 AM UTC-4, Graham Tackley wrote: > > Not true anymore: the java client has been compatible between minor > version

Re: encoding is longer than the max length 32766

2014-07-01 Thread Andrew Mehler
For not analyzed fields, Is there a way of capturing the old behavior? From what I can tell, you need to specify a tokenizer to have a token filter. On Tuesday, June 3, 2014 12:18:37 PM UTC-4, Karel Minařík wrote: > > This is actually a change in Lucene -- previously, the long term was > silen

Aggregation Names

2014-05-12 Thread Andrew Mehler
Hey guys, I noticed this constraint on agg names https://github.com/elasticsearch/elasticsearch/commit/f1248e58 It's not mentioned in the guide or under breaking changes for 1.1.0 (instead the breaking change is buried in the issue, which is an enhancement) It seems to me the most convenient nam

Re: Nodes API incomplete

2014-04-07 Thread Andrew Mehler
nd JVM versions everywhere? Just > check and paste with the awesome cat Api... > > curl 'localhost:9200/_cat/nodes?v&h=host,ip,jdk,version' > > > --Alex > > > On Mon, Apr 7, 2014 at 2:46 PM, Andrew Mehler > > wrote: > >> This is version 1.1 >

Re: Nodes API incomplete

2014-04-07 Thread Andrew Mehler
and two data only nodes and did > not have a problem. Can you recreate this issue and create a gist or a > github issue how you managed to get into that state? Also what > elasticsearch version is this? > > > --Alex > > > On Fri, Apr 4, 2014 at 8:22 PM, Andrew Mehler &

Nodes API incomplete

2014-04-04 Thread Andrew Mehler
I have a cluster with 15 nodes, 10 data nodes, 3 master+clients and 2 client only /_cluster/health shows everything is normal: - number_of_nodes: 15, - number_of_data_nodes: 10, but /_nodes is only showing the 5 non-data nodes, and not all 15. however, if I ask for a specific inf

Re: upsert if modified

2014-02-28 Thread Andrew Mehler
Thanks. Unfortunately we have no such field. This may be a useful feature to include in ES. Since the update doc is already being merged with the existing doc, the isModified could easily be done during the merge. On Friday, February 28, 2014 12:20:11 PM UTC-5, Andrew Mehler wrote: > &

upsert if modified

2014-02-28 Thread Andrew Mehler
Is there a way to instruct the update api to 'upsert if modified' ? From what I can tell, a new document will be updated wether or not anything has changed. Say I get a daily snapshot of users and their information from some external source. Most days ~85% of the user data will not have chang