kylemart
kylemart

Reputation: 1276

Limit upload size of a blob to Azure Blob Storage

I'd like to be able to serve up SAS URIs to clients so they may upload large blobs to Azure Blob Storage. As far as I can tell, there's no way to do this while limiting the size of blobs being uploaded. I've thought about introducing an intermediary proxy service that inspects the size of the payload before uploading it to storage (and thus giving up on the SAS URI approach), but I feel like there must be another way. Thoughts?

Upvotes: 4

Views: 3653

Answers (1)

Jay Gong
Jay Gong

Reputation: 23792

Per my investigation , sas uri could control permission ,period, access type, IP address etc. However, it could not limit the size of individual upload blob. Please check this feedback.

I think you could create individual container for the application to limit the total size of storage space. You could check the limitation doc.Or you could implement this limit in your application.

Hope it helps you.

Upvotes: 1

Related Questions