Написание DynamoDB "ИЛИ" запрос условия?

Я хочу запросить таблицу DynamodB с логическим или условием, например, SQL, например Get me all the items where attribute1 = "no" or attribute2="no"

Я пробовал с scanRequest.withScanFilter но все условия выполняются с помощью логического ANDing. Как мне сделать логическое ORing.?

3 ответа

Решение

Вы можете установить ConditionalOperator вашего ScanRequest на "ИЛИ". Значением по умолчанию является "И"

http://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_Scan.html

    ScanRequest scanRequest = new ScanRequest("tableName");
    scanRequest.setConditionalOperator(ConditionalOperator.OR);

    Map<String, Condition> scanFilter = new HashMap<String, Condition>();
    scanFilter.put("attribute1", new Condition().withAttributeValueList(new AttributeValue("no")).withComparisonOperator(ComparisonOperator.EQ));
    scanFilter.put("attribute2", new Condition().withAttributeValueList(new AttributeValue("no")).withComparisonOperator(ComparisonOperator.EQ));

    scanRequest.setScanFilter(scanFilter);
    ScanResult scanResult = dynamo.scan(scanRequest);

    for(Map<String, AttributeValue> item : scanResult.getItems()) {
        System.out.println(item);
    }

Вы также можете использовать скобки в выражении FilterExpression:

const params = { TableName: process.env.PROJECTS_TABLE, IndexName: 'teamId-createdAt-index', KeyConditionExpression: 'teamId = :teamId', ExpressionAttributeValues: { ':teamId': verifiedJwt.teamId, ':userId': verifiedJwt.userId, ':provider': verifiedJwt.provider }, FilterExpression: 'attribute_exists(isNotDeleted) and ((attribute_not_exists(isPrivate)) or (attribute_exists(isPrivate) and userId = :userId and provider = :provider))' };

Если вам случится знать HashKey значение, другой вариант будет использовать QUERY и FilterExpression. Вот пример с Java SDK:

Table table = dynamoDB.getTable(tableName);

Map<String, Object> expressionAttributeValues = new HashMap<String, Object>();
expressionAttributeValues.put(":x", "no");
expressionAttributeValues.put(":y", "no");

QuerySpec spec = new QuerySpec()
    .withHashKey("HashKeyAttributeName", "HashKeyValueHere")
    .withFilterExpression("attribute1 = :x  or attribute2 = :y")
    .withValueMap(expressionAttributeValues);


ItemCollection<QueryOutcome> items = table.query(spec);

Iterator<Item> iterator = items.iterator();

while (iterator.hasNext()) {
    System.out.println(iterator.next().toJSONPretty());
}

См. Определение условий с помощью выражений условий для получения более подробной информации.

Другие вопросы по тегам