vote up 0 vote down star

I need to upload a potentially huge plain-text file to a very simple wsgi-app without eating up all available memory on the server. How do I accomplish that? I want to use standard python modules and avoid third-party modules if possible.

flag

3 Answers

vote up 2 vote down

wsgi.input should be a file like stream object. You can read from that in blocks, and write those blocks directly to disk. That shouldn't use up any significant memory.

Or maybe I misunderstood the question?

link|flag
these days the file has to be really huge to make memory a real problem anyway. – Aaron Watters Jul 16 at 1:32
When you run on a server, even if it has a couple of GB of memory, you also have loads of services up and running, etc, you don't want any file, even 100MB, to suddenly eat up a chunk of memory, because that means, even as a best case, that you had to throw out 100MB of your cache somewhere, which will slow down the servers. It may not crash anything, but a busy server might slow down just because of the upload. – Lennart Regebro Jul 16 at 7:39
vote up 1 vote down

If you use the cgi module to parse the input (which most frameworks use, e.g., Pylons, WebOb, CherryPy) then it will automatically save the uploaded file to a temporary file, and not load it into memory.

link|flag
vote up 0 vote down

Has python know how to deal with gzip annd zip file I would suggest you to compress your file (using a zip or gzip compliant application like 7-zip) on your client and then upload it to your server.

Even better : write a script that automaticaly compress your file and upload it. This is possible with the standard library.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.