Re: A simple example of how to use the Java API?

2015-03-24 Thread David Pilato
Did you look at answer branch? Answers are on answers branch: https://github.com/elasticsearchfr/hands-on/tree/answers David Le 24 mars 2015 à 12:58, 'newbo' via elasticsearch elasticsearch@googlegroups.com a écrit : Hey David, I'm looking at the code now and I see lots of TODOs

ElasticSearch aggregation

2015-03-24 Thread Raghav salotra
Hi All, I have and index which contains details of job opening with some fields like [create_date,Open_positions,skils_required,project_start_date,project_end_date] Now my concern is to find the top 10 skills in a year based on quarter. A skill will be considered among the top if it has more

Re: encountered monitor.jvm warning

2015-03-24 Thread Jason Wee
what is the new gen setting? how much is the system memory in total? how many cpu cores in the node? what query do you use? jason On Tue, Mar 24, 2015 at 5:26 PM, Abid Hussain huss...@novacom.mygbiz.com wrote: Hi all, we today got (for the first time) warning messages which seem to indicate a

Re: corrupted shard after optimize

2015-03-24 Thread mjdude5
Thanks for the CheckIndex info, that worked! It looks like only one of the segments in that shard has issues: 1 of 20: name=_1om docCount=216683 codec=Lucene3x compound=false numFiles=10 size (MB)=5,111.421 diagnostics = {os=Linux, os.version=3.5.7, mergeFactor=7,

Re: PUT gzipped data into elasticsearch

2015-03-24 Thread joergpra...@gmail.com
Are you using Java API? Jörg On Tue, Mar 24, 2015 at 11:59 AM, Marcel Matus matusmar...@gmail.com wrote: Hi, some of our data are big ones (1 - 10 MB), and if there are milions of those, it causes us trouble in our internal network. We would like to compress these data in generation time,

Install Kibana4 as a plugin

2015-03-24 Thread DK
Hi, Is it possible to install Kibana 4 as a plugin to Elasticsearch 1.5.0? If so do I need to configure anything afterwards? -- 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,

Nested list aggregation

2015-03-24 Thread Vasily Kirichenko
I have documents like this in my index: { time: 2015-03-24T08:24:55.9056988, msg: { corrupted: false, stat: { fileSize: 10186, stages: [ { stage: queued, duration: 420 },

Filter cache and field data caches

2015-03-24 Thread Vladi Feigin
Hi All, We observe the relatively high heap usage : 70-75% per node. Our heap size is 32G. Each node has 2 shards (one primary , one replica). Each shard size is approximately 43G The size of the field data cache is ~22G and there are zero evictions from this cache The size of the filter cache

Re: PUT gzipped data into elasticsearch

2015-03-24 Thread Marcel Matus
Hi Joe, no, we post data into elasticsearch using Logstash. Actually, the complete way is: APP - Logstash - RMQ - Logstash - ES. And when I include F5 VIP's, there are 6 services on the way to process these data... Marcel On Tue, Mar 24, 2015 at 1:50 PM, joergpra...@gmail.com

Query conatining multiple fields

2015-03-24 Thread 4m7u1
Hi, This is a part of source in elasticsearch index. _source: { InvoiceId: a, InvoiceNum: b, LastUpdatedBy: FINUSER1, SetOfBooksId: 1, LastUpdateDate: 2015-03-20 18:31:16.592, VendorId: 5,

Re: A simple example of how to use the Java API?

2015-03-24 Thread 'newbo' via elasticsearch
Hey David, I'm looking at the code now and I see lots of TODOs and nulls, but no actual indexing. Perhaps that code needs to be cleaned up? On Thursday, November 15, 2012 at 9:11:02 AM UTC-5, David Pilato wrote: Hi Ryan, Have a look at this: https://github.com/elasticsearchfr/hands-on

Re: Change/update of the datatype of latitude and longitude from double to geo_points

2015-03-24 Thread David Pilato
1: you can not « update » an existing field and transform it from double to geo_points 2: you want coordinates to be your geo_point, not latitude and longitude to be each of it a geo_point. 3: your put mapping request is incorrect. Have a look at

PUT gzipped data into elasticsearch

2015-03-24 Thread Marcel Matus
Hi, some of our data are big ones (1 - 10 MB), and if there are milions of those, it causes us trouble in our internal network. We would like to compress these data in generation time, and send over the network to elasticsearch in compressed state. I tried to find some solution, but usually I

Re: Bulk UDP deprecated?

2015-03-24 Thread joergpra...@gmail.com
See https://github.com/elastic/elasticsearch/pull/7595 This feature is rarely used. Removing it will help reduce the moving parts of Elasticsearch and focus on the core. If there is demand, I can jump in and move the bulk UDP code to a community-supported plugin for ES 2.0 For syslog, I have

Re: corrupted shard after optimize

2015-03-24 Thread Michael McCandless
Hmm, not good. Which version of ES? Do you have a full stack trace for the exception? To run CheckIndex you need to add all ES jars to the classpath. It's easiest to just use a wildcard for this, e.g.: java -cp /path/to/es-install/lib/* org.apache.lucene.index.CheckIndex ... Make sure you

encountered monitor.jvm warning

2015-03-24 Thread Abid Hussain
Hi all, we today got (for the first time) warning messages which seem to indicate a memory problem: [2015-03-24 09:08:12,960][WARN ][monitor.jvm ] [Danger] [gc][young][413224][18109] duration [5m], collections [1]/[5.3m], total [5m]/[16.7m], memory [7.9gb]-[3.7gb]/[9.8gb],

Change/update of the datatype of latitude and longitude from double to geo_points

2015-03-24 Thread nidhi chawhan
Hi Team, I wanted to update the datatype of latitude and longitude fields from double to geo_points . Index name :- visit.hippo_en Type :- visit:PlaceDocument PUT /visit.hippo_en/visit:PlaceDocument/_mapping { location: { properties :{ coordinates: {

Re: Unable to preserve special characters in search results of ElasticSearch.

2015-03-24 Thread Muddadi Hemaanusha
If I escape that character '/' I will get the data irrelevant to the search term eg: if a/b, a/c, a/d, a(b), a(c), a-b, ab is my data My requirement is if I enter the term a( then I have to get only a( as a result but not ab,a-b,... I would like to get the results without escaping them, the

Bulk UDP deprecated?

2015-03-24 Thread Steve Freegard
Hi all, Can anyone tell me why the Bulk UDP service is being deprecated? I'm using it currently as it's a handy way to send non-critical data to ES without the associated overheads of doing it via the standard API and without affecting the performance of the application sending the data (as

Query String query is not accepting analyzer which defined in settings..

2015-03-24 Thread Muddadi Hemaanusha
Hi Team, I kept the following settings for an index facebook.. PUT /facebook { settings : { analysis: { analyzer: { wordAnalyzer: { type: custom, tokenizer: whitespace, filter: [ word_delimiter_for_phone ] } },

question for tokenizer and synonym

2015-03-24 Thread Prateek Asthana
I am having requirement similar to below: - search for chevy should map to search for chevrolet. I am using synonyms to accomplish this. - search for BMW 6 series should map to 61i, 62i, 63i and so on. I am planning to use synonyms to accomplish this too. Field that contains

Help with mapping update

2015-03-24 Thread David Kleiner
Greetings, I am trying to update mapping to make certain fields not_analyzed. The index gets created from default template, now I'm trying to add the following mapping to it (long) and get an error. The index is empty. I'm probably missing something very obvious. Thank you, David

Re: Help with mapping update

2015-03-24 Thread Mark Walkom
Try deleting the index and recreating using the updated mapping? Also as a suggestion, avoid using TTL, it's very resource intensive and if you are using time based data then you should use time based indices. On 25 March 2015 at 08:28, David Kleiner david.klei...@gmail.com wrote: Greetings,

Re: ElasticSearch data directory on Windows 7

2015-03-24 Thread Ravi Gupta
I understand the link are valid but it doesn't explain the directory size. How can 2.2GB data shrunk to 77KB? (this led me to believe that ES using some other location to put data.) On Tuesday, 24 March 2015 18:35:30 UTC+11, Mark Walkom wrote: Actually as Windows users don't have an installer

Re: Help with mapping update

2015-03-24 Thread David Kleiner
Thank you Mark, I'll keep trying, will also try elasticdump to load custom mapping or play with templates. Cheers, David On Tuesday, March 24, 2015 at 3:44:55 PM UTC-7, Mark Walkom wrote: Try deleting the index and recreating using the updated mapping? Also as a suggestion, avoid using

Re: ES: Ways to work with frequently updated fields of document

2015-03-24 Thread Mark Walkom
Best best is to try to separate hot and cold/warm data so you are only updating things which *need* to be updated. It may make sense to split this out into different systems, but this is really up to you. On 25 March 2015 at 04:28, Александр Свиридов ooo_satu...@mail.ru wrote: I have forum. And

Re: Help with mapping update

2015-03-24 Thread David Kleiner
I got the index template to work, turns out it's really straightforward. I now do have .raw fields and all the world is green. I'll add the template to my other index so it gets geoip mapping when I roll to April. Cheers, David On Tuesday, March 24, 2015 at 2:28:38 PM UTC-7, David Kleiner

Re: encountered monitor.jvm warning

2015-03-24 Thread Jason Wee
Few filters should be fine but aggregations... hm You could use dump stack trace and/or heap dump if it happen again and start to analyze from there. Try as well, http://www.elastic.co/guide/en/elasticsearch/reference/current/cluster-nodes-hot-threads.html hth jason On Tue, Mar 24, 2015 at

Elastic{ON} Sessions Are Online

2015-03-24 Thread Mark Walkom
Hi All, The content from our recent conference is now available! Please check out https://www.elastic.co/blog/elasticon-sessions-are-online for all the information. Cheers, Mark -- You received this message because you are subscribed to the Google Groups elasticsearch group. To unsubscribe

Re: corrupted shard after optimize

2015-03-24 Thread mjdude5
Quick followup question, is it safe to run -fix while ES is also running on the node? Understanding that some documents will be lost. On Tuesday, March 24, 2015 at 10:24:26 AM UTC-4, mjd...@gmail.com wrote: Thanks for the CheckIndex info, that worked! It looks like only one of the segments

ActionRequestValidationException when attempting to set mapping

2015-03-24 Thread Blake McBride
I am attempting to define a mapping. I am first creating a new index by adding a document that doesn't contain anything specified in my mapping/schema. I am using a bulk operation to set the mapping but I get an ActionRequestValidationException error each time. Here is my JS code: var

Sample custom cluster action

2015-03-24 Thread Ali Lotfdar
Hello All, I would like create a cluster action (for instance for searching documents), but I could not find any sample to help me how implement cluster action. I had looked on cookbook explanation and sample, although it was useful but I could not find how I can make it. Thank you to let me

Should I use elasticsearch as a core for faceted navigation-heavy website?

2015-03-24 Thread Dmitry
Hello, I'm evaluating elasticsearch for use in new project. I can see that it has all search features we need. Problem is that after reading documentation and forum I still can't understand whether elastic is suitable technology for us performance-wise. I'd be very grateful to get your opinion

Re: Grandparents aggregations NullPointer

2015-03-24 Thread Paolo Ciccarese
I've posted the issue here: https://github.com/elastic/elasticsearch/issues/10158 On Wednesday, March 11, 2015 at 4:42:27 PM UTC-4, Paolo Ciccarese wrote: I am using Elasticsearch 1.4.4. I am defining a parent-child index with three levels (grandparents) following the instructions in the

Re: encountered monitor.jvm warning

2015-03-24 Thread Abid Hussain
All settings except from ES_HEAP (set to 10 GB) are defaults, so I actually am not sure about the new gen setting. The host has 80 GB memory in total and 24 CPU cores. All ES indices together sum up to ~32 GB where the biggest indices are of size ~8 GB. We are using queries mostly together

Kibana fails in talking to Tribe Node

2015-03-24 Thread Abigail
Hi, I have two ElasticSearch clusters and one tribe node for searching across the two clusters. And there is a kibana 4 connects to the tribe node. What I have done are: 1. Created .kibana and kibana-int manually in the cluster 2. Launch kibana 3. Got to the screen Configure an index pattern,

Re: Should I use elasticsearch as a core for faceted navigation-heavy website?

2015-03-24 Thread Itamar Syn-Hershko
Short answer: yes. With properly sharded and scaled out environment, and using ES 1.4 or newer, you should be able to get those numbers. -- Itamar Syn-Hershko http://code972.com | @synhershko https://twitter.com/synhershko Freelance Developer Consultant Lucene.NET committer and PMC member On

Re: Help with mapping update

2015-03-24 Thread Mark Walkom
Are you using KB4 or 3? If 4 then you need to refresh the fields under the index settings. On 25 March 2015 at 11:06, David Kleiner david.klei...@gmail.com wrote: My confusion just leveled-up :) So the mapping is updated, all string fields now have .raw copies but I don't see them in Kibana.

Re: Install Kibana4 as a plugin

2015-03-24 Thread Mark Walkom
No you cannot, it runs on its own port. On 24 March 2015 at 23:56, DK desmond.kirr...@gmail.com wrote: Hi, Is it possible to install Kibana 4 as a plugin to Elasticsearch 1.5.0? If so do I need to configure anything afterwards? -- You received this message because you are subscribed to

Re: Is java elasticsearch a joke?

2015-03-24 Thread Sai Asuka
The problem is in either case, I see no new index or anything. On Tuesday, March 24, 2015 at 11:43:49 PM UTC-4, Sai Asuka wrote: I am using elasticsearch java client, indexing a document looks simple. I know 100% my cluster is running, and my name is create. Node node =

Is java elasticsearch a joke?

2015-03-24 Thread Sai Asuka
I am using elasticsearch java client, indexing a document looks simple. I know 100% my cluster is running, and my name is create. Node node = nodeBuilder().clusterName(mycluster).node(); Client client = node.client(); String json = { + \user\:\kimchy\, + \postDate\:\2013-01-30\, +

Re: Help with mapping update

2015-03-24 Thread David Kleiner
My confusion just leveled-up :) So the mapping is updated, all string fields now have .raw copies but I don't see them in Kibana. Perhaps my understanding of this mechanism is incomplete and I need to manually copy fields to their .raw counterparts in logstash so that ES query returns

Re: Help with mapping update

2015-03-24 Thread David Kleiner
Indeed, it just works in 4! Thank you again, David On Tuesday, March 24, 2015 at 5:49:16 PM UTC-7, Mark Walkom wrote: Are you using KB4 or 3? If 4 then you need to refresh the fields under the index settings. On 25 March 2015 at 11:06, David Kleiner david@gmail.com javascript:

Re: filter bitsets

2015-03-24 Thread Ashish Mishra
Thanks for the clarification - this was very helpful. On Friday, March 20, 2015 at 5:45:59 AM UTC-7, Jörg Prante wrote: Caching filters are implemented in ES, not in Lucene. E.g. org.elasticsearch,common.lucene.search.CachedFilter is a class that implements cached filters on the base of

Re: Is java elasticsearch a joke?

2015-03-24 Thread Sai Asuka
Yes, which is why I was baffled. In fact, the code I used was straight out of that specific page. The client code also came straight from the docs. (http://www.elastic.co/guide/en/elasticsearch/client/java-api/current/client.html): So the code I used from the documentation that appears so basic

Re[2]: ES: Ways to work with frequently updated fields of document

2015-03-24 Thread Александр Свиридов
By different systems do you mean database, ES etc? Среда, 25 марта 2015, 8:32 +11:00 от Mark Walkom markwal...@gmail.com: Best best is to try to separate hot and cold/warm data so you are only updating things which *need* to be updated. It may make sense to split this out into different

Re: Is java elasticsearch a joke?

2015-03-24 Thread Mark Walkom
I don't mean to be rude, but just because it doesn't work doesn't make it a joke. Have you read the docs? http://www.elastic.co/guide/en/elasticsearch/client/java-api/current/index.html On 25 March 2015 at 14:44, Sai Asuka asuka.s...@gmail.com wrote: The problem is in either case, I see no new

Why _timestamp field is not returned with the format that we have set in the mapping?

2015-03-24 Thread Lee Chuen Ooi
Hi, I want to make use of the _timestamp field to keep track the last indexed datetime of an doc in ElasticSearch. I have set the mapping as below: mappings: { _default_: { _timestamp: { enabled: true, store: true, format:

How to merge terms and match_all

2015-03-24 Thread tao hiko
Hi Guys, I'm trying to merge both statement to one search as below detail *1. query.terms : I get filter set (A,B,C) from drop down list on webpage* { query: { filtered: { query: { bool: { should: [ { terms: {

[ANN] Elasticsearch Stempel (Polish) Analysis plugin 2.5.0 released

2015-03-24 Thread Elasticsearch Team
Heya, We are pleased to announce the release of the Elasticsearch Stempel (Polish) Analysis plugin, version 2.5.0. The Stempel (Polish) Analysis plugin integrates Lucene stempel (polish) analysis module into elasticsearch.. https://github.com/elastic/elasticsearch-analysis-stempel/ Release

[ANN] Elasticsearch Japanese (kuromoji) Analysis plugin 2.5.0 released

2015-03-24 Thread Elasticsearch Team
Heya, We are pleased to announce the release of the Elasticsearch Japanese (kuromoji) Analysis plugin, version 2.5.0. The Japanese (kuromoji) Analysis plugin integrates Lucene kuromoji analysis module into elasticsearch.. https://github.com/elastic/elasticsearch-analysis-kuromoji/ Release

Re: Do I have to explicitly exclude the _all field in queries?

2015-03-24 Thread Brian Levine
OK, I think I figured this out. It's the space between Brian and Levine. The query: query: Node.author:Brian Levine is actually interpreted as Node.author:Brian OR Levine in which case Levine is searched for in the _all field. Seems so obvious now! ;-) -b On Tuesday, March 24, 2015 at

Re: Search templates: partials

2015-03-24 Thread Glen Smith
Nope. I reached my time limit for trying to get that approach to work and finished the job using one really big template. It's one more thing on my things to explore again list. I figured, though, that by postponing it, I would at least have the benefit of using a later version of ES when I got

Re: Search templates: partials

2015-03-24 Thread Zdeněk Šebl
I have same troubles now on ES 1.4.4 Did you found solution how to use partials in Mustache file templates? Thanks, Zdenek Dne čtvrtek 7. srpna 2014 20:53:09 UTC+2 Glen Smith napsal(a): Developing on v1.2.2, I'm deploying mustache templates by file system under config/scripts. When I do

[ANN] Elasticsearch ICU Analysis plugin 2.5.0 released

2015-03-24 Thread Elasticsearch Team
Heya, We are pleased to announce the release of the Elasticsearch ICU Analysis plugin, version 2.5.0. The ICU Analysis plugin integrates Lucene ICU module into elasticsearch, adding ICU relates analysis components.. https://github.com/elasticsearch/elasticsearch-analysis-icu/ Release Notes

ES: Ways to work with frequently updated fields of document

2015-03-24 Thread Александр Свиридов
I have forum. And every topic has such field as viewCount - how many times topic was viewed by forum users. I wanted that all fields of topics were taken from ES (id,date,title,content and viewCount). However, this case after every topic view ES must reindex entire document again - I asked

Re: ES JVM memory usage consistently above 90%

2015-03-24 Thread Yogesh Kansal
Thanks Joel and mjdude. What I mean is that ES is using 99% of the heap memory (I think since Marvel showed memory as 1 GB which corresponds to the heap, my RAM is 50GB) I've increased the ES_HEAP_SIZE to 10g. But another problem has appeared and I'm freaked out because of it! So, after

Re: ES JVM memory usage consistently above 90%

2015-03-24 Thread mjdude5
When it restarted did it attach to the wrong data directory? Take a look at _nodes/_local/stats?pretty and check the 'data' directory location. Has the cluster recovered after the restart? Check _cluster/health?pretty as well. On Tuesday, March 24, 2015 at 1:01:52 PM UTC-4, Yogesh wrote:

Re: Search templates: partials

2015-03-24 Thread Zdeněk Šebl
Thanks for info. I am going to open new issue. -- 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+unsubscr...@googlegroups.com. To view this

Kibana: how to show values directly without aggregation?

2015-03-24 Thread Jason
ELK experts, I'm desperately need your help. I've spend hours and days on this simple thing but still can't figure it out. My settings are Elasticsearch 1.4.4 and Kibana 4.0.1. My program feeds data into ElasticSearch. The data contain a timestamp and a value. I want to create a bar chart,

Re: ElasticSearch data directory on Windows 7

2015-03-24 Thread Ravi Gupta
@Mark the link you posted is for linux paths. I assumed windows path will be on similar lines and expected index data to be on below path: C:\ES home\data\elasticsearch\nodes\0\indices\idd I see the path looks like it contains all the index data but I am puzzled why the size of data directory

Re: ElasticSearch data directory on Windows 7

2015-03-24 Thread Mark Walkom
Take a look at http://www.elastic.co/guide/en/elasticsearch/reference/current/setup-dir-layout.html#_zip_and_tar_gz On 24 March 2015 at 16:34, Ravi Gupta guptarav...@gmail.com wrote: Hi , I have downloaded and installed ES on windows 7 and imported 2million+ records into it. (from a csv of

[Spark] SchemaRdd saveToEs produces Bad JSON errors

2015-03-24 Thread Yana Kadiyska
Hi, I'm a very new user to ES so Im hoping someone can point me to what I'm doing wrong. I did the following: download a fresh copy of Spark1.2.1. Switch to bin folder and ran: wget

Using scroll and different results sizes

2015-03-24 Thread Todd Nine
Hey all, We use ES as our indexing sub system. Our canonical record store is Cassandra. Due to the denormalization we perform for faster query speed, occasionally the state of documents in ES can lag behind the state of our Cassandra instance. To accommodate this eventually consist system,

Re: Elasticsearch with JSON-array, causing serialize -error

2015-03-24 Thread sebastian
same issue here. Any clues? On Sunday, April 20, 2014 at 2:47:40 PM UTC-3, PyrK wrote: I'm using elasticsearch with mongodb -collection using elmongo https://github.com/usesold/elmongo. I have a collection (elasticsearch index's point of view json-array), that contains for example field:

Re: ES JVM memory usage consistently above 90%

2015-03-24 Thread Yogesh Kansal
Thanks. Will try starting again. By the way, what will be the impact if I just delete the node/1 (then the node.max_local_storage_nodes to 1 and start elasticsearch) ? On Wed, Mar 25, 2015 at 1:36 AM, mjdu...@gmail.com wrote: As long as it's the first ES instance starting on that node it'll

Re: ES JVM memory usage consistently above 90%

2015-03-24 Thread mjdude5
As long as it's the first ES instance starting on that node it'll grab 0 instead of 1. I don't know if you can explicitly set the data node directory in the config. On Tuesday, March 24, 2015 at 2:16:57 PM UTC-4, Yogesh wrote: Thanks. Mine is a one node cluster so I am simply using the XCURL

Re: ES JVM memory usage consistently above 90%

2015-03-24 Thread Yogesh Kansal
Thanks a lot mjdude! It does seem like it attached to the wrong data directory. In elasticsearch/data/tool/nodes there are two 0 and 1. My data is in 0 but node stats shows the data directory as elasticsearch/data/tool/nodes/1. Now, how do I change this? On Tue, Mar 24, 2015 at 11:02 PM,

Re: elasticsearch shield relam problem

2015-03-24 Thread Jay Modi
Phani, We just released Shield 1.1 and 1.2 (https://www.elastic.co/blog/shield-1-1-and-1-2-released). LDAP user search is included and may be worth trying out. If you were to use it, I think your configuration would look something like: shield: authc: realms: ldap1: type:

Cluster state storage question

2015-03-24 Thread Robert Gardam
Hi, I am starting to look at the size of my cluster state and I started to notice that the shard information is duplicated. One grouping seems to be from the view of the index and the other from which shards live on which host. I'm sure there's a logical reason for this, i'm just interested

[ANN] Elasticsearch Phonetic Analysis plugin 2.5.0 released

2015-03-24 Thread Elasticsearch Team
Heya, We are pleased to announce the release of the Elasticsearch Phonetic Analysis plugin, version 2.5.0. The Phonetic Analysis plugin integrates phonetic token filter analysis with elasticsearch.. https://github.com/elastic/elasticsearch-analysis-phonetic/ Release Notes -

Do I have to explicitly exclude the _all field in queries?

2015-03-24 Thread Brian Levine
Hi all, I clearly haven't completely grokked something in how QueryString queries are interpreted. Consider the following query: { query: { query_string: { analyze_wildcard: true, query: Node.author:Brian Levine } }, fields: [Node.author],

Re: [Spark] SchemaRdd saveToEs produces Bad JSON errors

2015-03-24 Thread Costin Leau
Hi, It appears the problem lies with what type of document you are trying to save to ES - which is basically invalid. For some reason the table/rdd schema gets lost and the content is serialized without it: |[38,38]| I'm not sure why this happens hence why I raised an issue [1] Thanks, [1]

Re: ES JVM memory usage consistently above 90%

2015-03-24 Thread mjdude5
Sometimes that happens when the new node starts up via monit or other automated thing before the old node is fully shutdown. I'd suggest shutting down the node and verify it's done via ps before allowing the new node to start up. In the case of monit if the check is hitting the http port

[ANN] Elasticsearch Smart Chinese Analysis plugin 2.5.0 released

2015-03-24 Thread Elasticsearch Team
Heya, We are pleased to announce the release of the Elasticsearch Smart Chinese Analysis plugin, version 2.5.0. Smart Chinese Analysis plugin integrates Lucene Smart Chinese analysis module into elasticsearch.. https://github.com/elastic/elasticsearch-analysis-smartcn/ Release Notes -

Re: ES JVM memory usage consistently above 90%

2015-03-24 Thread Yogesh Kansal
Thanks. Mine is a one node cluster so I am simply using the XCURL to shut it down and the doing bin/elasticsearch -d to start it up. To check if it has shutdown, I try to hit it using http. So, now how do I start it with the node/0 data directory? There is nothing there in node/1 data directory

Elasticsearch on Mesos / Marathon using Docker container

2015-03-24 Thread domen . pogacnik
Hi all, Is anybody here running Elasticsearch on Mesos Marathon using Docker containers? I’m wondering how much memory should I allocate to Elasticsearch Marathon task that is the only task running on the host e.g. all available memory as reported by Mesos or some smaller amount to leave

New to elastic Search and Kibana environment, how to link elastic search to cabin Error

2015-03-24 Thread shmaim humaid
Dear All, I do not know how to link my elastic search to the index pattern in Kinbana; I have elastic search running with two index items; this is the error message am getting: null is not an object (evaluating 'index.timeField.name') http://109.123.216.106/index.js?_b=5888:127043:55

Re: ElasticSearch data directory on Windows 7

2015-03-24 Thread Mark Walkom
Actually as Windows users don't have an installer they need to use the zip, so the path in the link are valid. On 24 March 2015 at 17:38, Ravi Gupta guptarav...@gmail.com wrote: @Mark the link you posted is for linux paths. I assumed windows path will be on similar lines and expected index

Error: Configure an index pattern

2015-03-24 Thread shmaim humaid
Dear all, I do not know how to link my elastic search to the index pattern in Kinbana; I have elastic search running with two index items; this is the error message am getting: null is not an object (evaluating 'index.timeField.name http://index.timefield.name/')

Re: [Kibana] Possibility to hide _source field from Discover detail view?

2015-03-24 Thread Görge Albrecht
Thanks for the fast reply. I created https://github.com/elastic/kibana/issues/3429. On Monday, March 23, 2015 at 8:47:21 PM UTC+1, Mark Walkom wrote: There is not, if you want that it'd definitely be worth raising as a request on github though! On 23 March 2015 at 21:40, Görge Albrecht

Load ES Nested Mapping from Hive

2015-03-24 Thread Ankur Wahi
Hi, I'm trying to load an ES nested mapping from Hive. My tables are listed below: CREATE TABLE ORDER( order_id bigint, total_amount bigint, customer bigint) STORED AS ORC CREATE TABLE ORDER_DETAILS( order_id bigint, Order_Item_id bigint, Item_Size bigint, Item_amount bigint,

Unexpected behavior (to me :-) from function_score

2015-03-24 Thread jan58 . wandelaar
Hi All, Starting to play with function_score and doc_values... I have a set of 30 documents with integers, ranging from 1 to 30. Now I want a query that returns all documents with value 5 on top, followed by the rest of the documents, scored by their distance to 5. Query: query: {

Re: PUT gzipped data into elasticsearch

2015-03-24 Thread joergpra...@gmail.com
Logstash has both Java and HTTP output, but I assume you want to use HTTP. Set http.compression parameter to true in ES configuration, then you can use gzip-compressed HTTP traffic using Accept-Encoding header. http://www.elastic.co/guide/en/elasticsearch/reference/current/modules-http.html