Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
PCollection<Void> instead of PDone #645
Comments
|
I second this, it would be incredibly useful. I think development of DataflowIO specifically now lives in the core Beam repo, https://github.com/apache/beam. I created this ticket to propose adding an option for the |
|
You are correct. This repository is for archival purposes only. Thanks for finding the Jira and linking to it! |
I'm not expecting this to be done. But I do want to highlight the UseCase I have for this.
My environment is as follows.
If I have the above 2, I cannot wait until finished on the pipeline and then publish a message, it must be handled.
currently I have replaced the resulting PDone of many Output interactions with PCollection on provided IO classes, this allows me to wait for the completion of say a save to BigTable or a save to Datastore and then publish a message.
Is there anyway of getting this functionality without changing the PDone into PCollection?