Re: Use Parallel Search

2011-02-04 Thread Gustavo Maia
Hello, I am not using Nutch. Let me explain more about how to use the lucene. The class has lucene RemoteSearch which a server machine is used to publish its index. RemoteSearchable remote = new RemoteSearchable (parallelSearcher); Naming.rebind ("//"+ LocalIP +"/"+ artPortMap.getNick (), remote

Re: Use Parallel Search

2011-02-03 Thread Ganesh
I am having similar kind of problem. I need to scale out. Could you explain how you have done distributed indexing and search using Lucene. Regards Ganesh - Original Message - From: "Gustavo Maia" To: Sent: Thursday, February 03, 2011 11:36 PM Subject: Use Parallel Search > Hello,

Re: Use Parallel Search

2011-02-03 Thread Grant Ingersoll
Can you describe a bit more what you are searching (types of docs) and what your query rate looks like? Also, what features are you using? Faceting? Sorting? ... On Feb 3, 2011, at 1:06 PM, Gustavo Maia wrote: > Hello, > > Let me give a brief description of my scenario. > Today I am only us

Re: Use Parallel Search

2011-02-03 Thread Em
Hello Gustavo, well, I did not use Nutch at all, but I got some experience with using Solr. In Solr you could use a multicore-setup where each core points to another hard-drive of your server. For other Solr-Servers ( and cores as well ) each core is a seperate index, so to query all drives of on

Re: Use Parallel Search

2011-02-02 Thread Gustavo Maia
2011/2/2 Gustavo Maia > Hello, > > Let me give a brief description of my scenario. > Today I am only using Lucene 2.9.3. I have an index of 30 million > documents distributed on three machines and each machine with 6 hds (15k > rmp). > The server queries the search index using the remote class se