vote up 2 vote down star
2

I've got some data up on Google App Engine's live datastore, but would like to have a local copy as well for local development. What's the best way to do an occasional sync?

flag

2 Answers

vote up 1 vote down check

There's no trivial way to do this, but there are some possibilities:

  • Use the official bulk uploader (from the GAE-Python SDK) if your application is in Python (but not Django)
  • Use Gaebar if your application is in Django
  • Use the Datanucleus REST API if your app is in Java

You can also try some other open source projects meant to solve this problem. AppRocket was a promising one, but there's only one commiter to the project and there is no activity in the past months...

Also, star issues 59 and 776 to get this included officially by google.

link|flag
Thanks for the information. I've messed with the bulk uploader, but it doesn't support setting key name at all. Alas, my app is neither Django nor Java, so it looks like I'll have to work out some custom solution. What a pain. – Christian May 26 at 12:28
Good luck! I guess it will be tricky when dealing with primary keys (which in most projects are auto-generated). – ivo May 26 at 21:13
vote up 0 vote down

same problem here there should be an easy solution :)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.