Search code examples
pythontornado

Using tornado to serve large files


We have a need for to use Tornado for serving large files (multiple GBs) that require authentication to access. From what we can tell, doing this with a get and chunking the files via Task will potentially be slow or block. Is there a recommended method for serving large files that require authentication?


Solution

  • I think this is the best solution. Note that is a combination of tornado and nginx.