Amazon s3 transfer utility not working in background












0















i have to upload a large file like more then 4gb onto amazon s3. amazon sdk giving two options for uploading and downloading from s3. one is awss3transfermanager and other is awss3transferutility. i actually want to use awss3transferutility because i want the app to continue uploading in background. awss3transferutility has two functions uploadFile and other uploadFileUsingMultiPart . uploadFile function actually works in background but uploading starts from 0 on network changes or drop. For that reason i am curretly using uploadFileUsingMultiPart function so the uploading won't get restart from 0 on networks fail. but this uploadFileUsingMultiPart function won't continue uploading in background. In their latest release they introduce this uploadFileUsingMultiPart function inside awstransferutility. so i was expecting that uploading will continue in background with network fail but it won't continue in background. i just wanted to ask is it sdk related bug or i am doing something wrong



this is the code i am curretly



//in app delegate



- (void)application:(UIApplication *)application handleEventsForBackgroundURLSession:(NSString *)identifier completionHandler:(void (^)(void))completionHandler {
[AWSS3TransferUtility interceptApplication:application
handleEventsForBackgroundURLSession:identifier
completionHandler:completionHandler];
}


// in ViewController



- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(reachabilityChanged:)
name:kReachabilityChangedNotification
object:nil];

__weak typeof(self) weakSelf = self;
expression = [AWSS3TransferUtilityMultiPartUploadExpression new];
expression.progressBlock = ^(AWSS3TransferUtilityMultiPartUploadTask * task, NSProgress * progress) {
typeof(self) newWeakSelf = weakSelf;

dispatch_async(dispatch_get_main_queue(), ^{
// Do something e.g. Alert a user for transfer completion.

NSLog(@"progress value %f",progress.fractionCompleted);
// On failed uploads, `error` contains the error object.
newWeakSelf->progressView.progress = progress.fractionCompleted;
});
};

completionHandler = ^(AWSS3TransferUtilityMultiPartUploadTask *task, NSError *error) {
dispatch_async(dispatch_get_main_queue(), ^{
NSLog(@"uploading completed ");
});
};


AWSCognitoCredentialsProvider *credentialsProvider = [[AWSCognitoCredentialsProvider alloc] initWithRegionType:AWSRegionUSEast1 identityPoolId:@"us-west-1:7a24b199-e4b2-4657-9627-sdfs4ssdff"];
AWSServiceConfiguration *configuration = [[AWSServiceConfiguration alloc] initWithRegion:AWSRegionUSEast1 credentialsProvider:credentialsProvider];
// AWSServiceManager.defaultServiceManager.defaultServiceConfiguration = configuration;

AWSS3TransferUtilityConfiguration *tfConfig = [AWSS3TransferUtilityConfiguration new];
tfConfig.retryLimit = 5;
tfConfig.multiPartConcurrencyLimit = [NSNumber numberWithInteger:3];
[AWSS3TransferUtility registerS3TransferUtilityWithConfiguration:configuration transferUtilityConfiguration:tfConfig forKey:@"transfer-utility-with-advanced-options"];

transferUtility = [AWSS3TransferUtility S3TransferUtilityForKey:@"transfer-utility-with-advanced-options"];
}

-(void)startUploading {
NSString *filePath = [[NSBundle mainBundle] pathForResource:@"test" ofType:@"mp4"];
NSURL *fileURL = [NSURL fileURLWithPath:filePath];
NSString *fileContentTypeStr = @"video/mp4";

// NSData *data = [NSData dataWithContentsOfURL:fileURL];
// AWSTask *task = [transferUtility uploadDataUsingMultiPart:data bucket:@"sibme-development" key:@"temp/testfilenew/testfile1.mp4" contentType:fileContentTypeStr expression:expression completionHandler:completionHandler ];

AWSTask *task = [transferUtility uploadFileUsingMultiPart:fileURL bucket:@"development" key:@"temp/testfilenew/testfile.mp4" contentType:fileContentTypeStr expression:expression completionHandler:completionHandler];

[task continueWithBlock:^id _Nullable(AWSTask * _Nonnull t) {
if (t.result) {
self->uplaodTask = t.result;
}
return nil;
}];
}









share|improve this question





























    0















    i have to upload a large file like more then 4gb onto amazon s3. amazon sdk giving two options for uploading and downloading from s3. one is awss3transfermanager and other is awss3transferutility. i actually want to use awss3transferutility because i want the app to continue uploading in background. awss3transferutility has two functions uploadFile and other uploadFileUsingMultiPart . uploadFile function actually works in background but uploading starts from 0 on network changes or drop. For that reason i am curretly using uploadFileUsingMultiPart function so the uploading won't get restart from 0 on networks fail. but this uploadFileUsingMultiPart function won't continue uploading in background. In their latest release they introduce this uploadFileUsingMultiPart function inside awstransferutility. so i was expecting that uploading will continue in background with network fail but it won't continue in background. i just wanted to ask is it sdk related bug or i am doing something wrong



    this is the code i am curretly



    //in app delegate



    - (void)application:(UIApplication *)application handleEventsForBackgroundURLSession:(NSString *)identifier completionHandler:(void (^)(void))completionHandler {
    [AWSS3TransferUtility interceptApplication:application
    handleEventsForBackgroundURLSession:identifier
    completionHandler:completionHandler];
    }


    // in ViewController



    - (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    [[NSNotificationCenter defaultCenter] addObserver:self
    selector:@selector(reachabilityChanged:)
    name:kReachabilityChangedNotification
    object:nil];

    __weak typeof(self) weakSelf = self;
    expression = [AWSS3TransferUtilityMultiPartUploadExpression new];
    expression.progressBlock = ^(AWSS3TransferUtilityMultiPartUploadTask * task, NSProgress * progress) {
    typeof(self) newWeakSelf = weakSelf;

    dispatch_async(dispatch_get_main_queue(), ^{
    // Do something e.g. Alert a user for transfer completion.

    NSLog(@"progress value %f",progress.fractionCompleted);
    // On failed uploads, `error` contains the error object.
    newWeakSelf->progressView.progress = progress.fractionCompleted;
    });
    };

    completionHandler = ^(AWSS3TransferUtilityMultiPartUploadTask *task, NSError *error) {
    dispatch_async(dispatch_get_main_queue(), ^{
    NSLog(@"uploading completed ");
    });
    };


    AWSCognitoCredentialsProvider *credentialsProvider = [[AWSCognitoCredentialsProvider alloc] initWithRegionType:AWSRegionUSEast1 identityPoolId:@"us-west-1:7a24b199-e4b2-4657-9627-sdfs4ssdff"];
    AWSServiceConfiguration *configuration = [[AWSServiceConfiguration alloc] initWithRegion:AWSRegionUSEast1 credentialsProvider:credentialsProvider];
    // AWSServiceManager.defaultServiceManager.defaultServiceConfiguration = configuration;

    AWSS3TransferUtilityConfiguration *tfConfig = [AWSS3TransferUtilityConfiguration new];
    tfConfig.retryLimit = 5;
    tfConfig.multiPartConcurrencyLimit = [NSNumber numberWithInteger:3];
    [AWSS3TransferUtility registerS3TransferUtilityWithConfiguration:configuration transferUtilityConfiguration:tfConfig forKey:@"transfer-utility-with-advanced-options"];

    transferUtility = [AWSS3TransferUtility S3TransferUtilityForKey:@"transfer-utility-with-advanced-options"];
    }

    -(void)startUploading {
    NSString *filePath = [[NSBundle mainBundle] pathForResource:@"test" ofType:@"mp4"];
    NSURL *fileURL = [NSURL fileURLWithPath:filePath];
    NSString *fileContentTypeStr = @"video/mp4";

    // NSData *data = [NSData dataWithContentsOfURL:fileURL];
    // AWSTask *task = [transferUtility uploadDataUsingMultiPart:data bucket:@"sibme-development" key:@"temp/testfilenew/testfile1.mp4" contentType:fileContentTypeStr expression:expression completionHandler:completionHandler ];

    AWSTask *task = [transferUtility uploadFileUsingMultiPart:fileURL bucket:@"development" key:@"temp/testfilenew/testfile.mp4" contentType:fileContentTypeStr expression:expression completionHandler:completionHandler];

    [task continueWithBlock:^id _Nullable(AWSTask * _Nonnull t) {
    if (t.result) {
    self->uplaodTask = t.result;
    }
    return nil;
    }];
    }









    share|improve this question



























      0












      0








      0


      1






      i have to upload a large file like more then 4gb onto amazon s3. amazon sdk giving two options for uploading and downloading from s3. one is awss3transfermanager and other is awss3transferutility. i actually want to use awss3transferutility because i want the app to continue uploading in background. awss3transferutility has two functions uploadFile and other uploadFileUsingMultiPart . uploadFile function actually works in background but uploading starts from 0 on network changes or drop. For that reason i am curretly using uploadFileUsingMultiPart function so the uploading won't get restart from 0 on networks fail. but this uploadFileUsingMultiPart function won't continue uploading in background. In their latest release they introduce this uploadFileUsingMultiPart function inside awstransferutility. so i was expecting that uploading will continue in background with network fail but it won't continue in background. i just wanted to ask is it sdk related bug or i am doing something wrong



      this is the code i am curretly



      //in app delegate



      - (void)application:(UIApplication *)application handleEventsForBackgroundURLSession:(NSString *)identifier completionHandler:(void (^)(void))completionHandler {
      [AWSS3TransferUtility interceptApplication:application
      handleEventsForBackgroundURLSession:identifier
      completionHandler:completionHandler];
      }


      // in ViewController



      - (void)viewDidLoad {
      [super viewDidLoad];
      // Do any additional setup after loading the view, typically from a nib.
      [[NSNotificationCenter defaultCenter] addObserver:self
      selector:@selector(reachabilityChanged:)
      name:kReachabilityChangedNotification
      object:nil];

      __weak typeof(self) weakSelf = self;
      expression = [AWSS3TransferUtilityMultiPartUploadExpression new];
      expression.progressBlock = ^(AWSS3TransferUtilityMultiPartUploadTask * task, NSProgress * progress) {
      typeof(self) newWeakSelf = weakSelf;

      dispatch_async(dispatch_get_main_queue(), ^{
      // Do something e.g. Alert a user for transfer completion.

      NSLog(@"progress value %f",progress.fractionCompleted);
      // On failed uploads, `error` contains the error object.
      newWeakSelf->progressView.progress = progress.fractionCompleted;
      });
      };

      completionHandler = ^(AWSS3TransferUtilityMultiPartUploadTask *task, NSError *error) {
      dispatch_async(dispatch_get_main_queue(), ^{
      NSLog(@"uploading completed ");
      });
      };


      AWSCognitoCredentialsProvider *credentialsProvider = [[AWSCognitoCredentialsProvider alloc] initWithRegionType:AWSRegionUSEast1 identityPoolId:@"us-west-1:7a24b199-e4b2-4657-9627-sdfs4ssdff"];
      AWSServiceConfiguration *configuration = [[AWSServiceConfiguration alloc] initWithRegion:AWSRegionUSEast1 credentialsProvider:credentialsProvider];
      // AWSServiceManager.defaultServiceManager.defaultServiceConfiguration = configuration;

      AWSS3TransferUtilityConfiguration *tfConfig = [AWSS3TransferUtilityConfiguration new];
      tfConfig.retryLimit = 5;
      tfConfig.multiPartConcurrencyLimit = [NSNumber numberWithInteger:3];
      [AWSS3TransferUtility registerS3TransferUtilityWithConfiguration:configuration transferUtilityConfiguration:tfConfig forKey:@"transfer-utility-with-advanced-options"];

      transferUtility = [AWSS3TransferUtility S3TransferUtilityForKey:@"transfer-utility-with-advanced-options"];
      }

      -(void)startUploading {
      NSString *filePath = [[NSBundle mainBundle] pathForResource:@"test" ofType:@"mp4"];
      NSURL *fileURL = [NSURL fileURLWithPath:filePath];
      NSString *fileContentTypeStr = @"video/mp4";

      // NSData *data = [NSData dataWithContentsOfURL:fileURL];
      // AWSTask *task = [transferUtility uploadDataUsingMultiPart:data bucket:@"sibme-development" key:@"temp/testfilenew/testfile1.mp4" contentType:fileContentTypeStr expression:expression completionHandler:completionHandler ];

      AWSTask *task = [transferUtility uploadFileUsingMultiPart:fileURL bucket:@"development" key:@"temp/testfilenew/testfile.mp4" contentType:fileContentTypeStr expression:expression completionHandler:completionHandler];

      [task continueWithBlock:^id _Nullable(AWSTask * _Nonnull t) {
      if (t.result) {
      self->uplaodTask = t.result;
      }
      return nil;
      }];
      }









      share|improve this question
















      i have to upload a large file like more then 4gb onto amazon s3. amazon sdk giving two options for uploading and downloading from s3. one is awss3transfermanager and other is awss3transferutility. i actually want to use awss3transferutility because i want the app to continue uploading in background. awss3transferutility has two functions uploadFile and other uploadFileUsingMultiPart . uploadFile function actually works in background but uploading starts from 0 on network changes or drop. For that reason i am curretly using uploadFileUsingMultiPart function so the uploading won't get restart from 0 on networks fail. but this uploadFileUsingMultiPart function won't continue uploading in background. In their latest release they introduce this uploadFileUsingMultiPart function inside awstransferutility. so i was expecting that uploading will continue in background with network fail but it won't continue in background. i just wanted to ask is it sdk related bug or i am doing something wrong



      this is the code i am curretly



      //in app delegate



      - (void)application:(UIApplication *)application handleEventsForBackgroundURLSession:(NSString *)identifier completionHandler:(void (^)(void))completionHandler {
      [AWSS3TransferUtility interceptApplication:application
      handleEventsForBackgroundURLSession:identifier
      completionHandler:completionHandler];
      }


      // in ViewController



      - (void)viewDidLoad {
      [super viewDidLoad];
      // Do any additional setup after loading the view, typically from a nib.
      [[NSNotificationCenter defaultCenter] addObserver:self
      selector:@selector(reachabilityChanged:)
      name:kReachabilityChangedNotification
      object:nil];

      __weak typeof(self) weakSelf = self;
      expression = [AWSS3TransferUtilityMultiPartUploadExpression new];
      expression.progressBlock = ^(AWSS3TransferUtilityMultiPartUploadTask * task, NSProgress * progress) {
      typeof(self) newWeakSelf = weakSelf;

      dispatch_async(dispatch_get_main_queue(), ^{
      // Do something e.g. Alert a user for transfer completion.

      NSLog(@"progress value %f",progress.fractionCompleted);
      // On failed uploads, `error` contains the error object.
      newWeakSelf->progressView.progress = progress.fractionCompleted;
      });
      };

      completionHandler = ^(AWSS3TransferUtilityMultiPartUploadTask *task, NSError *error) {
      dispatch_async(dispatch_get_main_queue(), ^{
      NSLog(@"uploading completed ");
      });
      };


      AWSCognitoCredentialsProvider *credentialsProvider = [[AWSCognitoCredentialsProvider alloc] initWithRegionType:AWSRegionUSEast1 identityPoolId:@"us-west-1:7a24b199-e4b2-4657-9627-sdfs4ssdff"];
      AWSServiceConfiguration *configuration = [[AWSServiceConfiguration alloc] initWithRegion:AWSRegionUSEast1 credentialsProvider:credentialsProvider];
      // AWSServiceManager.defaultServiceManager.defaultServiceConfiguration = configuration;

      AWSS3TransferUtilityConfiguration *tfConfig = [AWSS3TransferUtilityConfiguration new];
      tfConfig.retryLimit = 5;
      tfConfig.multiPartConcurrencyLimit = [NSNumber numberWithInteger:3];
      [AWSS3TransferUtility registerS3TransferUtilityWithConfiguration:configuration transferUtilityConfiguration:tfConfig forKey:@"transfer-utility-with-advanced-options"];

      transferUtility = [AWSS3TransferUtility S3TransferUtilityForKey:@"transfer-utility-with-advanced-options"];
      }

      -(void)startUploading {
      NSString *filePath = [[NSBundle mainBundle] pathForResource:@"test" ofType:@"mp4"];
      NSURL *fileURL = [NSURL fileURLWithPath:filePath];
      NSString *fileContentTypeStr = @"video/mp4";

      // NSData *data = [NSData dataWithContentsOfURL:fileURL];
      // AWSTask *task = [transferUtility uploadDataUsingMultiPart:data bucket:@"sibme-development" key:@"temp/testfilenew/testfile1.mp4" contentType:fileContentTypeStr expression:expression completionHandler:completionHandler ];

      AWSTask *task = [transferUtility uploadFileUsingMultiPart:fileURL bucket:@"development" key:@"temp/testfilenew/testfile.mp4" contentType:fileContentTypeStr expression:expression completionHandler:completionHandler];

      [task continueWithBlock:^id _Nullable(AWSTask * _Nonnull t) {
      if (t.result) {
      self->uplaodTask = t.result;
      }
      return nil;
      }];
      }






      ios objective-c amazon-web-services amazon-s3






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jan 1 at 22:41









      John Rotenstein

      74.7k783131




      74.7k783131










      asked Jan 1 at 10:06









      adnanadnan

      1919




      1919
























          0






          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53994582%2famazon-s3-transfer-utility-not-working-in-background%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53994582%2famazon-s3-transfer-utility-not-working-in-background%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Can a sorcerer learn a 5th-level spell early by creating spell slots using the Font of Magic feature?

          ts Property 'filter' does not exist on type '{}'

          mat-slide-toggle shouldn't change it's state when I click cancel in confirmation window