I have uploaded a 6 GiB file into Azure Blob storage Hot Tier, as 4 MiB blocks.
When I Put the file, it will create (6000/4) PutBlock * 1 PutBlockList call. which is 1501 API calls.
However, when I try to download the file, does it make 1500 GetBlob calls or just one GetBlob (or any other API calls) ?
What all are the API calls that happen when I try to download a large file of 4 MiB block size and how many of those API calls contribute to the cost?
I am not able to find a conclusive reference to this question in the documentation.