amazon-dynamodb

How to get around DynamoDb BatchGetItem


I have thousands of keys to retrieve from Dynamo DB each key will get 1 item its based on primary key. But BatchGetItem has limitations on number of keys we could pass which is just 100. Any better way to pull thousands ?


Solution

  • There is no way to bypass this hard limit. You can loop through it and make multiple calls of course, but for a single batch command you cannot bypass this limit.