manyfold icon indicating copy to clipboard operation
manyfold copied to clipboard

Long delay between upload finishing and form submission

Open Floppy opened this issue 1 year ago • 1 comments

When files are uploaded, there seems to be a long delay (seemingly proportional to file size) before uppy accepts that the upload is done, and submits the form. I suspect Shrine is doing something in the background before saying everything is OK to go.

Floppy avatar Oct 01 '24 09:10 Floppy

Having looked at my raspberry pi, this is because the initial upload is going to /tmp, then is being copied to /usr/src/app/tmp before Shrine gets to look at it. And in my case, those are technically different docker filesystems, so it's copying instead of moving (hence it's fast locally). It shouldn't be doing that, surely it should go straight to the shrine tmp?

Floppy avatar Oct 16 '24 13:10 Floppy

This is resolved by the new tus uploader in #3384

Floppy avatar Jan 13 '25 09:01 Floppy