Reputation: 760
I am processing data using Google DataFlow is there any way to write the results to cloudsql ?
Upvotes: 1
Views: 881
Reputation: 3010
There is not currently a built-in way of doing this, but you can use the Sink API to write to arbitrary external systems.
Edit: The Sink API is likely overkill for writing to cloudsql; you can just directly make insert calls from a DoFn.
Upvotes: 2