You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 16, 2022. It is now read-only.
I realize that there is a 32 meg limit on response from app engine.
What is the solution for an gae project to upload and download large files ?
Can such an example be added to the python sample ?
The text was updated successfully, but these errors were encountered:
Unfortunately, solutions here are tricky, given the hard cap. Your best bet might be to use a task queue, copying 32 megabytes at a time, then picking the transfer and enqueuing it for the next part of the transfer. That's a lot of effort to download an object, but it may be your best bet if your data needs to go through app engine.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I realize that there is a 32 meg limit on response from app engine.
What is the solution for an gae project to upload and download large files ?
Can such an example be added to the python sample ?
The text was updated successfully, but these errors were encountered: