MySQL 基于堆/内存的表
我有一台 12GB RAM 的服务器,my.cnf 中的 max_heap_table_size 设置为 6GB。 (“max_heap_table_size=6442450944”)。设置完后我重新启动了MySQL服务器。
问题是,每当我的表在插入期间只有 2GB 时,我就会收到错误“表已满”。为什么它不允许我添加超过 2GB 的数据? (2GB是phpMyAdmin中显示的大小)
I have a server with 12GB RAM, and max_heap_table_size in my.cnf is set to 6GB. ("max_heap_table_size=6442450944"). I restarted the MySQL server after setting this.
The trouble is, whenever my table gets to just 2GB during inserts I get error "table full". Why is it not letting me add more than 2GB worth of data? (The 2GB figure is what is shown as the size in phpMyAdmin)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
32 位 MySQL 服务器(或任何 32 位应用程序)只有 2-3Gb(取决于操作系统等)可用的虚拟内存,因此无法寻址更多内存。您需要 64 位操作系统和 64 位 MySQL 服务器才能利用更多内存。
A 32 bit MySQL server (or any 32 bit application for that matter) only have 2-3Gb(Depending on the OS, etc.) of virtual memory available, and thus can't address more memory. You need a 64 bit OS, and a 64 bit MySQL server to take advantage of more memory.