[ 
https://issues.apache.org/jira/browse/SOLR-14404?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Noble Paul updated SOLR-14404:
------------------------------
    Description: 
caveats:
 * The class should be annotated with  {{org.apache.solr.api.EndPoint}}. Which 
means only V2 APIs are supported
 * The path should have prefix {{/api/cluster}} or {{/api/node}}. It should not 
conflict with any of the exiting handlers

add a plugin
{code:java}
curl -X POST -H 'Content-type:application/json' --data-binary '
{
  "add": {
  "name":"myplugin", "class": "full.ClassName"    
  }
}' http://localhost:8983/api/cluster/plugins
{code}
remove a plugin
{code:java}
curl -X POST -H 'Content-type:application/json' --data-binary '
{
  "remove": "myplugin"
}' http://localhost:8983/api/cluster/plugins
{code}
The configuration will be stored in the {{clusterprops.json}}
 as
{code:java}
{
"plugins" : {
"myplugin" : {"class": "full.ClassName" }
}
}
{code}

  was:


caveats:
* The class should implement {{org.apache.solr.api.Api}}. Which means only V2 
APIs are supported
* The path should have prefix {{/api/cluster}} or {{/api/node}}. It should not 
conflict with any of the exiting handlers


add a handler
{code}
curl -X POST -H 'Content-type:application/json' --data-binary '
{
  "add-requesthandler": {
  "name":"myhandler", "class": "full.ClassName"    
  }
}' http://localhost:8983/api/cluster
{code}

remove a handler
{code}
curl -X POST -H 'Content-type:application/json' --data-binary '
{
  "remove-requesthandler": "myhandler"
}' http://localhost:8983/api/cluster
{code}
The configuration will be stored in the {{clusterprops.json}}
as
{code}
{
"requestHandler" : {
"myhandler" : {"class": "full.ClassName" }
}
}
{code}




> CoreContainer level custom requesthandlers
> ------------------------------------------
>
>                 Key: SOLR-14404
>                 URL: https://issues.apache.org/jira/browse/SOLR-14404
>             Project: Solr
>          Issue Type: New Feature
>      Security Level: Public(Default Security Level. Issues are Public) 
>            Reporter: Noble Paul
>            Assignee: Noble Paul
>            Priority: Major
>
> caveats:
>  * The class should be annotated with  {{org.apache.solr.api.EndPoint}}. 
> Which means only V2 APIs are supported
>  * The path should have prefix {{/api/cluster}} or {{/api/node}}. It should 
> not conflict with any of the exiting handlers
> add a plugin
> {code:java}
> curl -X POST -H 'Content-type:application/json' --data-binary '
> {
>   "add": {
>   "name":"myplugin", "class": "full.ClassName"    
>   }
> }' http://localhost:8983/api/cluster/plugins
> {code}
> remove a plugin
> {code:java}
> curl -X POST -H 'Content-type:application/json' --data-binary '
> {
>   "remove": "myplugin"
> }' http://localhost:8983/api/cluster/plugins
> {code}
> The configuration will be stored in the {{clusterprops.json}}
>  as
> {code:java}
> {
> "plugins" : {
> "myplugin" : {"class": "full.ClassName" }
> }
> }
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org
For additional commands, e-mail: issues-h...@lucene.apache.org

Reply via email to