-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DynamoDB: Support batching on full-load operations #249
Comments
Other than the snippet above, which may effectively just emulate creating batches of data manually, there also appears to be a native operation variant on the DynamoDB API, called I did not look into the details yet, so please advise and correct me where I am wrong. Thank you very much. 🍀 |
Contrary to my previous assessment, the BatchGetItem and BatchExecuteStatement operations are not about retrieving multiple items in bulk, but rather about submitting multiple queries within a single request. Using the Scan operation, together with Pagination, like displayed in the code snippet in the OP, is absolutely the right choice. |
An upcoming patch will implement the canonical Scan+Pagination procedure. |
Problem
The DynamoDB Table Loader does not do bulk loading yet. It needs to be implemented to transfer larger amounts of data more efficiently.
Details
The text was updated successfully, but these errors were encountered: