How to determine if a DynamoDB item was indeed deleted?(如何确定是否确实删除了 DynamoDB 项目?)
问题描述
DynamoDB 提供了用于删除项目的 API.在返回的 DeleteItemOutcome 和 DeleteItemResult 中没有字段或方法来确定是否找到了 key 并且该项目确实被删除了.
DynamoDB provides an API for deleting items. In the returned DeleteItemOutcome and DeleteItemResult there is no field or method to determine if the key was found and the item was indeed deleted.
确定该项目是否确实存在和删除的唯一方法是请求项目的属性:
The only way to find out if the item was indeed present and deleted, is to request the items' attributes:
新的 DeleteItemSpec().withPrimaryKey("key","1").withReturnValues(ReturnValue.ALL_OLD))
但是,这会消耗额外的读取容量.有没有更有效的方法来检查删除结果 - 找到和删除的键/无效键?
This, however, consumes extra read capacity. Is there a more efficient way to check the delete result - key found and deleted / invalid key?
推荐答案
DeleteItemResult#getAttributes() 是 方法 来确定一个 DeleteItem 操作实际上已经删除了一个项目,或者没有.
DeleteItemResult#getAttributes() is the way to determine if a DeleteItem operation has actually deleted an item, or not.
如果您指定 ReturnValue.ALL_OLD 并且项目被删除,则返回项目属性映射,否则返回空映射.这是确定操作是否成功的唯一方法.API 不会返回其他确认信息.
If you specify ReturnValue.ALL_OLD and the item was deleted, a map of item attributes is returned, otherwise and empty map is returned. This is the only way to know for sure if the operation was successful. No other confirmation is returned by the API.
请记住,DeleteItem 操作每次至少会消耗 1 个写入容量单位.如果删除的item大于1KB,消耗的容量会大于1.
Keep in mind that a DeleteItem operation will consume a minimum of 1 write capacity unit every time. If the deleted item is larger than 1KB, consumed capacity will be more than 1.
供参考: http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/CapacityUnitCalculations.html#ItemSizeCalculations.Writes
这篇关于如何确定是否确实删除了 DynamoDB 项目?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何确定是否确实删除了 DynamoDB 项目?
基础教程推荐
- 在springboot中如何给mybatis加拦截器 2023-04-29
- 将 Windows 证书导入 Java 2022-01-01
- 控制台应用程序中的 Java 键盘输入解析 2022-01-01
- Maven:无效的目标版本:10 2022-01-01
- 如何在相机中应用自定义滤镜 [Surfaceview 预览]. 2022-01-01
- 在java中使用xpath和selenium解析HTML表格数据 2022-01-01
- Java ECDSAwithSHA256 签名长度不一致 2022-01-01
- 将 double 转换为 Int,向下舍入 2022-01-01
- doFilter()是在servlet的工作完成之前还是之后执行的? 2022-01-01
- JPA惰性列表上的流 2022-01-01
