Skip to content

Docs: Clarifying BatchWriteItem limits #3519

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

Merged
merged 4 commits into from
Oct 31, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,9 @@ default BatchGetResultPageIterable batchGetItem(Consumer<BatchGetItemEnhancedReq
* The additional configuration parameters that the enhanced client supports are defined
* in the {@link BatchWriteItemEnhancedRequest}.
* <p>
* A single call to BatchWriteItem has the same limit of items as the low-level DynamoDB API BatchWriteItem operation,
* considering all items across all WriteBatches.
* <p>
* <b>Note: </b> BatchWriteItem cannot update items. Instead, use the individual updateItem operation
* {@link DynamoDbTable#updateItem(UpdateItemEnhancedRequest)}.
* <p>
Expand Down Expand Up @@ -218,6 +221,9 @@ default BatchWriteResult batchWriteItem(BatchWriteItemEnhancedRequest request) {
* The additional configuration parameters that the enhanced client supports are defined
* in the {@link BatchWriteItemEnhancedRequest}.
* <p>
* A single call to BatchWriteItem has the same limit of items as the low-level DynamoDB API BatchWriteItem operation,
* considering all items across all WriteBatches.
* <p>
* <b>Note: </b> BatchWriteItem cannot update items. Instead, use the individual updateItem operation
* {@link DynamoDbTable#updateItem(UpdateItemEnhancedRequest)}.
* <p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -851,7 +851,7 @@ default void deleteTable() {
}

/**
* Describes a table in DynamoDb with the name defined for this {@link DynamoDbTable).
* Describes a table in DynamoDb with the name defined for this {@link DynamoDbTable}.
* This operation calls the low-level DynamoDB API DescribeTable operation,
* see {@link DynamoDbClient#describeTable(DescribeTableRequest)}
* <p>
Expand Down