question

AmruthavarshiniM-3381 avatar image
0 Votes"
AmruthavarshiniM-3381 asked AmruthavarshiniM-3381 commented

What is base64 blob storage?

Hi all,

I am uploading my files to azure blob storage using Javascript. I am not converting it into base64 format. What is the advantages and disadvantages if I convert my files to base64 before uploading into azure blob containers?

And I have few questions regarding this

  1. How/when/where does the conversion to and from base64 take place?

  2. File type/size considerations? Performance concerns with large file?

  3. Does this add an extra layer of security?


azure-storage-accountsazure-blob-storage
· 1
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

@AmruthavarshiniM-3381 Thanks for raising this question! Firstly, apologies for the delay in responding here and any inconvenience this issue may have caused. I am looking into this thread!


0 Votes 0 ·

1 Answer

SumanthMarigowda-MSFT avatar image
0 Votes"
SumanthMarigowda-MSFT answered AmruthavarshiniM-3381 commented

@AmruthavarshiniM-3381
1. Specifying the version number of the SDK will be necessary. However, the storage SDKs generally do not alter the blob content being uploaded in any way.
2. Base 64 takes more space than whatever bytes you converted and it takes linear time to convert bytes to a base64 string.
3. It does not.

May I know what exactly are you trying to accomplish? You would want to base64 encode their data before storing it and unless they have a very specific reason for doing this I’d recommend against it.


Hope this helps!
Kindly let us know if the above helps or you need further assistance on this issue.


Please do not forget to "Accept the answer” and “up-vote” wherever the information provided helps you, this can be beneficial to other community members.

· 1
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

Thank you @Sumarigo-MSFT. We were just looking for any benefits we get from storing file in Base64. Your answer is helpful and I got to know that there is no requirement of base64 encoding in our case.

0 Votes 0 ·