I would like to download all blobs as a single zipped file (or another way) to my computer. Anyway to do that? I use the python SDK.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There is a request deadline of 60 seconds for each web request sent to GAE. One request cannot have a response larger than 32 megs, nor can its handler generally use more than 128 megs of memory using the default quotas.
So hypothetically, if you have a very small application, maybe you could assemble a zip in-memory of all your blobs. But that’s not going to be scalable, and if your blostore is so small anyway, is it worth it? (No, it isn’t).
Bottom line is, very little in GAE is done all-at-once. You do things iteratively, over multiple requests.