Re: Elsticsearch JDBC river plugin metrics

2015-01-19 Thread 4m7u1
Got it. Thanks ! -- 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 discussion on the web visit https://g

Re: Elsticsearch JDBC river plugin metrics

2015-01-19 Thread joergpra...@gmail.com
As said, insert/update/delete in DB are not visible to the JDBC plugin and they can not be detected by the JDBC plugin. The metric is for the SQL select statement the plugin is using. If you mean insert/update/delete in ES, there is no such thing, there are indexing operations performed in bulk, wh

Re: Elsticsearch JDBC river plugin metrics

2015-01-19 Thread 4m7u1
Okay. Thanks a lot. Is there any other way in which I can see the metrics. If I have indexed my db with 2 records in Elasticsearch, for that I can see the metrics as above. But say that, I have made one new insert/update/delete into my db and that is picked by elasticsearch, is there any wa

Re: Elsticsearch JDBC river plugin metrics

2015-01-19 Thread joergpra...@gmail.com
The numbers in brackets mean the average numbers over the last 1 / 5 / 15 minutes. This useful for a long running indexer. The "elapsed" time is the time since this metric counter is active. Jörg On Mon, Jan 19, 2015 at 10:41 AM, 4m7u1 wrote: > Hi, > I've got a small doubt again. > > *[2015-01

Re: Elsticsearch JDBC river plugin metrics

2015-01-19 Thread 4m7u1
Hi, I've got a small doubt again. *[2015-01-19 15:06:08,410][INFO ][river.jdbc.RiverMetrics ] pipeline org.xbib.elasticsearch.plugin.jdbc.RiverPipeline@1cede282 complete: river jdbc/my_test_river metrics: 34 rows, 170.35844075426294 mean, (147.82076731011736 30.98274869393544 10.4096908758

Re: Elsticsearch JDBC river plugin metrics

2015-01-18 Thread 4m7u1
Thank you so much Jörg :) ! On Friday, January 16, 2015 at 6:08:49 PM UTC+5:30, Jörg Prante wrote: > > These are diagnostic messages which have been crept into one of the > releases. Latest version has metrics logging disabled, it must be enabled > by settings. > > The metrics count the number o

Re: Elsticsearch JDBC river plugin metrics

2015-01-16 Thread joergpra...@gmail.com
These are diagnostic messages which have been crept into one of the releases. Latest version has metrics logging disabled, it must be enabled by settings. The metrics count the number of rows fetched form the database, and prints them at every minute. This is not the number of documents in ES. Th

Elsticsearch JDBC river plugin metrics

2015-01-16 Thread 4m7u1
I'm trying to run a river query which fetches 1 records scheduled at 1 minute interval. The first time it runs, metrics is 1 rows and after a gap of 1 minute that is (scheduled interval) metrics is 2 rows. What does this mean? Although the number of hits i get on querying the river