You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can calculate the MD5 of the complete file. After all the parts are uploaded, how to use this MD5 when CompleteMultipartUpload?
Firstly, use minio.NewCore new a core client.
Using core.NewMultipartUpload new a multipart upload.
Using core.PutObjectPart upload parts.
After all the parts are uploaded.
Using core.ListObjectParts get all parts, convent ObjectParts to CompletedParts.
Using core.CompleteMultipartUpload to concatenate uploaded parts and commit to an object.
How can I use MD5 to Validate Checksums in this CompleteMultipartUpload
The text was updated successfully, but these errors were encountered:
I can calculate the MD5 of the complete file. After all the parts are uploaded, how to use this MD5 when CompleteMultipartUpload?
Firstly, use minio.NewCore new a core client.
Using core.NewMultipartUpload new a multipart upload.
Using core.PutObjectPart upload parts.
After all the parts are uploaded.
Using core.ListObjectParts get all parts, convent ObjectParts to CompletedParts.
Using core.CompleteMultipartUpload to concatenate uploaded parts and commit to an object.
How can I use MD5 to Validate Checksums in this CompleteMultipartUpload
The text was updated successfully, but these errors were encountered: