How to migrate content from Documentum WebTop to Alfresco?

256 Views Asked by At

I want to migrate content with metadata from Documentum WebTop to Alfresco. Can anyone please help me with the possible ways and some basic steps if possible.

For the moment I can think about using apache chemistry open CMIS API to connect to both repository and migrate content.

But is there any other simplest way available? or is there any tool available that we can use as is with slight modifications?

Your inputs will be really helpfull.

Thanks in Advance...

2

There are 2 best solutions below

2
Miki On

There are various ways.

Easiest way could be using middle layer migration app/toolkit/platform and implement DFC client for reading to middle layer from Documentum. On the write side of your middle layer you could easily use client that could consume REST api at the Alfresco target environment.

We've done this using Kafka as a middle layer using source & sink connectors (Confluent).

3
Jeff Potts On

The simplest way possible is to use CMIS to read from Documentum and write to Alfresco, especially if you don't already know anything about Documentum. That way you only have to learn one API.

This assumes your version of Documentum supports CMIS.

If you have a high volume of data to move you will probably end up implementing some sort of queue or streaming approach, as Miki suggests. But that still doesn't require you to write DFC code unless CMIS falls short in some area.