I have a Dataflow job written using the Python SDK. But I want to trigger this Dataflow Job using Cloud Functions which should written in Go. I found a thread similar to this which has the function written in Python Trigger Dataflow with Python
My flow would be like below:
- PubSub Notification to trigger Cloud Functions
- Cloud Functions written in Go to start a DataFlow Job written in Python
I can make the Dataflow SDK as a template. Any pointers on how I can trigger the Python Dataflow templates from Go? Or is there a better way for it?
Many thanks!