python - How to write to cloudstorage using task chaining, The blobstore Files API did a nice job -
python - How to write to cloudstorage using task chaining, The blobstore Files API did a nice job - using blobstore file api, write very big blobfiles: create blobfile read info datastore , write (append) blobstore file pass datastore page cursor , blobstore file (next) task ....use other tasks same purpose and finalize blobstore file now gae gcs client cannot append , finalize. how write big files gcs without compose. compose not part of gcs client. files api still works fine, has been deprecated. below blobstore solution using task chaining: class blobdata(webapp2.requesthandler): def post(self): page = int(self.request.get('page', default_value='0')) info = data.get_data(.....) blob_file = self.request.get('blobfile', default_value='none') if blob_file == 'none': file_name = files.blobstore.create(mime_type='text/...', ...