Azure Table 存储 - 501 NotImplemented on CreateIfNotExistsAsync

Azure Table Storage - 501 NotImplemented on CreateIfNotExistsAsync

我正在使用一个存储帐户和一个我知道可以工作的帐户 key/creds:我有一个使用完全相同的连接字符串的 blob 容器,它工作正常。

我正在有效地做到这一点:

CloudStorageAccount.Parse(_connectionString).CreateCloudTableClient().GetTableReference("MyTableHere").CreateIfNotExistsAsync().Wait()

(我不在异步场景中,因此等待。与此异常无关)

它抛出聚合异常,单个内部异常为:

Unexpected response code, Expected:OK or NotFound, Received:NotImplemented

异常深:

The requested operation is not implemented on the specified resource. RequestId:30593945-0002-0019-0dde-3e30370003322 Time:2016-11-16T07:58:01.2396651Z - 在此处匿名了请求 ID。

想不出还能尝试什么!在此处的文档中找不到关于任何其他要求的任何提及。

并非所有类型的存储帐户都支持表(以及队列和文件)。从今天开始,Blob Storage 种存储帐户不支持表、队列和文件。

同样对于常规存储帐户,具有以下冗余类型的帐户不支持这些服务:ZRS(仅支持 Block/Append blob)和 Premium LRS(仅支持 Page blob)支持)。