Azure Table 存储实体大小限制
Azure Table Storage entity size limitations
如何计算 table 实体的确切大小?
参考这个 very old blog post 公式是:
4 bytes + Len (PartitionKey + RowKey) * 2 bytes + For-Each Property(8 bytes + Len(Property Name) * 2 bytes + Sizeof(.Net Property Type))
其中
String – # of Characters * 2 bytes + 4 bytes for length of string
DateTime – 8 bytes
GUID – 16 bytes
Double – 8 bytes
Int – 4 bytes
INT64 – 8 bytes
Bool – 1 byte
Binary – sizeof(value) in bytes + 4 bytes for length of binary array
这仍然有效吗?网络上还有其他来源,其中 属性 名称未包含在计算中。
感谢您的简短确认。
是的,这仍然有效。
您可以在 Microsoft 技术社区中查看文档(发表于 12-12-2019 09:33 PM)Calculate the size/capacity of storage account and it services (Blob/Table) -> 本节 8。计算 azure storage 中每个实体的大小table.。我还附上截图如下:
如何计算 table 实体的确切大小? 参考这个 very old blog post 公式是:
4 bytes + Len (PartitionKey + RowKey) * 2 bytes + For-Each Property(8 bytes + Len(Property Name) * 2 bytes + Sizeof(.Net Property Type))
其中
String – # of Characters * 2 bytes + 4 bytes for length of string
DateTime – 8 bytes
GUID – 16 bytes
Double – 8 bytes
Int – 4 bytes
INT64 – 8 bytes
Bool – 1 byte
Binary – sizeof(value) in bytes + 4 bytes for length of binary array
这仍然有效吗?网络上还有其他来源,其中 属性 名称未包含在计算中。
感谢您的简短确认。
是的,这仍然有效。
您可以在 Microsoft 技术社区中查看文档(发表于 12-12-2019 09:33 PM)Calculate the size/capacity of storage account and it services (Blob/Table) -> 本节 8。计算 azure storage 中每个实体的大小table.。我还附上截图如下: