It does not insert all my requests into a DynamoDB table.

0

Hi, how are you? I have a problem that I don't know how to solve. I make several inserts to the DynamoDB table about 12 records of which only 5 or 6 were entered, said inserts give me a correction status but the revisions in the table after a moment and only display some of them. He made the inserts with the PutItem, BatchWriteItem, and only observed half of the records that he sent them to insert. If I send them to save to a new table, they are all entered, but due to business logic, I cannot create a new table for those insertions. Thanks for your help. Greetings

  • Do the items eventually show up? Or they never show up?

已提问 2 年前1710 查看次数
1 回答
4
已接受的回答

Hi, if you are sending PutItem requests to DynamoDB and your receive a success 200 status code, you can be certain the item was written. As DynamoDB is a NoSQL Database, where the items must be unique based on the partition/sort key combo, I believe some of your items may be overwritten as the use the same key?

Also, when you make writes with BatchWriteItems and you have a batch of 20 items, if only 1 of these items succeed, you will receive a success 200 status. The other 19 records which may have been rejected for various reasons will show up in the UnprocessedItems key of the response payload, you must re-drive these items manually. It is suggested to ensure you use exponential backoff and retry logic to re-drive UnprocessedItems.

profile pictureAWS
专家
已回答 2 年前
profile picture
专家
已审核 1 个月前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则