0
votes

Is it possible for a bucket in cloud storage to receive data/messages from pubSub? if yes then how??

Currently i am publishing messages to pubsub and i want to use pull delivery type (for that i have to provide endpoint URL for the bucket, which i couldn't find anywhere)

I found this somewhere in there docs

But it didn't work.

1

1 Answers

2
votes

No, sorry. GCS only accepts uploads of complete files via HTTP. You could build a small app that took incoming Pub/Sub messages and uploading them as separate GCS objects or batch them into groups of messages and upload those to GCS, but there's no such built-in functionality.

Can I ask you more about your use case? What are you trying to do?