I'm trying to write a program that downloads a large zip file, unzips it in memory, and then pushes the contents (a series of CSV files) to MongoDB. However, I keep hitting a point where the program halts and prints
FATAL ERROR: CodeRange::GetNextAllocationBlock Allocation failed - process out of memory
I've been setting buffers to null when they're no longer in use, setting records to null once they're in Mongo, and preventing more than one file from processing at a time. None of this has helped. Are there any more tricks to releasing memory?
freelistthough... more research to be done! – Ryan Muller Aug 9 '12 at 13:08