In the AWS DynamoDB doc, it is written that 1 item will be stored in one partition based on its partition key.
The max size of a partition is 10GB.
Hence, in the case I am inserting lots of items using a composite primary key with the same partition key, how will it work when the sum of the items exceed 10GB ?
Will I be able to insert new items with same partition key ?