I am trying to export Cloud Pub/Sub streams to Cloud Storage as described by this post by Spotify Reliable export of Cloud Pub/Sub streams to Cloud Storage or this post by Google Simple backup and replay of streaming events using Cloud Pub/Sub, Cloud Storage, and Cloud Dataflow
PubSub creates oubounded PCollection
(or SCollection
in SCIO) but saveastextfile
requires BoundedCollection
.
Is there any way to overcome this ?