Re: Announce Mailing List

2014-11-06 Thread Igal @ getRailo.org
; web: www.campaignmonitor.com <http://www.campaignmonitor.com> > > On 22 September 2014 04:06, Igal @ getRailo.org <mailto:i...@getrailo.org>> wrote: > > I understand, but thanks to your project's success the mailing > list generates a l

Re: Announce Mailing List

2014-09-21 Thread Igal @ getRailo.org
quot; where new releases and updates are announced. IMO you should adopt that practice as well. best, Igal On 9/21/2014 11:01 AM, David Pilato wrote: > I use this mailing list for announcements about plugins. > > -- > David ;-) > Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs

Announce Mailing List

2014-09-21 Thread Igal
Is there an announce mailing list? ATM I am trying to cut down on the amount of emails that I get, but I am very interested in learning about new version releases etc. -- You received this message because you are subscribed to the Google Groups "elasticsearch" group. To unsubscribe from this

Re: Facetted Search Misbehaving

2014-05-03 Thread Igal @ getRailo.org
looks like the "size" issue was my mistake. I've placed it in the "available_tags" scope instead of the "terms" scope. so the line for the aggs in the request should read instead: ,"aggs": {"available_tags": {"terms&quo

Re: Facetted Search Misbehaving

2014-05-03 Thread Igal @ getRailo.org
for whoever finds this thread in the future, see https://github.com/elasticsearch/elasticsearch/issues/1305 On 4/24/2014 10:55 AM, Igal wrote: I noticed that the problem usually happens when the number of results in the agg is rather small. I have 5 shards on that index, and the aggs return

Re: bigram field

2014-04-24 Thread Igal @ getRailo.org
ouch... scratch that. I used "text" instead of "string". need some sleep I guess... On 4/24/2014 10:01 PM, Igal @ getRailo.org wrote: the error I'm getting is: MapperParsingException[No handler for type [text] declared on field [bigram]; On 4/24/2014 9:2

Re: bigram field

2014-04-24 Thread Igal @ getRailo.org
the error I'm getting is: MapperParsingException[No handler for type [text] declared on field [bigram]; On 4/24/2014 9:21 PM, Igal @ getRailo.org wrote: I'm trying to add a bigram field for use as described at http://www.elasticsearch.org/guide/en/elasticsearch/reference/curr

bigram field

2014-04-24 Thread Igal @ getRailo.org
,"tokenizer" : "bigram_tokenizer" ,"filter" : [ "lowercase" ,"asciifolding" ] } then I'm trying to add a field in the mapping, like so: "bigram" : { "type": "text",

Re: Facetted Search Misbehaving

2014-04-24 Thread Igal
-work-properly since there was no much response here. thanks, Igal On Monday, April 21, 2014 11:36:25 AM UTC-7, Igal wrote: > > Thanks Nik -- that's what I was thinking too. > > I was wondering if someone from the ES team could confirm that my code is > correct for w

Re: Facetted Search Misbehaving

2014-04-21 Thread Igal @ getRailo.org
Thanks Nik -- that's what I was thinking too. I was wondering if someone from the ES team could confirm that my code is correct for what I'm trying to achieve. Igal On 4/20/2014 1:09 PM, Nik Everett wrote: Sorry, wasn't reading too closely. If the execution:and is taking

Re: Facetted Search Misbehaving

2014-04-20 Thread Igal
d "and" so I know that it is working. for some reason the numbers still do not match some of the time though. Igal On Sunday, April 20, 2014 12:32:31 PM UTC-7, Nikolas Everett wrote: > > > > Sent from my iPhone > > > On Apr 20, 2014, at 3:06 PM, "Igal @ getR

Facetted Search Misbehaving

2014-04-20 Thread Igal @ getRailo.org
et more than 10. 2) the hits count that comes back when adding the new tag to the filter doesn't match the doc_count that came with the aggregations, for example, the aggregations might show a doc_count of 12 for the tag "Yellow", but if I add "Yellow" to the filter ter

Re: specifying the search analyzer for a multi_match query

2013-12-22 Thread Igal
filter" : [ "standard", "lowercase", "english_stemmer", "synonyms_site" ] } } apparently duplicating the settings from synonym_analyzer to default works. I was under the impression that I would not need to duplicate the settings. Ig

specifying the search analyzer for a multi_match query

2013-12-21 Thread Igal @ getRailo.org
ex/_analyzer?text=Widgets&analyzer=synonym_analyzer returns "widget" so it looks like the default analyzer is not the synonym_analyzer as I expect it to be. what am I doing wrong? or how can I specify the analyzer to use in the query so that the search terms are stemmed? TIA, Igal