Are rivers still being deprecated?

2014-11-06 Thread Alexandre Rafalovitch
ElasticSearch 1.4 is out and I can't see any mentions that Rivers are deprecated. Has that (informal) decision been reversed? Or was the timeline further out? What's the currently recommended approach? Regards, Alex. -- You received this message because you are subscribed to the Google

Re: Elasticsearch run as a service dies on first request

2014-11-03 Thread Alexandre Rafalovitch
Lack of permissions on filesystem access? Unexpected directory. Something like dtrace/truss/strace might be useful here. On 03/11/2014 1:19 pm, Jef Statham jef.stat...@gmail.com wrote: I'm running elasticsearch on Centos using the *serivce elasticsearch start. *The service happily stays

Re: Elasticsearch run as a service dies on first request

2014-11-03 Thread Alexandre Rafalovitch
I was actually thinking more about using trace to monitor file system access (not just open, access as well). Regards, Alex. On 3 November 2014 14:08, Jef Statham jef.stat...@gmail.com wrote: Thanks for the strace suggestion, this is what my trace returns. I'm looking into what futex is

Re: Elasticsearch run as a service dies on first request

2014-11-03 Thread Alexandre Rafalovitch
These look like debug messages. Do you know where they go and what they say. Might be where the clue is. Otherwise, I am not sure. The usual debugging method is to try comparing failing instance with a successful one (on file access sequence). You could try that with a fresh local copy of the ES

Re: Announcing elasticsearch plugin for Liferay - elasticray

2014-10-17 Thread Alexandre Rafalovitch
Elastic (without Search) should be ok, I believe. At least according to the official source: http://www.elasticsearch.org/trademarks/ Regards, Alex. Personal: http://www.outerthoughts.com/ and @arafalov Solr resources and newsletter: http://www.solr-start.com/ and @solrstart Solr popularizers

Re: Filters: odd behavior

2014-10-17 Thread Alexandre Rafalovitch
And there is post-filter as well: http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/search-request-post-filter.html Regards, Alex. Personal: http://www.outerthoughts.com/ and @arafalov Solr resources and newsletter: http://www.solr-start.com/ and @solrstart Solr

Re: School project - Analysis of Intranet appliaction traffic

2014-10-15 Thread Alexandre Rafalovitch
Your examples seem to be more from the Complex Event Processing domain: http://en.wikipedia.org/wiki/Complex_event_processing Regards, Alex. Personal: http://www.outerthoughts.com/ and @arafalov Solr resources and newsletter: http://www.solr-start.com/ and @solrstart Solr popularizers

Re: Exporting sub set of data from main index to a new index

2014-10-15 Thread Alexandre Rafalovitch
Have you looked at Scroll and Scan? http://www.elasticsearch.org/guide/en/elasticsearch/guide/master/scan-scroll.html This assumes your _source field has not been disabled. Regards, Alex. Personal: http://www.outerthoughts.com/ and @arafalov Solr resources and newsletter:

Re: ElasticSearch Marvel - how to load sample data from .json file

2014-10-14 Thread Alexandre Rafalovitch
The bulk end point uses a different - flattened - JSON layout. So, you cannot just use that example directly. But it's also not clear exactly what you are trying to do? If you look at the Guide (not just reference), it gives complete Mavel/Sense examples including once that load into your local

Re: ElasticSearch- IndexReaders cannot exceed 2147483647

2014-10-14 Thread Alexandre Rafalovitch
Obvious question: how many documents are you expecting to have in there? Including the nested ones if you are storing them as separate documents. Regards, Alex. Personal: http://www.outerthoughts.com/ and @arafalov Solr resources and newsletter: http://www.solr-start.com/ and @solrstart Solr

Re: ElasticSearch- IndexReaders cannot exceed 2147483647

2014-10-14 Thread Alexandre Rafalovitch
On 14 October 2014 10:33, Prasanth R prasanth.sunr...@gmail.com wrote: There is no upper limit... Well, then you must have an infinitely scalable architecture and a decision when the content starts getting shared. So, then the question is what is your individual shard allowed to grow to. Which

Re: Folding of accented to non-accented *only* — leaving symbols

2014-10-13 Thread Alexandre Rafalovitch
You are probably looking for ICU Folding which is part of ICU plugin: https://github.com/elasticsearch/elasticsearch-analysis-icu . It's not explained in details on that page, but you can see a long list of normalizations from the Lucene's Javadoc:

Easiest way to switch ES between multiple example directories?

2014-10-12 Thread Alexandre Rafalovitch
Hello, I am building a bunch of self-contained ES examples in different directories. I am trying to figure out the easiest way to point ES to various locations with minimum absolute paths hardcoded. Is there a way to point one variable to some sort of home for everything (elasticsearch.yml,

Re: Easiest way to switch ES between multiple example directories?

2014-10-12 Thread Alexandre Rafalovitch
Engineer Campaign Monitor email: ma...@campaignmonitor.com web: www.campaignmonitor.com On 13 October 2014 03:03, Alexandre Rafalovitch arafa...@gmail.com wrote: Hello, I am building a bunch of self-contained ES examples in different directories. I am trying to figure out the easiest way

Re: Easiest way to switch ES between multiple example directories?

2014-10-12 Thread Alexandre Rafalovitch
But I think, that's what I am not seeing the exact clarity. -Des.config does not seem to affect the location of data and log directories. So, they have to be set individually in the elasticsearch.yml that the es.config points to. If I leave them as default, they are relative to the ES binary, that

Re: Indexing and Searching Multimedia Files

2014-07-16 Thread Alexandre Rafalovitch
Did you look at Attachment type plugin? http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/mapping-attachment-type.html Regards, Alex. Personal: http://www.outerthoughts.com/ and @arafalov On Mon, Jul 14, 2014 at 5:30 PM, George Viju vijuit...@gmail.com wrote: Hi, In