about pae limited

http://serverfault.com/questions/127788/what-is-the-maximum-memory-a-process-mysql-can-consume-on-a-32-bit-os

1 down vote

Most modern distributions and processors support PAE, which is Intel's instruction set allowing memory addressing beyond the 32-bit limitation. PAE allows a maximum of 64GB of RAM to be accessed by the processor. PAE has additional CPU overhead.

32-bit Linux has a per process limit of 3GB addressable even with PAE. Typically, the kernel reserves approximately 1GB.

MySQL is a single process daemon. As such, it will be unable to address outside of the 32-bit limitation even with PAE.

Some useful references:

原文地址:https://www.cnblogs.com/lexus/p/2328951.html