Aware IM uses MySQL INNODB tables, which seem to have a limitation of 8K per row.
However, this limit does NOT include VARCHAR, TEXT and BLOB field types. All Aware IM attributes of the PlainText type use either VARCHAR or TEXT field types, whereas Document and Picture types use BLOB's. This means that an instance of your object should not exceed 8K not counting Plain Text, Document and Picture attributes.
This leaves numbers, dates, duration and single references (which are internally implemented as integer foreign keys).
I can't imagine an object that uses 8K worth of numbers and dates!
If you do need such an object and restructuring is out of the question you need to use a different database which doesn't have the 8K restriction. Check out SQL Server - I don't know whether it has any restrictions on this.