-
Notifications
You must be signed in to change notification settings - Fork 487
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[idea] make upload parts concurrent #1569
Comments
As the input stream is sequential and parallel uploads would result in huge memory usage. It is not a good idea. |
this can be apply to RandomAceessFile too. pls consider again. |
If you want to upload parts in parallel with different part sources, use UploadPartAsync and manage multipart uploads your own. For single input stream with lesser memory usage, this is not possible. |
thanks a lot |
https://github.com/minio/minio-java/blob/f80a7021d87267fbab5bbbe3ef81064fae474082/api/src/main/java/io/minio/S3Base.java#L2839C12-L2839C85
Part[] parts = uploadParts(args, uploadId, partReader, firstPartSource);
suggest to make this upload parts concurrent .
The text was updated successfully, but these errors were encountered: