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?

feita há 2 anos1710 visualizações
1 Resposta
4
Resposta aceita

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
ESPECIALISTA
respondido há 2 anos
profile picture
ESPECIALISTA
avaliado há um mês

Você não está conectado. Fazer login para postar uma resposta.

Uma boa resposta responde claramente à pergunta, dá feedback construtivo e incentiva o crescimento profissional de quem perguntou.

Diretrizes para responder a perguntas