I have an intermediate table that holds send_timestamp and JSON data in its columns. I'm using dataflow to insert data from pubsub to this intermediate table.
Now my use case is to authenticate the data and flatten the nested JSON in the intermediate table into the relevant columns in my final Bigquery table between a particular timestamp and insert it. I used cloud function but the total messages are huge so it is not working out.
Can someone please recommend a solution and that requires less amount of time to make it work?
Thanks!