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.