Add quartz-like scheduling capability to DIH --------------------------------------------
Key: SOLR-1251 URL: https://issues.apache.org/jira/browse/SOLR-1251 Project: Solr Issue Type: New Feature Components: contrib - DataImportHandler Reporter: Jay Hill Priority: Minor Add capability to schedule in a cron-like way DIH imports. I'm thinking mostly for delta imports, but could be configurable for full imports as well. Ideally something where you could set a cron expression in the DIH configuration: <requestHandler name="/indexer/someContent" class="org.apache.solr.handler.dataimport.DataImportHandler"> <lst name="defaults"> <str name="config">somecontent-config.xml</str> </lst> <lst name="invariants"> <str name="scheduleFullImport">0 15 10 15 * ?</str> <str name="scheduleDeltaImport">0 0 12 * * ?</str> </lst> </requestHandler> -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.