Replies: 2 comments
-
See #1469 (comment) |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hi @lucix-aws , thank you for the response. But isn't python boto3 still supports “create_multipart_upload()" and "upload_part()"? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Our existing code is using aws-sdk-go V1. We don't get the entire large file at once and we rely on CreateMultipartUploadInput, UploadPart, and CompleteMultipartUpload on our own. I can't any of these calls in aws-sdk-go-v2. We can't use the new v2's s3/manager NewUploader. We don't have the entire large file on any ONE given server. We rely on the uploadId and PartNumber for resembling the entire large file.
Is there any documentation or sample code to perform the same "Multipart Upload" with aws-sdk-go-v2?
Beta Was this translation helpful? Give feedback.
All reactions