What is the easiest way to do a GAE/J datastore backup?
It looks like there is python bulkloader.py tool to do backup for Python apps, but what should I do to backup Java app? Is there any way to use python tool?
|
What is the easiest way to do a GAE/J datastore backup? It looks like there is python bulkloader.py tool to do backup for Python apps, but what should I do to backup Java app? Is there any way to use python tool?
| ||||
|
feedback
|
|
It is possible to use python tool bulkloader.py to create datastore backup of GAE Java app. You just have to set up remote_api by adding following lines to web.xml:
After that you can use bulkloader.py with --dump to download backup and with --restore to upload backup to datastore. | |||||||
feedback
|
|
Or if you can, you may wait for the datastore backup-restore feature in GAE upcoming versions as seen in the roadmap. http://code.google.com/appengine/docs/roadmap.html | ||||
|
feedback
|
|
Just set up remote_api for your app using the directions here - notably the tip:
Then, use the Python bulkloader with --dump or --restore. | |||||||
feedback
|