Re: Pining Solr

2020-09-18 Thread Alexandre Rafalovitch
Your builder parameter should be up to the collection, so only "http://testserver-dtv:8984/solr/cpsearch;. Then, on your Query object, you set query.setRequestHandler("/select_cpsearch") as per

Re: Pining Solr

2020-09-18 Thread Erick Erickson
Well, this is doesn’t look right at all: /solr/cpsearch/select_cpsearch/select It should just be: /solr/cpsearch/select_cpsearch Best, Erick > On Sep 18, 2020, at 3:18 PM, Steven White wrote: > > /solr/cpsearch/select_cpsearch/select

Re: Pining Solr

2020-09-18 Thread Steven White
Hi Erick, I'm on Solr 8.6.1. I did further debugging into this and just noticed that my search is not working too now (this is after I changed the request handler name from "select" to "select_cpsearch"). I have this very basic test code as a test which I think revailes the issue: try

Re: Pining Solr

2020-09-18 Thread Erick Erickson
This looks kind of confused. I’m assuming what you’re after is a way to get to your select_cpsearch request handler to test if Solr is alive and calling that “ping”. The ping request handler is just that, a separate request handler that you hit by going to http://sever:port/solr/admin/ping.

Pining Solr

2020-09-18 Thread Steven White
Hi everyone, I'm using SolrJ to ping Solr. This used to work just fine till when I had to change the name of my search request handler from the default "select" to "select_cpsearch", i.e.: I now have this: I looked this up and the solution suggestion on the internet is I need to add a