I have a GAE application that creates some data in the Google Cloud Data Warehouse and stores some binary files in Google Cloud Storage - call the WebApp application.
Now I have another application running on Google Cloud Storage Google. Call the ComputeApp app.
Now ComputeApp should connect to Datastore, request the objects created by WebApp, and read the associated binary from Google Cloud Storage. Then CoumputeApp does some processing on the binary, thus transcoding to a different format and saving it back to the cloud storage and the update-related entity in the data store.
Now let me describe the problem:
How can ComputeApp interact with a DataStore? (I use Objectify for this) The only method I found is the GAE Remote API for Java. It works when connected to my WebApp running locally, but it does not work when connected to my WebApp deployed to GAE. Probably the reason is described here . But I do not know python, so I do not understand the solution described. Is there any other way my ComputeApp can contact the Datastore GAE service?
Thank you so much!
Edit: I fixed my typo as correctly understood.
java google-app-engine google-cloud-datastore google-compute-engine
Fipil
source share