-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CQ's not working at all in 0.9 releases #2402
Comments
Try the following setup: run influxdb without authentication and push points to database without artificial "timestamp" and "precision". I got it working finally today. 1st step or 2nd should help. I tested these two weird conditions and not sure for now what was right condition to make CQ running. |
@wildchild my db doesn't have auth. I'll try posting the events without timestamp (so influx resolves it) and let u know how it goes |
@wildchild still no luck. Which version are you using?. The CQ get's created but the underlying downsampled measurements don't. It's like if the CQ never ran |
rc_27. Try to create query similar to query in my last issue. You query is different than my, I have no time conditions and fill(0). Also I specified hostname = "localhost", not sure if it necessary. All this look like alchemy now. CQ must be covered with tests. |
@wildchild bleh!!.. too much magic to make this work, maybe someone from influx can give us a real status about CQ's in 0.9 |
We are taking another look at this internally. There seem to be several related issues with CQ's not working. We are building out the test suite to give this more coverage which should stabilize this feature. Thanks for your support and patience. |
Thx for the update!. |
Believed fixed in RC28, can you repro? |
@beckettsean sure, I'll give it a try and post my results |
@beckettsean still doesn't work. |
@marcosnils thanks for trying again. We'll dig deeper. |
Almost certainly fixed by #2552, which is in RC30 being released today. |
I've tested this from rc_23 to rc_27 and I can't get it to work.
Use case:
select * from cpu_load_short:
create continuous query "test_cq" on segments begin select count(value) into "downsample" from cpu_load_short where time > now() - 170d and time < now() - 150d group by time(1m) fill(0) end
CQ get's created successfully and then nothing happens, I've set up the loglevel in "debug" and still not seeing anything.
Here's my CQ's config:
The text was updated successfully, but these errors were encountered: