MySQL 基于堆/内存的表

发布于 2024-09-10 00:12:01 字数 208 浏览 9 评论 0原文

我有一台 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

明明#如月 2024-09-17 00:12:01

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文