如果密钥不存在,我只想插入此行。如果密钥已经存在,我不想覆盖该行。
我的语法是:
new PutItemRequest().withTableName(myTableName).withItem(myItem).withConditionExpression(?)
根据the AWS docs,我会使用属性ATTRIBUTE_NOT_EXISTS。我也可以使用ComparisonOperator.NULL等。这是我能理解的。
语法提示?用ConditionExpression机制对此进行了一些解释?
答案 0 :(得分:6)
文档说ConditionExpression
取代旧版ConditionalOperator
(.NULL
)。你可以去两条路线,但你应该使用.withConditionExpression(...)
而不是操作数路线。
对于更复杂的表达式,还有https://java.awsblog.com/post/TxBG87QOQZRZJF/DynamoDB-XSpec-API。
但在你的情况下,它应该通过编写
来工作.withConditionExpression("attribute_not_exists(thingId)")
假设您的哈希键属性名为thingId
。这种方法也记录在这里:http://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_PutItem.html
要防止新项目替换现有项目,请使用包含attribute_not_exists函数的条件表达式,该函数的名称将用作表格的HASH键。由于每条记录都必须包含该属性,因此只有在不存在匹配项的情况下,attribute_not_exists函数才会成功。
答案 1 :(得分:4)
我们可以将Dynamo Db主键定义为(分区键和排序键)的组合。基于这个假设,这段代码会丢掉重复的记录。
PrimaryKey primaryKey = new PrimaryKey();
primaryKey.addComponent("Partition_Key", partitionId);
primaryKey.addComponent("Sort_Key",sortId);
Item item = new Item().withPrimaryKey(primaryKey).withString("username", userName).withLong("time", time);
try {
PutItemSpec putItemSpec = new PutItemSpec().withItem(item).withConditionExpression("attribute_not_exists(Sort_Key)");
table.putItem(putItemSpec);
} catch(ConditionalCheckFailedException ex) {
logger.error("Record already exists in Dynamo DB Table ");
}