Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

Number of Parallel Upload on DAM Coral UI

Avatar

Former Community Member

Hi,

I have noticed when i upload an asset through coral UI only 6 assets get uploaded at a time and the moment one of six get completed upload for next starts. Can anyone please point me where this customization is done (file location)

[img]CoralUI.png[/img]

Regards !

1 Accepted Solution

Avatar

Correct answer by
Employee

FTP upload is only in Assets on Demand (the cloud based on Demand assets solution).

View solution in original post

8 Replies

Avatar

Level 10

So the choice are use the default Touch UI limit to upload assets or build you own solution using a custom sling servlet that uses AssetManager API - as discussed in the article that I referenced. Hope this helps. 

Avatar

Level 10

Referring to the Touch UI:

[img]TouchUIAssets.png[/img]

I do not believe that this is a customizable setting-- according to the AEM docs:

http://docs.adobe.com/docs/en/aem/6-0/administer/content/assets.html

http://docs.adobe.com/docs/en/aod/overview/working-with-assets/uploading/uploading-assets.html

If you are concerned about only uploading 6 assets at a time - you can develop a custom DAM solution to upload multiple assets by using a custom AEM Sling Servlet and the AEM AssetManager API:

https://helpx.adobe.com/experience-manager/using/multiple-digital-assets.html

Avatar

Former Community Member

Thanks Sam for your blog ! I am able to create custom dam uploader with the help of your blog. Although what i noticed is when number of parallel upload is more (since user can select n number of file to upload at a time) then CPU usage of system spikes up and system starts behaving very slow.

While doing further investigation i found that out of box dam upload of AEM allows only 6 upload at a time, therefore i wanted to understand same codebase/logic which AEM is implemented. Any pointer would be greatly helpful !

Thanks in advance !

Avatar

Employee

Please keep in mind,that this limit in number of concurrent uploads is limited by the browser and not AEM. The defaults that  I know are  Firefox-6, Ie6/7 - 2 , Ie8-6. 

Avatar

Former Community Member

Thanks Sam for info !

I was expecting this (number of upload at a time) must be mentioned in some JS  (like damfileupload.js) and if anyone have tried to change this value.

I do have one more question. I noticed that in AEM doc which you have shared has a link which says "use FTP Upload" for file more than 200MB, but i couldn't find how to configure that :

[img]Screen Shot 2015-04-07 at 11.59.27 AM.png[/img] 

Avatar

Correct answer by
Employee

FTP upload is only in Assets on Demand (the cloud based on Demand assets solution).

Avatar

Level 10

Please find below the number of parallel connections that different browsers allows per server/proxy

Firefox 2:  2Firefox 3+: 6Opera 9.26: 4Opera 12:   6Safari 3:   4Safari 5:   6IE 7:       2IE 8:       6IE 10:      8Chrome:     6

Avatar

Former Community Member

Thanks Kalyankar and bsloki for this info !