Re: Distributed indexing

2011-11-11 Thread Rafał Kuć
Hello! Thanks for the answer :) -- Regards, Rafał Kuć > On Nov 9, 2011, at 12:52 PM, Rafał Kuć wrote: >> Hello! >> >> I was looking for a way to implement distributed indexing in Solr. >> From looking at the https://issues.apache.org/jira/browse/SOLR-2358 >> there was some work done to enab

Re: Distributed indexing

2011-11-11 Thread Mark Miller
On Nov 9, 2011, at 12:52 PM, Rafał Kuć wrote: > Hello! > > I was looking for a way to implement distributed indexing in Solr. > From looking at the https://issues.apache.org/jira/browse/SOLR-2358 > there was some work done to enable Solr to distribute the documents to > shards without the need o

Re: Distributed indexing

2011-11-11 Thread Mark Miller
>> From: Erick Erickson >> To: solr-user@lucene.apache.org >> Sent: Friday, November 11, 2011 8:47 AM >> Subject: Re: Distributed indexing >> >> As you can see, there are a lot of related issues. Solr Cloud >> is where this act

Re: Distributed indexing

2011-11-11 Thread Otis Gospodnetic
Nutch Lucene ecosystem search :: http://search-lucene.com/ > >From: Erick Erickson >To: solr-user@lucene.apache.org >Sent: Friday, November 11, 2011 8:47 AM >Subject: Re: Distributed indexing > >As you can see, there are a lot of related issues.

Re: Distributed indexing

2011-11-11 Thread Erick Erickson
As you can see, there are a lot of related issues. Solr Cloud is where this action is happening, and there's a lot of active development work going on in this area. But the short form is you'll have to wait for that release (you can pitch in and help if you'd like) The release date for all thi

RE: Distributed Indexing

2010-07-08 Thread Yuval Feinstein
Li, as far as I know, you still have to do this part yourself. A possible way to shard is to number the shards from 0 to numShards-1, calculate hash(uniqueKey)%numShards per each document, and send the document to the resulting shard number. This number is consistent and sends documents uniformly