You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Steps to reproduce:
List the minimal actions needed to reproduce the behavior.
setup telegraf on host to send data
[agent]
interval = "60s"
round_interval = true
metric_batch_size = 1000 // allow batched data
metric_buffer_limit = 10000 // allow sufficient data aggregation over disconnect period
...
setup second host with influx and continuous query
DROP CONTINUOUS QUERY "cq.starts" ON "app";
CREATE CONTINUOUS QUERY "cq.starts" ON "app"
BEGIN
SELECT
non_negative_difference(max(global_starts))
as starts,
INTO "app"."one-year"."summary.starts"
FROM "app"."autogen"."data.starts"
GROUP BY time(1m), * fill(none)
END;
take down host running influx for a period of time (say 15minutes) and restart
view graphs using the continuous query table and note 15minute gap of data
Expected behavior:
Describe what you expected to happen.
The continuous query should process the delayed batch data and fill in the hole created during the disconnected interval when the system is re-connected.
Actual behavior:
Describe What actually happened.
The continuous query data is left blank for the interval.
InfluxDB version: Run influxd version and copy the output here
InfluxDB v1.7.8 (git: 1.7 ff383cd)
Other relevant environment details: Container runtime, disk info, etc
Config:
Copy any non-default config values here or attach the full config as a gist or file.
Logs:
Include snippet of errors in log.
Performance:
Generate profiles with the following commands for bugs related to performance, locking, out of memory (OOM), etc.
# Commands should be run when the bug is actively happening.# Note: This command will run for at least 30 seconds.
curl -o profiles.tar.gz "http://localhost:8086/debug/pprof/all?cpu=true"
curl -o vars.txt "http://localhost:8086/debug/vars"
iostat -xd 1 30 > iostat.txt
# Attach the `profiles.tar.gz`, `vars.txt`, and `iostat.txt` output files.
The text was updated successfully, but these errors were encountered:
Steps to reproduce:
List the minimal actions needed to reproduce the behavior.
setup telegraf on host to send data
[agent]
interval = "60s"
round_interval = true
metric_batch_size = 1000 // allow batched data
metric_buffer_limit = 10000 // allow sufficient data aggregation over disconnect period
...
setup second host with influx and continuous query
DROP CONTINUOUS QUERY "cq.starts" ON "app";
CREATE CONTINUOUS QUERY "cq.starts" ON "app"
BEGIN
SELECT
non_negative_difference(max(global_starts))
as starts,
INTO "app"."one-year"."summary.starts"
FROM "app"."autogen"."data.starts"
GROUP BY time(1m), * fill(none)
END;
take down host running influx for a period of time (say 15minutes) and restart
view graphs using the continuous query table and note 15minute gap of data
Expected behavior:
Describe what you expected to happen.
The continuous query should process the delayed batch data and fill in the hole created during the disconnected interval when the system is re-connected.
Actual behavior:
Describe What actually happened.
The continuous query data is left blank for the interval.
Environment info:
inux influxdb-5786ccb9f8-pjmqj 3.10.0-862.el7.x86_64 Queries should support an order clause and limit clause #1 SMP Fri Apr 20 16:44:24 UTC 2018 x86_64 Linux
influxd version
and copy the output hereInfluxDB v1.7.8 (git: 1.7 ff383cd)
Config:
Copy any non-default config values here or attach the full config as a gist or file.
Logs:
Include snippet of errors in log.
Performance:
Generate profiles with the following commands for bugs related to performance, locking, out of memory (OOM), etc.
The text was updated successfully, but these errors were encountered: