Thanks Shawn.
Steve
On Fri, Jun 12, 2015 at 6:00 PM, Shawn Heisey wrote:
> On 6/12/2015 3:30 PM, Steven White wrote:
> > Thank you Erik and Shawn for your support.
> >
> > I'm using Solr's Schema API and Config API to manage and administer a
> Solr
> > deployment based on customer specific sett
On 6/12/2015 3:30 PM, Steven White wrote:
> Thank you Erik and Shawn for your support.
>
> I'm using Solr's Schema API and Config API to manage and administer a Solr
> deployment based on customer specific setting that my application will need
> to do to a Solr deployment. A client application wil
Thank you Erik and Shawn for your support.
I'm using Solr's Schema API and Config API to manage and administer a Solr
deployment based on customer specific setting that my application will need
to do to a Solr deployment. A client application will be using my APIs and
as part of data validation,
Do note that AdminHandler*s* (plural) is "* A special Handler that registers
all standard admin handlers”, so if you’re trying to do something tricky with
admin handlers, Note that AdminHandlers is also deprecated and these admin
handlers are implicitly registered with ImplicitPlugins these day
On 6/12/2015 1:02 PM, Steven White wrote:
> You are right. If I use "solr.SearchHandler" it works, but if I
> use "solr.admin.AdminHandlers" like so:
>
>
>
>
> Solr reports this error:
>
> HTTP ERROR 500
>
> Problem accessing /solr/db/config/requestHandler. Reason:
>
> {msg=SolrCore 'db'
You are right. If I use "solr.SearchHandler" it works, but if I
use "solr.admin.AdminHandlers" like so:
Solr reports this error:
HTTP ERROR 500
Problem accessing /solr/db/config/requestHandler. Reason:
{msg=SolrCore 'db' is not available due to init failure: The
AdminHandler needs t
On 6/12/2015 12:24 PM, Steven White wrote:
> I'm trying to sort out what's not valid in Solr's files. For example, the
> following request-handler will cause Solr to fail to load (notice the
> missing "/" from "987" in the 'name'):
>
>
>
>
> But having a name with a space, such as "/ 987" or
Hi,
I'm trying to sort out what's not valid in Solr's files. For example, the
following request-handler will cause Solr to fail to load (notice the
missing "/" from "987" in the 'name'):
But having a name with a space, such as "/ 987" or "/ 1 2 3 " works.
This is one example, but my ques