I am writing a simple apache beam streaming pipeline, taking input from a pubsub topic and storing this into bigquery. For hours I thought I am not able to even read a message, as I was simply trying to log the input to console:
events = p | 'Read PubSub' >> ReadFromPubSub(subscription=SUBSCRIPTION)
logging.info(events)
When I write this to text it works fine! However my call to the logger
never happens.
How to people develop / debug these streaming pipelines?
I have tried adding the following line:
events | 'Log' >> logging.info(events)
Using print()
also yields no results in the console.