kahing / goofys

a high-performance, POSIX-ish Amazon S3 file system written in Go
Apache License 2.0
5.22k stars 523 forks source link

Disable multipart upload #793

Open Jose-Matsuda opened 7 months ago

Jose-Matsuda commented 7 months ago

I know this is a long shot, but are there plans to say disable multipart uploading similar to what s3fs has? Or if I wanted to change it to not use multi-part at all where would that be?

Thank you!

kahing commented 4 months ago

why would you want that?

cellochou commented 1 week ago

In my experience:

  1. Not all cloud storage services support multipart uploads.
  2. Multipart uploads can slow down data upload performance.
  3. Multipart uploads are prone to errors.
  4. Multipart uploads are only beneficial for single PUT operations exceeding 5GB.