Interesting. I run Fatdog64 on 8GB machines for years (and still do) but never encounter memory pressure problem ... but perhaps I'm just not aware of what missing. On the other hand, from the kernel doc that @fatdoguser referred, enabling THP (transparent huge pages) as "always" (as how Fatdog64 does it) has its performance benefits I guess it's down to the classical memory and speed trade-off again; and different RAM configurations and different workloads requires different tuning.
For others who are reading this thread and wondering about whether they need a special custom compiled kernel to do this, the answer is that you DON'T. Fatdog64 standard kernel can do both "always" and "madvise". The kernel config discussed in this thread only determines which one is used by default.
Standard Fatdog64 kernel "always" uses THP, but it can easily be configured to use "madvise" instead. Per the kernel documentation linked, it can be done in two ways:
- You can put the boot parameter
transparent_hugepage=madvise
- Or, once Fatdog is up and running, you can run the following command (perhaps put it in rc.local or something):
Code: Select all
echo madvise >/sys/kernel/mm/transparent_hugepage/enabled
And if you don't like it and watch to switch back to "always":
Code: Select all
echo always >/sys/kernel/mm/transparent_hugepage/enabled
Note that both (1) or (2) do not survive reboot. Each reboot resets the kernel to use the "always" option, unless overridden by (1) or (2).
A little clarification. The "madvise" option doesn't mean that the THP will be enabled by the kernel automatically when it thinks that it is appropriate. What it means is that the kernel leaves it to the application, to determine whether THP will be enabled or not. In other words, the application will have to tell the kernel to enable THP or not, and I would hazard that most applications never do this (except for large server applications, like database server perhaps).
That's why you can see the reduction in RAM-usage when this option is chosen, but on the other hand one could argue that enabling THP will provide performance benefits even for applications that don't explicitly ask for it. The only way to know is to run a benchmark, but most benchmark is artificial and doesn't always represent real-life usage; so in the end it comes back to my above statement: different RAM configurations and different workloads requires different tuning. Test your system with both options, and keep the one that provides you which the best performance.