disable transparent hugepage (#153)
as recommanded by REDIS \# WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled.
This commit is contained in:
parent
b0df1b0667
commit
63e81f7d72
1 changed files with 5 additions and 0 deletions
|
@ -50,6 +50,11 @@ write_files:
|
|||
MAIL_PASS=
|
||||
MAIL_HOST=mail.indie.host
|
||||
MAIL_PORT=587
|
||||
- path: /sys/kernel/mm/transparent_hugepage/enabled
|
||||
permission: 0644
|
||||
owner: root
|
||||
content: |
|
||||
never
|
||||
coreos:
|
||||
update:
|
||||
reboot-strategy: off
|
||||
|
|
Loading…
Reference in a new issue