我正在处理 ConditionalCheckFailedException,但我不确定哪个条件未通过检查。当我打开调试器并检查异常变量时,我找不到任何有用的信息。
下面是我的 Java Dynamo 客户端代码。我正在尝试在以下情况下使用 DynamoDBSaveExpression 对 DynamoDB 进行有条件的写入:
表中的客户日期早于我尝试写入的当前客户日期(存储为 EPOCH 时间)表中不存在条目(我检查 FEEDBACK_KEY,因为它是我表中的主键)当我将第一个条目写入表中,它可以工作,但是当条目存在时更新,我得到 ConditionalCheckFailedException 异常。有任何想法吗?
final DynamoDBSaveExpression expression = new DynamoDBSaveExpression();
final Map<String, ExpectedAttributeValue> expectedAttributes =
ImmutableMap.<String, ExpectedAttributeValue>builder()
.put(ThemesMessageEligibility.TableKeys.CLIENT_DATE,
new ExpectedAttributeValue()
.withComparisonOperator(ComparisonOperator.LT)
.withValue(new AttributeValue().withN(clientDate)))
.put(ThemesMessageEligibility.TableKeys.FEEDBACK_KEY,
new ExpectedAttributeValue(false))
.build();
expression.setExpected(expectedAttributes);
expression.setConditionalOperator(ConditionalOperator.OR);
// Conditional write if the clientDate is after the dynamo's client Date
try {
dynamoMapper.save(themesFeedbackComponentContainer, expression);
} catch (ConditionalCheckFailedException ex) {
...
}