I want to make client version of GAE app that store exact data of online version.(myapp.appspot.com) If i can use sdk instead, is any library or tools to sync online and sdk version? I try using bulkloader but i can't load downloaded data to local SDK? Please help.

link|improve this question

feedback

3 Answers

up vote 6 down vote accepted

See the docs for details on how to download and upload your entire datastore. Simply bulk download from production, then bulk upload to your local datastore.

Bear in mind, however, that the local datastore is not designed to handle large volumes of data - you may run into performance or memory issues.

link|improve this answer
Thanks Nick, where i can get more clear "how to" of doing bulk upload to local datastore? Really need to make this work for me. – Ivan Slaughter Apr 21 '10 at 19:59
1  
See the section 'loading data into the development server' on that page. You simply specify an additional command line argument. – Nick Johnson Apr 22 '10 at 9:06
Anyway, Nick.. i've installed 1.3.3 sdk and experiencing some error of bulkload about 6000 records, that stop on record 145. And exception throw when i want to use datastore viewer on local SDK console. What's wrong? – Ivan Slaughter Apr 22 '10 at 19:33
I can't possibly tell unless you tell me what the error is, and what the stacktrace is. – Nick Johnson Apr 22 '10 at 20:48
feedback

As explained in this article http://martinbrochhaus.de/post/6937702727/importing-google-app-engine-datastore-into-your-local

You simply need to enable the remote api

builtins:
- remote_api: on

Update your application then run the following commands:

appcfg.py download_data -A appName --url=http://appName.appspot.com/_ah/remote_api/ --filename=data.csv
appcfg.py --url=http://localhost:8080/_ah/remote_api/ --filename=data.csv upload_data <directory>
link|improve this answer
feedback

I think you will need to implement some system in your application in order to bulk import the data.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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