douwanc63652 2015-12-09 11:01
浏览 1179
已采纳

使用go将文件流传输到AWS S3

I want to stream a multipart/form-data (large) file upload directly to AWS S3 with as little memory and file disk footprint as possible. How can I achieve this? Resources online only explain how to upload a file and store it locally on the server.

  • 写回答

5条回答 默认 最新

  • duangongqiong6958 2015-12-21 14:31
    关注

    you can do this using minio-go :

    n, err := s3Client.PutObject("bucket-name", "objectName", object, size, "application/octet-stream")
    

    PutObject() automatically does multipart upload internally. Example

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(4条)

报告相同问题?