[appengine-java] Re: Any ETA for a backup/restore facility?

2010-09-07 Thread luka
Thanks, now it's running smoothly. Next challenge is integrating it to JDO Is it doable ? On Aug 19, 9:01 pm, John Patterson jdpatter...@gmail.com wrote: Have you added appengine-testing-1.3.6.jar and appengine-api- stubs-1.3.6.jar to your project? On 18 Aug 2010, at 19:50, luka

Re: [appengine-java] Re: Any ETA for a backup/restore facility?

2010-09-07 Thread John Patterson
Great! There should be no problem storing objects on the production servers using JDO as the RemoteDatastore operates below the low-level API. I use it with Twig to send object data from my desktop to my live application and also to backup live object data locally to a file using

[appengine-java] Re: Any ETA for a backup/restore facility?

2010-09-07 Thread luka
Thanks! Now JDO runs smoothly with remote-datastore. All the Best Uri On Sep 7, 6:10 pm, John Patterson jdpatter...@gmail.com wrote: Great!  There should be no problem storing objects on the production   servers using JDO as theRemoteDatastoreoperates below the low-level   API.  I use it

Re: [appengine-java] Re: Any ETA for a backup/restore facility?

2010-08-19 Thread John Patterson
Have you added appengine-testing-1.3.6.jar and appengine-api- stubs-1.3.6.jar to your project? On 18 Aug 2010, at 19:50, luka wrote: Hi John, The project http://code.google.com/p/remote-datastore/ No longer compiles, since Google newest SDK removed the following classes/interfaces:

[appengine-java] Re: Any ETA for a backup/restore facility?

2010-08-18 Thread luka
Hi John, The project http://code.google.com/p/remote-datastore/ No longer compiles, since Google newest SDK removed the following classes/interfaces: com.google.appengine.tools.development.ApiProxyLocalFactory com.google.appengine.tools.development.LocalServerEnvironment Can you workaround

Re: [appengine-java] Re: Any ETA for a backup/restore facility?

2010-07-04 Thread John Patterson
I have had success uploading data in bulk from Java using this RemoteDatastore code: http://code.google.com/p/remote-datastore/ It is very easy to use and because it operates at the binary protocol buffer level it is very fast Here is an example of using it to upload data: public class

[appengine-java] Re: Any ETA for a backup/restore facility?

2010-07-01 Thread xcdesz
Ikai, I have read your post on using this bulkloader for java: http://ikaisays.com/2010/06/10/using-the-bulkloader-with-java-app-engine/ However, without a Python background, this stuff is Latin to me.. Any plans on making a java-friendly version of this Bulk Loader? I am one of the hundreds

[appengine-java] Re: Any ETA for a backup/restore facility?

2010-07-01 Thread mscwd01
I second this. On Jul 1, 2:17 pm, xcdesz xcd...@gmail.com wrote: Ikai, I have read your post on using this bulkloader for java: http://ikaisays.com/2010/06/10/using-the-bulkloader-with-java-app-eng... However, without a Python background, this stuff is Latin to me..  Any plans on making a

[appengine-java] Re: Any ETA for a backup/restore facility?

2010-07-01 Thread mscwd01
Before I go off to learn Python in order to backup the contents of my datastore, can I be certain the bulkloader will work with my Java app? I am not concerned with reusing the contents of the live datastore in a local environment, only that I can download a backup of the datastore and perform a

[appengine-java] Re: Any ETA for a backup/restore facility?

2010-06-30 Thread mscwd01
Thanks for replying Ikai. I assumed the Datastore dump and restore facility on the roadmap was referring to an import/export tool - a way for us to download the contents of the datastore for safekeeping and restoring it if needs be? Is this something different? Lastly, I would consider an

[appengine-java] Re: Any ETA for a backup/restore facility?

2010-06-29 Thread Matthew Blain
The bulk loader does indeed provide backup and restore functionality today. While the implementation is in Python it can talk to your Java server and the entities are shared between Java and Python. On Jun 28, 4:46 pm, mscwd01 mscw...@gmail.com wrote: Thanks for your replying guys, it would be

[appengine-java] Re: Any ETA for a backup/restore facility?

2010-06-28 Thread François Masurel
I really would like to have a convenient backup/restore solution on GAE too. Anybody interested, please star the following issue : http://code.google.com/p/googleappengine/issues/detail?id=776 On 28 juin, 13:16, mscwd01 mscw...@gmail.com wrote: Hey Google Employees, There has been a

[appengine-java] Re: Any ETA for a backup/restore facility?

2010-06-28 Thread Mike Dillon
Mscwd01, I'm not a google employee, but I have had success backing up our datastore and then restoring our datastore with the bulkloader utility. Currently the bulkloader is in the python sdk, so all you need to do is download that and then youll be able to do backups and restore from those

[appengine-java] Re: Any ETA for a backup/restore facility?

2010-06-28 Thread mscwd01
Thanks for your replying guys, it would be great if we could get an official Google response to update us on this as well though! I'll definitely have a look at the Bulk Loader in the meantime... On Jun 28, 1:52 pm, Mike Dillon mikedillo...@gmail.com wrote: Mscwd01, I'm not a google employee,