Hello, planning to fetch items from dynamodb using...
# http4k
t
Hello, planning to fetch items from dynamodb using http4k-connect. I’m wondering if there will be an issue if we fetch too many items e.g. is there a maximum chunk size? Will also have a look at the code later today, thanks! 🙂
1mb for dynamodb
a
Query
and
Scan
are automatically paginated by DynamoDB.
BatchGetItem
I believe will error if you retrieve too many keys (> 25). I'm not aware of any binary response size limitations.