Re: Marvel rest.action.multi.allow_explicit_index: false

2014-12-20 Thread Boaz Leskes
Hi Antonios, A short note that Marvel 1.3.0 was released with this fix. Cheers, Boaz On Saturday, November 15, 2014 6:12:13 PM UTC+1, Boaz Leskes wrote: Hi Antonios, It's been a while but I wanted to let you know that this has bbeen fixed and will be available in this marvel release.

Re: marvel.agent.exporter getting 500 back from logging cluster

2014-12-20 Thread Boaz Leskes
You are probably running into https://github.com/FasterXML/jackson-dataformat-smile/issues/18, which was fixed by upgrading jackson in ES with https://github.com/elasticsearch/elasticsearch/pull/7327 (version 1.4.0) Cheers, Boaz On Tuesday, December 9, 2014 4:11:00 AM UTC+1, Lane Harris

Re: Marvel Sense is not working over https

2014-12-20 Thread Boaz Leskes
A short note that the work around is not needed anymore with marvel 1.3.0. Cheers, Boaz On Wednesday, December 3, 2014 7:11:07 AM UTC+1, Boaz Leskes wrote: Copy pasting from the relevant GitHub issue for future reference: ( https://github.com/elasticsearch/elasticsearch/issues/8735) In the

Re: SearchParseException (marvel) - [No mapping found for [@timestamp] in order to sort on

2014-12-20 Thread Boaz Leskes
I would check your ES installation. This information comes from the Node Stats API, so it is likely missing there as well. Most of the time this is caused by missing the Sigar library or some process permission issue. Cheers, Boaz On Sunday, December 14, 2014 8:42:22 PM UTC+1, Eugen Paraschiv

Re: SearchParseException (marvel) - [No mapping found for [@timestamp] in order to sort on

2014-12-20 Thread Eugen Paraschiv
The strange thing is that - for some reason, just by leaving it for a couple of hours, it started working. I'm assuming there was some data missing but being written in the marvel index. Thanks, Eugen. On Sat, Dec 20, 2014 at 10:58 AM, Boaz Leskes b.les...@gmail.com wrote: I would check your ES

Re: Sustainable way to regularly purge deleted docs

2014-12-20 Thread Jonathan Foy
I thought I should revisit this thread in case anyone else is repeating my mistakes, which it turns out are multiple. On the bright side, I do seem to have resolved my issues. tl/dr, optimize was screwing me up, and the merge settings I thought I had in place were not actually there/active.

Dynamically appending a query (for data entitlements)

2014-12-20 Thread Lokesh Gupta
I have a use case where for every query that is coming from the user to elasticsearch (ES), I want to add another query on ES server side before ES executes the query. The reason I need to dynamically add this other query is for enforcing data-level entitlements. e.g. Let's say that I am

Re: Dynamically appending a query (for data entitlements)

2014-12-20 Thread Rafał Kuć
Title: Re: Dynamically appending a query (for data entitlements) Hello! Are you allowing your users to directly talk to Elasticsearch? If so apart from modifying Elasticsearch (either the base code itself, or through dedicated plugin) you can't achieve what you want. You could use aliases

Re: Sum of total term frequency in ONE document

2014-12-20 Thread vineeth mohan
Hi , Why dont you use script fields to access this value - http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/search-request-script-fields.html#search-request-script-fields Thanks Vineeth On Wed, Dec 17, 2014 at 2:57 PM, valerij.vasilce...@googlemail.com wrote:

Re: FiltrES - A language that compiles to ElasticSearch Query DSL

2014-12-20 Thread vineeth mohan
Hi , How different is it from query_string query langauge. Or is it using query_string in the background. Thanks Vineeth On Wed, Dec 17, 2014 at 5:23 AM, Abe Haskins abeisgr...@abeisgreat.com wrote: Hi folks! I wanted to share FiltrES.js https://github.com/abeisgreat/FiltrES.js,

Integration tests with gradle

2014-12-20 Thread Jon Schneider
The docs http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/using-elasticsearch-test-classes.html for unit testing have you configuring your pom in a certain way. Apparently the order of these dependencies matter. When attempting to use the ElasticsearchIntegrationTest

[ANN] Elasticsearch Ratpack plugin 1.4.0.0

2014-12-20 Thread joergpra...@gmail.com
Hi, I have written a small plugin in Groovy to embed my future Ratpack http://ratpack.io applications into Elasticsearch, More info at https://github.com/jprante/elasticsearch-plugin-ratpack Have fun, Jörg -- You received this message because you are subscribed to the Google Groups

Kibana 4 BETA 2

2014-12-20 Thread Joseph Gioeli III
Does anyone have some instructions on how to use Tile Maps for plotting Twitter Data in Kibana 4 BETA 2? I can't seem to get it to work and cannot find anything to reference -- You received this message because you are subscribed to the Google Groups elasticsearch group. To unsubscribe from

Re: Dynamically appending a query (for data entitlements)

2014-12-20 Thread Lokesh Gupta
I am allowing users to talk to Elasticsearch (ES) through Kibana. As of now I am not planning to write my own user interface on top of ES. But even with an app on top of ES, I would like the data entitlements checks to happen on the ES server side to ensure that no matter where the query comes