Are large zip files restricted from upload to Blob Storage?

Paul Richards 0 Reputation points
2023-03-17T19:16:43.1033333+00:00

When uploading a somewhat large zip file (6GB) to an Azure Blob store using either the portal or the Azure Storage Explorer the upload fails within a few seconds. If I import a small zip file it works fine or if I change the file extension to something else like *.abc then the upload is successful. After I upload the *.abc file I can then rename it to *.zip and that works fine. Seems like the combination of being a large *.zip file is being restricted for some reason that I can't find reference to.

Azure Storage Explorer
Azure Storage Explorer
An Azure tool that is used to manage cloud storage resources on Windows, macOS, and Linux.
291 questions
Azure Blob Storage
Azure Blob Storage
An Azure service that stores unstructured data in the cloud as blobs.
3,192 questions
{count} votes

1 answer

Sort by: Most helpful
  1. shiva patpi 13,366 Reputation points Microsoft Employee Moderator
    2023-03-18T00:26:47.1333333+00:00

    Hello @Paul Richards ,

    There are no restrictions for the zip file. I just tested locally by uploading .zip file of more than 7. GB and it went through successfully.

    User's image

    I used default block size of 4 MiB , you can try using:

    User's image

    You can also try using: azcopy - https://learn.microsoft.com/en-us/azure/storage/common/storage-use-azcopy-v10

    azcopy copy "C:\pathtolarge\file.zip" "https://mystorageaccount.blob.core.windows.net/mycontainer/largefile.zip" --block-size-mb 1024 --put-md5

    Regards,

    Shiva.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.