I am calling this line of code 50000 times in a console application running as webjob in azure:
await cloudBlockBlob.UploadFromFileAsync(sourceFile); // 50 kb files only
Should I care at all about setting ServicePointManager.DefaultConnectionLimit
to any other value than the default one?
Can I see somehow or calculate how many connections are used in average for the whole upload to judge wether the default value is fine or I need to increase the value?