Reputation: 997
I want to migrate All content from one alfresco repository to other. Here my old Alfresco repository contents are in file system and i want to migrate it to other Alfresco repository which is there in S3 Bucket of amazon cloud.
The reason why i want to customize replication service is, i want to do some validation before migration. and i want to bifurcate content based on content type. because some other logic is already written in new alfresco repository to create different folder structure for all content as per the content type.
So in this case i don't want existing folder structure. i just want all content with metadata.
Can i customize the replication service as per my requirement? Please help me with this. If we are not able to customize then also provide the alternative way to do the same..
Thanks in Advance..
Upvotes: 1
Views: 224
Reputation: 345
if you want only the content details, i would suggest you to create a webscript to export all the details and store in excel. Then you can use this excel to create contents in another server according to the content type.
Consider you have two types of contents with 5Properites(Name,Type,Property1,Property2,Property3). So in script, get the content details through search serive and store it in excel sheet(a row for each contents). You can create different xls for different models also. Then in new server write a script which will read each row and create contents in new folder structure according to the content type.
Upvotes: 2