我正在使用aws-sdk为DynamoDB编写nodejs 5.7.1应用程序。
我有一个使用以下代码创建的事件表:
var statsTableName='bingodrive_statistics';
var eventNameColumn = 'event_name';
var eventTimeColumn = 'event_time';
var eventDataColumn = 'event_data';
var params = {
TableName: statsTableName,
KeySchema: [ // The type of of schema. Must start with a HASH type, with an optional second RANGE.
{ // Required HASH type attribute
AttributeName: eventNameColumn,
KeyType: 'HASH',
},
{ // Optional RANGE key type for HASH + RANGE tables
AttributeName: eventTimeColumn,
KeyType: 'RANGE',
}
],
AttributeDefinitions: [ // The names and types of all primary and index key attributes only
{
AttributeName: eventNameColumn,
AttributeType: 'S', // (S | N | B) for string, number, binary
},
{
AttributeName: eventTimeColumn,
AttributeType: 'N'
}
],
ProvisionedThroughput: { // required provisioned throughput for the table
ReadCapacityUnits: 1,
WriteCapacityUnits: 1,
}
};
dynamodbClient.createTable(params, callback);
如你所见,我有一个Hash + Range索引。范围是在event_time。
现在我想扫描或查询两个特定日期之间的所有项目。
所以我将以下参数发送到dynamoDb的查询功能:
{
"TableName": "bingodrive_statistics",
"KeyConditionExpression": "event_time BETWEEN :from_time and :to_time",
"ExpressionAttributeValues": {
":from_time": 1457275538691,
":to_time": 1457279138691
}
我收到此错误:
{
"message": "Query condition missed key schema element",
"code": "ValidationException",
"time": "2016-03-06T15:46:06.862Z",
"requestId": "5a672003-850c-47c7-b9df-7cd57e7bc7fc",
"statusCode": 400,
"retryable": false,
"retryDelay": 0
}
我是dynamoDb的新手。在我的案例中,我不知道什么是最好的方法,扫描或查询。任何有关该问题的信息都将不胜感激。
答案 0 :(得分:3)
您应该使用query
。如果要查询两个范围键之间的值,则不能使用 范围键,因为范围键也需要使用哈希键。这是因为散列键(分区键)用于选择存储数据的物理分区,按范围键(排序键)排序。来自DynamoDB developer guide:
如果表具有复合主键(分区键和排序键),则DynamoDB将以与“数据分发:分区键”中所述相同的方式计算分区键的哈希值,但它会将所有项目存储在相同的分区键值物理上靠近在一起,按排序键值排序。
此外,您应该选择能够很好地分发数据的分区键。如果evenName的值总数较小,则可能不是最佳选择(请参阅Guidelines For Tables]
也就是说,如果您已经将eventName
作为您的哈希键而eventTime
作为您的范围键,那么您应该查询(抱歉为伪代码,我通常使用DynamoDBMapper):< / p>
hashKey = name_of_your_event
conditions = BETWEEN
attribute_values (eventTime1, eventTime2)
您不需要额外的Local Secondary Index或Global Secondary Index。请注意,GSI允许您查询未使用表哈希和范围键索引的列,但是要在时间戳之间查询数据,您仍需要范围键或需要否则Scan。
答案 1 :(得分:3)
使用此查询
<p>adfasfadfs</p>