Django: Will large uploads hang the server?

I’m using:

  • Django
  • Django rest framework
  • Django Storages with s3

I’m wondering if large (50mb+) uploads to a RestFramework FileField will hang the server from processing requests while the upload completes.

Is this a concern? Should uploads be done somehow else?

Back to Top