Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to trigger a Google Cloud Function with a Google Datastore event?

It seems like you can get events from Google Cloud Platform, but not from Google App Engine services. Why is that? Thanks

like image 679
omrikap Avatar asked Mar 15 '17 08:03

omrikap


1 Answers

Cloud Functions is a new service on GCP, whereas Cloud Datastore is a high query per second (QPS) service that is more sensitive to latency changes.

This means it's still early and integration with Cloud Datastore is more complex than most other systems. It's been looked into, but nothing to announce yet.

like image 133
Dan McGrath Avatar answered Sep 29 '22 06:09

Dan McGrath