Bug #3144 | possible problem with query_cache during running of TPC-C test | ||
---|---|---|---|
Submitted: | 11 Mar 2004 8:58 | Modified: | 18 Mar 2004 14:10 |
Reporter: | Alexey Stroganov | Email Updates: | |
Status: | Not a Bug | Impact on me: | |
Category: | MySQL Server | Severity: | S3 (Non-critical) |
Version: | 4.1.1 | OS: | Linux (Linux) |
Assigned to: | Oleksandr Byelkin | CPU Architecture: | Any |
[11 Mar 2004 8:58]
Alexey Stroganov
[11 Mar 2004 9:22]
Oleksandr Byelkin
Thank you for bugreport. But we need fully repeateble test suite.
[11 Mar 2004 9:46]
Alexey Stroganov
It is possible to look at bug closer on quadxeon box. There test was installed and configured and one just can run/debug it.
[18 Mar 2004 14:10]
Oleksandr Byelkin
that queries are really in the query cache (some tables is not changed) 1 free memory block is natural whan number of qweries grows (but sometimes it was not 1 for me) here is my desults after test: ysql> show status like "Qcache%"; +-------------------------+---------+ | Variable_name | Value | +-------------------------+---------+ | Qcache_queries_in_cache | 1558 | | Qcache_inserts | 2578 | | Qcache_hits | 219 | | Qcache_lowmem_prunes | 0 | | Qcache_not_cached | 162 | | Qcache_free_memory | 8391152 | | Qcache_free_blocks | 1 | | Qcache_total_blocks | 3118 | +-------------------------+---------+ 8 rows in set (0.00 sec) mysql> drop database test; Query OK, 10 rows affected (0.08 sec) mysql> show status like "Qcache%"; +-------------------------+---------+ | Variable_name | Value | +-------------------------+---------+ | Qcache_queries_in_cache | 0 | | Qcache_inserts | 2578 | | Qcache_hits | 219 | | Qcache_lowmem_prunes | 0 | | Qcache_not_cached | 162 | | Qcache_free_memory | 9990384 | | Qcache_free_blocks | 1 | | Qcache_total_blocks | 1 | +-------------------------+---------+ 8 rows in set (0.00 sec)