Azure Blob下载速度



我在Azure存储容器中有一个137 GB的blob .vhd文件,我试图使用Azure门户下载它。为什么下载性能如此糟糕?浏览器报告下载时间>12小时。为什么它这么慢?有什么办法可以让它下载得更快吗?

下面是AzCopy的用法。我正在将虚拟机映像从一个资源组复制到另一个资源组。

$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

您可以尝试命令行工具AzCopy或其核心库Azure存储数据移动库,它支持超快速传输blob,并且可以暂停传输&恢复。

相关内容

  • 没有找到相关文章

最新更新