WAS6.1中停止、立即停止和终止之间的区别
对于 Websphere Application Server 实例,“停止”、“立即停止”和“终止”之间有什么区别? 特别是在当时正在进行的请求和正在进行的交易的背景下。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
停止,尝试通过让所有进程完成并关闭所有通信来停止服务器。
立即停止:停止服务器,但绕过正常的服务器静默过程,该过程允许在关闭整个服务器进程之前完成正在进行的请求。这种关闭模式比正常的服务器停止处理速度更快,但某些应用程序客户端可能会收到异常。
终止:只需终止应用程序并稍后处理问题:-)
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 :-)
此处介绍了有关正在进行的请求的信息 - http://publib.boulder.ibm.com/infocenter/wasinfo/v6r1/index.jsp?topic=/com.ibm.websphere.express。 doc/info/exp/ae/urun_rsvr.html
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