Is Azure CloudTable thread-safe? Is Azure CloudTable thread-safe? azure azure

Is Azure CloudTable thread-safe?


CloudStorageAccount

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

CloudTableClient

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.


  1. Unfortunately, they are not thread safe
  2. Fortunately, it doesn't matter at all:The communication is based on HTTP, which means no connection is reused and everytime the app just creates a new HTTP connection. So just recreate everything per thread. And I have tested even in one thread, recreating everything for each query just costs nothing more.