[
https://issues.apache.org/jira/browse/SOLR-13650?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Noble Paul updated SOLR-13650:
------------------------------
Description:
{code:json}
curl -X POST -H 'Content-type:application/json' --data-binary '
{
"add-package": {
"name": "my-package" ,
"url" : "http://host:port/url/of/jar",
"sha512":"<the-sha512>"
}
}' http://localhost:8983/api/cluster
{code}
This means that Solr creates a globally accessible classloader with a name
{{my-package}} which contains all the jars of that package.
A component should be able to use the package by using the {{"package" :
"my-package"}}.
eg:
{code:json}
curl -X POST -H 'Content-type:application/json' --data-binary '
{
"create-searchcomponent": {
"name": "my-searchcomponent" ,
"class" : "my.path.to.ClassName",
"package" : "my-package"
}
}' http://localhost:8983/api/c/mycollection/config
{code}
was:
{code:json}
curl -X POST -H 'Content-type:application/json' --data-binary '
{
"add-runtimelib": {
"name": "my-package" ,
"url" : "http://host:port/url/of/jar",
"sha512":"<the-sha512>"
}
}' http://localhost:8983/api/cluster
{code}
This means that Solr creates a globally accessible classloader with a name
{{my-package}} which contains all the jars of that package.
A component should be able to use the package by using the {{"runtimeLib" :
"my-package"}}.
eg:
{code:json}
curl -X POST -H 'Content-type:application/json' --data-binary '
{
"create-searchcomponent": {
"name": "my-searchcomponent" ,
"class" : "my.path.to.ClassName",
"runtimeLib" : "my-package"
}
}' http://localhost:8983/api/c/mycollection/config
{code}
> Support for named global classloaders
> -------------------------------------
>
> Key: SOLR-13650
> URL: https://issues.apache.org/jira/browse/SOLR-13650
> Project: Solr
> Issue Type: Improvement
> Security Level: Public(Default Security Level. Issues are Public)
> Reporter: Noble Paul
> Priority: Major
>
> {code:json}
> curl -X POST -H 'Content-type:application/json' --data-binary '
> {
> "add-package": {
> "name": "my-package" ,
> "url" : "http://host:port/url/of/jar",
> "sha512":"<the-sha512>"
> }
> }' http://localhost:8983/api/cluster
> {code}
> This means that Solr creates a globally accessible classloader with a name
> {{my-package}} which contains all the jars of that package.
> A component should be able to use the package by using the {{"package" :
> "my-package"}}.
> eg:
> {code:json}
> curl -X POST -H 'Content-type:application/json' --data-binary '
> {
> "create-searchcomponent": {
> "name": "my-searchcomponent" ,
> "class" : "my.path.to.ClassName",
> "package" : "my-package"
> }
> }' http://localhost:8983/api/c/mycollection/config
> {code}
--
This message was sent by Atlassian JIRA
(v7.6.14#76016)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]