义乌购dubbo的应用

        Dubbo是一个分布式服务框架,致力于提供高性能和透明化的RPC远程服务调用方案,以及SOA服务治理方案。简单的说, dubbo就是个服务框架,如果没有分布式的需求,其实是不需要用的,只有在分布式的时候,才有dubbo这样的分布式服务框架的需求,并且本质上是个服务调用的东东, 说白了就是个远程服务调用的分布式框架。
其核心部分包含:
1. 远程通讯: 提供对多种基于长连接的NIO框架抽象封装,包括多种线程模型,序列化,以及“请求-响应”模式的信息交换方式。
2. 集群容错: 提供基于接口方法的透明远程过程调用,包括多协议支持,以及软负载均衡,失败容错,地址路由,动态配置等集群支持。
3. 自动发现: 基于注册中心目录服务,使服务消费方能动态的查找服务提供方,使地址透明,使服务提供方可以平滑增加或减少机器。
     义乌购是dubbo的实践者,下面是dubbo最基础的配置信息。
     1、在10.6.6.77服务器上安装zookeeper服务, 安装和配置参考http://coolxing.iteye.com/blog/1871009     
     2、 提供服务端的dubbo配置,如下配置代表把服务注册到10.6.6.77服务器上 
    

#dubbo properties 
dubbo.container=spring,log4j 
dubbo.application.name=yiwugou-service-front 
dubbo.application.owner=yiwugou 
dubbo.registry.address=zookeeper://10.6.6.77:2181 
dubbo.protocol.name=dubbo 
dubbo.protocol.port=20881 
dubbo.provider.timeout=1000 
dubbo.provider.threads=400 
dubbo.log4j.level=info

 
        对应注册的类服务是配置在dubbo-provider.xml,代码如下 

    

<?xml version="1.0" encoding="UTF-8"?> 
<beans xmlns="http://www.springframework.org/schema/beans" 
    xmlns:aop="http://www.springframework.org/schema/aop" xmlns:context="http://www.springframework.org/schema/context" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:dubbo="http://code.alibabatech.com/schema/dubbo" 
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd 
    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd 
    http://code.alibabatech.com/schema/dubbo http://code.alibabatech.com/schema/dubbo/dubbo.xsd"> 
    <description>dubbo 配置</description> 
    <!-- company --> 
    <dubbo:service interface="com.yiwugou.api.frontservice.company.FrontCompanyService" ref="frontCompanyService"/> 
    <!--index --> 
    <dubbo:service interface="com.yiwugou.api.frontservice.index.FrontIndexService" ref="frontIndexService"/> 
</beans>

 
     3、消费端的配置信息是和服务端的代码是一致的。首先消费端会通过77服务器获取服务,如果获取不到就会到232服务器查找服务,都获取不到的话,服务启动会提示找不到文件。 
   

#dubbo properties 
dubbo.container=spring,log4j 
dubbo.application.name=yiwugou-web 
dubbo.application.owner=yiwugou 
dubbo.registry.address=zookeeper://10.6.6.77:2181|zookeeper://10.6.6.232:2181 
dubbo.protocol.name=dubbo 
dubbo.protocol.port=20880 
dubbo.service.loadbalance=roundrobin 
dubbo.log4j.file=logs/yiwugou-web.log 
dubbo.log4j.level=warn

 
   需要获取哪些类服务的配置文件yiwugou-front-comsumer.xml 。和服务端的区别是dubbo:service 和dubbo:reference 。
   

<?xml version="1.0" encoding="UTF-8"?> 
<beans xmlns="http://www.springframework.org/schema/beans" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:dubbo="http://code.alibabatech.com/schema/dubbo" 
    xsi:schemaLocation="http://www.springframework.org/schema/beans 
        http://www.springframework.org/schema/beans/spring-beans.xsd 
        http://code.alibabatech.com/schema/dubbo 
        http://code.alibabatech.com/schema/dubbo/dubbo.xsd 
        "> 
    <!-- search cache --> 
    <dubbo:reference id="searchShopCacheService" interface="com.yiwugou.api.cache.search.SearchShopCacheService" /> 
</beans>

 
       dubbo 架构图如下所示: 
        义乌购dubbo的应用
       Provider: 暴露服务的服务提供方。
       Consumer: 调用远程服务的服务消费方。
       Registry: 服务注册与发现的注册中心。
       Monitor: 统计服务的调用次调和调用时间的监控中心。
       Container: 服务运行容器。
0 服务容器负责启动,加载,运行服务提供者。
1. 服务提供者在启动时,向注册中心注册自己提供的服务。
2. 服务消费者在启动时,向注册中心订阅自己所需的服务。
3. 注册中心返回服务提供者地址列表给消费者,如果有变更,注册中心将基于长连接推送变更数据给消费者。
4. 服务消费者,从提供者地址列表中,基于软负载均衡算法,选一台提供者进行调用,如果调用失败,再选另一台调用。
5. 服务消费者和提供者,在内存中累计调用次数和调用时间,定时每分钟发送一次统计数据到监控中心。

相关推荐