Re: Loading JSON-LD into ES

2014-09-28 Thread joergpra...@gmail.com
In your case, you have to create ES bulk format for efficient indexing of such files, or better, instrumenting the ES python client to push JSON-LD into ES. Jörg On Sun, Sep 28, 2014 at 4:23 AM, abo a...@datavolution.com wrote: Thank you all for your responses and interesting conversation

Re: elasticsearch english words analyzer

2014-09-28 Thread joergpra...@gmail.com
reversestring is a compound word, for this a need an analyzer for decompounding. For german words, I have a solution https://github.com/jprante/elasticsearch-analysis-decompound Jörg On Sun, Sep 28, 2014 at 7:46 AM, David Pilato da...@pilato.fr wrote: Is reversestring an english word? But

aggregate results on specific attribute

2014-09-28 Thread Maarten Roosendaal
Hi, I'm trying to solve the following use case with elasticsearch: we want to provide users with autocomplete functionality but the results of a typed term should be aggregated by type of entity in the index, like brand and creator. For example, i have this in the index (name, type, score)

Re: elasticsearch java update api error

2014-09-28 Thread David Pilato
I might be wrong but from the top of my head, setScriptLang is used to set the script language such as mvel, groovy,... -- David ;-) Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs Le 28 sept. 2014 à 07:57, zouxcs zou...@gmail.com a écrit : I set the script manually,the

Re: elasticsearch java update api error

2014-09-28 Thread zouxcs
Yeah,that's right,I changed to setScript and it works,thank you for the help. -- View this message in context: http://elasticsearch-users.115913.n3.nabble.com/elasticsearch-java-update-api-error-tp4064139p4064151.html Sent from the ElasticSearch Users mailing list archive at Nabble.com. --

Recommendations on field name length

2014-09-28 Thread Michael Giagnocavo
It seems that the field names in JSON aren't turned into a dictionary, so longer field names end up taking noticeably more space. Especially for compact data, like documents that contain only integer and date fields. What is the recommendation for handling this? It's easy enough to have client

Re: aggregate results on specific attribute

2014-09-28 Thread vineeth mohan
Hello Maarten , This is a direct use case of aggregations. Simpy use term aggregation for both fields - http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/search-aggregations.html Thanks Vineeth On Sun, Sep 28, 2014 at 1:17 PM, Maarten Roosendaal

Copy IT Data to Local Server

2014-09-28 Thread naveen gayar
Hi I wish to export the data from remote environment and import into my local server. Please suggest Thanks Navajyothi -- 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

Copy Couchbase data to Elastic Search Server

2014-09-28 Thread naveen gayar
Hi I wish to copy the couch base data to local Elastic Search Server. Please suggest Thanks NavaJyothi -- 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

Re: aggregate results on specific attribute

2014-09-28 Thread Maarten Roosendaal
Hi Vineeth, Thanks for the reply, it was almost what i was looking for but you pointed me in the right direction: http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/search-aggregations-metrics-top-hits-aggregation.html Thanks, Maarten Op zondag 28 september 2014 17:48:26

problem adding rivers.

2014-09-28 Thread Eric Stillwagon
Hello, I'm working in a 12 server cluster, and I'm trying to restart Rivers and running into a problem. I have 3 in particular that always seem to want to go to the same host, and I can get two of them to work, but when I go to add the 3rd, it doesn't get assigned to as host and never starts.

Re: unassigned replica shard stuck in that state

2014-09-28 Thread Boaz Leskes
Hi, I assume you mean that shards of the .marvel- indices are left unassigned? If so, that's because your marvel cluster has 1 node so there is no place to put the replicas. This is fine, as long as you understand that losing that monitoring node may mean loosing the collected *monitoring*

Re: Marvel - Total Queries Per Day

2014-09-28 Thread Boaz Leskes
Hi Scot, Marvel's overview page displays the number of search requets per sec that the node serve (remember one search may hit multiple nodes): http://www.elasticsearch.org/guide/en/marvel/current/index.html#_overview_dashboard the index and node dashboard show the same but from a single

Re: Marvel enhancement

2014-09-28 Thread Boaz Leskes
Hi Andrew, Here is a good place as well. Agreed that the cluster name as part of the window would be nice. I made note to add it in a future release. Cheers, Boaz On Friday, September 12, 2014 5:42:58 PM UTC+2, Andrew Ochsner wrote: Hi: Is there a place to submit suggestions for Marvel

Re: Floating point precision in response

2014-09-28 Thread Boaz Leskes
Hi Thomas, This is an annoying property of how JavaScript handles numerics. It makes no distinction between integer and floating point numbers and has some heuristics when to display numbers as one or the other. Sadly this one fell on the wrong side of what you'd expect. This is only

Re: Marvel - Total Queries Per Day

2014-09-28 Thread Scott Decker
it gets close, but it only shows on a per metric tracked rate. I can't seem to find a way to get something that says In total, for today, here is how many queries were run against the cluster. even better if I could also get it by hour. right now, it seems to just be by second. On Sunday,

Re: Copy Couchbase data to Elastic Search Server

2014-09-28 Thread David Pilato
Did you look at couchbase documentation and the couchbase transport plugin for elasticsearch? Envoyé de mon iPad Le 28 sept. 2014 à 18:49, naveen gayar navind...@gmail.com a écrit : Hi I wish to copy the couch base data to local Elastic Search Server. Please suggest Thanks

Re: elasticsearch and spark

2014-09-28 Thread Costin Leau
Not sure whether you've seen the reply on Github but there was a fix pushed (I assume you are using a mutable collection and due to an incorrect import the extractor was expecting an immutable one). On 9/28/14 12:07 AM, Jonathan Foley wrote: This is still an issue with both the Beta and the

Delete duplicate items

2014-09-28 Thread Jingzhao Ou
Hi, all, I use Elastic Search to store some JSON data like the following: { _index : normalized, _type : 90A2DAFB0621, _id : Fri Sep 12 16:59:50 UTC 2014, _score : 1.0,

Percolator and Couchbase

2014-09-28 Thread CB
We are using Couchbase transport client plugin to sync docs to ES. We would like to use percolator for registering user interests based on tag field in docs. Since indexing happens behind the scenes we have no control over this and cannot work with percolator as described in docs. Any