I am working on an app wherein users will create a data object and upload it to storage. They will then download it later, make some changes, and upload those changes (as a patch to the original data). Is there a way to use the blobstore or cloud storage to upload the patch and have it applied so that my users do not have to upload the whole data object again (which can grow quite large)?
Share
You can’t issue incremental updates to data in Blobstore or Cloud Storage. To apply a patch, you will have to apply it yourself and overwrite the data in the blob or object. Relevant information is below.
From the Concepts and Terminology section of the Google Cloud Storage docs:
From the Blobstore Introduction section: