-
Notifications
You must be signed in to change notification settings - Fork 295
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
[Features Requst] Minio Console Is it possible to add a checkbox for chunked uploads when uploading files? #3490
Comments
The proper way to deal with this is not to enable chunking, but the implement multi-part file upload instead. |
Community Console UI is frozen and is under maintenance. It is not taking any more feature requests. |
This can only be done through a programmatic method, it can't be set via console right? |
No, it would require client-side changes. |
@ramondeklein this a proxy problem single PUT supports uploading upto 5Ti on MinIO if you don't use cloudflare things are all good. |
Yes, everything is ok if i using it directly. I just thought using domain name is friendly. And now...i stuck |
Can you explain in detail how to do this? For the programmatic approach I know how to modify it, but that should be after finishing the local minio server, but right now it seems like I have to make a trade-off between Cloudflare tunnel and minio console. |
@harshavardhana I know, but multi-part upload would also enable partial retry and chunk automatically. I've implemented a client-side (Javascript) "smart upload" for TransferXL before that parallelizes uploads and automatically chooses appropriate part-sizes depending on upload speed. That would also fix issues with reverse-proxies that maximize body sizes. But the code is 10 years old and written for AngularJS, so it wouldn't be an easy port to MinIO. More importantly... I don't think our console should require that kind of flexibility. The management console is meant for management, not daily operations. It doesn't need to have such a complex upload mechanism. |
It is a cloudflare problem they should fix their arbitrary limit, make it configurable. There is no reason to have 100mib limit. |
It is intended for: NAS self-hosted users
Scenario:
When NAS self-hosted users perform intranet penetration via Cloudflare tunnels to allow public access to the minio console via a domain name, minio is unable to upload files > 100M or > 500M (depending on cloudflare). At the same time, however, cloudflare does allow chunked uploads on the requesting end. One can programmatically fulfill requests for large file uploads, but there is no way around this limitation on the minio console page.
Is it possible in the future to add a checkbox to minio console file uploads to provide the option of chunking?
The text was updated successfully, but these errors were encountered: