-
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
Inner join query caused a server crash #652
Comments
Might also help to know that we are running: InfluxDB v0.7.2 (git: 63c2be7) (leveldb: 1.15) on an AWS Linux 64-bit |
I too have a consistent crash with InfluxDB 0.8 when I run the following join query: Here is the log from the server:
|
@mattheworiordan This crash is caused by this part of the query |
One of our data guys was attempting to run the following query before crashing our InfluxDB instance. Not too familiar with Go, so I haven't been able to pinpoint where the crash occurred. I've provided the exact query that was run, along with the debug logs.
Query run:
SELECT USERNAME,EVENTID,time FROM analytics_v1 AS table1 INNER JOIN analytics_v1 AS table2 WHERE table1.EVENTID = table2.EVENTID AND TYPE='MSG' AND SUB='TXT' AND time > '2014-06-01 00:00:00.000' AND time < '2014-06-17 00:00:00.000'
Debug logs gist:
https://gist.github.com/yousefj/e45241c984fc7615021c
Let me know if there is anything else I can provide.
Thanks,
Yousef
The text was updated successfully, but these errors were encountered: