iOS AWS v2 S3 Transfer Manager must use specified endpoint

后端 未结 3 1053
被撕碎了的回忆
被撕碎了的回忆 2021-01-16 15:12

I am developing an iOS app using AWS as its backend. Since I expect users to be world wide, I need to switch where the app should download photos in order to increase latenc

相关标签:
3条回答
  • 2021-01-16 15:50

    Was having the same issue just recently. The AWS SDK Docs are terribly confusing and contradicting, they suck...

    The answer above pointed me in the right direction since I'm using developer authenticated identities, I am using the custom identity provider (same one that's in the sample docs on github). I used registerS3TransferManagerWithConfiguration with the my credentials provider but then supplied AWSRegionUSWest2 as the region for key USWest2S3TransferManager.

    I then called AWSS3TransferManager *transferManager = [AWSS3TransferManager S3TransferManagerForKey:@"USWest2S3TransferManager"]; in my upload class.

    Hopefully this helps someone else that's having similar issues.

    - (AWSTask *)initializeClients:(NSDictionary *)logins {
        NSLog(@"initializing clients...");
        [AWSLogger defaultLogger].logLevel = AWSLogLevelVerbose;
    
        id<AWSCognitoIdentityProvider> identityProvider = [[DeveloperAuthenticatedIdentityProvider alloc] initWithRegionType:AWSRegionUSEast1
                                                                                                                  identityId:nil
                                                                                                              identityPoolId:identityPoolID
                                                                                                                      logins:logins
                                                                                                                providerName:DeveloperAuthProviderName
                                                                                                                  authClient:nil];
    
        self.credentialsProvider = [[AWSCognitoCredentialsProvider alloc] initWithRegionType:AWSRegionUSEast1
                                                                            identityProvider:identityProvider
                                                                               unauthRoleArn:nil
                                                                                 authRoleArn:nil];
    
    
        AWSServiceConfiguration *configuration = [[AWSServiceConfiguration alloc] initWithRegion:AWSRegionUSEast1 credentialsProvider:self.credentialsProvider];
    
        [AWSS3TransferManager registerS3TransferManagerWithConfiguration:[[AWSServiceConfiguration alloc] initWithRegion:AWSRegionUSWest2 credentialsProvider:self.credentialsProvider] forKey:@"USWest2S3TransferManager"];
    
        AWSServiceManager.defaultServiceManager.defaultServiceConfiguration = configuration;
    
        return [self.credentialsProvider getIdentityId];
    }
    

    my specific upload method:

    - (void)performS3UploadWithRequest:(AWSS3TransferManagerUploadRequest *)request
    {
        AWSS3TransferManager *transferManager = [AWSS3TransferManager S3TransferManagerForKey:@"USWest2S3TransferManager"];
        AWSTask *task = [AWSTask taskWithResult:nil];
    
        __weak typeof(self) weakSelf = self;
        task = [task continueWithSuccessBlock:^id(AWSTask *task) {
            return [[transferManager upload:request] continueWithBlock:^id(AWSTask *task) {
                if (task.error) {
                    [self handleErrorWithTask:task request:request];
                }
    
                if (task.result) {
                    AWSS3TransferManagerUploadOutput *uploadOutput = task.result;
                    dispatch_async(dispatch_get_main_queue(), ^{
                        [weakSelf uploadProgress];
                    });
                    // The file uploaded successfully.
                    DLog(@"%@", uploadOutput);
                }
    
                return nil;
            }];
        }];
    
        [task continueWithSuccessBlock:^id(AWSTask *task) {
            return nil;
        }];
    }
    
    0 讨论(0)
  • 2021-01-16 15:54

    Whenever the Amazon AWS Mobile SDK displays an unclear warning in the console, turn on verbose logging to debug:

    (Swift 3) AWSLogger.default().logLevel = .verbose
    (Swift 2) AWSLogger.defaultLogger().logLevel = .Verbose

    …to reveal more information about what S3 buckets, regions, endpoints etc. are being used.


    I found this particularly useful to find out what was happening when trying to switch between buckets, because the error message

    … Endpoint=bucket-ap-northeast-1.s3-ap-northeast-1.amazonaws.com, Message=The bucket you are attempting to access must be addressed using the specified endpoint. …

    …doesn't provide much information about the actual/current transfer manager configuration.

    0 讨论(0)
  • 2021-01-16 16:05

    Answer for AWS v2

    Although it seems as if you properly set the AWSServiceConfiguration by using the region in your code, you're still using the default AWSS3TransferManager (var transferManager = AWSS3TransferManager.defaultS3TransferManager()). Instead, use the custom init specified in the docs to set that transfer manager's configuration to the serviceConfiguration you've already created.


    Answer for AWS v1

    If you create a bucket like EUWest1 and APNorthEast1 that is not US Standard, you cannot use typical path-style syntax ("http://s3.amazonaws.com" or no specified endpoint required) to access the bucket.

    Assuming downloadRequest is an S3GetObjectRequest, before performing the transferManager's download, you should set the endpoint of the S3GetObjectRequest to match the bucket region.

    For EUWest1, you can set the endpoint to:

    [downloadRequest setEndpoint:@"s3-eu-west-1.amazonaws.com.com"];
    

    For APNorthEast1, you can set the endpoint to:

    [downloadRequest setEndpoint:@"s3-ap-northeast-1.amazonaws.com"];
    

    The entire list of endpoints is available here

    0 讨论(0)
提交回复
热议问题