Re: Custom authentication plugin & inter-node auth

2016-10-31 Thread devanshic02
Hi I am facing same issue I have a custom authentication plugin and it is calling admin/info/key when the PKIAuthenticationPlugin is attempting to authenticate an inter-node request. Can you let me know how you resolved the same -- View this message in context: http://lucene.472066.n3.nabble

Re: solrj Https problem

2016-10-31 Thread Bryan Bende
A possible problem might be that your certificate was generated for "localhost" which is why it works when you go to https://localhost:8985/solr in your browser, but when SolrJ gets the cluster information from ZooKeeper the hostnames of the Solr nodes might be using an IP address which won't work

MLT Performance Degraded Between 4.6.1 and 5.5.2 Solr

2016-10-31 Thread Ivan Provalov
I noticed a 3X performance degradation for MoreLikeThis between 4.6.1 and 5.5.2.  Our configuration:      where text_en is a pretty standard text fieldType. Any pointers? Thanks, Ivan Provalov

RE: Getting NullPointerException in an attempt to boost query result by date

2016-10-31 Thread Markus Jelsma
Does it work if you comment out any of the two local param queries? I'd doubt passing two sets of local params ever worked at all without wrapping one in the other. -Original message- > From:Gintautas Sulskus > Sent: Monday 31st October 2016 21:19 > To: solr-user@lucene.apache.org > S

Re: Getting NullPointerException in an attempt to boost query result by date

2016-10-31 Thread Gintautas Sulskus
Hi Erik, I have defined the query as SearchHandler: {!boost b=recip(ms(NOW/HOUR, submit_date),3.16e-11,1,1)} {!type=dismax qf='title^10 body^5 body^1' v=$term} The handler is then invoked with the following url: /solr/core/testSearch?term=apple The handler works i

Re: Getting NullPointerException in an attempt to boost query result by date

2016-10-31 Thread Erik Hatcher
how’d you set “$term” - the correct way would be &term=apple on the Solr request. > On Oct 31, 2016, at 2:07 PM, Gintautas Sulskus > wrote: > > Hi, > > I am trying to construct a timestamp-boosted query comprising two weighted > fields: "title" and "body": > > {!boost b=recip(ms(NOW/HOUR,su

Using a library from blob-store without "add-runtimelib"

2016-10-31 Thread Samuel García Martínez
Hi! I'm wondering if there's any possibility to tell the current collection to use a library stored in the blobstore using the solrconfig.xml instead of having to do a /config request. Same way local filesystem libraries are added in solrconfig, it could exist for blobstore libraries. Since it's

Getting NullPointerException in an attempt to boost query result by date

2016-10-31 Thread Gintautas Sulskus
Hi, I am trying to construct a timestamp-boosted query comprising two weighted fields: "title" and "body": {!boost b=recip(ms(NOW/HOUR,submit_date),3.16e-11,1,1)} {!type=dismax qf='title^10 body^1' v=$term} $term=apple I expect the given example query provided above to search fields "title" and

Re: Error: Strong key gen and multiprime gen require at least 1024-bit keysize

2016-10-31 Thread Erick Erickson
See: https://issues.apache.org/jira/browse/SOLR-9609 Not quite sure when I'll get to it though... Erick On Mon, Oct 31, 2016 at 8:22 AM, Adnan Yaqoob wrote: > Definitely a valid JIRA. It may choose 512 default but shouldn't be hard > coded. There must be a way to pass on required lenght > > Adn

solrj Https problem

2016-10-31 Thread sandeep mukherjee
I followed the steps to make the solr SSL enabled. I'm able to hit solr at: https://localhost:8985/solr/problem/select?indent=on&q=*:*&wt=json And for accessing it through Solr Client I created it as follows:System.setProperty("javax.net.ssl.keyStore", "/path/to/solr/server/etc/solr-ssl.keystor

Re: Error: Strong key gen and multiprime gen require at least 1024-bit keysize

2016-10-31 Thread Adnan Yaqoob
Definitely a valid JIRA. It may choose 512 default but shouldn't be hard coded. There must be a way to pass on required lenght Adnan On Wed, Oct 5, 2016 at 9:02 PM, Erick Erickson wrote: > Sure seems like a JIRA to me. I have no clue why 512 was chosen in > the first place though. > > Or you c

RE: [E] Re: Questions about Disk space Usage

2016-10-31 Thread Jamal, Sarfaraz
Thank you all for your comments and help - I kept the last days' worth of files form the /tmp folder and removed the rest - without any problems or difficulties. Sas -Original Message- From: Walter underwood [mailto:wun...@wunderwood.org] Sent: Saturday, October 29, 2016 1:10 PM To: so

Re: Heatmap in JSON facet API

2016-10-31 Thread Никита Веневитин
I've built query as described in https://cwiki.apache.org/confluence/x/ZYDxAQ";>Heatmap Faceting, but I would like to get same results using JSON facet API 2016-10-30 15:24 GMT+03:00 GW : > If we are talking about the same kind of heat maps you might want to look > at the TomTom map API for a qui

Different results for comma and whitespace separated query string using eDisMax Query Parser

2016-10-31 Thread Frank.Zirkelbach
Hi, different results are obtained for a query separated by comma and one separated by whitespace, "q":"foo,bar", "q":"foo bar", although solr.StandardTokenizerFactory is utilized. The eDisMax Query Parser is used. Fields of interest are determined by the 'qf' parameter. "defType"