Is there a way to query multiple hash keys in DynamoDB?

前端 未结 6 1336
借酒劲吻你
借酒劲吻你 2021-01-01 18:57

Is there a way to query multiple hash keys using a single query in Amazon\'s AWS SDK for Java?

Here\'s my issue; I have a DB table for project statuses. The Hash

6条回答
  •  清歌不尽
    2021-01-01 19:24

    Amazon API doesn't support multiple hashkey filter but you can use HASH KEY + RANGE KEY filter to get the results using batchGetItem method ..

    http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/batch-operation-lowlevel-java.html#LowLevelJavaBatchGet

提交回复
热议问题