-
Install Prefered malloc library.
-
Jemalloc
$ yum install jemalloc
-
tcmalloc
$ yum install gperftools-libs
-
-
Create configuration file to use jemalloc.
-
Jemalloc
# cat > /etc/systemd/system/mariadb.service.d/mariadb.conf <<EOF [Service] Environment="LD_PRELOAD=/usr/lib64/libjemalloc.so.1" EOF
-
tcmalloc
# cat > /etc/systemd/system/mariadb.service.d/mariadb.conf <<EOF [Service] Environment="LD_PRELOAD=/usr/lib64/libtcmalloc.so.4.4.5" EOF
-
-
Reload systemd configuration
# systemctl daemon-reload
-
Restart mariadb
# systemctl restart mariadb
-
Verify libary is loaded
sudo lsof -p $(pidof mysqld) | grep mem | grep -E "jem|tcm"
Last active
January 27, 2020 09:18
-
-
Save kprasad99/1f6af3bd11803e54724d580c3ad7655e to your computer and use it in GitHub Desktop.
Custom Memory Allocator configuration for MariaDB
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment