We have more than 15000 records in DynamoDB in which each contains two to three items. It has to update the existing data or insert new data if it does not exist. As per the documentation we cannot update multiple times per API call. So, it is not possible to use updateItem. What else would you suggest?
Share
Simply utilize the UpdateItem API with an asynchronous client and, if necessary, you can use multiple threads to accelerate the operation.