Posts

Showing posts with the label apache-beam

Reading BigQuery Numeric Data Type From Table

Reading BigQuery Numeric Data Type From Table While Reading Data from BQ table Numeric Data Type is Still Not Supported in Apache Beam But Using API i can Use Numeric data type in Bq. So while Reading Data from Bq with below Snippet: BigQueryIO.readTablerow().from(options.valueprovider); I got an Exception Numeric is Not Supported Yet. Is there any other way I can read Data from BQ if Numeric Field is Present Except RestAPI Call. I don't think it is possible right now. You can follow the relevant feature request for Beam, however. – Elliott Brossard May 30 at 20:09 Hi, @ElliottBrossard That request i have seen but there is no response on from Apache side till now. Any alternative So, I can test the behaviour of Numeric Datatype in Dataflow Instead of RestAPI Call. I trying to use user-defined Coder also if it...