Re: Rebuild Spellchecker based on cron expression

2012-05-09 Thread ilanh
.build=true&wt=xml -- View this message in context: http://lucene.472066.n3.nabble.com/Rebuild-Spellchecker-based-on-cron-expression-tp2076054p3973948.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Rebuild Spellchecker based on cron expression

2010-12-13 Thread Martin Grotzke
Hi Erick, thanx for your advice! I'll check the options with our client and see how we'll proceed. My spare time right now is already full with other open source stuff, otherwise it'd be fun contributing s.th. to solr! :-) Cheers, Martin On Mon, Dec 13, 2010 at 2:46 PM, Erick Erickson wrote: >

Re: Rebuild Spellchecker based on cron expression

2010-12-13 Thread Martin Grotzke
On Mon, Dec 13, 2010 at 4:01 AM, Erick Erickson wrote: > I'm shooting in the dark here, but according to this: > http://wiki.apache.org/solr/SolrReplication > after the slave pulls the index > down, it issues a commit. So if your > slave is configured t

Re: Rebuild Spellchecker based on cron expression

2010-12-13 Thread Erick Erickson
*** Just wondering what's the reason that this patch receives that little interest. Anything wrong with it? *** Nobody got behind it and pushed I suspect. And since it's been a long time since it was updated, there's no guarantee that it would apply cleanly any more. Or that it will perform as int

Re: Rebuild Spellchecker based on cron expression

2010-12-13 Thread Peter Karich
Building on optimize is not possible as index optimization is done on the master and the slaves don't even run an optimize but only fetch the optimized index. isn't the spellcheck index replicated to the slaves too? -- http://jetwick.com open twitter search

Re: Rebuild Spellchecker based on cron expression

2010-12-12 Thread Martin Grotzke
Hi, when thinking further about it it's clear that https://issues.apache.org/jira/browse/SOLR-433 would be even better - we could generate the spellechecker indices on commit/optimize on the master and replicate them to all slaves. Just wondering what's the reason that this patch receives that

Re: Rebuild Spellchecker based on cron expression

2010-12-12 Thread Erick Erickson
I'm shooting in the dark here, but according to this: http://wiki.apache.org/solr/SolrReplication after the slave pulls the index down, it issues a commit. So if your slave is configured to generate the dictionary on commit, will it "just happen"? But a

Re: Rebuild Spellchecker based on cron expression

2010-12-12 Thread Martin Grotzke
On Mon, Dec 13, 2010 at 2:12 AM, Markus Jelsma wrote: > Maybe you've overlooked the build parameter? > http://wiki.apache.org/solr/SpellCheckComponent#spellcheck.build I'm aware of this, but we don't want to maintain cron-jobs on all slaves for all spellcheckers for all cores. That's why I'm think

Re: Rebuild Spellchecker based on cron expression

2010-12-12 Thread Markus Jelsma
Maybe you've overlooked the build parameter? http://wiki.apache.org/solr/SpellCheckComponent#spellcheck.build > Hi, > > the spellchecker component already provides a buildOnCommit and > buildOnOptimize option. > > Since we have several spellchecker indices building on each commit is > not really

Rebuild Spellchecker based on cron expression

2010-12-12 Thread Martin Grotzke
Hi, the spellchecker component already provides a buildOnCommit and buildOnOptimize option. Since we have several spellchecker indices building on each commit is not really what we want to do. Building on optimize is not possible as index optimization is done on the master and the slaves don't ev