You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by Apache Wiki <wi...@apache.org> on 2011/07/21 22:05:25 UTC

[Solr Wiki] Trivial Update of "DataImportHandler" by MarkoBonaci

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Solr Wiki" for change notification.

The "DataImportHandler" page has been changed by MarkoBonaci:
http://wiki.apache.org/solr/DataImportHandler?action=diff&rev1=290&rev2=291

  = Scheduling =
  {i}
  
-  * DataImportScheduler
+  * Data``Import``Scheduler
   * Version 1.2
   * Last revision: 20.09.2010.
   * Author: Marko Bonaci
+  * Jira: http://issues.apache.org/jira/browse/SOLR-2305
  
   * Enables scheduling DIH delta or full imports
   * Sends HTTP POST request to Solr server
@@ -1094, +1095 @@

  
  <<BR>> <!> TODO:
  
-  * enable user to create multiple scheduled tasks (List<DataImportScheduler>)
+  * enable user to create multiple scheduled tasks (List<Data``Import``Scheduler>)
   * add ''cancel'' functionality (to be able to completely disable ''DIHScheduler'' background thread, without stopping the app/server). Currently, sync can be disabled by setting  ''syncEnabled'' param to anything other than "1" in ''dataimport.properties'', but the background thread still remains active and reloads the properties file on every run (so that sync can be hot-redeployed)
   * try to use Solr's classes wherever possible
   * add javadoc style comments
@@ -1111, +1112 @@

    * parametrized the schedule interval (in minutes)
  
   * v1.1:
-   * now using ''SolrResourceLoader'' to get ''solr.home'' (as opposed to ''System properties'' in v1.0)
+   * now using ''Solr``Resource``Loader'' to get ''solr.home'' (as opposed to ''System properties'' in v1.0)
    * forces reloading of the properties file if the response code is not 200
    * logging done using ''slf4j'' (used ''System.out'' in v1.0)