I would like to create a mechanism to allow clients to subscribe to the contents of a blob-storage bucket.
Traditionally (HTTP 1.1) this would involve polling for new items, then issuing a GET requests for each item.
Mechanisms such as gRPC allow responses to be streamed, however that particular mechanism relies on messages being loaded into memory, limiting incoming messages to a few MB.
Does a "push" mechanism exist that would allow a server to transmit larger payloads to clients without requiring the client to request that specific payload?