Azure表存储实体大小限制

Azure表存储实体大小限制,azure,azure-table-storage,Azure,Azure Table Storage,如何计算表实体的确切大小? 关于这一点,公式为: 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 byte

如何计算表实体的确切大小? 关于这一点,公式为:

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
这仍然有效吗?web上还有其他来源的属性名称未包含在计算中


谢谢您的简短确认。

是的,这仍然有效

您可以查看文档(在中发布)‎2019年12月12日09:33下午)在微软技术社区->本节8。计算azure存储表中每个实体的大小。。我还附上以下截图:


添加了azure标签以接触更多人;-)我相信计算公式仍然有效。