Re: Solr-Distributed search

2014-06-06 Thread Aman Tandon
Thanks shawn i will try to think in that way too :) With Regards Aman Tandon On Fri, Jun 6, 2014 at 8:19 PM, Shawn Heisey wrote: > On 6/6/2014 8:31 AM, Aman Tandon wrote: > > In my organisation we also want to implement the solrcloud, but the > problem > > is that, we are using the master-slav

Re: Solr-Distributed search

2014-06-06 Thread Shawn Heisey
On 6/6/2014 8:31 AM, Aman Tandon wrote: > In my organisation we also want to implement the solrcloud, but the problem > is that, we are using the master-slave architecture and on master we do all > indexing, architecture of master is lower than the slaves. > > So if we implement the solrcloud in a

Re: Solr-Distributed search

2014-06-06 Thread Aman Tandon
Thanks shawn. In my organisation we also want to implement the solrcloud, but the problem is that, we are using the master-slave architecture and on master we do all indexing, architecture of master is lower than the slaves. So if we implement the solrcloud in a fashion that master will be the le

Re: Solr-Distributed search

2014-06-06 Thread Aman Tandon
Thanks shawn. In my organisation we also want to implement the solrcloud, but the problem is that, we are using the master-slave architecture and on master we do all indexing, architecture of master is lower than the slaves. So if we implement the solrcloud in a fashion that master will be the le

Re: Solr-Distributed search

2014-06-06 Thread Shawn Heisey
On 6/6/2014 6:25 AM, Aman Tandon wrote: > Does this *shards* parameter will also work in near future with solr 5? I am not aware of any plan to deprecate or remove the shards parameter. My personal experience is with versions from 1.4.0 through 4.7.2. It works in all of those versions. Without

Re: Solr-Distributed search

2014-06-06 Thread Aman Tandon
Hi, Does this *shards* parameter will also work in near future with solr 5? With Regards Aman Tandon On Thu, Jun 5, 2014 at 2:59 PM, Mahmoud Almokadem wrote: > Hi, you can search using this sample Url > > > http://localhost:8080/solr/core1/select?q=*:*&shards=localhost:8080/solr/core1,localh

Re: Solr-Distributed search

2014-06-05 Thread Mahmoud Almokadem
Hi, you can search using this sample Url http://localhost:8080/solr/core1/select?q=*:*&shards=localhost:8080/solr/core1,localhost:8080/solr/core2,localhost:8080/solr/core3 Mahmoud Almokadem On Thu, Jun 5, 2014 at 8:13 AM, Anurag Verma wrote: > Hi, > Can you please help me solr distrib

Re: Solr Distributed Search vs Hadoop

2011-12-28 Thread Ted Dunning
This copying is a bit overstated here because of the way that small segments are merged into larger segments. Those larger segments are then copied much less often than the smaller ones. While you can wind up with lots of copying in certain extreme cases, it is quite rare. In particular, if you

Re: Solr Distributed Search vs Hadoop

2011-12-28 Thread Lance Norskog
Here is an example of schema design: a PDF file of 5MB might have maybe 50k of actual text. The Solr ExtractingRequestHandler will find that text and only index that. If you set the field to stored=true, the 5mb will be saved. If saved=false, the PDF is not saved. Instead, you would store a link to

Re: Solr Distributed Search vs Hadoop

2011-12-23 Thread Nick Vincent
For data of this size you may want to look at something like Apache Cassandra, which is made specifically to handle data at this kind of scale across many machines. You can still use Hadoop to analyse and transform the data in a performant manner, however it's probably best to do some research on

Re: Solr Distributed Search vs Hadoop

2011-12-20 Thread Ted Dunning
Well that begins to not look so much like a Solr/Lucene problem. Overall data is moderately large (TB's to 10's of TB's) for Lucene and the individual user profiles are distinctly large to be storing in Lucene. If there is part of the profile that you might want to search, that would be appropria

Re: Solr Distributed Search vs Hadoop

2011-12-20 Thread Alireza Salimi
Well, actually we haven't started the actual project yet. But probably it will have to handle the data of millions of users, and a rough estimation for each user's data would be something around 5 MB. The other problem is that those data will be changed very often. I hope I answered your question

Re: Solr Distributed Search vs Hadoop

2011-12-20 Thread Ted Dunning
You didn't mention how big your data is or how you create it. Hadoop would mostly used in the preparation of the data or the off-line creation of indexes. On Tue, Dec 20, 2011 at 12:28 PM, Alireza Salimi wrote: > Hi, > > I have a basic question, let's say we're going to have a very very huge set

Re: solr distributed search don't work

2011-09-01 Thread olivier sallou
explicit enum 1 10 192.168.1.6/solr/,192.168.1.7/solr/ 2011/8/19 Li Li > could you please show me your configuration in solrconfig.xml? > > On Fri, Aug 19, 2011 at 5:31 PM, olivier sallou > wrote: > > Hi, > > I do not use spell but I use

Re: solr distributed search don't work

2011-08-19 Thread Li Li
could you please show me your configuration in solrconfig.xml? On Fri, Aug 19, 2011 at 5:31 PM, olivier sallou wrote: > Hi, > I do not use spell but I use distributed search, using qt=spell is correct, > should not use qt=\spell. > For "shards", I specify it in solrconfig directly, not in url, bu

Re: solr distributed search don't work

2011-08-19 Thread olivier sallou
Hi, I do not use spell but I use distributed search, using qt=spell is correct, should not use qt=\spell. For "shards", I specify it in solrconfig directly, not in url, but should work the same. Maybe an issue in your spell request handler. 2011/8/19 Li Li > hi all, > I follow the wiki http

Re: Solr Distributed Search throws org.apache.solr.common.SolrException: Form_too_large Exception

2009-07-01 Thread Mark Miller
Or if you must for some reason, you can raise the limit with the following system property: org.mortbay.http.HttpRequest.maxFormContentSize=50 You could also do it in the servlet context, and I think there is even a way in jetty.xml. -- - Mark http://www.lucidimagination.com

Re: Solr Distributed Search throws org.apache.solr.common.SolrException: Form_too_large Exception

2009-07-01 Thread Shalin Shekhar Mangar
On Thu, Jul 2, 2009 at 12:14 AM, GiriGG wrote: > > Hi All, > > I am trying to do a distributed search and getting the below error. Please > let me know if you know how to solve this issue. > > 18:20:28,202 ERROR [STDERR] Caused by: > org.apache.solr.common.SolrException: > *Form_too_large* > __ja

Re: solr distributed search example - exception

2009-06-09 Thread Mark Miller
Thanks for bringing closure to this Raakhi. - Mark Rakhi Khatwani wrote: Hi Mark, i actually got this error coz i was using an old version of java. now the problem is solved Thanks anyways Raakhi On Tue, Jun 9, 2009 at 11:17 AM, Rakhi Khatwani wrote: Hi Mark,

Re: solr distributed search example - exception

2009-06-08 Thread Rakhi Khatwani
Hi Mark, i actually got this error coz i was using an old version of java. now the problem is solved Thanks anyways Raakhi On Tue, Jun 9, 2009 at 11:17 AM, Rakhi Khatwani wrote: > Hi Mark, > yea i would like to open a JIRA issue for it. how do i go about > that? > >

Re: solr distributed search example - exception

2009-06-08 Thread Rakhi Khatwani
Hi Mark, yea i would like to open a JIRA issue for it. how do i go about that? Regards, Raakhi On Mon, Jun 8, 2009 at 7:58 PM, Mark Miller wrote: > That is a very odd cast exception to get. Do you want to open a JIRA issue > for this? > > It looks like an odd exception because the

Re: solr distributed search example - exception

2009-06-08 Thread Mark Miller
That is a very odd cast exception to get. Do you want to open a JIRA issue for this? It looks like an odd exception because the call is: NodeList nodes = (NodeList)solrConfig.evaluate(configPath, XPathConstants.NODESET); // cast exception is we get an ArrayList rather than NodeList Which