AWS DynamoDB批量获取请求 - iOS

时间:2015-05-07 11:32:38

标签: ios objective-c amazon-web-services amazon-dynamodb

我可以在AWS dynamoDB中的单个表上执行简单的Get请求,但是当我将其扩展到跨多个表的批处理请求时,我仍然会收到错误

validation error detected: Value null at 'requestItems.rip.member.keys' failed to satisfy constraint

我理解这是因为没有正确传递值,但我看不出代码的问题

//Create Request Values
AWSDynamoDBGetItemInput *getItem = [AWSDynamoDBGetItemInput new];
AWSDynamoDBAttributeValue *hashValue = [AWSDynamoDBAttributeValue new];
hashValue.S = @"User Test";
getItem.key = @{@"ripId": hashValue};

//Create Request Values 2 
AWSDynamoDBGetItemInput *getItem2 = [AWSDynamoDBGetItemInput new];
AWSDynamoDBAttributeValue *hashValue2 = [AWSDynamoDBAttributeValue new];
hashValue2.S = @"User Test";
getItem2.key = @{@"chat": hashValue2};

//Combine to Batch Request
AWSDynamoDBBatchGetItemInput * batchFetch = [AWSDynamoDBBatchGetItemInput new];
batchFetch.requestItems = @{ @"rip": getItem,
                             @"chat": getItem,};

[[dynamoDB batchGetItem:batchFetch] continueWithBlock:^id(BFTask *task) {
    if (!task.error) {

        NSLog(@"BOY SUCCES");

    } else {
        NSLog(@" NO BOY SUCCESS %@",task.error);
    }
    return nil;
}];

搜索互联网的高低,但无法看到使用iOS Objective C(或swift)的批量请求的工作示例。

我已在单个Get请求中测试了这两个变量,但它们都有效。

3 个答案:

答案 0 :(得分:3)

您忘记在AWSDynamoDBAttributeValue中回绕AWSDynamoDBKeysAndAttributes。以下是AWSDynamoDBTests.m的一个简单示例:

AWSDynamoDBKeysAndAttributes *keysAndAttributes = [AWSDynamoDBKeysAndAttributes new];
keysAndAttributes.keys = @[@{@"hashKey" : attributeValue1},
                           @{@"hashKey" : attributeValue2}];
keysAndAttributes.consistentRead = @YES;

AWSDynamoDBBatchGetItemInput *batchGetItemInput = [AWSDynamoDBBatchGetItemInput new];
batchGetItemInput.requestItems = @{table1Name: keysAndAttributes};

答案 1 :(得分:1)

由于批次获取并没有映射到一个类,我通过这样做解决了它。

我这样解决了,

    let dynamoDBObjectMapper = AWSDynamoDBObjectMapper.defaultDynamoDBObjectMapper()
    let task1 = dynamoDBObjectMapper.load(User.self, hashKey: "rtP1oQ5DJG", rangeKey: nil)
    let task2 = dynamoDBObjectMapper.load(User.self, hashKey: "dbqb1zyUq1", rangeKey: nil)

    AWSTask.init(forCompletionOfAllTasksWithResults: [task1, task2]).continueWithBlock { (task) -> AnyObject? in
        if let users = task.result as? [User] {
            print(users.count)
            print(users[0].firstName)
            print(users[1].firstName)
        }
        else if let error = task.error {
            print(error.localizedDescription)
        }
        return nil
    }

答案 2 :(得分:0)

Swift 3

我能够使用以下代码获取BatchGet请求。希望这可以帮助那些因缺乏Swift Doc而苦苦挣扎的人
  • 此代码假定您已在AppDelegate应用程序didFinishLaunchingWithOptions方法中配置了AWSServiceConfiguration。

    let DynamoDB = AWSDynamoDB.default()
    
        // define your primary hash keys
        let hashAttribute1 = AWSDynamoDBAttributeValue()
        hashAttribute1?.s = "NDlFRTdDODEtQzNCOC00QUI5LUFFMzUtRkIyNTJFNERFOTBF"
    
        let hashAttribute2 = AWSDynamoDBAttributeValue()
        hashAttribute2?.s = "MjVCNzU3MUQtMEM0NC00NEJELTk5M0YtRTM0QjVDQ0Q1NjlF"
    
        let keys: Array = [["userID": hashAttribute1], ["userID": hashAttribute2]]
    
        let keysAndAttributesMap = AWSDynamoDBKeysAndAttributes()
        keysAndAttributesMap?.keys = keys as? [[String : AWSDynamoDBAttributeValue]]
        keysAndAttributesMap?.consistentRead = true
        let tableMap = ["Your-Table-Name" : keysAndAttributesMap]
        let request = AWSDynamoDBBatchGetItemInput()
        request?.requestItems = tableMap as? [String : AWSDynamoDBKeysAndAttributes]
        request?.returnConsumedCapacity = AWSDynamoDBReturnConsumedCapacity.total
        DynamoDB.batchGetItem(request!) { (output, error) in
            if output != nil {
                print("Batch Query output?.responses?.count:", output!.responses!)
            }
            if error != nil {
                print("Batch Query error:", error!)
            }
        }