16:00 借刀杀人(呆伯特-20080905) » 呆伯特

原图

15:56 不屈的灵魂(呆伯特-20080904) » 呆伯特

原图

15:54 最佳实践(呆伯特-20080903) » 呆伯特

原图

06:32 New patches, new builds » MySQL Performance Blog

We made new patches, improved previous and want to announce new builds for 5.0.62, 5.0.67 and 5.1.26 versions. One of biggest changes we separated releases of 5.0 into two branches.
First, just "-percona" release is more stable and contains only stable and proven on many installation patches. Second is "-percona-highperf" release, which contains experimental patches that can improve performance significantly. On this stage "percona-highperf" contains patches from Yasufumi Kinoshita (more info on Maximum performance of OLTP benchmark is not so scalable on multi-cpu.
Most important patch "split_buf_pool_mutex" to separate InnoDB buffer->pool mutex into several, and it allows to get 1.5x - 2.5x improvements in DBT2 benchmarks on 8cores boxes (benchmark results is coming and will be published)

For all three versions we added SHOW PATCHES command, which is based on Jeremy Cole's patch

SQL:
  1. mysql> SHOW patches;
  2. +--------------------------------------------------+--------------------------------------------------------+---------+----------------------------+---------+---------------------------------------+
  3. | File                                             | Name                                                   | Version | Author                     | License | Comment                               |
  4. +--------------------------------------------------+--------------------------------------------------------+---------+----------------------------+---------+---------------------------------------+
  5. | control_flush_and_merge_and_read.patch           | InnoDB patch TO control INSERT buffer AND flushing     | 1.0     | Yasufumi Kinoshita         | BSD     |                                       |
  6. | mysqld_safe_syslog.patch                         | Patch allows redirect output of error.log TO syslog-ng | 1.0     | Percona <info@percona.com> | GPL     | Ported FROM Debian                    |
  7. | microslow_innodb.patch                           | Extended statistics IN slow.log                        | 1.0     | Percona <info@percona.com> | GPL     |                                       |
  8. | split_buf_pool_mutex_fixed_optimistic_safe.patch | InnoDB patch TO fix buffer pool scalability            | 1.0     | Yasufumi Kinoshita         | BSD     |                                       |
  9. | control_io-threads.patch                         | InnoDB patch TO control count of IO threads            | 1.0     | Yasufumi Kinoshita         | BSD     |                                       |
  10. | userstats.patch                                  | SHOW USER/TABLE/INDEX statistics                       | 1.0     | Google                     | GPL     | Added INFORMATION_SCHEMA.*_STATISTICS |
  11. | show_patches.patch                               | SHOW PATCHES                                           | 1.0     | Jeremy Cole                | N/A     |                                       |
  12. +--------------------------------------------------+--------------------------------------------------------+---------+----------------------------+---------+---------------------------------------+

Next, we added tables USER_STATISTICS, INDEX_STATISTICS, TABLE_STATISTICS to INFORMATION_SCHEMA

SQL:
  1. mysql> SELECT * FROM information_schema.table_statistics;
  2. +-------------------------+-----------+--------------+----------------------+
  3. | TABLE_NAME              | ROWS_READ | ROWS_CHANGED | ROWS_CHANGED_INDEXES |
  4. +-------------------------+-----------+--------------+----------------------+
  5. | art86.forum86           |    469084 |           54 |                  162 |
  6. | mysql.db                |        36 |            0 |                    0 |
  7. | art57.link_out57        |  59336163 |        82549 |               577843 |
  8. | art116.author116        |   1921596 |         1581 |                 3162 |
  9. | art54.link_out54        |  36879450 |        23830 |               166810 |
  10. | art104.author104        |   1100203 |         2572 |                 5144 |
  11. | art107.forum107         |    820296 |           56 |                  168 |
  12. | art104.forum104         |    771121 |           63 |                  189 |
  13. | art111.article111       |  44100332 |        16411 |               164110 |
  14. | art93.thread_stats93    |    442440 |         9495 |                18990 |
  15. ...

For 5.0-percona-highperf release we added:

5.1 release
Contains build-in InnoDB plugin, so there is no more needs to download InnoDB separately, install it and run mysql with option --skip-innodb.
We think InnoDB plugin is stable enough to use it with MySQL 5.1 RC, at least stable to name whole MySQL-5.1-percona release as RC.

Along with previously mentioned patches, to 5.1 we added new column TIME_MS to
INFORMATION_SCHEMA.PROCESSLIST which contains time of query execution with microseconds granularity.

SQL:
  1. mysql> SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST;
  2. +----+------+-----------+------+---------+------+-----------+----------------------------------------------+---------+
  3. | ID | USER | HOST      | DB   | COMMAND | TIME | STATE     | INFO                                         | TIME_MS |
  4. +----+------+-----------+------+---------+------+-----------+----------------------------------------------+---------+
  5. 1 | root | localhost | NULL | Query   |    0 | executing | SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST |   0.607 |
  6. +----+------+-----------+------+---------+------+-----------+----------------------------------------------+---------+
  7. 1 row IN SET (0.00 sec)

On our release page
you can find links to RPMS for RedHat 4/5, binary tar.gz, source tar.gz (source contains source code with applied patches, so you can just download it and compile) and just raw patches.


Entry posted by Vadim | 2 comments

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


^==Back Home: www.chedong.com

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

<== 2008-09-05
  九月 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-07