Stopping Dataflow stream job without deleting it's created PubSub subscription

Viewed 88

I'd like to stop a Dataflow streaming job that reads from PubSub, but retain it's created subscription.

Is there any way to do so?

1 Answers

When creating a PubSub source you can either provide a topic or a subscription. If you do not specify a subscription one will be created by Dataflow and managed for you. I don't think there's a way to keep the subscription created and managed by Dataflow alive after the pipeline.

Related