Re: Tweaking boosts for more search results variety

2013-09-07 Thread Furkan KAMACI
What do you mean with "*these limitations" *Do you want to make multiple grouping at same time? 2013/9/6 Sai Gadde > Thank you Jack for the suggestion. > > We can try group by site. But considering that number of sites are only > about 1000 against the index size of 5 million, One can expect mo

Re: SolrCloud - shard containing an invalid host:port

2013-09-07 Thread Furkan KAMACI
If that line(192.168.1.10:8983/solr) is not green and gray then probably it is because of you started up a Solr instance without defining a port and it has registered itself into Zookeeper. 2013/9/3 Daniel Collins > Was it a test instance that you created 8983 is the default port, so > possibly

Re: Can we used CloudSolrServer for searching data

2013-09-07 Thread Furkan KAMACI
Shalin is right. If you read the documentation for CloudSolrServer you will see that: *SolrJ client class to communicate with SolrCloud. Instances of this class communicate with Zookeeper to discover Solr endpoints for SolrCloud collections, and then use the LBHttpSolrServer to issue requests.* *

Re: Regarding reducing qtime

2013-09-07 Thread Furkan KAMACI
What is your question here? 2013/9/6 prabu palanisamy > Hi > > I am currently using solr -3.5.0 indexed by wikipedia dump (50 gb) with > java 1.6. I am searching the tweets in the solr. Currently it takes average > of 210 millisecond for each post, out of which 200 millisecond is consumed > by

Re: Adding weight to location of the string found

2013-09-07 Thread Furkan KAMACI
Firstly, did you check here: http://lucene.apache.org/core/4_4_0/core/org/apache/lucene/search/package-summary.html#package_description 2013/8/28 zseml > In Solr syntax, is there a way to add weight to the result found based on > the > location of the string that it's found? > > For instance, i

Re: Indexing pdf files - question.

2013-09-07 Thread Furkan KAMACI
Could you show us logs you get when you start your web container? 2013/9/4 Nutan Shinde > My solrconfig.xml is: > > > > class="solr.extraction.ExtractingRequestHandler" > > > > > descwhich > is defined as shown below in schem.xml--> > > true > > attr_ > > true > > > > > > > > > > Schem

Re: Connection Established but waiting for response for a long time.

2013-09-07 Thread Furkan KAMACI
Could you give us more information about your other Jetty configurations? 2013/9/6 qungg > Hi, > > I'm runing solr 4.0 but using legacy distributed search set up. I set the > shards parameter for search, but indexing into each solr shards directly. > The problem I have been experiencing is buil

Re: Unknown attribute id in add:allowDups

2013-09-07 Thread Furkan KAMACI
I did not use the Pecl package and the problem maybe about that. I want to ask that when you define your schema you indicate that: *required="true"* However error says: *allowDups* for id field. So it seems that id is not a unique field for that package. You may need to config anything else at

Re: collections api setting dataDir

2013-09-07 Thread mike st. john
Thanks erick, yes the collections api ignored it,what i ended up doing, was just building out some fairness in regards to creating the cores and calling coreadmin to create the cores, seemed to work ok. Only issue i'm having now, and i'm still investigating is subsequent queries are returnin

Re: Solr4.4 or zookeeper 3.4.5 do not support too many collections? more than 600?

2013-09-07 Thread Erick Erickson
Right, I _think_ that the use of ZK is limited to 1M and it looks like the 600th collection pushes the ZK state past 1M. 1024*1024 is 1,048,576 which is way suspiciously close to 1,048,971 At 600 collections you're pushing past this limit it looks like. Not quite sure where it can be changed.

Re: Batch Solr Server

2013-09-07 Thread Erick Erickson
It's unclear to me why using the server.add(Collection list = new... while (more docs) { list.add(doc); if ((list.size() % batch_size) == 0) { server.add(list); list.clear(); } } if (list.size() > 0) server.add(list); Best, Erick On Fri, Sep 6, 2013 at 7:53 PM, gaoagong

Re: charfilter doesn't do anything

2013-09-07 Thread Jack Krupansky
For the second question, there is no multiline mode - the ends of lines are just white space characters. IOW, it is implicitly multi-line. -- Jack Krupansky -Original Message- From: Andreas Owen Sent: Thursday, September 05, 2013 12:03 PM To: solr-user@lucene.apache.org Subject: charf

Re: collections api setting dataDir

2013-09-07 Thread Erick Erickson
Did you try just specifying dataDir=blah? I haven't tried this, but the notes for the collections API indicate they're "sugar" around core creation commands, see: http://wiki.apache.org/solr/CoreAdmin#CREATE FWIW, Erick On Fri, Sep 6, 2013 at 4:23 PM, mike st. john wrote: > is there any way to

Re: charfilter doesn't do anything

2013-09-07 Thread Erick Erickson
Hmmm, have you looked at: http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters#solr.HTMLStripCharFilterFactory Not quite the , perhaps, but might it help? On Fri, Sep 6, 2013 at 11:33 AM, Andreas Owen wrote: > ok i have html pages with .content i > want.. i want to extract (

Solr4.4 or zookeeper 3.4.5 do not support too many collections? more than 600?

2013-09-07 Thread diyun2008
*I have installed solr cloud with solr4.4 and zookeeper 3.4.5. And I'm testing some requirements with 10k collections supporting in one solr server. When I post collection to solr server(admin/collections?action=CREATE&name=europetest${loopcnt}&numShards=2&replicationFactor=2&maxShardsPerNode=2) w