Azure Table Storage transaction limitations

后端 未结 4 2010
灰色年华
灰色年华 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:26

    I would tend to believe that the maximum throughput is for an optimized load. For example, I bet you that you can achieve higher performance using Batch requests than individual requests you are doing now. And of course, if you use GUIDs for your PK, you can't Batch in your current test.

    So what if you changed your test to batch insert entities in groups of 100 (maximum per batch), still using GUIDs, but for which 100 entities would have the same PK?

提交回复
热议问题