I have very large amount of data that is to be uploaded to the AEM assets. The data is pdf files ranging between 3000 to 3500.
I have checked multiple selection and upload in AEM assets touch UI. But there is a limit of 2GB asset upload at one time and this limit will create a challenge of doing the same upload job multiple times.
Anyone having idea to migrate such large data please guide.
Thanks in advance!!
Solved! Go to Solution.
Views
Replies
Total Likes
You can use the Bulk Import tool. Check the below link:
Or you can write a script using curl to upload the assets. This will take some time and you need to write your own script. Here is the curl command to upload a single asset:
curl -u admin:admin -X POST -F file=@"test.png" http://localhost:4502/content/dam/geometrixx/portraits.createasset.html
Hi @hs06 ,
Is this one time migration? What is the source of these PDF files. If the files are on cloud (S3) then there is an Asset Ingestor available which can help.
You can also think of Asset API or Desktop app to achieve the target.
Please check this for few OOTB options available-
You can use the Bulk Import tool. Check the below link:
Or you can write a script using curl to upload the assets. This will take some time and you need to write your own script. Here is the curl command to upload a single asset:
curl -u admin:admin -X POST -F file=@"test.png" http://localhost:4502/content/dam/geometrixx/portraits.createasset.html
Views
Likes
Replies
Views
Likes
Replies