I have a few related questions regarding memory usage in the following example.
If I run in the interpreter,
foo = ['bar' for _ in xrange(10000000)]
the real memory used on my machine goes up to
80.9mb
. I then,del foo
real memory goes down, but only to
30.4mb
. The interpreter uses4.4mb
baseline so what is the advantage in not releasing26mb
of memory to the OS? Is it because Python is "planning ahead", thinking that you may use that much memory again?Why does it release
50.5mb
in particular - what is the amount that is released based on?Is there a way to force Python to release all the memory that was used (if you know you won't be using that much memory again)?
I'm guessing the question you really care about here is:
No, there is not. But there is an easy workaround: child processes.
If you need 500MB of temporary storage for 5 minutes, but after that you need to run for another 2 hours and won't touch that much memory ever again, spawn a child process to do the memory-intensive work. When the child process goes away, the memory gets released.
This isn't completely trivial and free, but it's pretty easy and cheap, which is usually good enough for the trade to be worthwhile.
First, the easiest way to create a child process is with
concurrent.futures
(or, for 3.1 and earlier, thefutures
backport on PyPI):If you need a little more control, use the
multiprocessing
module.The costs are:
mmap
ped or otherwise; the shared-memory APIs inmultiprocessing
; etc.).struct
-able or ideallyctypes
-able).eryksun has answered question #1, and I've answered question #3 (the original #4), but now let's answer question #2:
What it's based on is, ultimately, a whole series of coincidences inside Python and
malloc
that are very hard to predict.First, depending on how you're measuring memory, you may only be measuring pages actually mapped into memory. In that case, any time a page gets swapped out by the pager, memory will show up as "freed", even though it hasn't been freed.
Or you may be measuring in-use pages, which may or may not count allocated-but-never-touched pages (on systems that optimistically over-allocate, like linux), pages that are allocated but tagged
MADV_FREE
, etc.If you really are measuring allocated pages (which is actually not a very useful thing to do, but it seems to be what you're asking about), and pages have really been deallocated, two circumstances in which this can happen: Either you've used
brk
or equivalent to shrink the data segment (very rare nowadays), or you've usedmunmap
or similar to release a mapped segment. (There's also theoretically a minor variant to the latter, in that there are ways to release part of a mapped segment—e.g., steal it withMAP_FIXED
for aMADV_FREE
segment that you immediately unmap.)But most programs don't directly allocate things out of memory pages; they use a
malloc
-style allocator. When you callfree
, the allocator can only release pages to the OS if you just happen to befree
ing the last live object in a mapping (or in the last N pages of the data segment). There's no way your application can reasonably predict this, or even detect that it happened in advance.CPython makes this even more complicated—it has a custom 2-level object allocator on top of a custom memory allocator on top of
malloc
. (See the source comments for a more detailed explanation.) And on top of that, even at the C API level, much less Python, you don't even directly control when the top-level objects are deallocated.So, when you release an object, how do you know whether it's going to release memory to the OS? Well, first you have to know that you've released the last reference (including any internal references you didn't know about), allowing the GC to deallocate it. (Unlike other implementations, at least CPython will deallocate an object as soon as it's allowed to.) This usually deallocates at least two things at the next level down (e.g., for a string, you're releasing the
PyString
object, and the string buffer).If you do deallocate an object, to know whether this causes the next level down to deallocate a block of object storage, you have to know the internal state of the object allocator, as well as how it's implemented. (It obviously can't happen unless you're deallocating the last thing in the block, and even then, it may not happen.)
If you do deallocate a block of object storage, to know whether this causes a
free
call, you have to know the internal state of the PyMem allocator, as well as how it's implemented. (Again, you have to be deallocating the last in-use block within amalloc
ed region, and even then, it may not happen.)If you do
free
amalloc
ed region, to know whether this causes anmunmap
or equivalent (orbrk
), you have to know the internal state of themalloc
, as well as how it's implemented. And this one, unlike the others, is highly platform-specific. (And again, you generally have to be deallocating the last in-usemalloc
within anmmap
segment, and even then, it may not happen.)So, if you want to understand why it happened to release exactly 50.5mb, you're going to have to trace it from the bottom up. Why did
malloc
unmap 50.5mb worth of pages when you did those one or morefree
calls (for probably a bit more than 50.5mb)? You'd have to read your platform'smalloc
, and then walk the various tables and lists to see its current state. (On some platforms, it may even make use of system-level information, which is pretty much impossible to capture without making a snapshot of the system to inspect offline, but luckily this isn't usually a problem.) And then you have to do the same thing at the 3 levels above that.So, the only useful answer to the question is "Because."
Unless you're doing resource-limited (e.g., embedded) development, you have no reason to care about these details.
And if you are doing resource-limited development, knowing these details is useless; you pretty much have to do an end-run around all those levels and specifically
mmap
the memory you need at the application level (possibly with one simple, well-understood, application-specific zone allocator in between).Memory allocated on the heap can be subject to high-water marks. This is complicated by Python's internal optimizations for allocating small objects (
PyObject_Malloc
) in 4 KiB pools, classed for allocation sizes at multiples of 8 bytes -- up to 256 bytes (512 bytes in 3.3). The pools themselves are in 256 KiB arenas, so if just one block in one pool is used, the entire 256 KiB arena will not be released. In Python 3.3 the small object allocator was switched to using anonymous memory maps instead of the heap, so it should perform better at releasing memory.Additionally, the built-in types maintain freelists of previously allocated objects that may or may not use the small object allocator. The
int
type maintains a freelist with its own allocated memory, and clearing it requires callingPyInt_ClearFreeList()
. This can be called indirectly by doing a fullgc.collect
.Try it like this, and tell me what you get. Here's the link for psutil.
Output:
Edit:
I switched to measuring relative to the process VM size to eliminate the effects of other processes in the system.
The C runtime (e.g. glibc, msvcrt) shrinks the heap when contiguous free space at the top reaches a constant, dynamic, or configurable threshold. With glibc you can tune this with
mallopt
(M_TRIM_THRESHOLD). Given this, it isn't surprising if the heap shrinks by more -- even a lot more -- than the block that youfree
.In 3.x
range
doesn't create a list, so the test above won't create 10 millionint
objects. Even if it did, theint
type in 3.x is basically a 2.xlong
, which doesn't implement a freelist.