Re: Need help on Solr authorization

2019-01-18 Thread Scott Stults
My guess is that you're using a self-signed cert and the certificate path can't be verified. Either that or your cert was signed by a CA that your JVM doesn't recognize. There's a good article about diagnosing SSL problems here: https://confluence.atlassian.com/kb/unable-to-connect-to-ssl-services

Re: Need help on Solr authorization

2019-01-18 Thread sathish kumar
Hi, Anyone got a chance to have a look at the issue i had posted? Please throw some inputs. -Sathish On Fri, 11 Jan 2019, 8:10 pm sathish kumar, wrote: > Hi, > > We have a two node Solr setup(version is 7.2.1) with embedded zookeeper > running in Solr Server 1. > > We have recently enabled SSL

Re: Need Help on Solr Client connection Pooling

2018-08-30 Thread Shawn Heisey
On 8/30/2018 2:13 AM, Gembali Satish kumar wrote: *SolrClient client = new HttpSolrClient.Builder(* * SolrUtil.getSolrURL(tsConfigUtil.getClusterAdvertisedAddress(), aInCollectionName)).build();* after my job search done, I am closing my client. *client.close();* but from UI getting more reques

Re: Need Help on Solr Client connection Pooling

2018-08-30 Thread Shalin Shekhar Mangar
You should create a single HttpSolrClient and re-use for all requests. It is thread safe and creates an Http connection pool internally (well Apache HttpClient does). On Thu, Aug 30, 2018 at 2:28 PM Gembali Satish kumar < gembalisatishku...@gmail.com> wrote: > Hi Team, > > Need some help on Clie

Re: Need help on Solr

2013-06-20 Thread Raymond Wiker
On Jun 20, 2013, at 18:26 , Abhishek Bansal wrote: > Yeah I know, out of the box there is one id field. I removed it from > schema.xml > > I have also added below code to automatically generate an ID. > > multiValued="false"/> > > Is that a valid configuration for an id field (assuming t

Re: Need help on Solr

2013-06-20 Thread Abhishek Bansal
As I am running Solr on windows + tomcat I am using below command to index pdf. I hope this command is not faulty. Please check java -jar -Durl=" http://localhost:8080/solr-4.3.0/update/extract?literal.id=1&commit=true"; post.jar sample.pdf with regards, Abhishek Bansal On 20 June 2013 21:56, A

Re: Need help on Solr

2013-06-20 Thread Abhishek Bansal
Yeah I know, out of the box there is one id field. I removed it from schema.xml I have also added below code to automatically generate an ID. with regards, Abhishek Bansal On 20 June 2013 21:49, Shreejay wrote: > org.apache.solr.common.SolrException: [schema.xml] Duplicate field > d

Re: Need help on Solr

2013-06-20 Thread Shreejay
org.apache.solr.common.SolrException: [schema.xml] Duplicate field definition for 'id' You might have defined an id field in the schema file. The out of box schema file already contains an id field . -- Shreejay On Thursday, June 20, 2013 at 9:16, Abhishek Bansal wrote: > Hello, > > I am

Re: need help on solr search

2012-11-05 Thread jchen2000
Used mm parameter and it works! Right now preparing perf test. Please share if anybody has method to optimize dismax queries Thanks! Jeremy Otis Gospodnetic-5 wrote > Hi, > > Have a look at your solrconfig.xml and look for your default operator. > Also > look at the docs for the mm parameter

Re: need help on solr search

2012-11-01 Thread Otis Gospodnetic
Hi, Have a look at your solrconfig.xml and look for your default operator. Also look at the docs for the mm parameter on the Wiki. Let us know if that does it for you. Otis -- Performance Monitoring - http://sematext.com/spm On Nov 1, 2012 5:11 PM, "jchen2000" wrote: > Otis Gospodnetic-5 wrote

Re: need help on solr search

2012-11-01 Thread jchen2000
Otis Gospodnetic-5 wrote > You want "ordered term matching" (like in a phrase), but you cannot use > AND > because you do not want all query terms to be required. Correct? That's exactly right! actually none of the query term is required, but we need to base similarity score on how many terms are

Re: need help on solr search

2012-11-01 Thread Otis Gospodnetic
Hi, I don't follow. :( See inline. On Thu, Nov 1, 2012 at 2:16 PM, jchen2000 wrote: > Seems like phrase query is close, but not exactly what we needed. Here is > an > example assuming just one field: > the doc: a1 a2 a3 b1 b2 c1 c2 c3 c4 d1 d2 > the query: a1 a2* a3 a4* b1 b2* c2 d1* d2 > Are

Re: need help on solr search

2012-11-01 Thread jchen2000
Seems like phrase query is close, but not exactly what we needed. Here is an example assuming just one field: the doc: a1 a2 a3 b1 b2 c1 c2 c3 c4 d1 d2 the query: a1 a2* a3 a4* b1 b2* c2 d1* d2 both doc and query terms are ordered. We know that a term should never go match with b or c terms. Obvio

Re: need help on solr search

2012-10-31 Thread Otis Gospodnetic
Hi, Not sure if I follow your requirements correctly, but it sounds like you may be looking for phrase queries (as opposed to term/keyword queries). Otis -- Search Analytics - http://sematext.com/search-analytics/index.html Performance Monitoring - http://sematext.com/spm/index.html On Wed, Oct

Re: need help on solr search

2012-10-31 Thread jchen2000
Sure. here are some more details: 1) we are having 30M ~ 60M documents per node (right now we have 4 nodes, but that will increase in the future). Documents are relatively small (around 3K), but 99% searches must be returned within 200ms and this is measured by test drivers sitting right in front

Re: need help on solr search

2012-10-31 Thread Erick Erickson
You need to provide significantly more information than you have. What are your perf requirements? How big is your data set? What kinds of searches are you talking about here? How are you measuring response? This really feels like an "XY" problem. Best Erick On Wed, Oct 31, 2012 at 1:33 AM, jche

Re: Need help on Solr Cell usage with specific Tika parser

2010-06-15 Thread olivier sallou
Thanks, moving it to direcxt child worked. Olivier 2010/6/14 Chris Hostetter > > : In solrconfig, in update/extract requesthandler I specified : name="tika.config">./tika-config.xml , where tika-config.xml is in > : conf directory (same as solrconfig). > > can you show us the full requestHandl

Re: Need help on Solr Cell usage with specific Tika parser

2010-06-14 Thread Chris Hostetter
: In solrconfig, in update/extract requesthandler I specified ./tika-config.xml , where tika-config.xml is in : conf directory (same as solrconfig). can you show us the full requestHandler decalration? ... tika.config needs to be a direct child of the requestHandler (not in the defaults) I also

Re: Need help on Solr Cell usage with specific Tika parser

2010-06-14 Thread olivier sallou
Yeap, I do. As magic is not set, this is the reason why it looks for this specific mime-type. Unfortunatly, It seems it either do not read my specific tika-config file or the mime-type file. But there is no error log concerning those files... (not trying to load them?) 2010/6/14 Ken Krugler > H

Re: Need help on Solr Cell usage with specific Tika parser

2010-06-14 Thread Ken Krugler
Hi Olivier, Are you setting the mime type explicitly via the stream.type parameter? -- Ken On Jun 14, 2010, at 9:14am, olivier sallou wrote: Hi, I use Solr Cell to send specific content files. I developped a dedicated Parser for specific mime types. However I cannot get Solr accepting my n