bbPress 2.0.2 and 1.6MM posts = painfully slow
-
I was troubleshooting an issue with a rather large migration to bbPress (1.6MM posts) and bbPress 2.0.2 is very slow to load thread pages.
It looks like bbPress (WP_Query) is trying to do an unindexed query lookup:
CAST(wp_postmeta.meta_value AS CHAR) = '787852'
The query takes quite some time and does a full table scan:
# Time: 120518 19:23:53
# User@Host: db[db] @ localhost []
# Query_time: 9.688145 Lock_time: 0.000050 Rows_sent: 3 Rows_examined: 1623367
SET timestamp=1337387033;
SELECT SQL_CALC_FOUND_ROWS wp_posts.* FROM wp_posts INNER JOIN wp_postmeta ON (wp_posts.ID = wp_postmeta.post_id) WHERE 1=1 AND wp_posts.post_type IN ('topic', 'reply') AND (wp_posts.post_status = 'publish' OR wp_posts.post_status = 'closed') AND ( (wp_postmeta.meta_key = '_bbp_topic_id' AND CAST(wp_postmeta.meta_value AS CHAR) = '787852') ) GROUP BY wp_posts.ID ORDER BY wp_posts.post_date ASC LIMIT 0, 25;Here’s a simple stack trace:
/home/site/public_html/wp-includes/query.php 2498 get_sql () -- /home/site/public_html/wp-includes/
/home/site/public_html/wp-includes/query.php 2913 get_posts () -- /home/site/public_html/wp-includes/
/home/site/public_html/wp-includes/query.php 3000 query () -- /home/site/public_html/wp-includes/
/home/site/public_html/wp-content/plugins/bbpress/bbp-includes/bbp-reply-template.php 129 __construct () -- /home/site/public_html/wp-content/plugins/bbpress/bbp-includes/
/home/site/public_html/wp-content/themes/site/bbpress/content-single-topic.php 35 bbp_has_replies () -- /home/site/public_html/wp-content/themes/site/bbpress/
/home/site/public_html/wp-includes/theme.php 1117 require () -- /home/site/public_html/wp-includes/
/home/site/public_html/wp-includes/theme.php 1091 load_template () -- /home/site/public_html/wp-includes/
/home/site/public_html/wp-includes/general-template.php 128 locate_template () -- /home/site/public_html/wp-includes/
/home/site/public_html/wp-content/plugins/bbpress/bbp-includes/bbp-core-compatibility.php 144 get_template_part () -- /home/site/public_html/wp-content/plugins/bbpress/bbp-includes/
/home/site/public_html/wp-content/themes/site/single-topic.php 33 bbp_get_template_part () -- /home/site/public_html/wp-content/themes/site/
/home/site/public_html/wp-includes/template-loader.php 43 include () -- /home/site/public_html/wp-includes/
/home/site/public_html/wp-blog-header.php 16 require_once () -- /home/site/public_html/
/home/site/public_html/index.php 17 require () -- /home/site/public_html/Here’s the $bbp_r query passed into WP_Query:
Array
(
[meta_query] => Array
(
[0] => Array
(
[key] => _bbp_topic_id
[value] => 1623928
[compare] => =
)
)
[post_type] => Array
(
[0] => topic
[1] => reply
)
[orderby] => date
[order] => ASC
[posts_per_page] => 25
[paged] => 1
=>
[post_status] => publish,closed
)
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- You must be logged in to reply to this topic.