Yasser
Yasser

Reputation: 1808

Restoring production gae data to the dev server

Does anyone have a solution to restore production gae data to a dev server for testing? The Bulkuploader tool does not cater for models with Blob Properties. Any hints?

Upvotes: 1

Views: 120

Answers (1)

Nick Johnson
Nick Johnson

Reputation: 101139

The bulkloader works fine with blob properties, as long as you either use the --dump / --restore syntax, which doesn't require interpreting your models, or you take care to encode and decode blobs in the output format - for instance, by using base64.

Upvotes: 1

Related Questions