All Apps and Add-ons

Disable THP in AWS (Linux AMI)

jtrujillo
Path Finder

How do you disable Transparent Hugepages in an Amazon AWS environment that doesn't support systemctl or systemd?

0 Karma
1 Solution

jtrujillo
Path Finder

Here is a way to keep THP turned off even after reboot.

Step1

sudo vi /etc/init.d/disable-transparent-hugepages

Step 2

#!/bin/sh
### BEGIN INIT INFO
# Provides:          disable-transparent-hugepages
# Required-Start:    $local_fs
# Required-Stop:
# X-Start-Before:    mongod mongodb-mms-automation-agent
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: Disable Linux transparent huge pages
# Description:       Disable Linux transparent huge pages, to improve
#                    database performance.
### END INIT INFO

case $1 in   start)
    if [ -d /sys/kernel/mm/transparent_hugepage ]; then
      thp_path=/sys/kernel/mm/transparent_hugepage
    elif [ -d /sys/kernel/mm/redhat_transparent_hugepage ]; then
      thp_path=/sys/kernel/mm/redhat_transparent_hugepage
    else
      return 0
    fi

    echo 'never' > ${thp_path}/enabled
    echo 'never' > ${thp_path}/defrag

    unset thp_path
    ;; 
esac 

Step 3

sudo chmod 755 /etc/init.d/disable-transparent-hugepages 

Step4

sudo chkconfig --add disable-transparent-hugepages

Reference:

http://serverfault.com/questions/688392/disable-thp-and-thp-defrag-on-centos-7-ec2-instance

View solution in original post

jtrujillo
Path Finder

Here is a way to keep THP turned off even after reboot.

Step1

sudo vi /etc/init.d/disable-transparent-hugepages

Step 2

#!/bin/sh
### BEGIN INIT INFO
# Provides:          disable-transparent-hugepages
# Required-Start:    $local_fs
# Required-Stop:
# X-Start-Before:    mongod mongodb-mms-automation-agent
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: Disable Linux transparent huge pages
# Description:       Disable Linux transparent huge pages, to improve
#                    database performance.
### END INIT INFO

case $1 in   start)
    if [ -d /sys/kernel/mm/transparent_hugepage ]; then
      thp_path=/sys/kernel/mm/transparent_hugepage
    elif [ -d /sys/kernel/mm/redhat_transparent_hugepage ]; then
      thp_path=/sys/kernel/mm/redhat_transparent_hugepage
    else
      return 0
    fi

    echo 'never' > ${thp_path}/enabled
    echo 'never' > ${thp_path}/defrag

    unset thp_path
    ;; 
esac 

Step 3

sudo chmod 755 /etc/init.d/disable-transparent-hugepages 

Step4

sudo chkconfig --add disable-transparent-hugepages

Reference:

http://serverfault.com/questions/688392/disable-thp-and-thp-defrag-on-centos-7-ec2-instance

Get Updates on the Splunk Community!

.conf25 Registration is OPEN!

Ready. Set. Splunk! Your favorite Splunk user event is back and better than ever. Get ready for more technical ...

Detecting Cross-Channel Fraud with Splunk

This article is the final installment in our three-part series exploring fraud detection techniques using ...

Splunk at Cisco Live 2025: Learning, Innovation, and a Little Bit of Mr. Brightside

Pack your bags (and maybe your dancing shoes)—Cisco Live is heading to San Diego, June 8–12, 2025, and Splunk ...