我正在考虑将Google基础架构和Google App Engine用于我的一个项目。我希望的一件事是我可以使用Google App Engine Datastore作为Big Query的数据源,但显然情况并非如此。有没有这样的配方?Google App Engine和Google Big Query
1
A
回答
2
Google Big Query目前仅支持csv导入。请参阅https://developers.google.com/bigquery/docs/developers_guide#tables。您可以直接上传文件或从Google云端存储中导入文件。
您可以做的是首先将您的数据存储实体转换为CSV文件,然后将其导入到您的数据集中。
1
Google Big Query有自己的数据存储库,您需要将数据保存(追加)到它上面。
AppEngine数据存储只能在AppEngine应用程序中使用。
相关问题
- 1. Google Big Query和Tableau
- 2. MySQL to Google Big Query
- 3. Google App Engine - Big Query - Python无法找到库google.cloud
- 4. Google App Engine:在数据存储上使用Big Query?
- 5. Google Big Query data measurement
- 6. Google App Engine和Google Storage
- 7. Google App Engine和Google Calendar API
- 8. Google App Engine和Google Apps Marketplace
- 9. Lucene和Google App Engine
- 10. Google Checkout和App Engine
- 11. Google App Engine和Android?
- 12. Xubuntu和Google App Engine
- 13. Google App Engine和android
- 14. Google App Engine和Restlet
- 15. Google App Engine和dos.xml
- 16. Classes和Google App Engine
- 17. Google App Engine和OpenID
- 18. Google Big-query api 403-Forbidden Exception
- 19. Google Big Query的列大小
- 20. C# - Google like query engine.-
- 21. Google App Engine HTTP
- 22. Google App Engine - java.security.AccessControlException?
- 23. Google App Engine
- 24. Google App Engine APNS
- 25. App Engine + Google Documents
- 26. Google App Engine ASP.net
- 27. Google App Engine ThreadSafe
- 28. Google App Engine Memcache
- 29. Google App Engine Blob
- 30. Google App Engine Geohashing
这是一个从App Engine获取数据并将其推送到Big Query中的示例:http://code.google.com/p/log2bq/。它正在发送日志数据,但应该可以将其调整为将数据存储区数据发送到Big Query中。 – 2012-07-25 19:13:14
文章+视频+演示如何使用App Engine MapReduce将数据从数据存储移动到BigQuery - > https://developers.google.com/bigquery/articles/datastoretobigquery – 2012-07-25 20:11:49