scottchu] How to rebuild master-slave multi-core with schema.xml from old verison in Solr 5.5

2016-03-27 Thread scott.chu
I post a question "How to rebuild master-slave multi-core with schema.xml from old verison in Solr 5.5" on stackoverflow. Hoping some expericnes solr people can reply me with a suggestive answer. The url is:

list of ngram

2016-03-27 Thread Shamir, Maya
Hi, I'm trying to extract all unigram from a collection which stand with the some mincount limit. Currently the limit is facet.mincount. but we want to use mincount of distinct count for a field. For example: For collection contains these documents: ID Field1 content A A1 Hello

RE: Making my own search website

2016-03-27 Thread Adel Mohamed Khalifa
Thanks Andrea, I want to say if my string is wrong it would not connect when I connect from windows it’s the same code, I did not change in it. SOLR_SERVER_URL=http://172.16.0.72:8983/solr/SearchCore Regards, Adel Khalifa From: Andrea Gazzarini [mailto:gxs...@gmail.com] Sent:

Re: Making my own search website

2016-03-27 Thread Andrea Gazzarini
Hi Adel, Absolutely not sure what's happening on (Solr) server side, the first thing that comes on my mind is: if you're correctly accessing the solr admin console that means the string you're getting in that resource bundle is wrong. I'd print out that value in order to make sure about the

Re: Solr to Production

2016-03-27 Thread Erik Hatcher
Now back up and start troubleshooting with curl outside of java, netbesns, etc > On Mar 27, 2016, at 07:24, Adel Mohamed Khalifa > wrote: > > Hello, > > I checked the port and it is not blocked. > When I click the search button there is nothing. > > I try to debug my

Making my own search website

2016-03-27 Thread Adel Mohamed Khalifa
Hello All, First, I want to apology for my complexity needs before and that I cannot asking obviously. So Now, I create my Solr server and indexing I can log on it directly throw ( http://ip:port/solr/#) from ubuntu server or my windows laptop. I build my website on netbeans using J2EE on

RE: Solr to Production

2016-03-27 Thread Adel Mohamed Khalifa
Hello, I checked the port and it is not blocked. When I click the search button there is nothing. I try to debug my netbeans on Ubuntu and the same problem is existing it cannot call the server and stop at this statement :- -- SolrServer server = new HttpSolrServer(ip:port/solr/core); Regards,

Re: score mixing

2016-03-27 Thread Reth RM
If you are looking for boosting the score of the document based on the value of rank field then you can as well use field boosting. rank^10. For the other case of adding scores and rank values, using "function query" should serve the requirement.

Re: Solr to Production

2016-03-27 Thread Reth RM
Is that website deployed on same machine where solr is running? If not, check whether the port is being blocked due to firewall protection. What is the response message that you are receiving? On Sun, Mar 27, 2016 at 3:16 PM, Adel Mohamed Khalifa < a.moha...@saudisoft.com> wrote: > Hello All,

Solr to Production

2016-03-27 Thread Adel Mohamed Khalifa
Hello All, I installed solr server on my Ubuntu and when I use it directly it runs good, but when I use it remotely using my website it doesnot run and I don't know what the reason, can you help me please. Regards, Adel Khalifa

score mixing

2016-03-27 Thread michael solomon
Hi, I have nested documents and use in BlockJoinQueryParser. In parent documents I have "rank" field that give an arbitrary score for each parent. It's possible to mix the original scoring with mine? i.e: SolrScore+rank=finel score or(proportional scoring..)SolrScore/MaxScore + rank/MaxRank =