I have a theoretical question. I have tons of documents of various formats (ODS, MS office, pdf, html) and I'd like to implement ECM system that is not a document management system but rather system that persists metadata and data of documents (of variety of languages) in a unified manner (xhtml) into filesystem and database (only metadata) and that does data processing (indexing, searching).

What technologies would you use and how would you proceed ? These are my options:

Using only Apache Tika - parsing these document and extract metadata and data into xhtml format and then use Lucene or Solr for indexing and fulltext (big disadvantage is database persistence - metadata varies a lot)

Using only Apache Solr with Tika parsers - I don't have experience with it. Does it have a support for database integration like Apache Nutch ?

Then there is Apache UIMA project - very hard to find out what is going on under the hood

Using some CMS that is already using Apache Tika (alfresco, apache jackrabbit) - But I don't have much experience with them. Anyway I'm sure that they have already taken care of problems like (doc vs. docx or different metadata types ) that Apache Tika itself doesn't take care of.

I could also use native XML database like eXist db after I get the xhtml format from Apache Tika, but I'm not sure that it is a good choice because the structure of these document is rather flat. XML database is for more hierarchical document persistence.

link|improve this question

feedback

1 Answer

If you need an "out of the box" solution, you could consider using an integration framework like Camel and establish a camel route for extracting entities from files (using tika) and migrate them on to your database through jdbc. Otherwise, it sounds like a typical data mining task starting with raw source data and ending with extracted entities.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.