Re: Best Practices for Distributing Lucene Indexing and Searching

2005-03-01 Thread Doug Cutting
Yonik Seeley wrote: 6. Index locally and synchronize changes periodically. This is an interesting idea and bears looking into. Lucene can combine multiple indexes into a single one, which can be written out somewhere else, and then distributed back to the search nodes to replace their existing inde

Re: Best Practices for Distributing Lucene Indexing and Searching

2005-03-01 Thread Yonik Seeley
> 6. Index locally and synchronize changes periodically. This is an > interesting idea and bears looking into. Lucene can combine multiple > indexes into a single one, which can be written out somewhere else, and > then distributed back to the search nodes to replace their existing > index. This i

Re: Best Practices for Distributing Lucene Indexing and Searching

2005-03-01 Thread Chris Hostetter
: We have a requirement for a new version of our software that it run in a : clustered environment. Any node should be able to go down but the : application must keep functioning. My application is looking at similar problems. We aren't yet live, but the only practicle solution we have implimente