Reputation: 71
Is it possible to connect to Google Cloud Datastore from Google App Engine Custom Managed VM for Java? I believe it is possible from the Standard Managed VM, but is it possible from the Custom ones?
Upvotes: 1
Views: 92
Reputation: 10811
Yes.
From Using the Java Managed VM Environment:
The Java runtime is available as a Managed VM standard runtime. A standard runtime supports a subset of the App Engine service APIs. Currently, Managed VMs support these services:
- Datastore
- Logging
- Memcache
- Search
- Task Queue
- URL Fetch
- Users
From Building Custom Runtimes: Accessing Cloud Platform services:
Runtimes in Managed VMs can access any Google or third party services via standard APIs.
You can also connect to Google Cloud Datastore from anywhere, using the Datastore REST API.
Upvotes: 2