Forums › Forums › Search & Filter Pro › Killed Query errors in log
Tagged: killed query
- This topic has 3 replies, 3 voices, and was last updated 6 years, 6 months ago by Anonymous.
-
Anonymous(Private) October 18, 2016 at 2:06 pm #64822
I have Search and Filter running on a site with about 1100 custom posts. Using several different Search/Filter pages that are querying taxonomies. I host with WpEngine, and I’m getting these errors in the log file:
Tue Oct 18 12:56:56.679342 2016] [:error] [pid 16736] [client 64.83.196.42:15298] KILLED QUERY (45767 characters long generated in /nas/content/live/rfpviss/wp-content/plugins/search-filter-pro/public/includes/class-search-filter-cache.php:1887): SELECT wp_posts.ID FROM wp_posts LEFT JOIN wp_term_relationships ON (wp_posts.ID = wp_term_relationships.object_id) WHERE 1=1 AND wp_posts.ID IN (8178,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190,8191,8192,8193,8194,8195,8196,8197,8213,8214,8215,8216,8217,8218,8219,8220,8221,8222,8223,8224,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8237,8238,8239,8240,8241,8242,8243,8244,8245,8246,8247,8248,8249,8250,8251,8252,8253,8254,8255,8256,8257,8258,8259,8260,8261,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,82….. (many many more IDs here)
According to WpEngine, that error is generated whenever the query string exceeds 16000 characters. Any advice on how to optimize this?
Ross Moderator(Private) October 18, 2016 at 2:21 pm #64826Hey Howard
This is preventative measure with WP Engine, but lots of search plugins must create long queries like this because we pass all the post IDs from our searches to a WP_Query..
To get around this add this to your wp-config:
define('WPE_GOVERNOR', false);
I first discovered this from here – https://searchwp.com/docs/kb/attention-wp-engine-customers-no-results-long-query-killed-query-notices/
Thanks
-
AuthorPosts