Problem: We want to allow user to upload images and save them in azure blob. In case if azure blob is down then we will loose these image so we want to put a Queue between the Client and Blob.
Idea is that when user upload the image, it should go into Queue and then it should be picked up from the backend API to put into the Azure blob storage.
Azure Storage Queue and Service Bus has size limit of 64kb and 1mb only.
what other options I can use to achieve this ?
*Edited with more info.