xuang7 opened a new issue, #3732: URL: https://github.com/apache/texera/issues/3732
### **Problem Statement** In lab-data scenarios, when dragging 1,000+ files (each ≥100 MB) into the uploader, we observed: - The page/UI freezes due to overwhelming simultaneous requests and progress events. - Only a few files actually successfully uploaded, while many appear to “disappear” (interrupted or never started) with no final status or any error message. Likely root cause: we cap chunk concurrency per file but do not cap how many files upload in parallel. ### **Proposed Solution** - Introduce an admin-configurable cap on concurrent file uploads (default <5). - Files beyond the cap are placed in a FIFO queue and start automatically as slots free up. - Provide clear visual feedback, e.g., a status bar: Uploading 5 of 100 files (95 queued). -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
