Results 1 to 2 of 2
  1. #1
    Join Date
    Dec 2010
    Posts
    246
    Plugin Contributions
    0

    Default Performance issues - making sense of SQL report

    We find that the backend of our installation can be very slow at times. We have trashed cache/debug files and cleaned the admin records.

    The system admin for the hosting company said they ran a report on the SQL queries (example below) and "found many taking a second or more" and suggested we "take a closer look at these".

    I'm not really sure what this means -- it sounds like modifying ZC files which I'm sure is not a good idea. Or maybe not. Can anyone shed light on what is meant by "taking a look at the slow queries" and how I might apply that to an action that will actually help?

    Here's an (tiny) example of the SQL report they ran:

    ### 3 Queries
    ### Total time: 18.372107, Average time: 6.12403566666667
    ### Taking 2.254480 , 5.430797 , 10.686830 seconds to complete
    ### Rows analyzed 10589, 10603 and 10604
    SET timestamp=XXX;
    SELECT order_id, paypal_ipn_id, payment_status, txn_type, pending_reason
    FROM paypal
    WHERE txn_id = 'XXX'
    ORDER BY order_id DESC LIMIT XXX;

    SET timestamp=1341272778;
    SELECT order_id, paypal_ipn_id, payment_status, txn_type, pending_reason
    FROM paypal
    WHERE txn_id = '1N808357D20206047'
    ORDER BY order_id DESC LIMIT 1;

  2. #2
    Join Date
    Apr 2009
    Location
    In a traffic jam
    Posts
    1,982
    Plugin Contributions
    1

    Default Re: Performance issues - making sense of SQL report

    You might ask them why a simple select query is taking up to 10 seconds. It shouldn't even with fairly large tables. There isn't much wrong with the sql statement that you have detailed.

    Or change hosting. That would actually be my suggestion.

 

 

Similar Threads

  1. Cache and Performance issues
    By GreggShort in forum General Questions
    Replies: 5
    Last Post: 29 Jul 2007, 09:41 PM
  2. Performance Issues - Stopgap Solution
    By nsabine in forum General Questions
    Replies: 4
    Last Post: 22 Feb 2007, 06:13 AM
  3. Performance / Speed Issues
    By websightdesign in forum General Questions
    Replies: 1
    Last Post: 20 Dec 2006, 05:57 PM
  4. Please explain Stylesheets. Not making sense.
    By infocom in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 11 Jul 2006, 02:33 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •