Google App Engine has a way to dump and restore data, using the bulkloader.py command from Python SDK.
To be able to use it with a Java application, first we’ve to map the RemoteApiServlet in web.xml
<servlet> <servlet-name>RemoteApi</servlet-name> <servlet-class>com.google.apphosting.utils.remoteapi.RemoteApiServlet</servlet-class> </servlet> <servlet-mapping> <servlet-name>RemoteApi</servlet-name> <url-pattern>/remote_api</url-pattern> </servlet-mapping>
Here is the command to dump all the instances of . . . → Read More: Dumping and Restoring Data with Google App Engine
Recent Comments