Re: Different update handlers for auto commit configuration

2014-12-02 Thread danny teichthal
Thanks for the clarification, I indeed mixed it with UpdateRequestHandler. On Mon, Dec 1, 2014 at 11:24 PM, Chris Hostetter hossman_luc...@fucit.org wrote: : I thought that the auto commit is per update handler because they are : configured within the update handler tag. updateHandler is

Re: Different update handlers for auto commit configuration

2014-12-01 Thread danny teichthal
Thanks for the reply Erik, I thought that the auto commit is per update handler because they are configured within the update handler tag. From a little debugging on SOLR code and it looked as if the Commit Tracker will schedule a soft commit on update if it gets commitwithin value, and if not it

Re: Different update handlers for auto commit configuration

2014-12-01 Thread Chris Hostetter
: I thought that the auto commit is per update handler because they are : configured within the update handler tag. updateHandler is not the same thing as a requestHandler that does updates. there can be many Update request handlers configured, but there is only ever one updateHandler/ in a

Different update handlers for auto commit configuration

2014-11-30 Thread danny teichthal
Hi, On our system we currently initiate a soft commit to SOLR after each business transaction that initiate an update. Hard commits are automatic each 2 minutes. We want to limit the explicit commit and move to autoSoftCommit. Because of business restrictions: Online request should be available

Re: Different update handlers for auto commit configuration

2014-11-30 Thread Erick Erickson
Uhhhm, the soft/hard commit settings are global, not configured in each update handler. How are updates being done? Because if you're using SolrJ, you can just use the server.add(doclist, commitwithin) and it'll just be handled automatically. True, putting a 2 second commitwithin on an online

commit configuration

2011-05-26 Thread anass talby
Hi, I'm using DIH and want to perform commits each N processed document, how can I do this? thanks in advance -- Anass

Re: commit configuration

2011-05-26 Thread Markus Jelsma
http://svn.apache.org/repos/asf/lucene/dev/trunk/solr/example/solr/conf/solrconfig.xml Look for autocommit and maxDocs. Hi, I'm using DIH and want to perform commits each N processed document, how can I do this? thanks in advance