You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While debugging upload issues for Transloadit, I found following bug: If the server responds with a 500 error, Uppy causes two HEAD requests to be sent followed by two PATCH requests, instead of only one. This is problematic because tus server do not allow concurrent requests for a single upload.
I was able to reproduce it locally by following steps:
Start tusd, but set a low timeout (this timeout does not make sense in production but it a nice way to consistently reproduce the error): tusd -timeout=500
Begin the upload and observe following behavior in the network tab:
At first, a POST request is sent to create the upload. That works fine.
Then, the first PATCH request is sent, which gets aborted by the 500 error as mentioned above.
Then, two HEAD requests are sent. Only one HEAD request should be sent, but they are duplicate.
The two HEAD requests cause two PATCH requests to be sent. Only one should occur.
This sequence repeats because the new PATCH requests also get a 500 response.
I also tested the same setup using only tus-js-client and not Uppy. I did not observe this behavior, so I believe it to be caused by Uppy (although tus-js-client could implement a prevention for this, as I will describe later).
The expected behavior is:
Uppy should only send one pair of HEAD and PATCH request.
In effect, tus-js-client is told to retry the upload (causing one pair of HEAD/PATCH requests), while also upload.start is called, causing another pair of requests. tus-js-client currently does not have protection against calling upload.start while the upload is already running. We should implement this, but Uppy's current behavior also seems suspicious because requests are sent, without going through Uppy's request queue.
I believe customers are currently suffering from this issue, so a quick help is appreciated :)
The text was updated successfully, but these errors were encountered:
While debugging upload issues for Transloadit, I found following bug: If the server responds with a 500 error, Uppy causes two HEAD requests to be sent followed by two PATCH requests, instead of only one. This is problematic because tus server do not allow concurrent requests for a single upload.
I was able to reproduce it locally by following steps:
tusd -timeout=500
500 read timeout
error consistently.I also tested the same setup using only tus-js-client and not Uppy. I did not observe this behavior, so I believe it to be caused by Uppy (although tus-js-client could implement a prevention for this, as I will describe later).
The expected behavior is:
The full Uppy code is this:
I debugged a bit and found following hints:
uppy/packages/@uppy/tus/src/index.js
Lines 290 to 293 in e80a7f7
upload.start()
to be called in conjunction with:uppy/packages/@uppy/tus/src/index.js
Lines 328 to 339 in e80a7f7
uppy/packages/@uppy/tus/src/index.js
Line 299 in e80a7f7
In effect, tus-js-client is told to retry the upload (causing one pair of HEAD/PATCH requests), while also
upload.start
is called, causing another pair of requests. tus-js-client currently does not have protection against calling upload.start while the upload is already running. We should implement this, but Uppy's current behavior also seems suspicious because requests are sent, without going through Uppy's request queue.I believe customers are currently suffering from this issue, so a quick help is appreciated :)
The text was updated successfully, but these errors were encountered: