Analyzers and char_filters o_0 creepy outputs

2014-05-22 Thread georgi . mateev
Hi! This is a sample setup, close to what I am working with https://gist.github.com/anonymous/6e1457321a8ad78c6af8 As you can see, I am trying to remove the hyphens from all words, so that words like "hand-made" are indexed as "handmade". The goal is to make a search for "handmade" find all doc

Re: Trying to build a faceted search that works like a charm, except for my locations_path

2014-02-04 Thread georgi . mateev
There is a complete curl recreation in this gist: https://gist.github.com/gmateev/8808650 -- You received this message because you are subscribed to the Google Groups "elasticsearch" group. To unsubscribe from this group and stop receiving emails from it, send an email to elasticsearch+unsubsc

Re: Trying to build a faceted search that works like a charm, except for my locations_path

2014-02-04 Thread georgi . mateev
Another strange thing that I see, is that if the field is mapped like a "string", I am not able to find anything on it. Neither can I do facets. If it is a multi_field, I get facets and results. That's something that the documentation didn't say, that's why I think that I have other errors in

Trying to build a faceted search that works like a charm, except for my locations_path

2014-02-04 Thread georgi . mateev
Hi guys, I have been trying to build a faceted search and it works pretty well so far. There is just one problem that I have been struggling with in the last few days. It is a multinational jobsearch and the jobs are categorized under a country and a state. I want to be able to search for diff

Different boosts to different fields

2014-01-23 Thread georgi . mateev
What I want to do is do a "fuzzy" (like this) query across multiple fields where matches in certain fields should result in a higher score than matches in other fields. I tried to set different "boost" values to these fields in the mappings and then run a fuzzy_like_this query over them, but it

Re: Elasticsearch - Suggest - Completion - Score on different inputs

2014-01-23 Thread georgi . mateev
You can try to use weights Am Donnerstag, 23. Januar 2014 12:20:30 UTC+1 schrieb Fabian Köstring: > > Hey there! > > Is there a way to tell elasticsearch that an input of the completion type > should be scored differently than other? > > Maybe somethings like this? (Just typed) > > { > > "name" :

Re: My query returns no facets? Any idea?

2014-01-10 Thread georgi . mateev
There is no error in the request, the HEAD plugin just doesn't show the facets ... If I do the request with CURL I get the facets Am Freitag, 10. Januar 2014 17:24:31 UTC+1 schrieb georgi...@jobvector.com: > > http://pastebin.ca/2532879 > > As you can see, I am getting total, took, _shards and hi

Re: My query returns no facets? Any idea?

2014-01-10 Thread georgi . mateev
I did the following request now: { "query": { "match_all": {} }, "facets": { "company": { "terms": { "field": "locations", "all_terms": true } } } } And I got exactly the same response :( Am Freitag, 10. Januar 2014 17:37:20 UTC+1 schrieb Ivan Brus

My query returns no facets? Any idea?

2014-01-10 Thread georgi . mateev
http://pastebin.ca/2532879 As you can see, I am getting total, took, _shards and hits, but no facets. What am I doing wrong? Thank you for your time! -- You received this message because you are subscribed to the Google Groups "elasticsearch" group. To unsubscribe from this group and stop rec