简体   繁体   中英

Uploading Big Files to Google App Engine with Blobstore

Im thinking of building an app for uploading large files to the GAE but I have the following restrictions:

The file upload can be stopped at any time and continued later. The file can be of any size.

I can have a client-side app, like an 'uploader app' that saves the state of the upload but Im not sure how to do it

So my real question is, how to upload big files to the GAE with the posibility of pausing the upload (So the user can finish uploding tomorrow, for example).

This isn't possible with the App Engine blobstore, unless you were to break the file into chunks, and upload each chunk separately. Files have to be uploaded all at once, or not at all.

This seems like a pretty unlikely use-case, though. Does anyone ever actually want to do this?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM