Re: Include parent or some parent attributes in children hits

2014-03-15 Thread Robin Boutros
I would guess that it's not possible, because children are just filtered by parents _id? On Saturday, March 15, 2014 5:03:45 PM UTC-4, Robin Boutros wrote: > > A quite simple question: I'm making a search request with an has_parent > filter. Is it possible to include the parent or some of its at

Include parent or some parent attributes in children hits

2014-03-15 Thread Robin Boutros
A quite simple question: I'm making a search request with an has_parent filter. Is it possible to include the parent or some of its attributes to the result hits? Thanks. -- You received this message because you are subscribed to the Google Groups "elasticsearch" group. To unsubscribe from th

Error while putting new mapping

2014-03-15 Thread Eduardo Manrique
Hello, I had the following error while creating a new mapping: File "/opt/acme/pypyve1/site-packages/pyelasticsearch/client.py", line 96, in decorate return func(*args, query_params=query_params, **kwargs) File "/opt/acme/pypyve1/site-packages/pyelasticsearch/client.py", line 658, in pu

Re: External routing [76] and document path routing [khabar] mismatch

2014-03-15 Thread Robin Boutros
I actually managed to make it work, by providing the routing as a query parameter when indexing my items. On Thursday, March 13, 2014 10:36:24 PM UTC-4, Robin Boutros wrote: > > Something to add: > > When I index an item, I reference his parent with its id, not his account > name. Is that part o

Re: Completion Suggester - Suggestions (Otions) Count

2014-03-15 Thread Cosmin Marginean
Nevermind. Found it: "suggestion_name" : { "text" : "N", "completion" : { "size" : "7", "field" : "suggestion_field" } } I still think the Docs should reference this though. On Saturday, 15 March 2014 20:29:58 UTC, Cosmin Marginean wrote:

Completion Suggester - Suggestions (Otions) Count

2014-03-15 Thread Cosmin Marginean
I am using the Completion Suggester (http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/search-suggesters-completion.html) and works a treat. I was wondering though if it's possible to increase the number of results (options, as they're called)? It seems that this defaults t

Re: Creating dynamic fields from a field

2014-03-15 Thread Clinton Gormley
To add to what Binh said, you really shouldn't add field names like this: On 14 March 2014 21:20, Pablo Musa wrote: > { > "title":"The greatest band ever - Urban Legion", > "greatest_x" : 1, > "band_x" : 1, > "ever_x" : 1, > "Urban_x": 1, > "Legion_x" : 1, > "greatest_y" : [], > "

Re: Client fork-bombs on server error

2014-03-15 Thread joergpra...@gmail.com
I understand Java HotSpot(TM) 64-Bit Server VM (24.51-b03 mixed mode - this is Java 7u51 on OS Mavericks? If so can you downgrade to 7u25? Jörg -- You received this message because you are subscribed to the Google Groups "elasticsearch" group. To unsubscribe from this group and stop receiving e

Re: Occational client.transport.NoNodeAvailableException

2014-03-15 Thread joergpra...@gmail.com
I am not able to examine your bulk code. From the output "no node available" it seems you overwhelmed the cluster, yes. Testing bulk feeds on a local machine only is kind of limited. You have 5m/sec which is quite much for a small local ES cluster (without knowing your data I can't confirm though,

Re: ES-Hive

2014-03-15 Thread Costin Leau
There is no such property 'es.resource.node' used in Es-Hadoop. And es.resource.write is something set internally by the Hive support not to mention it should point to a index/type NOT host:port. You most likely want: es.nodes=eshost:9200 and es.resource=[index]/[type] See the previous link th