[google-appengine] Re: backup of datastore to local machine

2014-08-22 Thread Shawn Lee
Hi Rohith, We have an experimental idea of doing periodic backup in our app. It involves a combination of GAE APIs to achieve it. The following are the steps we used: 1) Identify the entities that need to be backup. This is because downloading all entities will incur unnecessary costs. To do

[google-appengine] Re: backup of datastore to local machine

2014-08-27 Thread Rohith D Vallam
Hello Shawn, Thanks a lot for your valuable suggestions and sorry for the delay in replying. Could you tell me some more details about the GAE Log and Remote API ? is there some link pointing more details about using these APIs? I came across another link for this purpose : http://gbayer.

[google-appengine] Re: backup of datastore to local machine

2014-08-27 Thread Shawn Lee
Hi Rohith, For the GAE log API, the official API can be found here: https://developers.google.com/appengine/docs/java/logs/ An example of the use of the log API can be found here: http://learntogoogleit.com/post/59602939088/logging-api-example I have personally used the function provided by the

Re: [google-appengine] Re: backup of datastore to local machine

2014-08-27 Thread Rohith D Vallam
Hello Shawn, Thanks for the links. Most of the links you have sent works for Python or Java. Is there any support for PHP as I am currently using PHP for development ? Thanks and Regards, Rohith On Wed, Aug 27, 2014 at 7:19 PM, Shawn Lee wrote: > Hi Rohith, > > For the GAE log API, the offic

Re: [google-appengine] Re: backup of datastore to local machine

2014-08-27 Thread Shawn Lee
Hi Rohith, Unfortunately, I have only used the Python and Java APIs for the GAE, so I can't really comment on the support for PHP, but I'm sure that there are definitely some similar APIs for PHP. Best regards, Shawn On Wednesday, 27 August 2014 22:05:18 UTC+8, Rohith D Vallam wrote: > > Hello