Upload Progress with Chunked Upload #714
-
Hello, After some issues uploading large files with regular upload, I decided to try Chunked Uploading to avoid server timeouts and other improvements. With regular upload I was able to show a nice and smooth progress bar, however I find this impossible with chunk uploads, I only get a progress update whenever a chunk is fully uploaded. I guess this can be solved including an event such as CHUNK_PROGRESS or making the ITEM_PROGRESS event consider also the chunk progress in global. Maybe this is difficult due to possible parallelism, in my case I upload every chunk sequentially. Is there any possibility to get an smooth progress using chunk upload? Thank you very much, Progress with chunk upload: Progress with regular upload: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
hey @OscarEstudilloMarin, I will need to think about this and see what would be the best way. Making item-progress incorporate chunk-progress would be ideal from user perspective, but architecturally, could be very problematic. So I expect exposing chunk progress would make the most sense. I will update when I have some time to consider and come up with a design. |
Beta Was this translation helpful? Give feedback.
hey @OscarEstudilloMarin,
thanks for the feedback. Definitely makes sense.
Cool upload UI, btw. :)
I will need to think about this and see what would be the best way.
Making item-progress incorporate chunk-progress would be ideal from user perspective, but architecturally, could be very problematic.
So I expect exposing chunk progress would make the most sense. I will update when I have some time to consider and come up with a design.