After debugging dataimporter code, i found that it is a bug in the dataimporter code itself. doFullImport() in DataImporter class is not loading last index time where as doDeltaImport() is. The code snippet from doFullImport() is:
if (requestParams.commit) setIndexStartTime(new Date()); where as in doDeltaImport() is: if (requestParams.commit) { Date lastModified = writer.loadIndexStartTime(); setIndexStartTime(new Date()); setLastIndexTime(lastModified); } Looks like it is fixed in latest version of DataImporter.java. I will test with that. -- View this message in context: http://www.nabble.com/delta-import-using-a-full-import-command-is-not-working-tp24989144p25016765.html Sent from the Solr - User mailing list archive at Nabble.com.