Re: Addressing customer REST end-point using java API

2015-05-18 Thread Jörg Prante
In https://github.com/jprante/elasticsearch-xml/blob/master/src/test/java/org/xbib/elasticsearch/integration/AbstractNodesTests.java you can study how to obtain the HTTP address of a node for plugin tests in a junit test. Jörg Am 18.05.15 um 15:19 schrieb AndrewK: > Is there a simple way to ad

Re: partial index replication causes data loss?

2014-10-24 Thread Jörg Prante
If you have replica level 1 with 3 nodes, this is not enough. You must set replica level 2. With replica level 1 and outage of 2 nodes, as you describe, you will lose data. Jörg On Wednesday, October 15, 2014 12:52:31 AM UTC+2, Evan Tahler wrote: > > Hi Mailing List! I'm a first-time poster, a

Re: searching the big index - java.lang.OutOfMemoryError: Java heap space

2014-08-08 Thread Jörg Prante
What is the type of query you execute, how does it look like? Can you give an example? Does it work with standard settings, without manipulating cache/filter size? Jörg On Thursday, August 7, 2014 9:51:38 PM UTC+2, Pavel P wrote: > > Hi, > > Currently I have the cluster from 3 nodes, each has 8

Re: Any experience with ES and Data Compressing Filesystems?

2014-08-04 Thread Jörg Prante
You are aware of the fact the kind of search performance you mean depends on RAM and virtual memory organization of the cluster, not on storage, so "without any siginifcant performace losses" could be expected ? Jörg Am 04.08.14 12:41, schrieb horst knete: We are indexing all sort of events (W

Re: How to change similarity settings runtime?

2014-07-14 Thread Jörg Prante
You can not change the similarity module of an index during runtime. Jörg On Monday, July 14, 2014 6:11:44 AM UTC+2, spancer ray wrote: > > Hi Guys, > > I set my similarity type to 'BM25' in elasticsearch.yml , using > index.similarity.default.type: BM25. > But in my search case(searching acro

Re: elasticsearch dies every other day

2014-07-13 Thread Jörg Prante
With this setting, you allow the flooding of your heap when using single doc indexing. Now you ask for the reason why your heap collapses. Not sure how Logstash indexer works but you should review your custom settings. Jörg On Saturday, July 12, 2014 8:22:33 PM UTC+2, Klavs Klavsen wrote: > > >

Re: ingest performance degrades sharply along with the documents having more fileds

2014-06-22 Thread Jörg Prante
Two things to add, to make Elasticsearch/Solr comparison more fair. In the ES mapping, you did not disable the _all field. If you have _all field enabled, all tokens will be indexed twice, one for the field, one for _all. http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/map