我应该使用扫描还是查询?

时间:2018-08-28 03:02:07

标签: node.js amazon-web-services aws-lambda amazon-dynamodb claudiajs

在DynamoDB中,我很难在两个日期之间选择一组条目。我的日期是字符串,格式简单为“ 2018-01-01”。

我应该使用查询还是扫描?我的参数看起来还好吗?该操作似乎有效,但没有任何结果。我在做什么错了?

这是我的代码:

// get transactions for {month} and {year}
api.get('/transaction/tab/{year}/{month}', (request) => {
  const year = request.pathParams.year
  const month = request.pathParams.month
  const params = {
    TableName: request.env.tableName,
    KeyConditionExpression: '#date between :val1 and :val2',
    ExpressionAttributeNames: {
      '#date': 'date'
    },
    ExpressionAttributeValues: {
      ':val1': {
        S: year +'-' + month + '-01'
      },
      ':val2': {
        S: year + '-' + month + '-' + getDaysInMonth(month, year)
      }
    }
  }
console.log(params)
  // post-process dynamo result before returning
  dynamoDb.query(params, (err, data) => {
    console.log(data)
    if (err) {
      console.error('Unable to query. Error:', JSON.stringify(err, null, 2))
      return 'Unable to query. Error: '+ JSON.stringify(err, null, 2)
    } else {
      console.log('Query succeeded.')
      data.Items.forEach((item) => {
        console.log(' -', item.year + ': ' + item.title)
      })
      return data.Items
    }
  })
})

2 个答案:

答案 0 :(得分:2)

使用KeyConditionExpression表达式表示您在Query上使用了GSI

如果date是分区键而不是排序键。然后,您遇到了一个问题:

您没有在参数中定义IndexName

在查询操作中,不能对分区键执行比较测试(<,>,BETWEEN,...)。该条件必须对单个分区键值执行相等性测试(=),并且必须对单个排序键值执行多个比较测试之一。

例如:

KeyConditionExpression: 'HashKey = :hkey and RangeKey > :rkey'

您是否想每月获得transactions?我认为,您必须创建一个GSI,其中:year-month是PrimaryKey(例如:2018-01,2018-02),day-createdAt是SortedKey(例如:28-1535429111358,...)

查询将如上:

const params = {
    TableName: request.env.tableName,
    IndexName: 'MONTH-DAY-IDX',
    KeyConditionExpression: 'year-month = :val1',
    ExpressionAttributeValues: {
      ':val1': {
        S: year +'-' + month
      },
    }
  }

答案 1 :(得分:1)

DynamoDB不支持本地date/time类型。因此,我建议将日期存储为UTC Number(又名Unix epoch time)并使用Query,因为它比Scan

好得多

快速浏览以下文章,以了解如何转换为unix时间戳:

https://coderwall.com/p/rbfl6g/how-to-get-the-correct-unix-timestamp-from-any-date-in-javascript