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

Need help on Solr authorization

2019-01-11 Thread sathish kumar
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 and also enabled basic authentication and RuleBasedAuthorizationPlugin. As part of testing, created new user with admin role and assigned the permissions "collection

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

Need Help on Solr Client connection Pooling

2018-08-30 Thread Gembali Satish kumar
Hi Team, Need some help on Client connection object pooling I am using SolrJ API to connect the Solr. This below snippet I used to create the client object. *SolrClient client = new HttpSolrClient.Builder(* * SolrUtil.getSolrURL(tsConfigUtil.getClusterAdvertisedAddress(), aInCollectionName)).bu

Need Help on solr for Email Search

2017-05-08 Thread Udaya Ganga Santosh Kumar Palivela
HI Team, We are using solr for Quick retrieval of search result. Recently we are encountered with a problem while searching for Email in solr. search is performing well when i enter simple text ,but When i enter any special characters (Like @ ,(comma)) it is not returning any results. i have at

need help on solr schema design

2016-02-27 Thread Anil
HI, i am building small search application with solr. i need help in designing the solr schema. data structure is like one to many. when user search text matches with parent document fields, system should not display any child fields information. when user search text matches with child document

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

Need help on Solr

2013-06-20 Thread Abhishek Bansal
Hello, I am trying to index a pdf file on Solr. I am running icurrently Solr on Apache Tomcat 6. When I try to index it I get below error. Please help. I was not able to rectify this error with help of internet. ERROR - 2013-06-20 20:43:41.549; org.apache.solr.core.CoreContainer; Unable to cr

Re: need help on solr search

2012-11-05 Thread jchen2000
he mm parameter on the Wiki. Let us know if that > does > it for you. -- View this message in context: http://lucene.472066.n3.nabble.com/need-help-on-solr-search-tp4017191p4018397.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: need help on solr search

2012-11-01 Thread Otis Gospodnetic
would "a1 a2* a3 a4* b1 b2* c2 d1* d2"~someBigSlop work? > > This does not work, because a2* (just any term different from a2, not > wildcard), a4* etc do not appear in the doc. quoted proximity match seems > still to require all query terms to appear. > > Thanks, > Je

Re: need help on solr search

2012-11-01 Thread jchen2000
ot;~someBigSlop work? This does not work, because a2* (just any term different from a2, not wildcard), a4* etc do not appear in the doc. quoted proximity match seems still to require all query terms to appear. Thanks, Jeremy -- View this message in context: http://lucene.472066.n3.nabble.com

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
: http://lucene.472066.n3.nabble.com/need-help-on-solr-search-tp4017191p4017630.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: need help on solr search

2012-10-31 Thread Otis Gospodnetic
else, where to > start? > > Thanks a lot! > > Jeremy > > > > -- > View this message in context: > http://lucene.472066.n3.nabble.com/need-help-on-solr-search-tp4017191.html > Sent from the Solr - User mailing list archive at Nabble.com.

Re: need help on solr search

2012-10-31 Thread jchen2000
ue in another different property, but we don't want to match those so we prefixed terms with property name Thanks, Fang -- View this message in context: http://lucene.472066.n3.nabble.com/need-help-on-solr-search-tp4017191p4017341.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: need help on solr search

2012-10-31 Thread Erick Erickson
t? > > Thanks a lot! > > Jeremy > > > > -- > View this message in context: > http://lucene.472066.n3.nabble.com/need-help-on-solr-search-tp4017191.html > Sent from the Solr - User mailing list archive at Nabble.com.

need help on solr search

2012-10-30 Thread jchen2000
e.com/need-help-on-solr-search-tp4017191.html Sent from the Solr - User mailing list archive at Nabble.com.

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

Need help on Solr Cell usage with specific Tika parser

2010-06-14 Thread olivier sallou
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 new mime types. In solrconfig, in update/extract requesthandler I specified ./tika-config.xml , where tika-config.xml is in conf directory (same as so