Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Getting exception - "The property value is larger than allowed by the Table Service", what is the max size of a row in azure storage table

Getting exception "The property value is larger than allowed by the Table Service" while trying to insert a record in azure table storage.

Follwing is my table structure, string PartitionKey,String RowKey,string Id , string site, string name , byte[ ] content,
public DateTime createdtime

And i am trying to save 83755 bytes array ( 82KB ) in content field and other fields are max of 35 chars.

Can anyone please tell me what is the max size of a row for azure storage table?

Following is the url which i referred.. there its mentioned the row can have 1MB max. But mine doesn't exceed 100 KB.

Link

Thanks,

Gopinath

like image 259
James Gopinath Avatar asked Nov 16 '10 13:11

James Gopinath


Video Answer


1 Answers

Yes, each row may have up to 1MB. However, each byte array property or string property is limited to 64K. See this MSDN reference for specifics on each data type.

like image 51
David Makogon Avatar answered Sep 30 '22 04:09

David Makogon