4

Using blueimp JQuery file upload plugin. Am able to upload a large file in sequential chunks .

But my requirement is to upload the same file in parallel chunks instead of sequential.

How can I achieve this using the above specified plugin ?

What are the changes required at server side (Currently using Servlets with Weblogic server) to handle parallel requests ?

1
  • Allowing chucks to upload simultaneously should not be rocket science. I already have the server side file handler code to deal with it. Now I'm working on modify jquery.fileupload.js to support it. It will obviously require another option and since I am new to writing jquery it will take a bit of time for me to figure it out, but alas I will. It would have been nice if the author of blueimp had posted an override method to do it. However I think if I look at the resumable override he has at link I have a feeling it mig Commented Jan 10, 2016 at 6:46

2 Answers 2

1

Looking in the source of the plugin it looks like you need to make sure you use the configuration setting limitConcurrentUploads and use an integer greater than 0.

Sign up to request clarification or add additional context in comments.

1 Comment

limitConcurrentUploads setting is for multiple file uploads concurrently. But my requirement is to upload the chunks of same file concurrently.
1

I have researched the plugin code and found that next chunk will be created only after previous chunk is uploaded successfully. That means this plugin you can't do parallel chunk uploads, only concurrent file uploads. You have only one way overwriting the _chunkedUpload method. The process of overwriting shold be something like this jquery widget overwrite (i am not sure).

3 Comments

Eng.: Parallel = Concurrent ;)
thnx for grammar fix)
Thanks @AlexNikulin for spending time on this.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.