Of course. The download process in this product is such that it downloads a chunk, then uncompressed and installs it on disk. Then it downloads the next chunk.
The work is going to be split between network speed, CPU speed (for decompressing), and disk I/O speed (for writing the uncompressed files).
Anyone that is expecting to see their network bandwidth at 100% utilization solid throughout the process just doesn’t understand what is going on.
The CPU load to decompress the chunk is fairly low. But the disk I/O it takes to allocate and write about 10GB of files is not insignificant – especially those on spinning HDDs or even on early generation SSD.
One can use task manager and resource manager to get insight into utilization of these resources, and determine where the bottleneck is on a per-system basis.
If one were to compare Steam delivery, you’d notice steam likes to allocate the disk space up front and write ■■■■■files with NULL data. That is what the “pre-allocating disk” porting of the process is doing, and for some it can take just 20 seconds for a 50GB game, and others it can take 20 minutes.
After that the download phase begins, and you see your network utilization go through the roof and it makes you happy. You feel like you are getting your money’s worth out of your Internet speed, and its good. And there is very little disk IO at that point because it takes significantly less disk bandwidth to update an existing file with new data – so long as you don’t increase or decrease the file size.
This scheme is entirely different, and the download and disk I/O workloads are not separated out, and therefore disk I/O can become a big bottleneck.
Also, CPU and disk utilization are going to be a little higher if one has an endpoint security (a.k.a. antivirus) installed without an exclusion for where these files lives. And if one hasn’t installed a security provider, then one gets Windows Defender which definitely impacts this kind of operation.