• Hello !

    I’m using wordpress, and having big troubles with my stability of server, i’m getting thousands hits to mysql, and this couldn’t handle my server, so i decided to grab all online content from index page and copy it somewhere else, now my users don’t access mysql with each loads of page.
    so mysql requests dropped to about 5% from 100%

    but sometimes those small requests can kill mysql and cancel connection, i have enabled loggin for longer mysql requests, and i can see there a lot of such requests:

    SELECT option_name, option_value FROM wp_options WHERE autoload = ‘yes’;
    # Time: 050526 12:03:39
    # User@Host: root[root] @ localhost []
    # Query_time: 0 Lock_time: 0 Rows_sent: 255 Rows_examined: 255

    Can you please tell me what i didn’t disable yet, and what that request is trying to do ? where i could disable this, and what php file is doing that.

    thanx

Viewing 12 replies - 1 through 12 (of 12 total)
  • Are you using many plugins? Some of them are really heavy on DB. Try to deactivate them one by one to see which one might cause problems.

    Thread Starter miob

    (@miob)

    plugins ? i didn’t install anything, only new template, but this has nothing to do with mysql accesses, cuz it’s all loading without mysql, i have online only search box, removed calendar too.

    and i forgot comments, hasn’t that something with comments ?
    cuz i have moderated comments, i got a lot of spam

    Where is your server ?
    Who is hosting you ?

    Thread Starter miob

    (@miob)

    i just checked plugins section, there’s nothing installed

    Thread Starter miob

    (@miob)

    Thread Starter miob

    (@miob)

    but i think this matter has nothing to do with hosting company, my opinion is that could happen on any server, even hosting guys said try to avoid mysql complettly if you’re running hi traffic sites

    i think i just need to figure this row:

    SELECT option_name, option_value FROM wp_options WHERE

    what exactly does this request ? which php file ?

    Thread Starter miob

    (@miob)

    Here you can see load on the server:
    https://vodex3.exmasters.com/hotsanic/system/load.html

    jeez, just search for any part of the string in the php files. it’s retrieving the core options/settings for WP, done at pageload.

    You could have a dozen (or dozens) sql queries per page and not hurt performance in the slightest. Something else is going on if you’re having real performance issues.

    If you want to staticize stuff, look at WP-Cache as the best method to do so.

    -d

    Thread Starter miob

    (@miob)

    i’ve found this string in functions.php inside of function get_alloptions()
    and this function uses update_option() and get_settings() nothing else

    hm i see something trackback() and weblog_ping() uses get_settings()
    i saw in my posting form {Send trackbacks to:}and sometimes i have there filled some weird data
    What is this ? probably this is killing my mysql

    And what you meant WP-Cache, what kind of method ?

    Sounds like you need to fix your machine/mysql-config… if you’re having that much trouble, hacking around without solving the root problem isn’t going to get you far, and might just make more problems in the long term. ??

    Search for WP-Cache.

    -d

    Thread Starter miob

    (@miob)

    i’m having hi-load issues only sometimes, in the most traffic caps, now it’s quite fine, but i’d avoid uf such mysql requests if i can…

    where i have to find for string “wp-cache” ?, i was looking in wordpress files, and nothing has been found.

    Thread Starter miob

    (@miob)

    ok, gus it seems like i finally resolved my issue,
    i’ve installed even a plugin:
    https://mnm.uib.es/gallir/wp-cache-2/

    i’m sure this will help someone too

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘Hi-load mysql server issue’ is closed to new replies.