通过主键查询dynamodb table
Query dynamodb table by primary key
我在创建简单查询请求时遇到问题。 Here 他们展示了如何使用全局二级索引进行查询的示例。现在在这种情况下,我只有主键,我想从我的 table 中查询。这是我目前遇到的错误:
Query condition missed key schema element: id
这是我目前正在尝试的:
var params = {
TableName : "XactRemodel-7743-DynamoDBImagesTable-8183NQ0UG0Y5",
KeyConditionExpression: 'HashKey = :hkey',
ExpressionAttributeValues: {
':hkey': event.projectId
}
};
documentClient.query(params, function(err, data) {
if (err) {
console.log(err)
} else {
console.log(data);
}
});
我知道在示例中他们使用了 "indexName" 对应于二级索引名称。他们的 Key Schema 似乎没有这样的 attribute.
这是我的 table 在 YAML 文件中定义的样子:
DynamoDBImagesTable:
Type: AWS::DynamoDB::Table
Properties:
BillingMode: PAY_PER_REQUEST
SSESpecification:
SSEEnabled: true
PointInTimeRecoverySpecification:
PointInTimeRecoveryEnabled: true
AttributeDefinitions:
- AttributeName: id
AttributeType: S
- AttributeName: companyId
AttributeType: S
- AttributeName: lastModified
AttributeType: S
KeySchema:
- AttributeName: id
KeyType: HASH
GlobalSecondaryIndexes:
- IndexName: companyId-index
KeySchema:
- AttributeName: companyId
KeyType: HASH
- AttributeName: lastModified
KeyType: RANGE
Projection:
ProjectionType: ALL
我错过了什么?
这试图通过名为 HashKey
:
的主键进行查询
KeyConditionExpression: 'HashKey = :hkey',
但是您的主键名为 id
,这正是错误消息所指出的。所以将该行更改为:
KeyConditionExpression: 'id = :hkey',
我在创建简单查询请求时遇到问题。 Here 他们展示了如何使用全局二级索引进行查询的示例。现在在这种情况下,我只有主键,我想从我的 table 中查询。这是我目前遇到的错误:
Query condition missed key schema element: id
这是我目前正在尝试的:
var params = {
TableName : "XactRemodel-7743-DynamoDBImagesTable-8183NQ0UG0Y5",
KeyConditionExpression: 'HashKey = :hkey',
ExpressionAttributeValues: {
':hkey': event.projectId
}
};
documentClient.query(params, function(err, data) {
if (err) {
console.log(err)
} else {
console.log(data);
}
});
我知道在示例中他们使用了 "indexName" 对应于二级索引名称。他们的 Key Schema 似乎没有这样的 attribute.
这是我的 table 在 YAML 文件中定义的样子:
DynamoDBImagesTable:
Type: AWS::DynamoDB::Table
Properties:
BillingMode: PAY_PER_REQUEST
SSESpecification:
SSEEnabled: true
PointInTimeRecoverySpecification:
PointInTimeRecoveryEnabled: true
AttributeDefinitions:
- AttributeName: id
AttributeType: S
- AttributeName: companyId
AttributeType: S
- AttributeName: lastModified
AttributeType: S
KeySchema:
- AttributeName: id
KeyType: HASH
GlobalSecondaryIndexes:
- IndexName: companyId-index
KeySchema:
- AttributeName: companyId
KeyType: HASH
- AttributeName: lastModified
KeyType: RANGE
Projection:
ProjectionType: ALL
我错过了什么?
这试图通过名为 HashKey
:
KeyConditionExpression: 'HashKey = :hkey',
但是您的主键名为 id
,这正是错误消息所指出的。所以将该行更改为:
KeyConditionExpression: 'id = :hkey',