07:54 SHOW OPEN TABLES - what is in your table cache » MySQL Performance Blog

One command, which few people realize exists is SHOW OPEN TABLES - it allows you to examine what tables do you have open right now:

SQL:
  1. mysql> SHOW open TABLES FROM test;
  2. +----------+-------+--------+-------------+
  3. | DATABASE | TABLE | In_use | Name_locked |
  4. +----------+-------+--------+-------------+
  5. | test     | a     |      3 |           0 |
  6. +----------+-------+--------+-------------+
  7. 1 row IN SET (0.00 sec)

This command lists all non-temporary tables in the table-cache, showing each of them only once (even if table is opened more than ones)

In_use show how many threads are currently using this table, meaning have it locked or waiting on the table lock for this table to lock it.

Name_locked shows whenever the name for this table is locked. It is used for DROP or RENAME TABLE, so you would very rarely see this field to contain anything else than 0.

Besides just figuring out what tables are in the table_cache this command is rather helpful to understand if there is activity on the given table. Just run "FLUSH TABLES mytable" and examine open tables later - if you see this table in table cache again chances are it is being used.

Note however if you're starting MySQL Command line client without "-A" option it opens all tables in the active database to allow tab completion which can screw results.

Another use for this command is pre-flush implementation (as part of your backup routine) - instead of running FLUSH TABLES on ALL tables one by one you can run SHOW OPEN TABLES and flush only open tables, when run it again and see how many tables are open and in use and if FLUSH TABLES WITH READ LOCK can be run or not.

Unfortunately this command does not really help to answer the very common question you may have during table lock troubleshooting - who is holding lock for this table ?

I would much rather see all entries in the table_cache used, not grouped by the table, with thread_id using the table set (0 if table is not in use), lock_type READ/WRITE/READ_LOCAL etc as well as whenever the thread is looking for lock right now.

It also deserves to be converted to INFORMATION_SCHEMA table - so it would be easily to operate it using SQL commands.

Another thing which would be handly is LRU position for the given table (so you can see what tables are candidates for replacement) and the timestamp when this table was locked (or lock wait started) - MySQL anyway initializes the timer so it would not be much overhead to store that time together in the table cache. This could allow to understand table locks much better.


Entry posted by peter | No comment

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

04:07 Looking for MySQL 4.0 Support post EOL ? » MySQL Performance Blog

As Giuseppe just reminded MySQL 4.0 is reaching its end of life in about 2 weeks from now. When it becomes unsupported by MySQL via normal support agreements together with 3.23 version.

At Percona we do not have such restriction and we will continue to support your environment even if you're still on MySQL 4 or 3.23 (we indeed do have customers which are still using 3.23 now)

What does it mean for you in practice ? This means we will continue helping you with issues you're having with MySQL 3.23 or 4.0 and will be happy to backport bug fixes to MySQL 3.23 and 4.0

Supporting MySQL 3.23 and MySQL 4.0 environment is indeed more expensive than current MySQL versions because we can't relay on Sun/MySQL doing any work with bug fixes plus more work is often needed because these versions have lower transparency than later versions. It also often takes more time to do things because we have to have an extra care to remember all limitations of these versions correctly. For example remember to use set-variable in MySQL 3.23 or remembering all optimizer issues which were fixed more recently.

It costs more to support environments based on 3.23 and 4.0 these days so we would typically recommend to upgrade, however if it is not instantly possible we continue to do support your envinronment. With our simple pricing model of "you pay for consultants true time" we can naturally afford to do it.


Entry posted by peter | 4 comments

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

推荐阿朱新书《走出软件作坊:三五个人十来条枪 如何成为开发正规军》Pure Pleasure - Reborn » 车东's shared items in Google Reader

一个人最大的力量来自于他的心智。阿朱是个心智力量相当强大的人,这是我对未曾谋面的阿朱之印象——谢谢周筠老师送我阿朱的新书《走出软件作坊:三五个人十来条枪 如何成为开发正规军》(点击这里开始阅读该书博客连载版本点击这里购买……)。

其实,并不见得一定是做软件的、带团队的人才可以读这本书。我觉得所有正在做事的、想要做事的的人都能开卷有益。

我个人的观察是,计算机领域几乎是目前所有领域中“现代运筹方法论”运用、发展最为淋漓尽致的领域。

在计算机领域里先行的各种行为模式、选择理论、协同机制、优势策略,正在慢慢向各个领域扩散。在昆汀拍《低俗小说》的时候,大家确实应该震惊于他的天才;可是,在《无间道》推出的时候,其实,更多的是计算机领域里的“面向对象编程”的思想被应用到剧本编写领域中了而已。

理查德•道金斯在《自私的基因》里解释人类的基因如何“无意识”地发展到今天这个高度之时,也要借用程序员如何设计出最终能够打败国际象棋世界冠军的程序的例子才能够透彻地说明

就算是没时间甚至没兴趣去读完整本书,我也强烈建议读者起码读读这一篇:《一分钟先生》。(我过去读过一本老外写的管理时间的书籍,就叫这个名字《一分钟先生》,不知道阿朱这篇文章的题目是否来自于此?)不管是在任何领域里,能够驾驭时间的人习惯大致相同:列表笔记思考不追求完美……

阿朱的文字,随性、粗糙,但真实、有效。


刚刚与阿朱在MSN上聊了一下,果不其然,《一分钟先生》的来历是我猜到的——只是,那本书的名字叫《一分钟经理》(中文版|英文版),大约15年前读过的书,名字我记错了……


^==Back Home: www.chedong.com

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

<== 2008-12-14
  十二月 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 31        
==> 2008-12-16