: Following is the my dataimport handler, which is already having : 'update.chain'. I think I can't give more than one update.chain in this
Correct, you can only specify a single chain when doing an update. You have to decide which parts of your existing "dedupe" chain you want to use inconjunction with your "bodychain" and in what order and make a single chain representing that logic. based on what your body chain looks like (no RunUpdateProcessor or LogUpdateProcessor) i'm guessing you don't really need that to be it's own chain at all -- just add those processors to your dedupe chain. : <requestHandler name="/dataimport" : class="org.apache.solr.handler.dataimport.DataImportHandler"> : <lst name="defaults"> : <str name="update.chain">dedupe</str> : <str name="config">data-config.xml</str> : </lst> : </requestHandler> -Hoss