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 项目?
基础教程推荐
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 降序排序:Java Map 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01