vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   Identifying query intensive mod? (https://vborg.vbsupport.ru/showthread.php?t=161398)

Tourmeister 10-29-2007 01:07 PM

Identifying query intensive mod?
 
Howdy,

I run a server with two active VB forums, one is mine (twtex.com) and the other person (st-owners.com) pays me for server space. We have been seeing some very large spikes in our server load several times per day. Using mtop, we have determined that ALL of the queries causing the spikes are coming from the stowners site. So we logged the queries lasting for 2 seconds or more and here is a sampling of what we are repeatedly seeing:

Quote:

# Query_time: 3 Lock_time: 0 Rows_sent: 1 Rows_examined: 56108
use stowners_vbulletin;
SELECT COUNT(post.postid) as unread
FROM post as post
INNER JOIN thread as thread ON (thread.threadid = post.threadid)
LEFT JOIN threadread AS threadread ON (threadread.threadid = thread.threadid AND threadread.userid = 865)
INNER JOIN forum AS forum ON (forum.forumid = thread.forumid)
LEFT JOIN forumread AS forumread ON (forumread.forumid = forum.forumid AND forumread.userid = 865)
WHERE thread.forumid IN(182, 185, 231, 187, 45, 46, 49, 48, 244, 275, 188, 152, 189, 209, 223, 235, 236, 237, 47, 278, 276, 196, 267, 279, 251, 266, 228, 238, 158, 277, 265, 249, 230, 259, 226, 191, 240, 229, 227, 233, 241, 247, 248, 257, 260, 258, 263, 268, 274, 273, 272, 57, 202, 203, 56, 68, 212, 211, 206, 210, 208, 262, 63, 193, 253, 254, 61, 58, 55, 54, 59, 71, 74, 204, 64, 72, 73, 53, 243, 79, 78, 239, 186, 157, 164, 183, 86, 194, 76, 184, 156, 264, 256, 271, 261, 176, 75, 84, 81, 83, 159, 160, 42, 155, 246, 245, 161, 252, 269, 280, 52, 225, 234, 85, 192, 150, 151, 270, 173, 232, 190, 51, 50, 181, 166, 172, 170, 250, 220, 221, 222, 169, 178, 177, 179, 224)
AND thread.sticky IN (0,1) AND thread.visible IN (0,1,2)
AND thread.lastpost > IF(threadread.readtime IS NULL, 1191065676, threadread.readtime)
AND thread.lastpost > IF(forumread.readtime IS NULL, 1191065676, forumread.readtime)
AND thread.lastpost > 1191065676
AND post.dateline > IF(threadread.readtime IS NULL, 1191065676, threadread.readtime)
AND post.dateline > IF(forumread.readtime IS NULL, 1191065676, forumread.readtime)
AND post.dateline > 1191065676;

Here is a list of Mods that the stowners admin has installed and running:

Quote:

Advanced PM Options 1.2.3
Created By VisionScripts (www.visionscripts.com)

AME - The Automatic Media Embeder 1.2.0
Automatically embeds media URLs with posts

Automatic Birthday Thread 1.0.1
This Hack automatically creates a birthday Thread

Automatic Welcome PM 1.0.4
This Hack will automatically send welcome PMs to new members.

Cyb - Attention Zero-Posters 1.4
Cyb - Attention Zero-Posters

Display Unread Posts 1.01
Display the number of posts you have marked as unread.

Do not show who's online for guests 1.1
Do not show who's online for guests

e-steki Unvote 1.0.1
Allows Users To Withdraw Their Votes From Polls
Farcaster's Event Attendance 1.2.1
This hack will allow users to RSVP to selected events.

Favorite Smilies 1.0.3
User selectable favorite smilies

ibProArcade for vBulletin 2.6.3
ibProArcade - professional Arcade System for vBulletin

Ignore Thread 1.0.0
Ignore Thread

Kpt - Icon Key 1.0
Kpt - Icon Key

Links and Downloads Manager 2.2.7
Manages a document and link library

Miserable Users 2.12
A way to really annoy anyone you don't want visiting your forum.

NoSpam! 3.0
NoSpam! allows you to specify a set of questions which members are required to answer correctly at registration, eliminating the ability of spam bots to register at your forums and post unwanted messages.

Personal Notepad 1.1
Give users a personal notepad they can store text in.

Random Home Images 0.1
Displays a random image from a pool of images contained in a specified directory which include a specified delimeter text in the filename. Userful for header images or for displaying random babes, random avatars, etc.

Random Images 0.1
Displays a random image from a pool of images contained in a specified directory which include a specified delimeter text in the filename. Userful for header images or for displaying random babes, random avatars, etc.

Selective Forum Filter 1.0.2
Created By VisionScripts (www.visionscripts.com)
Separate Sticky and Normal Threads 1.0.3
Separate Sticky and Normal Threads

ShowProfileFieldInPostBits 1.0
EMiN3M Show Profile Field In Post Bits

Statistics 3.1
Adds a statistics page to your forum.

Thread Title Coloring 1.05
Enables you to customize the color of your thread titles.

Un-Activated User Management 3
This hack will clean up unactivated users

vBadvanced CMPS 2.2.1 (vB 3.6)
vBadvanced Content Management & Portal System
vbgooglemap Member Edition by StonyArc 3.0.0
Display user location based on Google Maps API

vBulletin 3.6.6 Calendar Event XSS Fix 2.0
Yet Another Award System 3.6 2.1.4
Admin can give member
Does anyone know if any of these mods are prone to long MySQL queries?

Andrew Green 10-29-2007 01:19 PM

That query looks to be doing a count of how many unread posts the user has.

Tourmeister 10-29-2007 01:42 PM

That is interesting... I have the Display Unread Posts 1.01 installed on the twtex.com site and we are not seeing similar issues. Both sites have about the same number of users online at any given time. Might any of those other mods listed also result in an output like that shown above?

bobster65 10-29-2007 02:09 PM

Quote:

Originally Posted by Tourmeister (Post 1371132)
Might any of those other mods listed also result in an output like that shown above?

vbadvanced (a couple of the modules)... do you both run CMPS?

Mellow 10-29-2007 02:25 PM

Yes, we both run cpms

bobster65 10-29-2007 02:39 PM

Quote:

Originally Posted by Mellow (Post 1371150)
Yes, we both run cpms

Same modules?

Mellow 10-29-2007 02:48 PM

Maybe a couple, not sure, that's something we haven't compared. Doesn't seem like running the same modules would matter to me since we have our own Databases.

bobster65 10-29-2007 03:25 PM

Quote:

Originally Posted by Mellow (Post 1371165)
Maybe a couple, not sure, that's something we haven't compared. Doesn't seem like running the same modules would matter to me since we have our own Databases.

You are correct, its not the same ones, its the ones that you might have running that the other site doesn't. That could very well be where the problem is. Some CMPS modules are query intensive.

Tourmeister 10-29-2007 04:32 PM

I only use the default modules that come with CMPS for twtex. I have added a few custom ones, but they do not hit the DB at all. They are just static pages that never change.

Mellow, do you have any 3rd party modules installed?

Mellow 10-29-2007 05:42 PM

Yes, sure do.

There are a couple that show newest and hottest links/downloads.

There's also a module with tabs as well.

All the others are the basic cmps modules and some that are custom but based of the basic ones.. similar to the news block , pulling from a specific forum.

Nothing else is hitting the database.

I guess I still don't see a 'smoking gun'. We could start disabling blocks and see if that makes a difference.

Tourmeister 10-29-2007 05:59 PM

Well, I would look first for mods that do a search similar to unread posts, something that has to do a different DB fetch for depending on each user that views the page.

Paul M 10-29-2007 06:02 PM

Quote:

Originally Posted by Tourmeister (Post 1371132)
That is interesting... I have the Display Unread Posts 1.01 installed on the twtex.com site and we are not seeing similar issues. Both sites have about the same number of users online at any given time. Might any of those other mods listed also result in an output like that shown above?


That code is definitely from my old vb 3.5 unread posts mod (v1.01 seems reasonable).

Looking at the number of rows examined, and the time taken, I would say you are almost certainly missing the dateline index on the post table. Add that index and I think you will cure the problem.

BTW, if you are not running vb 3.5 anymore, then you should update to the latest version, it will add the index when you install it.

Tourmeister 10-29-2007 06:22 PM

Quote:

Originally Posted by Paul M (Post 1371311)
That code is definitely from my old vb 3.5 unread posts mod (v1.01 seems reasonable).

Looking at the number of rows examined, and the time taken, I would say you are almost certainly missing the dateline index on the post table. Add that index and I think you will cure the problem.

BTW, if you are not running vb 3.5 anymore, then you should update to the latest version, it will add the index when you install it.

Howdy Paul,

I (the twtex.com site) am running VB 3.6.5 with the Display Unread Posts v1.0.1 with no problems. The St-owners site is on VB 3.6.4 and running the same version of the Unread Posts, and is having the load issues. Was this dateline index added from 3.6.4 to 3.6.5?

How would you go about adding the index manually if Mellow is not ready to upgrade his VB to the latest version?

Paul M 10-29-2007 06:30 PM

The dateline index does not exist in default vb, I think the mod included instructions to add it at one point but I'm not sure.

Anyway, just use this SQL command ;

[sql]ALTER TABLE post ADD INDEX (dateline) ;[/sql]

However, since you are both running vb 3.6, so you should really be running this version of the mod (which as I said, creates the index automatically).

https://vborg.vbsupport.ru/showthread.php?t=123886

The version you are currently using is very old.

Tourmeister 10-29-2007 06:34 PM

Thanks Paul! :up: I will just upgrade the mod for my site. :D

Mellow 10-29-2007 06:45 PM

Done, thanks Paul.

Is there a way of knowing if the index is there or not? I don't have myphpadmin handy at the moment. Can a query from admincp show that? I do see a MUL in the Key column of the dateline attribute for the post table but I think that was there before.

Either way, better to have a current version.

Well, monitor and see if that fixes the situation.

Tourmeister 10-29-2007 06:46 PM

Man, that was a nice easy upgrade!

Paul M 10-29-2007 08:25 PM

Quote:

Originally Posted by Mellow (Post 1371337)
Is there a way of knowing if the index is there or not? I don't have myphpadmin handy at the moment. Can a query from admincp show that?

Yes, just run

Quote:

show index from post

Mellow 10-29-2007 08:42 PM

Thank you sir!

Tourmeister 10-30-2007 02:09 AM

Well now... things have gotten interesting...

Mellow and I both upgraded to the latest version of the mod. That made BOTH sites start cranking out long queries... I was monitoring using mtop and was seeing multiple queries from both of our sites hitting from 1-6 seconds in length and it ran the server load up to a sustained average of 2.5 or so, when it normally is around .50 or less.

On a hunch, I removed the new version and the queries from my site stopped showing up on the mtop listing. I contacted Mellow and he removed it from his site. Since that time, there have been no queries over 1 second and the average server load is back down where it should be.

What is odd is that the old version (1.0.1) was working perfectly for me prior to the upgrade. I would reinstall it just to see what happens, but I deleted it from VB and now cannot find the old file I downloaded! DOH!

Mellow 10-30-2007 11:01 AM

Quote:

Originally Posted by Paul M (Post 1371328)
The dateline index does not exist in default vb, I think the mod included instructions to add it at one point but I'm not sure.

Anyway, just use this SQL command ;

[sql]ALTER TABLE post ADD INDEX (dateline) ;[/sql]

However, since you are both running vb 3.6, so you should really be running this version of the mod (which as I said, creates the index automatically).

https://vborg.vbsupport.ru/showthread.php?t=123886

The version you are currently using is very old.

Paul, what's the difference between the one you posted and this one:
https://vborg.vbsupport.ru/showthread.php?t=123931

It seems they are both for the welcome box and 3.6.x.. ???

Tourmeister 10-30-2007 03:55 PM

I reinstalled the old version. It's working perfectly for me and the query time/server load is very low. I very rarely see a query last over 1 second when monitoring with mtop.

Mellow, whichever version you have installed now seems to be working pretty well. I am still seeing the occasional appearance of STO queries over 1 second, but the server loads are still staying around .50 and lower.

Strange that the newest version would make both of our sites start banging out really long queries?


All times are GMT. The time now is 04:45 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01209 seconds
  • Memory Usage 1,800KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (10)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (22)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete