Open fashaikh opened 6 years ago
I can confirm we use these settings with great success in our application to improve throughput.
// https://stackoverflow.com/questions/12750302/how-to-achive-more-10-inserts-per-second-with-azure-storage-tables/12750535#12750535
ServicePointManager.UseNagleAlgorithm = false;
ServicePointManager.Expect100Continue = false;
https://docs.microsoft.com/en-us/azure/storage/common/storage-performance-checklist says
The article shows upto 90% TCP throughput improvements. Although this article is old, I couldnt find newer recommendations aroudn this. Also didnt see anything related to it in our repos, so thought it might be interesting to investigate.
The setting can be applied in code or in config file. `