Upload data to Microsoft Azure Storage Explorer

David Taylor 0 Reputation points
2024-06-24T15:14:15.6766667+00:00

How can I upload large encrypted data from my hard drive to Microsoft Azure Storage Explorer into a Blob Container? Each time I try, I encounter the error "failed, error: UnexpectedCancel (used SAS, overwrite enabled completed)" or "failed: 0 items transferred UnexpectedQuit (used SAS, overwrite discovery not completed)" or "failed, error: UnexpectedCancel (used SAS, overwrite enabled, discovery not completed)".

Azure Storage Accounts
Azure Storage Accounts
Globally unique resources that provide access to data management services and serve as the parent namespace for the services.
2,854 questions
Azure Data Explorer
Azure Data Explorer
An Azure data analytics service for real-time analysis on large volumes of data streaming from sources including applications, websites, and internet of things devices.
501 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Adharsh Santhanam 2,320 Reputation points
    2024-06-24T17:06:49.2966667+00:00

    Hello David Taylor, please try to create a new SAS token with the necessary permissions to the targeted resources like containers and objects. Use this newly created SAS token and try to upload the file again.

    Considering that you mentioned that this is a large encrypted file/data that you're trying to upload, consider adjusting the timeouts for the blob clients. You can possibly set timeouts to infinite timespan to avoid issues during large file uploads.

    If the above two doesn't work, consider using AzCopy instead which is a really useful tool for uploading large files and provides more control and flexibility.

    You may find this to be a useful read -- https://video2.skills-academy.com/en-us/azure/storage/common/storage-choose-data-transfer-solution

    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 person found this answer helpful.
    0 comments No comments