I am reading bigtable in my Pcollection and then trying to convert the read records to Avro Generic Records .Is it possible to directly change read from big table to generic records without writing any function in the pCollection ?
For example : i am trying to do something like below
pipeline
.apply("Read from Bigtable", read)
.apply("Transform to generic records using Avro.IO", AvroIO.<<>>
(read));