TIP

💡 Learn more : AzCopy v10 (opens new window).

# Prevent AzCopy Uploads from maxing out Internet Connection Speed

What is AzCopy? AzCopy is a command-line utility designed for copying data to/from Microsoft Azure Blob, File, and Table storage, using simple commands designed for optimal performance. You can copy data between a file system and a storage account, or between storage accounts. (courtesy of docs)

You can download either the latest version of AzCopy on Windows (opens new window) or Linux (opens new window).

For this example, I'm going to use Windows. If you type AzCopy then you'll see there is a list of parameters available.

At first glance, you may think this is all but you can easily type azcopy /? to get a complete list which will show you additional parameters - which includes the one that we'll talk about shortly.

If you are using AzCopy to send large amounts of data to Azure on either a residential or small business internet pipe, or if for whatever reason you want to limit the concurrent-operations that the app uses then this tip is for you.

Simply use the /NC:"number-of-concurrent-operations" where number-of-concurrent-operations specifies the number of concurrent operations. (for example: azcopy /NC:1)

AzCopy by default starts a certain number of concurrent operations to increase the data transfer throughput. Note that large number of concurrent operations in a low-bandwidth environment may overwhelm the network connection and prevent the operations from fully completing. Throttle concurrent operations based on actual available network bandwidth.

The upper limit for concurrent operations is 512.

Applicable to: Blobs, Files, Tables
1
2
3
4
5

For a complete list of parameters and additional information then visit docs (opens new window)