I have been hosting my Django backend service on Google App Engine for the past couple years and it has auto-scaled beautifully. Recently however, I have run in into an interesting roadblock.
Use case: Mobile users upload videos/images to my Django App Engine backend via multipart/form data. Thumbnails are extracted from the videos and all the media received is then saved into Google Cloud Storage. This worked perfectly until I tested uploading a longer video. Strangely, app engine did not even register the request. I have tried various times with various videos all longer than 30 seconds and encountered the same anomaly.
Apparently, the culprit is that App Engine blocks requests greateer than 32MB. Is this the end of the world for video upload to google cloud storage?
Is there anyway to change this 32MB limit? Or am I stuck with forcing users to upload media only under 32MB?