Hello all, I have checked the forums to see if it is possible to create and index from multiple datasources. I have found references to SOLR-1358, but I don't think this fits my scenario. In all, we have an application where we upload files. On the file upload, I use the Tika extract handler to save metadata from the file (_attr, literal values, etc..). We also have a database which has information on the uploaded files, like the category, type, etc.. I would like to update the index to include this information from the db in the index for each document. If I run a dataimporthandler after the extract phase I am afraid that by updating the doc in the index by its id will just cause that I overwrite the old information with the info from the DB (what I understand is that Solr updates its index by ID by deleting first then recreating the info).
Anyone have any pointers, is there a clean way to do this, or must I find a way to pass the db metadata to the extract handler and save it as literal fields? Thanks in advance Greg