如何在DynamoDB中查询不存在的(null)属性

时间:2015-12-18 05:38:23

标签: node.js amazon-web-services amazon-dynamodb

我正在尝试查询DynamoDB表以查找未设置email属性的所有项目。表中存在名为EmailPasswordIndex的全局二级索引,其中包含email字段。

var params = {
    "TableName": "Accounts",
    "IndexName": "EmailPasswordIndex",
    "KeyConditionExpression": "email = NULL",
};

dynamodb.query(params, function(err, data) {
    if (err)
        console.log(JSON.stringify(err, null, 2));
    else
        console.log(JSON.stringify(data, null, 2));
});

结果:

{
  "message": "Invalid KeyConditionExpression: Attribute name is a reserved keyword; reserved keyword: NULL",
  "code": "ValidationException",
  "time": "2015-12-18T05:33:00.356Z",
  "statusCode": 400,
  "retryable": false
}

表格定义:

var params = {
    "TableName": "Accounts",
    "KeySchema": [
        { "AttributeName": "id", KeyType: "HASH" }, // Randomly generated UUID
    ],
    "AttributeDefinitions": [
        { "AttributeName": "id", AttributeType: "S" },
        { "AttributeName": "email", AttributeType: "S" }, // User e-mail.
        { "AttributeName": "password", AttributeType: "S" }, // Hashed password.
    ],
    "GlobalSecondaryIndexes": [
        {
            "IndexName": "EmailPasswordIndex",
            "ProvisionedThroughput": {
                "ReadCapacityUnits": 1,
                "WriteCapacityUnits": 1
            },
            "KeySchema": [
                { "AttributeName": "email", KeyType: "HASH" },
                { "AttributeName": "password", KeyType: "RANGE" },
            ],
            "Projection": { "ProjectionType": "ALL" }
        },
    ],
    ProvisionedThroughput: {       
        ReadCapacityUnits: 1, 
        WriteCapacityUnits: 1
    }
};

dynamodb.createTable(params, function(err, data) {
    if (err)
        console.log(JSON.stringify(err, null, 2));
    else
        console.log(JSON.stringify(data, null, 2));
});

3 个答案:

答案 0 :(得分:31)

DynamoDB的全局二级索引允许索引稀疏。这意味着如果您有一个GSI,其项目的散列或范围键未定义,那么该项目将不会包含在GSI中。这在许多用例中很有用,因为它允许您直接识别包含某些字段的记录。但是,如果您正在寻找缺少字段,这种方法将无效。

要获得所有未设置字段的项目,您可能需要使用过滤器进行扫描。这个操作非常昂贵,但是代码如下所示:

<button id="test1">
Test Button 1
</button>

<button id="test2">
Test Button 2
</button>

答案 1 :(得分:9)

如果该字段不存在,则@jaredHatfield是正确的但如果该字段为空则不起作用。 NULL是关键字,不能直接使用。但您可以将它与ExpressionAttributeValues一起使用。

const params = {
    TableName: "Accounts",
    FilterExpression: "attribute_not_exists(email) or email = :null",
    ExpressionAttributeValues: {
        ':null': null
    }
}

dynamodb.scan(params, (err, data) => {
    if (err)
        console.log(JSON.stringify(err, null, 2));
    else
        console.log(JSON.stringify(data, null, 2));
})

答案 2 :(得分:0)

既然是 DynamoDB,就需要使用非正统的方法来使用数据库。

我只是引入了一个特殊值,它可以是您域中可安全识别的任何值(例如 "--NULL--"),并在最低数据层将其从/转换为 null

查询该字段为 null 的条目只是查询该特殊值。

从习惯 SQL 的人的角度来看,这并不好,但比扫描要好。

对于旧条目,您将需要一次性迁移。