Re: Should I register a new API endpoint.

2022-10-12 Thread Joshua Ouma
I had not seen the FAQs. Sure I'll update the FAQs with what I discover while learning how Solr works. Regards, Joshua Ouma On Wed, Oct 12, 2022 at 2:47 PM Eric Pugh wrote: > Have you seen the FAQ entries? > https://github.com/apache/solr/blob/main/dev-docs/FAQ.adoc#whats-the-fastest-build-life

Re: Should I register a new API endpoint.

2022-10-12 Thread Eric Pugh
Have you seen the FAQ entries? https://github.com/apache/solr/blob/main/dev-docs/FAQ.adoc#whats-the-fastest-build-lifecycle-for-frontend-work-on-solr-admin That FAQ is

Re: Should I register a new API endpoint.

2022-10-12 Thread Joshua Ouma
Actually I have found the solution. To run solr from dev folder I should use the build command ./gradlew dev and not ./gradlew assemble Regard, Joshua Ouma On Wed, Oct 12, 2022 at 11:39 AM Joshua Ouma wrote: > Hi all , > I'm working on creating a v2 equivalent of v1 CLUSTERSTATUS- > > I have cr

Should I register a new API endpoint.

2022-10-12 Thread Joshua Ouma
Hi all , I'm working on creating a v2 equivalent of v1 CLUSTERSTATUS- I have created an endpoint @EndPoint(method = GET, path = "/cluster/cluster-status", permission = COLL_READ_PERM) of the ClusterAPI. After running ./gradlew assemble and starting solr from the dev folder I tested the endpoint u