我在我的数据库上运行MySQLTuner来检查事情是否正常和最佳,但我对这两个值所用的单位感到困惑。
以下是效果指标的输出结果
-------- Performance Metrics -------------------------------------------------
[--] Up for: 2d 5h 11m 20s (47M q [249.471 qps], 45M conn, TX: 65B, RX: 8B)
[--] Reads / Writes: 79% / 21%
[--] Total buffers: 1.1G global + 2.7M per thread (300 max threads)
[!!] Maximum possible memory usage: 1.9G (198% of installed RAM)
[OK] Slow queries: 0% (43/47M)
[OK] Highest usage of available connections: 5% (17/300)
[OK] Key buffer size / total MyISAM indexes: 600.0M/128.0K
[OK] Key buffer hit rate: 100.0% (17K cached / 0 reads)
[OK] Query cache efficiency: 98.1% (46M cached / 47M selects)
[!!] Query cache prunes per day: 22728
[OK] Sorts requiring temporary tables: 0% (9 temp sorts / 65K sorts)
[!!] Joins performed without indexes: 2839
[OK] Temporary tables created on disk: 0% (235 on disk / 42K total)
[OK] Thread cache hit rate: 99% (79 created / 45M connections)
[!!] Table cache hit rate: 1% (400 open / 27K opened)
[OK] Open file limit used: 0% (0/1K)
[OK] Table locks acquired immediately: 100% (1M immediate / 1M locks)
[!!] Connections aborted: 99%
[!!] InnoDB data size / buffer pool: 6.5G/128.0M
但我的问题是关于这一行
[OK] Key buffer size / total MyISAM indexes: 600.0M/128.0K
我不知道单位的含义,或者它们的大小有多么不同。什么是' M'和' K'
我知道我的密钥缓冲区大小应该比MyISAM索引大,但我不知道是不是因为我不了解单位。我已经在线了,但无法找到我想要的答案。如果有人可以请我澄清一下,我会非常感激。
答案 0 :(得分:1)
您确定要查看文档吗?引自MySQL Documentation:
为了最小化磁盘I / O,MyISAM存储引擎使用缓存 将最常访问的表块保留在内存中的机制:
对于索引块,一种称为密钥缓存(或密钥)的特殊结构 缓冲区)。
要控制密钥缓存的大小,请使用 key_buffer_size 系统 变量
如果没有错,那些是大小单位;这里M
代表Mega Bytes,K
代表Kilo Bytes。
答案 1 :(得分:1)
所有MyISAM表的索引(.MYI文件)的总大小为128KB(千字节)。因此key_buffer_size = 600M
(兆字节)是过度的。