1MB quota limit for a blobstore object in Google App Engine?

前端 未结 3 556
野趣味
野趣味 2020-12-17 00:47

I\'m using App Engine (version 1.4.3) direct write the blobstore in order to save images. when I try to store an image which is larger than 1MB I get the following Exceptio

3条回答
  •  攒了一身酷
    2020-12-17 01:12

    The maximum object size is 2 GB but each API call can only handle a maximum of 1 MB. At least for reading, but I assume it may be the same for writing. So you might try to split your writing of the object into 1 MB chunks and see if that helps.

提交回复
热议问题