amazon-s3aws-sdk-netawss3transferutility

AWS.SDK TransferUtility.Upload hangs


I have the following code

Dim fileTransferUtility = New TransferUtility(new AmazonS3Client(credentials,region))
Dim fileTransferUtilityRequest = New TransferUtilityUploadRequest With {
   .BucketName = bucketName,
   .FilePath = sourceFileName,
   .PartSize = 6291456,
   .Key = awsFileKey
}
fileTransferUtility.Upload(fileTransferUtilityRequest)

This code worked just fine up until

But hangs starting from

It does never return, with exception or anything. It simply hangs.

The environment is

Did anyone encountered this problem, and found any solution?


I created an issue on AWS.SDK at https://github.com/aws/aws-sdk-net/issues/1648


Solution

  • Issue fixed with versions AWSSDK.Core 3.3.107.16 AWSSDK.S3 3.3.111.17