Re: [influxdb] Is there a batch limit on Kapacitor batch process?

2017-01-05 Thread Ross McDonald
Sorry for the delay! Just to make sure, did you restart the InfluxDB service once the configuration change was made? If so, what version of InfluxDB are you running? When running tests on my local instance (running v1.1.0), I'm able to query for more than 10,000 points at a time, so it's strange t

Re: [influxdb] Is there a batch limit on Kapacitor batch process?

2016-12-15 Thread carlo . activia
On Tuesday, December 13, 2016 at 3:49:39 PM UTC-5, Ross McDonald wrote: > I believe this is due to the default row limit in InfluxDB's HTTP handler, > not Kapacitor. Can you try setting InfluxDB's max-row-limit (in the HTTP > configuration) to 0? For example: > > ``` > > [http] > >   max-row-l

Re: [influxdb] Is there a batch limit on Kapacitor batch process?

2016-12-13 Thread Ross McDonald
I believe this is due to the default row limit in InfluxDB's HTTP handler, not Kapacitor. Can you try setting InfluxDB's max-row-limit (in the HTTP configuration) to 0? For example: ``` [http] max-row-limit = 0 `

[influxdb] Is there a batch limit on Kapacitor batch process?

2016-12-13 Thread carlo . activia
Hi all, When I run the following TICKscript: batch |query('SELECT mean(UPTIME) as meanUptime FROM devices."three_weeks_rp".monitorData') .groupBy(*) .period(15m) .every(15m) .align() |influxDBOut() .database('devices') .retentionPolicy('tes