You cannot do it directly in the db-data-config.xml. What you can do is to use the EventListener. To do this you have to write a class that inherits the EventListner-interface and execute your update command on: 'onEvent'. In the event you will have access to the context params so you could make it generic and read your command from the configuration file.
To do this create a EventListner:
package se;
import org.apache.solr.handler.dataimport.Context;
import org.apache.solr.handler.dataimport.EventListener;
public class DataImportEndEventListner implements EventListener {
/* (non-Javadoc)
* @see org.apache.solr.handler.dataimport.EventListener#onEvent(org.apache.solr.handler.dataimport.Context)
*/
@Override
public void onEvent(Context ctx) {
//read config
ctx.getRequestParameters().get("parameter-name").toString());
try
{
// Do what you want
}
catch(Exception ex)
{
// handle error
}
}
}
and register it in the db-data-config.xml:
<dataConfig>
<document onImportEnd="se.DataImportEndEventListner">
....
</document>
</dataConfig>