部署Django时如何将本地存储的数据移动到BigTable?
我正在使用 djangoappengine 在 Google App Engine 上部署 Django 应用程序。我已经在本地存储了很多数据,当我使用 GAE 部署项目时,它就消失了。如何将此数据从 dbindexer 转移到 BigTable?
谢谢。
I am using djangoappengine to deploy a Django app on Google App Engine. I have a lot of data already stored locally, and when I deploy the project with GAE it disappears. How do I get this data to carry over from the dbindexer to the BigTable?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 GAE 文档:上传和下载数据:
http://code.google.com/appengine/docs/python/tools /uploadingdata.html
它包含将本地存储的数据上传到 GAE 所需的信息。
Have a look at the GAE documentation re: uploading and downloading data:
http://code.google.com/appengine/docs/python/tools/uploadingdata.html
It contains the information you need to upload your locally stored data to GAE.