Azure Blob下载速度

时间:2016-10-20 17:45:16

标签: azure-storage azure-storage-blobs vhd

我的Azure存储容器中有一个137 GB blob .vhd文件,我正在尝试使用Azure门户下载它。为什么下载性能如此可怕?浏览器报告的下载时间> 12小时。为什么这么慢?可以采取任何措施让它更快下载吗?

更新 这是AzCopy的用法。我正在将VM映像从一个资源组复制到另一个资源组。

$srcImageURL = "https://vmimagevhds.blob.core.windows.net/spservers/"
$srcImageKey = "mykey=="

$destImageURL = "https://vmsdisktorage.blob.core.windows.net/vm-images"
$destImageKey = "myOtherKey=="

$imageFileName = 'SP2016ServerUnconfigured-osDisk.86ca1057-af4c-4920-9082-6ad155ed2734.vhd'

# Concatenate and AzCopy command
# Paste into the Azure 
$azCopyCmd = "AzCopy /Source:" + $srcImageURL + " /Dest:" + $destImageURL + " /SourceKey:" + $srcImageKey + " /DestKey:" + $destImageKey + " /s /pattern:" + $imageFileName

1 个答案:

答案 0 :(得分:1)

您可以尝试命令行工具AzCopy或其核心库Azure Storage Data Movement Library,它支持blob的超快速传输,并且可以暂停传输&恢复。