I've MemoryError exception when I try to upload files more than 2 gigs in size after the deployment on the server but with development server it works fine. Application served by Nginx + gunicorn, Nginx limitation for uploaded file size is about 6Gb. Below you can see the code fragment which handles uploading

destination = tempfile.NamedTempopraryFile(delete=False)
for chunk in f.chunks():
   destination.write(chunk)
destination.close()

Can temporary file cause MemoryError exceptions?

Sultan.

link|improve this question

Is your deployment server 32-bit? – jknupp Jan 6 at 17:22
What platforms are the dev server and production server? – Chris Lacasse Jan 6 at 18:19
@Chris Lacasse development is going on my macbook production server is running under ubuntu – sultan Jan 6 at 18:44
Could you provide full stack trace? – Alexey Savanovich Jan 6 at 20:14
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.