How to notify when DataFlow Job is complete
问题 I want to know on GAE when dataflow job is completed. I tries to make the following both pipeline 1. | 'write to bigquery' >> beam.io.WriteToBigQuery(...) | WriteStringsToPubSub('projects/fakeprj/topics/a_topic') 2. | 'write to bigquery' >> beam.io.WriteToBigQuery(...) | 'DoPubSub' >> beam.ParDo(DoPubSub()) # do Publish using google.cloud.pubsub But the both above code produces the following error: AttributeError: 'PDone' object has no attribute 'windowing' How to do procedure after