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
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
>> 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
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.
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
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