My data-import-config.xml has a parent entity and a child entity. The data is coming from rdbms's.
I'm trying to make use of the delta-import feature where a change in the child entity can be used to regenerate the entire document. The child entity is on a different database (and a different server) from the parent entity, so the child's parentDeltaQuery cannot reference the table of the parent entity the way that the example on the wiki does, because it's bound to the database connection for the child entity's data (as far as I can tell). http://wiki.apache.org/solr/DataImportHandler#Using_delta-import_command I have tried extracting the parent's ID's from the child table in the parentDeltaQuery, thinking that these id's would be fed into the parent's deltaImportQuery, but this doesn't seem to work, either. Should this work? If not, any suggestions how to work around it? thanks, Tim