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
I have added chunk sizes on client side to send large files in chunks. I get the tus options called parallelUploads and I set it to the 5 so that file chunks upload parallel but it is showing error like : 501 Not Implemented and Concatenation extension is not (yet) supported. Disable parallel uploads in the tus client.
I went through the docs to find this feature but I didn't get anything there. So how do I upload chunks parallelly?
As the error message says, the tus server you are using does not provide the concatenation extension, which is required for parallelUploads to work. There is nothing you can do on the client-side other than asking the administrator of the tus server to implement or enable this extension.
As the error message says, the tus server you are using does not provide the concatenation extension, which is required for parallelUploads to work. There is nothing you can do on the client-side other than asking the administrator of the tus server to implement or enable this extension.
Do we have any example of the implementation for the parallel upload?
In addition, I am using the tus-node-server on the backend. there I have added extensions but when the last chunk is uploading at that time I got the error.
when all the chunks are uploaded then last request is called and that req. is failed. error message: Upload-Length or Upload-Defer-Length header required.
i have added this extension at the backend ['creation', 'concatentation', 'concatenation-unfinished', 'creation-defer-length'] @Acconut
I have added chunk sizes on client side to send large files in chunks. I get the tus options called parallelUploads and I set it to the 5 so that file chunks upload parallel but it is showing error like : 501 Not Implemented and Concatenation extension is not (yet) supported. Disable parallel uploads in the tus client.
I went through the docs to find this feature but I didn't get anything there. So how do I upload chunks parallelly?
My Tus Options
endpoint: createUrl("/upload/"), headers: { 'x-access-token': createJWTToken(currentId) }, retryDelays: [0, 1000, 3000, 5000], metadata, uploadDataDuringCreation: true, removeFingerprintOnSuccess: true, chunkSize: 64 * 1024 * 1024, parallelUploads: 5,
The text was updated successfully, but these errors were encountered: