What is the difference between "Stop", "Immediate Stop" and "Terminate" in case of a Websphere Application Server instance. Specifically in the context of in-flight requests and in-flight transactions at the time.

link|improve this question

40% accept rate
feedback

2 Answers

up vote 0 down vote accepted

Stop, trys to stop the server by letting all processes finish and shutting down all communication.

Immediate stop: Stops the server, but bypasses the normal server quiesce process that would allow in-flight requests to complete before shutting down the whole server process. This shutdown mode is faster than the normal server stop processing, but some application clients may receive exceptions.

Terminate: Just kill the app and deal with problems later :-)

link|improve this answer
feedback

Information on in-flight requests are covered here - http://publib.boulder.ibm.com/infocenter/wasinfo/v6r1/index.jsp?topic=/com.ibm.websphere.express.doc/info/exp/ae/urun_rsvr.html

link|improve this answer
This site talks about "quiesce process" Stop - normal quiesce process is followed Immediate Stop - quiesce process not followed Terminate - quiesce process not followed? Do you have any details about the quiesce process? Is it just a wait time to allow for in flight requests to complete? What does WAS do with inflight JTA txns during either of the above 3 shutdowns? Thanks – Shreeni Nov 23 '09 at 7:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.