Azure Table Storage transaction limitations

后端 未结 4 2015
灰色年华
灰色年华 2021-02-02 03:52

I\'m running performance tests against ATS and its behaving a bit weird when using multiple virtual machines against the same table / storage account.

The entire pipeline

4条回答
  •  长情又很酷
    2021-02-02 04:14

    I suspect this may have to do with TCP Nagle. See this MSDN article and this blog post.

    In essence, TCP Nagle is a protocol-level optimization that batches up small requests. Since you are sending lots of small requests this is likely to negatively affect your performance.

    You can disable TCP Nagle by executing this code when starting your application

    ServicePointManager.UseNagleAlgorithm = false;
    

提交回复
热议问题