How do I access my AppEngine DataStore entities from my Compute Engine VM?

前端 未结 4 1146
借酒劲吻你
借酒劲吻你 2021-01-14 00:19

My app is running on App Engine, but I would like to access its NDB DataStore entities from my Compute Engine VM to do some processing and write the results back to the App

4条回答
  •  礼貌的吻别
    2021-01-14 01:07

    Google Cloud Datastore is kind of a standalone version of App Engine's datastore.

    Back to your problem, you have two options :

    1. Write a web-service to expose your entities from the App Engine app to the Compute Engine VMs. One option is Cloud Endpoints. Cloud Endpoints uses OAuth2 authentication and the Compute Engine VMs are shipped with OAuth2 service accounts that you can use to authenticate to the service.

    2. Use the App Engine remote API to access the Datastore. The remote API provides access to the Datastore as if you were in an App Engine instance. But by default the API requires you to provide the password of an App Engine amdin, so you might have to store your password in the Compute Engine VMs, which is not safe.

提交回复
热议问题