Re: Finding similar documents with Elasticsearch

2014-01-18 Thread David Pilato
Do you get same results if you compare against file.file field? -- David ;-) Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs Le 19 janv. 2014 à 07:13, Zoran Jeremic a écrit : Hi guys, I'm trying to develop service that will store uploaded files as attachment (file is one field in docum

Finding similar documents with Elasticsearch

2014-01-18 Thread Zoran Jeremic
Hi guys, I'm trying to develop service that will store uploaded files as attachment (file is one field in document). This part works fine as I can search these files using like_text as input. However, the second part of this service should compare the file that is just uploaded with the existin

[ANN]Elasticsearch Extended Analyze plugin update for 1.0.0.RC1

2014-01-18 Thread Jun Ohtani
Hi, Just released extended analyze plugin 1.0.0.RC1 for elasticsearch 1.0.0.RC1. https://github.com/johtani/elasticsearch-extended-analyze For more info about the plugins, see the Github pages. Feedback, comments, issues are most welcome. Best, Jun Jun Ohtani joht...@gmail.com bl

start, end and gap in Price using Aggregations

2014-01-18 Thread Hariharan Vadivelu
I have been experimenting with the new aggregations feature and I'm wondering if this use case is possible Sample gist and Sample Query is available here. https://gist.github.com/hariinfo/8487083 This will generate Sample Price Facet in the UI Price 0 - 5 (1) 5 - 10 (2) 10 - 20 (1) 20 - 30 (2)

Re: Question about performance of has_child filter

2014-01-18 Thread Josh F
I will upgrade, I didn't really see anything relating to this in the release notes, though - except possibly this one: https://github.com/elasticsearch/elasticsearch/issues/4592 Thanks On Saturday, January 18, 2014 1:36:03 PM UTC, David Pilato wrote: > > As far as I remember, some memory improv

how to save a term facet result?

2014-01-18 Thread Valentin
What i want to do, is to use reuse the facets result of one query as the terms filter of another query. Preferably without sending the data to the client over the internet. Is this possible? -- You received this message because you are subscribed to the Google Groups "elasticsearch" group. To

Re: Question about performance of has_child filter

2014-01-18 Thread David Pilato
As far as I remember, some memory improvements have been done since. I would suggest to upgrade to 0.90.10. -- David ;-) Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs Le 18 janv. 2014 à 13:29, Josh F a écrit : Hey all, I am running a 5 node ES cluster (version 0.90.4) and recently exp

Question about performance of has_child filter

2014-01-18 Thread Josh F
Hey all, I am running a 5 node ES cluster (version 0.90.4) and recently experienced an OutOfMemory issue where all nodes simultaneously went out of memory. I am wondering if this could be related to my use of the has_child filter. I have two document types: 'Item' and 'ItemInList'. There is a pa

Sorting details

2014-01-18 Thread Ahmed Sabaa
Hello, I am trying to sort a document using the locations attribute of a subdocument with the following architecture. { attribute1: value1, attribute2: value2, attribute3: [{ attribute1: value1, location: { lat: latitude, lon: longitude } }, { attribute1: value1, location: { lat: latitude, lon:

Re: Understanding Index Stats API Better

2014-01-18 Thread Vaidik Kapoor
Thanks for the clarification Luca! :) Vaidik Kapoor vaidikkapoor.info On 18 January 2014 00:17, Luca Cavanna wrote: > Yes, nested documents are separate lucene documents, that are never > returned (for now) by the ordinary elasticsearch search apis as they are > filtered out by default. Only a

Re: Naming an index or a type with URIs

2014-01-18 Thread David Pilato
I think I would base64 encode the URL and lowercase it. I did not try it though. My 2 cents. -- David ;-) Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs Le 18 janv. 2014 à 11:07, Olivier Rossel a écrit : > Is it technically possible to name an index or a type with a URI string > (cont

Re: Naming an index or a type with URIs

2014-01-18 Thread joergpra...@gmail.com
Index names must be lowercase and must not contain characters that are problematic in file names, because they are used as directory name. Type names are not used in the file system but to conform with index names, they are also restricted. I also use URIs in Elasticsearch. You can use them as fi

Naming an index or a type with URIs

2014-01-18 Thread Olivier Rossel
Is it technically possible to name an index or a type with a URI string (containing dots, slashes, colons, ...)? I have tried to do some curl stuff with an URL like http://localhost:9200///... but it didn't seem to work very well. Are there technical issues with this kind of naming? Or is it pos