09:31 Unused indexes by single query » MySQL Performance Blog

Usually unused indexes are devil, they waste diskspace, cache, they make INSERT / DELETE / UPDATE operations slower and what makes them worse - it is hard to find them.

But now ( with userstatsV2.patch) you can find all unused indexes (since last restart of mysqld) by single query

SQL:
  1. SELECT DISTINCT s.TABLE_SCHEMA, s.TABLE_NAME, s.INDEX_NAME
  2. FROM information_schema.statistics `s` LEFT JOIN information_schema.index_statistics IS
  3. ON (s.TABLE_SCHEMA = IS.TABLE_SCHEMA AND
  4. s.TABLE_NAME=IS.TABLE_NAME AND
  5. s.INDEX_NAME=IS.INDEX_NAME)
  6. WHERE IS.TABLE_SCHEMA IS NULL;

SQL:
  1. +--------------+---------------------------+-----------------+
  2. | TABLE_SCHEMA | TABLE_NAME                | INDEX_NAME      |
  3. +--------------+---------------------------+-----------------+
  4. | art100       | article100                | ext_key         |
  5. | art100       | article100                | site_id         |
  6. | art100       | article100                | hash            |
  7. | art100       | article100                | forum_id_2      |
  8. | art100       | article100                | published       |
  9. | art100       | article100                | inserted        |
  10. | art100       | article100                | site_id_2       |
  11. | art100       | author100                 | PRIMARY         |
  12. | art100       | author100                 | site_id         |
  13. ...
  14. +--------------+---------------------------+-----------------+
  15. 1150 rows IN SET (1 min 44.23 sec)

As you see query is not fast, mainly because information_schema.statistics is slow by itself, but in any case very helpful.


Entry posted by Vadim | No comment

Add to: delicious | digg | reddit | netscape | Google Bookmarks

05:18 Google’s user_statistics V2 port and changes » MySQL Performance Blog

Recently Google published V2 release of patches, one of them user_statistics we use in our releases.
New features are quite interesting so we decided to port it to fresh releases of MySQL. Features includes:

Our port includes:

Here is example of new tables:

SQL:
  1. mysql> SELECT * FROM information_schema.user_statistics\G
  2. *************************** 1. row ***************************
  3.                   USER: root
  4.      TOTAL_CONNECTIONS: 2
  5. CONCURRENT_CONNECTIONS: 0
  6.         CONNECTED_TIME: 4417
  7.              BUSY_TIME: 7
  8.               CPU_TIME: 5
  9.         BYTES_RECEIVED: 12163659
  10.             BYTES_SENT: 4479
  11.   BINLOG_BYTES_WRITTEN: 12164231
  12.           ROWS_FETCHED: 2
  13.           ROWS_UPDATED: 348382
  14.        TABLE_ROWS_READ: 0
  15.        SELECT_COMMANDS: 2
  16.        UPDATE_COMMANDS: 16
  17.         OTHER_COMMANDS: 26
  18.    COMMIT_TRANSACTIONS: 15
  19.  ROLLBACK_TRANSACTIONS: 0
  20.     DENIED_CONNECTIONS: 0
  21.       LOST_CONNECTIONS: 0
  22.          ACCESS_DENIED: 0
  23.          EMPTY_QUERIES: 0
  24. 1 row IN SET (0.00 sec)

SQL:
  1. mysql> SELECT * FROM information_schema.client_STATISTICS\G       
  2. *************************** 1. row ***************************
  3.                 CLIENT: 192.168.10.174
  4.      TOTAL_CONNECTIONS: 10
  5. CONCURRENT_CONNECTIONS: 0
  6.         CONNECTED_TIME: 0
  7.              BUSY_TIME: 118
  8.               CPU_TIME: 118
  9.         BYTES_RECEIVED: 2174226
  10.             BYTES_SENT: 16222528
  11.   BINLOG_BYTES_WRITTEN: 0
  12.           ROWS_FETCHED: 51596
  13.           ROWS_UPDATED: 0
  14.        TABLE_ROWS_READ: 233
  15.        SELECT_COMMANDS: 5904
  16.        UPDATE_COMMANDS: 0
  17.         OTHER_COMMANDS: 30
  18.    COMMIT_TRANSACTIONS: 0
  19.  ROLLBACK_TRANSACTIONS: 0
  20.     DENIED_CONNECTIONS: 0
  21.       LOST_CONNECTIONS: 0
  22.          ACCESS_DENIED: 0
  23.          EMPTY_QUERIES: 506
  24. *************************** 2. row ***************************
  25.                 CLIENT: 192.168.10.161
  26.      TOTAL_CONNECTIONS: 41539
  27. CONCURRENT_CONNECTIONS: 0
  28.         CONNECTED_TIME: 0
  29.              BUSY_TIME: 3369
  30.               CPU_TIME: 3369
  31.         BYTES_RECEIVED: 152609007
  32.             BYTES_SENT: 1489795778
  33.   BINLOG_BYTES_WRITTEN: 0
  34.           ROWS_FETCHED: 593836
  35.           ROWS_UPDATED: 0
  36.        TABLE_ROWS_READ: 549073
  37.        SELECT_COMMANDS: 214801
  38.        UPDATE_COMMANDS: 0
  39.         OTHER_COMMANDS: 124497
  40.    COMMIT_TRANSACTIONS: 0
  41.  ROLLBACK_TRANSACTIONS: 0
  42.     DENIED_CONNECTIONS: 0
  43.       LOST_CONNECTIONS: 0
  44.          ACCESS_DENIED: 0
  45.          EMPTY_QUERIES: 70748

and INDEX/TABLE statistics:

SQL:
  1. mysql> SELECT * FROM information_schema.index_STATISTICS LIMIT 10;
  2. +--------------+------------+-----------------+-----------+
  3. | TABLE_SCHEMA | TABLE_NAME | INDEX_NAME      | ROWS_READ |
  4. +--------------+------------+-----------------+-----------+
  5. | art119       | img_out119 | from_message_id |      4160 |
  6. | art117       | img_out117 | from_message_id |      3324 |
  7. | art119       | article119 | forum_id_3      |      1855 |
  8. | art84        | img_out84  | from_message_id |      8363 |
  9. | art115       | article115 | forum_id_2      |         6 |
  10. | art61        | img_out61  | from_message_id |      4475 |
  11. | art90        | img_out90  | from_message_id |     42853 |
  12. | art104       | forum104   | site_id         |      9660 |
  13. | art61        | forum61    | site_id         |     17744 |
  14. | art50        | img_out50  | from_message_id |     19306 |
  15. +--------------+------------+-----------------+-----------+
  16. 10 rows IN SET (0.00 sec)
  17.  
  18. mysql> SELECT * FROM information_schema.table_STATISTICS LIMIT 10;     
  19. +--------------+-----------------+-----------+--------------+------------------------+
  20. | TABLE_SCHEMA | TABLE_NAME      | ROWS_READ | ROWS_CHANGED | ROWS_CHANGED_X_INDEXES |
  21. +--------------+-----------------+-----------+--------------+------------------------+
  22. | art86        | forum86         |      2186 |            2 |                      6 |
  23. | art104       | forum104        |      9660 |            6 |                     18 |
  24. | art57        | link_out57      |   8406371 |         3393 |                  23751 |
  25. | mysql        | user            |        15 |            0 |                      0 |
  26. | art53        | article53       |   7103377 |         4564 |                  45640 |
  27. | art116       | thread_stats116 |         0 |         8479 |                  16958 |
  28. | art50        | link_out50      |  11420660 |         2051 |                  14357 |
  29. | art60        | article60       |   5048218 |          824 |                   8240 |
  30. | art92        | author92        |         0 |          131 |                    262 |
  31. | art50        | img_out50       |   1772663 |         2305 |                   6915 |
  32. +--------------+-----------------+-----------+--------------+------------------------+
  33. 10 rows IN SET (0.01 sec)

If you would like to test it here is link to patch for 5.0.67.
http://www.mysqlperformanceblog.com/mysql/experimental/userstatv2.patch. When we consider it stable we will include it in our releases.

Btw working with patches I found very useful utils patchutils, which recommend you if you also need to separate one big patch to several small :)


Entry posted by Vadim | 5 comments

Add to: delicious | digg | reddit | netscape | Google Bookmarks

04:09 What Bugs makes you to recomend upgrade most frequently ? » MySQL Performance Blog

What bug makes you to recommend upgrading most frequently ? For me it is this bug which makes it quite painful to automate various replication tasks.

It is not the most critical bug by far but this makes it worse - critical bugs would usually cause upgrades already or were worked around while such stuff as causing things like "sometimes my slave clone script does not work" may hang on for years.


Entry posted by peter | No comment

Add to: delicious | digg | reddit | netscape | Google Bookmarks


^==Back Home: www.chedong.com

^==Back Digest Home: www.chedong.com/digest/

<== 2008-09-12
  九月 2008  
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30          
==> 2008-09-14