Hey...
We're having an issue with a crazy mysql query on a 3.6 install (very large):
# Time: 061017 14:19:16
# User@Host: root[root] @ [10.0.0.130]
# Query_time: 126 Lock_time: 0 Rows_sent: 85271 Rows_examined: 170542
SELECT postid FROM post AS post WHERE postid IN(a few hundred thousand postid's here) ORDER BY post.dateline DESC;
Whenever that query runs it backs up the whole site, presumably because of the load its causing. I'm attempting to find the offending file by greping through files for pieces of the query, but no luck yet.
We're having an issue with a crazy mysql query on a 3.6 install (very large):
# Time: 061017 14:19:16
# User@Host: root[root] @ [10.0.0.130]
# Query_time: 126 Lock_time: 0 Rows_sent: 85271 Rows_examined: 170542
SELECT postid FROM post AS post WHERE postid IN(a few hundred thousand postid's here) ORDER BY post.dateline DESC;
Whenever that query runs it backs up the whole site, presumably because of the load its causing. I'm attempting to find the offending file by greping through files for pieces of the query, but no luck yet.
Comment