I am new to Amazon DynamoDB. I was going through the documentation and here it clearly stats that ONE KEY CAN BELONG TO ONLY ONE PARTITION BUT ONE PARTITION CAN HAVE MULTIPLE KEYS. My Question here is:
Lets say my partition1 has two keys S1 and S2. On reaching the threshold like 10GB of size or 3000 RCU or 1000 WCU DynamoDB will create new partition and move S2 key in new partition i.e. partition1_0.
But how the key sharding will happen now since both partition has single key i.e partition1 has S1 and partition1_0 has S2 and if partition1 is again breaching the threshold and new partition is created can we expect key S1 in two partition.
Let me know if my question is not clear.