cookie-cutter icon indicating copy to clipboard operation
cookie-cutter copied to clipboard

Ability to upload large files to Blob using BlobClient

Open Rahulkala opened this issue 5 years ago • 0 comments

Currently BlobClient uses createBlockBlobFromText method to upload data to blob. We are hitting a limitation since it can only upload 64MB of data. Getting below error: RangeError: createBlockBlobFromText requires the size of text to be less than 64MB. Please use createBlockBlobFromLocalFile or createBlockBlobFromStream to upload large blobs. It would be great if we can use createBlockBlobFromLocalFile method to upload blob as it supports large blob.

Similarly if we can add the same methods for reading as well.

Rahulkala avatar Feb 28 '20 15:02 Rahulkala