I have an object which I insert into documentDB. This object has two string properties of 4000 chars each.
If I choose the object's own id as the partition key I will never reach the 10GB limit but each partition will be only a few kb in size and will contain only one object.
I have other types of objects in the same collection. If I create a DocType
property for each different object type in the collection and choose that as the partition key all the objects with the DocType
of the object with the big properties mentioned above it will reach the size limit of their own partition.