- 浏览: 375573 次
- 性别:
- 来自: 北京
文章分类
最新评论
-
0372:
感谢以后去火车站就知道郑州的代号了哈哈!谢谢!
火车站编码(名称-代号) -
tanliansheng:
感谢分享,学习了.其实开头就该说有pdf版的...这排版不好看 ...
Nginx关于location的匹配规则详解.docx -
mineral:
感谢中英对照地讲解,非常清楚了。登录表示感谢
Nginx关于location的匹配规则详解.docx -
首席拧螺丝:
好文章要顶!
Nginx关于location的匹配规则详解.docx -
duzc2:
hardPass 写道MMap是Direct Buffer 的 ...
JAVA NIO之Direct Buffer 与 Heap Buffer的区别?
【集群的概念】
集群(cluster)指的是一组计算机通过通信协议连接在一起的计算机群,它们能够将工作负载从一个超载的计算机迁移到集群中的其他计算机上,这一特性称为负载均衡(load balancing),它的目标是使用主流的硬件设备组成网格计算能力,达到、甚至超过天价的超级计算机的计算性能。
1、集群顾名思意是一群计算机构成的集合。
2、它们之间要相互通信,通信的目的是:保持应用的一致性。应用的一致性包括应用数据的一致性呵应用操作的一致性。
(程序=数据+操作; 操作一致性只要两个代码完全一样就可以了,当然如果应用程序在线升级要保持操作一致性可能比较困难。数据一致性,主要就是指状态信息,比如HttpSession。集群中多个节点间如何做到状态信息一致?一般的方法:a,采用分布式Session服务器,各个节点都从Session服务器上存取数据,这种方法实现简单,但是Session服务器容易形成单点。不过我们可以对Session服务器做集群,比如用memcached做session服务器。b,session复制,就是让集群中的各个节点把自己的HttpSession信息通过session复制的通信协议相互广播给其他成员。实现复杂,但是能HA。 另外,早期可能会采用sticky session的方式,也就是route all requests from the same session to the same server,这种方式有个问题是如果这个被route的服务器宕机,就不能做到HA了。)
3、特征:负载均衡;高可用。
Load-balancing when multiple computers are linked together to share computational workload or function as a single virtual computer.
Logically, from the user side, they are multiple machines, but function as a single virtual machine.
Requests initiated from the user are managed by, and distributed among, all the standalone(独立的) computers to form a cluster.
This results in balanced computational work among different machines, improving the performance of the cluster system.
(多台计算机通过网络相互连接以分摊负载,但是就用户而言,功能上表现为一台“被虚拟的”高性能的超级计算机。用户的请求被前面的“前导器LoadBalancer”分发到集群中的任何一台计算机。负载均衡集群运行时一般通过一个或者多个前端负载均衡器将工作负载分发到后端的一组服务器(Server Farm)上,从而达到整个系统的高性能和高可用性。这样的计算机集群有时也被称为服务器群。)
【集群的目标: 利用集群技术将一些普通的PC虚拟成一个高性能的超级计算机】
(scale-up vs. scale-out)
scale-up 不但成本高,而且效果不好; scale-out 成本低,而且效果好。
典型的超级计算机生产厂商包括IBM、SGI,以及其他一些大学、科研组织,以IBM Blue Pacific超级计算机为例,它拥有5800 个处理器来计算核反应的物理模拟过程,这样的计算机价格对于绝大部分商业用户是很难承受的,而且要面临很多的技术和维护问题,并且换代成本也很高,升级能力差。因此,发展了利用通信技术连接其他计算机,组成一个网格计算系统,可以分配负载的工作给其他计算机的CPU进行处理的解决方法来模拟超级计算机的能力。目前很多超级计算机也是通过集群技术得到的,特别是近年,名列世界Top500的超级计算机多数指集群系统,集群计算已经是比较成熟技术,但它仍在继续发展着。
【实验】
前导器httpd(服务口子:80)
后面跟两个Tomcat构成集群: tomcatBBS和tomcatBlog,其中:
(1)tomcatBBS
a: 启动的口子
8005口子,用于shutdown;
8080口子,http口子;
8009口子,AJP口子,用于接收来自httpd前导器分发的请求;
4001口子,用于接收集群中其他成员的Session复制相关信息。
b: 在server.xml中加个属性 jvmRoute=tomcatBBS
c: 在web.xml中加成 <distrutable /> 利用自带的Example/Session测试
(2)tomcatBlog
a: 启动的口子
9005口子,用于shutdown;
9080口子,http口子;
9009口子,AJP口子,用于接收来自httpd前导器分发的请求;
4002口子,用于接收集群中其他成员的Session复制相关信息。
b: 在server.xml中加个属性 jvmRoute=tomcatBBS
c: 在web.xml中加成 <distrutable /> 利用自带的Example/Session测试
配置文件:
在httpd前导器上的配置
(1)httpd.config
#the coming item jk_module was added by liwei2@umpay.com on 2009-06-30
LoadModule jk_module modules/mod_jk-1.2.28-httpd-2.2.3.so
JkWorkersFile conf/workers.properties
#
# Configure mod_jk
#
#JkMount /*.* lbcontroller
JkMountFile conf/uriworkermap.properties
JkLogFile logs/mod_jk.log
JkLogLevel debug
(2)workers.properties
#下面是分发控制器 注意不要放tomcat实例
worker.list=lbcontroller,jkmonitor
#Tomcat1实例配置 这里要和Tomcat配置文件Service.xml的jvmRoute保持一致
worker.tomcatBBS.host=127.0.0.1
worker.tomcatBBS.port=8009
worker.tomcatBBS.type=ajp13
#分发权重 值越大负载越大
worker.tomcatBBS.lbfactor = 1
#tomcatBlog实例配置
worker.tomcatBlog.host=127.0.0.1
worker.tomcatBlog.port=9009
worker.tomcatBlog.type=ajp13
#分发权重 值越大负载越大
worker.tomcatBlog.lbfactor = 1
#负载均衡分发控制器
worker.lbcontroller.type=lb
worker.lbcontroller.balanced_workers=tomcatBBS,tomcatBlog
#不采用sticky_session方式,而采用session复制方式来保持状态一致性
worker.lbcontroller.sticky_session=false
#JK监控
worker.jkmonitor.type=status
(3)uriworkermap.properties
/*=lbcontroller
/jkstatus=jkmonitor
#/*=DLOG4J
#/jkstatus=status
#!/*.gif=DLOG4J
#!/*.jpg=DLOG4J
#!/*.png=DLOG4J
#!/*.css=DLOG4J
#!/*.js=DLOG4J
#!/*.htm=DLOG4J
#!/*.html=DLOG4J
在tomcatBlog上的配置(tomcatBBS类似)
<?xml version='1.0' encoding='utf-8'?>
<Server port="9005" shutdown="SHUTDOWN">
<GlobalNamingResources>
<Resource name="UserDatabase" auth="Container"
type="org.apache.catalina.UserDatabase"
description="User database that can be updated and saved"
factory="org.apache.catalina.users.MemoryUserDatabaseFactory"
pathname="conf/tomcat-users.xml" />
</GlobalNamingResources>
<Service name="Catalina">
<Connector port="9080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />
<Connector port="9009" protocol="AJP/1.3" redirectPort="8443" />
<Engine name="Catalina" defaultHost="localhost" jvmRoute="tomcatBlog">
<Cluster className="org.apache.catalina.ha.tcp.SimpleTcpCluster"
channelSendOptions="8">
<Manager className="org.apache.catalina.ha.session.DeltaManager"
expireSessionsOnShutdown="false"
notifyListenersOnReplication="true"/>
<Channel className="org.apache.catalina.tribes.group.GroupChannel">
<Membership className="org.apache.catalina.tribes.membership.McastService"
address="228.0.0.4"
port="45564"
frequency="500"
dropTime="3000"/>
<Receiver className="org.apache.catalina.tribes.transport.nio.NioReceiver"
address="auto"
port="4002"
autoBind="100"
selectorTimeout="5000"
maxThreads="6"/>
<Sender className="org.apache.catalina.tribes.transport.ReplicationTransmitter">
<Transport className="org.apache.catalina.tribes.transport.nio.PooledParallelSender" />
</Sender>
<Interceptor className="org.apache.catalina.tribes.group.interceptors.TcpFailureDetector"/>
<Interceptor className="org.apache.catalina.tribes.group.interceptors.MessageDispatch15Interceptor"/>
<Interceptor className="org.apache.catalina.tribes.group.interceptors.ThroughputInterceptor"/>
</Channel>
<Valve className="org.apache.catalina.ha.tcp.ReplicationValve"
filter=""/>
<Valve className="org.apache.catalina.ha.session.JvmRouteBinderValve"/>
<Deployer className="org.apache.catalina.ha.deploy.FarmWarDeployer"
tempDir="/tmp/war-temp/"
deployDir="/tmp/war-deploy/"
watchDir="/tmp/war-listen/"
watchEnabled="false"/>
<ClusterListener className="org.apache.catalina.ha.session.JvmRouteSessionIDBinderListener"/>
<ClusterListener className="org.apache.catalina.ha.session.ClusterSessionListener"/>
</Cluster>
<Realm className="org.apache.catalina.realm.UserDatabaseRealm"
resourceName="UserDatabase"/>
<Host name="localhost" appBase="webapps"
unpackWARs="true" autoDeploy="true"
xmlValidation="false" xmlNamespaceAware="false">
</Host>
</Engine>
</Service>
</Server>
访问地址:
http://localhost/examples/servlets/servlet/SessionExample
Sessions Example
Session ID: A92757C6486E78F3DADFC2F03F898539.tomcatBBS (注:尽管带了.tomcatBBS,但是tomcat在request.getSession()时,只会依据 A92757C6486E78F3DADFC2F03F898539从HttpSessionContext中找到session对象,后缀.tomcatBBS是会被忽略的,这就是为什么要在server.xml中加jvmRoute=tomcatBBS的原因。
)
Created: Thu Jul 02 16:51:45 CST 2009
Last Accessed: Thu Jul 02 17:02:51 CST 2009 The following data is in your session:
BBS = BBSValue
Blog = BlogValue
【参考文献】
1、http://zyycaesar.iteye.com/blog/296606 Tomcat集群Cluster实现原理剖析
2、http://zyycaesar.iteye.com/blog/296501 Tomcat集群成员间1对多的通信是依靠IP组播;
3、http://blog.sina.com.cn/s/blog_4b4cb069010009jm.html~type=v5_one&label=rela_prevarticle
Tomcat 5集群中的SESSION复制
4、http://blog.sina.com.cn/s/blog_50edbc1601008qzb.html J2EE集群原理
5、http://lxiaodao.iteye.com/blog/321000 Tomcat session复制详细配置过程一
6、http://hi.baidu.com/luodaijun/blog/item/5bbe4cfb5ffef864034f56a1.html/index/1#comment Tomcat session复制详细配置过程二(一步步教你怎么配)
7、http://www.theserverside.com/tt/articles/article.tss?l=J2EEClustering 英文
=====================================================================
=====================================================================
Running more than one Web site on one computer is called virtual hosting.
Fully Qualified Domain Name (FQDN):host name+domain name.
e.g. www.wrox.com host name: www domain name:wrox.com
www.wrox.com是由一个web server来提供服务的。
例如:domain name为wrox.com可以还有其它的hosts,例如:p2p.wrox.com, newsletter.wrox.com等。
实现virtual host的两种方式:
(1)IP-based virtual hosts
一个host上通过multihoming hosts或者virtual network interfaces实现
(2)Name-based virtual hosts
根据http request header来判断是请求哪个domain
但是SSL要求唯一的ip地址,所以secure web不能用这种方式
1.建立多个tomcat instance所对应的目录,每个instance包含conf,logs,temp,webapps,work
2.每个instance启动脚本,和shutdown脚本都指定了变量CATALINA_BASE到建立的machine目录
CATALINA_HOME指定tomcat的目录
3.为每个tomcat instance所对应的server.xml配置文件,指定Server port,AJP Connector port
4.为server.xml中的Engine指定jvmRoute,对于参加load-balancing的instance,这个值是唯一的。该值需要和Apache Server’s mod_jk’s worker.properties中的值一致。
worker.<worker name>.<property> = <property value> <worker name>==jvmRoute
5.为web应用的web.xml设置<distributable/>,则该web application的session是共享的。
504
6.下载apache http server并安装
$ ./configure –prefix=PREFIX
$ make
$ make install
7.httpd -D DUMP_MODULES,看是否安装了proxy_module (shared),proxy_ajp_module (shared),proxy_balancer_module (shared)
8.如果没有,则通过apxs命令建立mod_proxy_ajp,mod_proxy,mod_proxy_balancer相对应的module
./apxs -a -i -c ../../httpd-2.2.11.src/modules/proxy/mod_proxy.c ../../httpd-2.2.11.src/modules/proxy/proxy_util.c
./apxs -a -i -c ../../httpd-2.2.11.src/modules/proxy/mod_proxy_ajp.c ../../httpd-2.2.11.src/modules/proxy/ajp*.c
./apxs -a -i -c ../../httpd-2.2.11.src/modules/proxy/mod_proxy_balancer.c
并且注意httpd.conf中定义的LoadModule的顺序
正向代理forward proxy:intermediate server that sits between the client and the origin server
客户端向proxy发送请求,以origin server为目标。
A reverse proxy (or gateway)对于客户端来说,仅是一个web server,发送请求到该server,然后reverse proxy来决定请求的发送情况。
如果proxy所在的host可以通过http://example.com/访问,则通过配置
ProxyPass /mirror/foo/ http://backend.example.com/
说明请求该proxy的请求http://example.com/mirror/foo/bar,则被映射到origin server的http://backend.example.com/bar
负载均衡:
apache http server支持的负载均衡算法
3 load balancer scheduler algorithms available for use: Request Counting, Weighted Traffic Counting and Pending Request Counting
问题日志:
[Mon Mar 30 15:11:58 2009] [warn] proxy: No protocol handler was valid
for the URL /. If you are using a DSO version of mod_proxy, make sure
the proxy submodules are included in the configuration using LoadModule.
需要mod_proxy_http.c
将http换成ajp协议
<Proxy balancer://mycluster>
BalancerMember ajp://127.0.0.1:8009 route=machine1
BalancerMember ajp://127.0.0.1:8109 route=machine2
BalancerMember ajp://127.0.0.1:8209 route=machine3
</Proxy>
ProxyPass / balancer://mycluster/
需要指定route=machine1,,才能够告诉http server哪样的session value到哪个tomcat instance上
10.共享session
Cluster It uses regular multicast (heartbeat packets) to determine membership
cluster利用hartbeat包来决定membership
Nodes within the same cluster listen to and multicast at the same multicast address and port.
同一cluster内的节点,对于同一multicast地址进行监听和multicast
Nodes that do not multicast within a required dropTime are considered
dead and are removed from the cluster (until they start multicasting
again).
在dropTime到期之后,如果节点不进行multicast,则认为是dead的,就会从cluster中被移除。直到再次multicast之后,才加进来
The membership listens for the multicast and manages the set of current nodes in the cluster dynamically.
Session replication requests and session updates are sent between member nodes in the cluster.
两个节点之间相互发送session复制,session更新请求。
BackupManager sends data to a backup node
<Cluster>可以放到<Engine>或者<Host>内。
前者是多个context,后者是一个context
<Cluster className=”org.apache.catalina.ha.tcp.SimpleTcpCluster”
channelSendOptions=”8″>
<Manager className=”org.apache.catalina.ha.session.DeltaManager”
expireSessionsOnShutdown=”false”
notifyListenersOnReplication=”true”/>
<Channel className=”org.apache.catalina.tribes.group.GroupChannel”>
<Membership className=”org.apache.catalina.tribes.membership.McastService” address=”228.0.0.8″ bind=”192.168.23.2″
port=”45564″
frequency=”500″
dropTime=”3000″/>
<Receiver className=”org.apache.catalina.tribes.transport.nio.NioReceiver”
address=”192.168.23.2″
port=”4200″
autoBind=”100″
selectorTimeout=”5000″
maxThreads=”6″/>
<Sender className=”org.apache.catalina.tribes.transport.ReplicationTransmitter”>
<Transport className=”org.apache.catalina.tribes.transport.nio.PooledParallelSender”/>
</Sender>
<Interceptor className=”org.apache.catalina.tribes.group.interceptors.TcpFailureDetector”/>
<Interceptor className=”org.apache.catalina.tribes.group.interceptors.MessageDispatch15Interceptor”/>
</Channel>
<Valve className=”org.apache.catalina.ha.tcp.ReplicationValve” filter=”.*\.gif;.*\.js;.*\.jpg;.*\.htm;.*\.html;.*\.txt;”/>
<Valve className=”org.apache.catalina.ha.session.JvmRouteBinderValve”/>
<Deployer className=”org.apache.catalina.ha.deploy.FarmWarDeployer”
tempDir=”/tmp/war-temp/”
deployDir=”/tmp/war-deploy/”
watchDir=”/tmp/war-listen/”
watchEnabled=”false”/>
<ClusterListener className=”org.apache.catalina.ha.session.JvmRouteSessionIDBinderListener”/>
<ClusterListener className=”org.apache.catalina.ha.session.ClusterSessionListener”/>
</Cluster>
The channelSendOptions value is used by the DeltaManager only
The Apache Tribes framework provides the following services:
(1)Membership service based on multicast heartbeat and TCP failure detection; dynamically determines the members in a group.
This service determines and maintains information on the machines that
are considered part of the group (cluster) at any point in time.
(2)Reliable messaging service between the different members of a group, providing a range of message delivery guarantees.
Receiver:This component receives the replicated data information from other members.
The filter attribute of the replication Valve may be used to override and stop session replication for specific matching requests.
发表评论
-
分布式并发计数器:播放数统计MongoDB实现
2012-08-14 13:31 5474分布式并发计数,以 ... -
Google AppEngine vs. Amazon EC2/S3
2009-08-02 18:16 2364云计算定义:从两个方面去定义,一个是底层机制,一个是用户模型 ... -
云计算开发学习
2009-07-28 17:27 3814云计算技术:云计算爱 ... -
对云计算的顾虑
2009-07-28 17:04 1189【 安全风险预警: 相比Google Apps,人们似乎 ... -
云计算概念入门
2009-07-28 15:59 1511【0、倡导者们最初的梦想】 【摘要:通过互联网出租超级计算能 ... -
项目组内部推荐书目
2009-07-21 15:50 1307项目组内部推荐书目 ... -
可伸缩性最佳实践:来自eBay的经验
2009-07-19 23:03 1084可伸缩性最佳实践:来自eBay的经验 作者 ... -
PHP安装运行
2009-07-03 00:18 3771【php靠什么运行】 tomca ... -
tomcat配置文件
2009-07-02 10:26 1244<?xml version='1.0' encoding ... -
负载均衡(1)mod_jk
2009-07-01 15:59 1632The Apache mod_jk module ...
相关推荐
Weblogic负载均衡/Session复制之集群架构 中的代理应用实例 https://oscar.blog.csdn.net/article/details/104144153
当我们谈论"Apache,tomcat负载均衡和session复制"时,这意味着我们要探讨如何在多台服务器之间分配负载,并确保用户会话的无缝迁移和一致性。 **负载均衡**是解决高并发、高可用性问题的重要策略。它通过将来自...
Weblogic负载均衡/Session复制之集群架构 中的实例 https://oscar.blog.csdn.net/article/details/104144153
本篇将深入探讨Apache如何实现负载均衡,以及Tomcat集群和session复制的相关知识。 首先,Apache的负载均衡主要通过模块mod_proxy来实现。这个模块能够将客户端的HTTP请求转发到不同的后端服务器,从而达到负载均衡...
本文将详细介绍如何在Windows环境下,利用Nginx作为反向代理服务器,与Tomcat集群配合实现负载均衡,并进行session复制,确保用户会话在不同服务器之间的一致性。 首先,Nginx是一款轻量级、高性能的HTTP和反向代理...
Apache_proxy负载均衡和Session复制。
### Linux 下 Apache+Tomcat 基于集群负载均衡 Session 复制 #### 一、概述 在现代 Web 应用开发中,为了提高服务的可用性和响应速度,常常会采用集群技术。其中,Apache 和 Tomcat 组合是常用的方案之一。本篇...
WebLogic 11g 集群 负载均衡 Session复制 Windows
WebLogic Server 11g 是 Oracle 公司提供的一个企业级 Java 应用服务器,它支持集群、负载均衡和Session复制等高级特性,以确保高可用性和数据一致性。以下是关于这些特性的详细说明: 1. **集群定义**: 集群是将...
标题中的“在32位操作系统上配置apache+tomcat集群/负载均衡/session复制”涉及到的是在32位系统环境下,如何构建一个使用Apache HTTP Server作为前端负载均衡器,与多个Tomcat应用服务器协同工作的集群环境,并实现...
【Apache+Tomcat 集群与负载均衡及Session绑定】是将多个Apache和Tomcat服务器配置成一个集群,以实现更高的服务可扩展性和可用性。集群的基本思想是通过将工作负载分散到多个服务器,避免单点故障,提高系统的整体...
Apache+Tomcat+Linux集群和均衡负载(Session同步复制
总之,`ngnix`、`memcached`和`tomcat6`的整合提供了高性能的Web服务环境,通过session复制保证了用户会话的连续性,而`Nginix`的负载均衡则确保了系统的可扩展性和可靠性。对于需要搭建类似环境的开发者来说,了解...
4. **Session复制**:在Java集群中,维持用户会话的一致性至关重要。常见的会话管理策略包括全复制、主从复制和基于令牌桶的复制。 5. **数据一致性**:分布式环境中,数据一致性是个挑战,Java集群可能采用分布式...
在构建高性能、高可用性的Web服务时,Apache2负载均衡与Tomcat6集群是一个常见的解决方案。这个组合可以有效地分发用户请求,提高系统的响应速度,同时确保服务的稳定性。下面我们将详细探讨这两个技术及其配置。 *...
WebLogic Server 8.1 集群负载均衡是一个关键的IT概念,它涉及在分布式环境中管理和优化应用程序的性能和可用性。WebLogic是Oracle公司的一款企业级Java应用服务器,而集群功能允许多个WebLogic服务器实例协同工作,...
本教程将详细讲解如何通过`Nginx`实现`Tomcat`集群的负载均衡,并实现`session`共享。 首先,我们要理解负载均衡的基本概念。负载均衡是通过将工作负载分散到多个计算资源,以优化资源使用、最大化吞吐量、最小化...
2. **Web容器自身的Session共享策略**:Tomcat可以配置集群模式,通过TCP广播复制Session数据。但这会占用大量带宽,适用于少量Tomcat服务器的情况。配置时,只需在每个Tomcat的`server.xml`中启用`<Cluster>`标签。...
同时,需要在JBoss内部配置文件中设定集群参数,例如session复制配置。 2. **启动集群**:先启动Apache作为负载均衡器,然后依次启动各个JBoss节点。Apache将根据配置动态调整请求分配,实现负载均衡。 【集群的...