Re: Apache Slider stop function not working

2015-03-15 Thread Steve Loughran
> On 14 Mar 2015, at 14:39, Krishna Kishore Bonagiri > wrote: > > This is what I see in the AM's log since the STOP command is issued. Even > though it indicates that STOP command SUCCEEDED, I see that the stop > function in my python script is not getting executed. Does the exception at > the

Re: Apache Slider stop function not working

2015-03-14 Thread Krishna Kishore Bonagiri
______ > From: Ted Yu > Sent: Saturday, March 14, 2015 8:52 AM > To: dev@slider.incubator.apache.org > Subject: Re: Apache Slider stop function not working > > Kishore: > Looks like logging was at INFO level. > Do you mind turning on DEBUG logging ? > &

Re: Apache Slider stop function not working

2015-03-14 Thread Sumit Mohanty
n script is not implemented. Its in the plan though. From: Ted Yu Sent: Saturday, March 14, 2015 8:52 AM To: dev@slider.incubator.apache.org Subject: Re: Apache Slider stop function not working Kishore: Looks like logging was at INFO level. Do you mind tu

Re: Apache Slider stop function not working

2015-03-14 Thread Ted Yu
Kishore: Looks like logging was at INFO level. Do you mind turning on DEBUG logging ? Thanks On Sat, Mar 14, 2015 at 7:39 AM, Krishna Kishore Bonagiri < write2kish...@gmail.com> wrote: > Hi Steve, > > This is what I see in the AM's log since the STOP command is issued. Even > though it indicat

Re: Apache Slider stop function not working

2015-03-14 Thread Krishna Kishore Bonagiri
Hi Steve, This is what I see in the AM's log since the STOP command is issued. Even though it indicates that STOP command SUCCEEDED, I see that the stop function in my python script is not getting executed. Does the exception at the end of this log indicate something? 2015-03-14 07:24:01,202 [I

Re: Apache Slider stop function not working

2015-03-14 Thread Steve Loughran
Sorry, I think we've been creating confusion Sumit was referring to the fact that in the app-specific python scripts inside an app package, there's a stop operation which isn't implemented; the specific component instances currently get destroyed without warning when the slider AM hands back t

Re: Apache Slider stop function not working

2015-03-14 Thread Krishna Kishore Bonagiri
Hi Sumit, First of all thanks for the reply. What we have been trying is this kind of command from CLI. slider stop cl1 So, as you are saying it doesn't yet work. But what is the other way to stop the application? What do you mean by "The only time stop is called, today, is when the applica

Re: Apache Slider stop function not working

2015-03-13 Thread Sumit Mohanty
Stop is not wired up to the Stop command from the CLI. The only time stop is called, today, is when the application is stopped the Slider Agents call Stop and wait for ~10 seconds before killing the processes. On Fri, Mar 13, 2015 at 8:05 PM, Krishna Kishore Bonagiri < write2kish...@gmail.com> wro

Apache Slider stop function not working

2015-03-13 Thread Krishna Kishore Bonagiri
Hi, We are using Apache Slider 0.60 and implemented the management operations start, status, stop, etc. in python script. Everything else is working but the stop function is not getting invoked when the container is stopped. Is this a known issue already? or is there any trick to make it work?