apache httpd reload|graceful 上的 mod_jk 粘性会话会发生什么情况
正如标题中所述,我想知道如果我通过重新加载或优雅地重新启动apache网络服务器(在linux(centos5)上运行),是否会保留活动的mod_jk粘性会话。
As said in the title, i'd like to know if active mod_jk sticky sessions will get preserved if i restart apache webserver with reload or graceful (running on linux (centos5)).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,他们会的。
粘性的工作原理是查看会话 cookie 中的节点标识符 - mod_jk 查看 cookie 中的节点名称,并将其发送到与该名称匹配的工作程序。它实际上并不维护内部会话表,因此扩展性不佳。从这个角度来看,它是有效的无状态,因此重新启动不会影响粘性。
Yes, they will.
The stickiness works by looking at the node identifier in the session cookie - mod_jk looks at the node name in the cookie, and sends it to the worker that matches that name. It doesn't actually maintain an internal table of sessions, that doesn't scale well. It's effectivelt stateless from that perspective, so a restart will not affect stickiness.