jemalloc on Percona Server for MySQLThe benefits of jemalloc versus glibc memory allocator for use with MySQL have been widely discussed. With jemalloc (along with Transparent Huge Pages disabled) there is less memory fragmentation, and thus more efficient resource management of the server memory. For MySQL 5.6, installing jemalloc is enough to enable it when starting the MySQL process. However, for MySQL 5.7 and 8.0.X series, you will need to take a few extra steps.

Enabling jemalloc on Percona Server for MySQL

Installing the jemalloc package is simple for Percona. This is because the library is available on the Percona repository, which is available for both apt and yum package management:

Once you have the repo, just run the install command (according to your OS) to install it:

Now that the package is installed, we need to make MySQL working with it. And now, it depends on how you are starting MySQL:

Using systemd Services (systemctl Command)

If you are using systemd services (using systemctl commands), you need to execute the following steps:

1-) The unit file provided with Percona Server (/usr/lib/systemd/system/mysqld.service) has the following lines in it:


The /etc/sysconfig/mysql  file should contain new-line-separated variable assignments. See systemd docs https://www.freedesktop.org/software/systemd/man/systemd.exec.html#EnvironmentFile= for the explanation. So the final result will be a file like this:

2-) Start MySQL

Starting Manually

If you are starting it manually, in the command line, you need to specify the library in the LD_PRELOAD. So the command to initialize will be similar to this one:

Check if MySQL is Using jemalloc


And you can also do it manually:

Or:

Conclusion

This blog post was written to update the guidelines of jemalloc. Important to mention that using the recommendations above regarding systemd, the changes will persist across MySQL upgrades.

Finally, jemalloc still is a good memory allocator and I consider it part of the best practices that should be implemented before the deployment in production.

Useful Resources

Finally, you can reach us through the social networks, our forum, or access our material using the links presented below:

3 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Daniel Ziegenberg

It should be noted, that the jemalloc version packaged with Percona is very old. It’s a 3.6.0 from April 15th 2015. The current version is 5.3.0 from May 06th 2022 provided here: https://github.com/jemalloc/jemalloc/releases/tag/5.3.0)

And this is well known. See issue “Bump jemalloc RPM/DEB packages to 5.2” (https://jira.percona.com/browse/ENG-1073)
Sadly it’s a “won’t fix“.

Maybe the blog post can be updated?

Daniel Ziegenberg

Moreover, the packaged version in the ps-80-release-x86_64 repository has the epoche tag set to 1. So even if you install jemalloc from the EPEL repository it tries to update it every time, because if the epoch is set in a package, then the package with the highest epoch value is installed as the current package. Version and release are ignored. If not set, the epoch defaults to 0.