Skip to content

Instantly share code, notes, and snippets.

@kprasad99
Last active January 27, 2020 09:18
Show Gist options
  • Save kprasad99/1f6af3bd11803e54724d580c3ad7655e to your computer and use it in GitHub Desktop.
Save kprasad99/1f6af3bd11803e54724d580c3ad7655e to your computer and use it in GitHub Desktop.
Custom Memory Allocator configuration for MariaDB

Steps to configure Custom Malloc library for MariaDB

  • Install Prefered malloc library.

    1. Jemalloc

      $ yum install jemalloc
    2. tcmalloc

      $ yum install gperftools-libs
  • Create configuration file to use jemalloc.

    1. Jemalloc

      # cat > /etc/systemd/system/mariadb.service.d/mariadb.conf <<EOF
      [Service]
      Environment="LD_PRELOAD=/usr/lib64/libjemalloc.so.1"
      EOF
    2. 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"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment