what is the efficient way to insert streaming records into MySQL from google-dataflow using python.Is there any IO connector as in case of bigquery?I see that or bigquery has beam.io.WriteToBigQuery. how can we use similar io connector in cloud-MySQL
Asked
Active
Viewed 374 times
1 Answers
1
You can you JDBCIO
to read and write data from/to a JDBC database compliant database.
You can find the details here testWrite

Jayadeep Jayaraman
- 2,747
- 3
- 15
- 26
-
It seems like this is only for the Java SDK ? Do you know of any solution using the python SDK ? – LoicM Jul 23 '21 at 09:14