From Working with Items: Java I know that it is possible to "update" an item using putItem. putItem will replace the entire item. However it is recommended to use updateItem because updateItem method will only modify the item attributes that you specify in the input, and the other attributes in the item will remain unchanged.
My question is 'is there any performance difference between replacing entire item and updating required fields in amazon dynamo db'
what is the impact on performance if the number of items to update is
- small
- large
A question on difference between two functions has been asked here. But i want a detailed answer regarding performance differences.