Re: Verify unloading of a Solr Core

2017-05-03 Thread Erick Erickson
Please do not kill Solr with "kill -9". Sure it stops the process but it's A Bad Practice exactly because it dis-allows graceful shutdowns, Solr may be forcefully killed when in the middle of operations. You are not, by chance, specifying an async ID are you? If so, the command will return immedia

Re: Verify unloading of a Solr Core

2017-05-03 Thread Shawn Heisey
On 5/3/2017 1:52 PM, Shashank Pedamallu wrote: > I unload a core from Solr using the CoreAdmin page on UI or send unload > request via the api, it works perfectly fine. In my code, I’m trying to > unload a core using the call: > > CoreAdminRequest.unloadCore(, ); > > I get following response: > >

Re: Verify unloading of a Solr Core

2017-05-03 Thread Shashank Pedamallu
Sorry, I take back my ignore email. Can someone please respond to the initial question: I unload a core from Solr using the CoreAdmin page on UI or send unload request via the api, it works perfectly fine. In my code, I’m trying to unload a core using the call: CoreAdminRequest.unloadCore(, );

Re: Verify unloading of a Solr Core

2017-05-03 Thread Shashank Pedamallu
Please ignore this question. I’m not able to reproduce this, it should have been a mistake by me. Thanks, Shashank Pedamallu On 5/3/17, 12:52 PM, "Shashank Pedamallu" wrote: >Hi all, > >I unload a core from Solr using the CoreAdmin page on UI or send unload >request via the api, it works