在Golang中查询DynamoDB上的二级索引

时间:2019-06-12 19:30:19

标签: go amazon-dynamodb dynamodb-queries amazon-dynamodb-index

我的主键是一个名为“ id”的字段

我已在表的“ group_number”字段上添加了二级索引

enter image description here

我通过二级索引查询,如下所示:

// Query the secondary index
queryInput := &dynamodb.QueryInput{
    TableName: aws.String(c.GetDynamoDBTableName()),
    KeyConditions: map[string]*dynamodb.Condition{
        "group_number": {
            ComparisonOperator: aws.String("EQ"),
            AttributeValueList: []*dynamodb.AttributeValue{
                {
                    S: aws.String(c.GroupNumber),
                },
            },
        },
    },
}

但是;我收到错误消息“ validationexception:查询条件缺少关键架构元素:id”

DynamoDB仅允许查询主键吗? 我给您的印象是您对主键使用“ GetItem”,因为如果您使用主键,则只能返回一条记录。要通过二级索引进行搜索,请使用“查询”,而要通过非索引键进行搜索,请使用“扫描”。

请让我知道我在这里做错了什么。

2 个答案:

答案 0 :(得分:1)

除了TableName之外,在创建用于查询索引的QueryInput时,还需要指定IndexName属性。

https://docs.aws.amazon.com/sdk-for-go/api/service/dynamodb/#QueryInput

// The name of an index to query. This index can be any local secondary index
// or global secondary index on the table. Note that if you use the IndexName
// parameter, you must also provide TableName.
IndexName *string `min:"3" type:"string"`

答案 1 :(得分:1)

var queryInput, err2 = svc.Query(&dynamodb.QueryInput{
        TableName: aws.String(tableName),
        IndexName: aws.String(index_name),
        KeyConditions: map[string]*dynamodb.Condition{
            "Phone": {
                ComparisonOperator: aws.String("EQ"),
                AttributeValueList: []*dynamodb.AttributeValue{
                    {
                        S: aws.String(phone_no),
                    },
                },
            },
        },
    })