AWS QueryRequest不从辅助索引查询返回任何值

时间:2017-04-08 17:15:01

标签: java amazon-web-services amazon-dynamodb aws-lambda aws-sdk

所以我试图查询我的一个dynamoDB表,由于某种原因它没有返回任何结果。我有另一个用户表几乎完全相同的索引,它返回一个值。这是我的代码:

String fbId = requestInfo.get("requestFbId");
        System.out.println("The id is " + fbId);



Map<String, AttributeValue> exAttributeVal = new HashMap<String, AttributeValue>();
        exAttributeVal.put(":val", new AttributeValue().withS(fbId));

        QueryRequest friendsQuery = new QueryRequest()
                .withTableName(Keys.friendsTable)
                .withIndexName("User-Friends-index")
                .withKeyConditionExpression("userId = :val")
                .withExpressionAttributeValues(exAttributeVal);

        QueryResult friendsQueryResult = dynamoDbClient.query(friendsQuery);

        System.out.println("The size is " + friendsQueryResult.getItems().size());

        for (int i = 0; i < friendsQueryResult.getItems().size(); i++) {

            System.out.println("The result is " + friendsQueryResult.getItems().get(i));

        }

有人知道我在这里做错了什么吗?这也曾经直接在我的Android应用程序上工作,但现在我已经将它移动到lambda

0 个答案:

没有答案