I have a C++ application (gcc 4.9.1, glibc 2.17) running on Linux (Centos 7). It uses various third-party libraries, notably Boost 1.61. As the application runs, I can watch
You can profile your memory allocation using valgrind --tool=massif ./executable
Check out the documentation at http://valgrind.org/docs/manual/ms-manual.html
Then once you have profiling data you can apply memory pools and other techniques. Since you already use Boost you can find several such tools in Boost.
Everything here is based on GNU libc implementation of malloc
running on Linux.
Test program below does not seem to give away any memory to the system after freeing memory (strace
does not show sbrk
calls that return memory back to the kernel):
int main()
{
static const int N = 5000000;
static void *arr[N];
for (int i = 0; i < N; i++)
arr[i] = std::malloc(1024);
// reverse to simplify allocators job
for (int i = N - 1; i >= 0; i--)
std::free(arr[i]);
}
Looks like glibc does not give away memory back at all. According to mallopt(3) man page, parameter M_TRIM_THRESHOLD
is responsible for giving away memory. By default it is 128kb, while test program allocates and frees 5 GB of memory. Looks like some other details of malloc
implementation do not let it free memory.
At the moment I can recommend following solutions:
MADV_DONTNEED
.malloc
or operator new
, instead allocate them from a memory pool of a size greater than M_MMAP_THRESHOLD
. Try destroing that pool afterwards if program logic allows this. Memory chunks of size greater than M_MMAP_THRESHOLD
are immediately released back to OS.mmap
and release memory back to OS using madvise and MADV_DONTNEED
/MADV_FREE
.MADV_FREE
to return memory back to the system (jemalloc?).I have found this old (2006) ticket on glibc's bugzilla. It says there that free
never returns memory back to the kernel, unless malloc_trim
is called.
Newer versions of free
seem to have code that executes internal systrim
function that should trim top of the arena, but I wasn't able to make it work.