Romin
Romin

Reputation: 8816

Backing up Entities and related BlobStores in AppEngine

I have an AppEngine Java application and there are various entities that I want to backup. The catch is that some of the entities have BlobKeys saved in an attribute, and the data is put in the BlobStore.

My requirement is to backup the entire database i.e. entities and Blobstore data. The experimental Datastore Admin utility, I understand backs up only the entity data and not the BlobStore.

What do you suggest is the best way forward given that my current data storage is split across entities and blobstore?

Upvotes: 1

Views: 270

Answers (1)

Stuart Langley
Stuart Langley

Reputation: 7054

Put the blobs into Google Cloud Storage rather than the blobstore. Then you can use the tools provided (e.g. gsutil) to take a backup of the blobs.

There is no way to do this with blobs stored in blobstore.

Upvotes: 2

Related Questions