Re: How can i make a distribute search on Solr?

2007-09-20 Thread David Welton
Maybe I got this wrong...but isn't this what mapreduce is meant to deal with? eg, 1) get the job (a query) 2) map it to workers ( servers that provide search results from their own indexing) 3) wait for the results from all workers that reply within acceptable timeframe. 4) comb through

Re: How can i make a distribute search on Solr?

2007-09-20 Thread Yonik Seeley
On 9/19/07, Norberto Meijome [EMAIL PROTECTED] wrote: Maybe I got this wrong...but isn't this what mapreduce is meant to deal with? Not really... you could force a *lot* of different problems into map-reduce (that's sort of the point... being able to automatically parallelize a lot of different

Re: How can i make a distribute search on Solr?

2007-09-20 Thread Norberto Meijome
On Thu, 20 Sep 2007 09:58:17 +0200 David Welton [EMAIL PROTECTED] wrote: That seems to be how Sphinx works: http://www.sphinxsearch.com/doc.html#distributed Of course, the details of this are far over my head for either system, so I don't really know if that's a sensible way of doing

Re: How can i make a distribute search on Solr?

2007-09-20 Thread Norberto Meijome
On Thu, 20 Sep 2007 09:53:46 -0400 Yonik Seeley [EMAIL PROTECTED] wrote: On 9/19/07, Norberto Meijome [EMAIL PROTECTED] wrote: Maybe I got this wrong...but isn't this what mapreduce is meant to deal with? Not really... you could force a *lot* of different problems into map-reduce

RE: How can i make a distribute search on Solr?

2007-09-19 Thread Jarvis
, September 19, 2007 1:47 PM To: solr-user@lucene.apache.org Subject: Re: How can i make a distribute search on Solr? So it means that distributed search is not a basic component in Solr project. I think you just need load balancing. Solr is not a load balancer, you need to find something

Re: How can i make a distribute search on Solr?

2007-09-19 Thread Norberto Meijome
On Wed, 19 Sep 2007 01:46:53 -0400 Ryan McKinley [EMAIL PROTECTED] wrote: Stu is referring to Federated Search - where each index has some of the data and results are combined before they are returned. This is not yet supported out of the box Maybe this is related. How does this compare to

Re: How can i make a distribute search on Solr?

2007-09-19 Thread Yonik Seeley
On 9/19/07, Norberto Meijome [EMAIL PROTECTED] wrote: On Wed, 19 Sep 2007 01:46:53 -0400 Ryan McKinley [EMAIL PROTECTED] wrote: Stu is referring to Federated Search - where each index has some of the It really should be Distributed Search I think (my mistake... I started out calling it

RE: How can i make a distribute search on Solr?

2007-09-19 Thread Jarvis
error is hard to deal with. Thanks, Jarvis -Original Message- From: Stu Hood [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 19, 2007 10:37 PM To: solr-user@lucene.apache.org Subject: Re: How can i make a distribute search on Solr? Nutch implements federated search

Re: How can i make a distribute search on Solr?

2007-09-19 Thread Norberto Meijome
On Wed, 19 Sep 2007 10:29:54 -0400 Yonik Seeley [EMAIL PROTECTED] wrote: Maybe this is related. How does this compare to the map-reduce functionality in Nutch/Hadoop ? map-reduce is more for batch jobs. Nutch only uses map-reduce for parallel indexing, not searching. I see... so in

RE: How can i make a distribute search on Solr?

2007-09-19 Thread Jarvis
, 2007 9:52 AM To: solr-user@lucene.apache.org Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: How can i make a distribute search on Solr? On Wed, 19 Sep 2007 10:29:54 -0400 Yonik Seeley [EMAIL PROTECTED] wrote: Maybe this is related. How does this compare to the map-reduce functionality

Re: How can i make a distribute search on Solr?

2007-09-19 Thread Norberto Meijome
On Thu, 20 Sep 2007 09:37:51 +0800 Jarvis [EMAIL PROTECTED] wrote: If we use the RPC call in nutch . Hi, I wasn't suggesting to use nutch in solr...I'm only a young grasshopper in this league to be suggesting architecture stuff :) but i imagine there's nothing wrong with using what they've built

RE: How can i make a distribute search on Solr?

2007-09-19 Thread Jarvis
existed can do the distributed search based on Solr. Thanks Jarvis. -Original Message- From: Norberto Meijome [mailto:[EMAIL PROTECTED] Sent: Thursday, September 20, 2007 10:06 AM To: solr-user@lucene.apache.org Cc: [EMAIL PROTECTED] Subject: Re: How can i make a distribute

Re: How can i make a distribute search on Solr?

2007-09-19 Thread Mike Klaas
On 19-Sep-07, at 7:21 PM, Jarvis wrote: HI, What you say is done by hadoop that support Hardware Failure、Data Replication and some else . If we want to implement such a good system by ourselves without HDFS but Solr , it's a very very complex work I think. :) I just want

Re: How can i make a distribute search on Solr?

2007-09-19 Thread Norberto Meijome
On Thu, 20 Sep 2007 10:02:08 +0800 Jarvis [EMAIL PROTECTED] wrote: You can see the code in org.apache.nutch.searcher.NutchBean class . :) thx for the pointer. _ {Beto|Norberto|Numard} Meijome In order to avoid being called a flirt, she always yielded easily. Charles,

Re: How can i make a distribute search on Solr?

2007-09-19 Thread Norberto Meijome
On Thu, 20 Sep 2007 10:21:39 +0800 Jarvis [EMAIL PROTECTED] wrote: What you say is done by hadoop that support Hardware Failure、Data Replication and some else . If we want to implement such a good system by ourselves without HDFS but Solr , it's a very very complex work I think.

Re: How can i make a distribute search on Solr?

2007-09-19 Thread Venkatraman S
Along similar lines : assuming that i have 2 indexes in the same box , say at : /home/abc/data/index1 and /home/abc/data/index2, and i want the results from both the indexes when i do a search - then how should this be 'optimally' designed - basically these are different Solr homes and i want

How can i make a distribute search on Solr?

2007-09-18 Thread 过佳
Hi everyone, I successfully do the Collection Distribution on two Linux servers - one master with one slave and sync the index data. How can I make a search request to master server and receive the response by all slave servers? OR it should be manually controlled? Thanks Best

RE: How can i make a distribute search on Solr?

2007-09-18 Thread Jarvis
@lucene.apache.org Subject: How can i make a distribute search on Solr? Hi everyone, I successfully do the Collection Distribution on two Linux servers - one master with one slave and sync the index data. How can I make a search request to master server and receive the response by all slave servers

Re: How can i make a distribute search on Solr?

2007-09-18 Thread Ryan McKinley
So it means that distributed search is not a basic component in Solr project. I think you just need load balancing. Solr is not a load balancer, you need to find something that works for you and configure that elsewhere. Solr works fine without persistent connections, so simple round