This eventually consumes all my available memory and then the process is killed. I’ve tried changing the tag from schedule to ‘smaller’ tags but that didn’t make a difference.
What am I doing wrong / how can I process this large file with iterparse()?
import lxml.etree
for schedule in lxml.etree.iterparse('really-big-file.xml', tag='schedule'):
print "why does this consume all my memory?"
I can easily cut it up and process it in smaller chunks but that’s uglier than I’d like.
As
iterparseiterates over the entire file a tree is built and no elements are freed. The advantage of doing this is that the elements remember who their parent is, and you can form XPaths that refer to ancestor elements. The disadvantage is that it can consume a lot of memory.In order to free some memory as you parse, use Liza Daly’s
fast_iter:which you could then use like this:
I highly recommend the article on which the above
fast_iteris based; it should be especially interesting to you if you are dealing with large XML files.The
fast_iterpresented above is a slightly modified version of the one shown in the article. This one is more aggressive about deleting previous ancestors, thus saves more memory. Here you’ll find a script which demonstrates thedifference.