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 larger allowed table service" while trying insert record in azure table storage.

follwing table structure, string partitionkey,string rowkey,string id , string site, string name , byte[ ] content,
public datetime createdtime

and trying save 83755 bytes array ( 82kb ) in content field , other fields max of 35 chars.

can please tell me max size of row azure storage table?

following url referred.. there mentioned row can have 1mb max. mine doesn't exceed 100 kb.

http://blogs.msdn.com/b/jnak/archive/2010/01/06/walkthrough-windows-azure-table-storage-nov-2009-and-later.aspx

thanks,

gopinath

yes, each row may have 1mb. however, each byte array property or string property limited 64k. see this msdn reference specifics on each data type.


Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

aspxgridview - Devexpress grid - header filter does not work if column is initially hidden -

c# - How to execute a particular part of code asynchronously in a class -