mesher快速入门

安装运行环境

运行 Service Center

ServiceComb 微服务框架中,Service Center 提供服务注册及服务发现功能,可直接使用 Docker 运行。

docker pull servicecomb/service-center
docker run -d -p 30100:30100 servicecomb/service-center:latest

您可以通过阅读环境安装获取在本地以二进制方式运行Service Centerfront的方法。

使用mesher接入servicecomb微服务体系

案例背景

  • 本用例主要是帮助用户快速入门mesher sidecar模式;希望用户通过该例子,快速上手使用mesher服务,了解mesher的工作模式,并了解如何通过mesher的帮助改造已有的http服务,接入ServiceComb微服务体系,得到go-chassis微服务框架提供的负载均衡、流控、服务治理、调用链追踪等微服务能力。完整案例将提交至案例下载.

用例服务介绍

  • 如下图所示,用例中的服务部署在地址为192.168.88.64的机器上,用户在地址为192.168.88.78的机器上通过浏览器发起请求;

  • 1、 httpserver_calculator:基于python语言实现的http体质指数服务,可替换为任何语言开发的http服务;

  • 2、 httpserver_webapp:基于nodejs语言实现的web服务,用于在浏览器上展示可视化结果;

  • 3、 mesher_webapp:通过sidecar模式为httpserver_webapp提供服务的mesher实例;

  • 4、 mesher_calculator:通过sidecar模式为httpserver_calculator提供服务的mesher实例;

  • 5、 servicecenter:服务中心,接收mesher服务的注册,提供服务发现、路由查询、服务监控功能;

    mesher部署图

流程详情

  • 1、 浏览器[192.168.88.78]对 httpserver_webapp 服务发起http调用http://192.168.88.64:4597/calculator/bmi

  • 2、 httpserver_webapp服务接收请求,并发起对地址http://calculator/bmi的http调用,因为设置了代理http://127.0.0.1:30101httpserver_webapp 发起的请求将被转发到 mesher_webapp 服务;

  • 3、 mesher_webapp 根据请求的服务名(microservice.yaml配置的服务名calculator)从服务中心servicecenter获得该服务名的地址,转发到mesher_calculator

  • 4、 mesher_calculator服务根据设置好的specific地址,转发到自己绑定的体质指数calculator服务(httpserver_calculator)进行处理;

  • 5、 httpserver_calculator会根据用户身高和体重进行计算,并返回自己的服务标识展示在界面上;流程图如下所示:

    mesher流程图

环境搭建

  • 1、 编译 mesher下载地址, 按README.md编译项目得到可执行文件mesher(linux),windows(mesher.exe);

  • 2、 创建 mesher_webapp 用于为httpserver_webapp服务: 在mesher目录下执行下列linux命令创建mesher_webapp,此处除了可执行文件,还需要拷贝conf

    mkdir /usr/local/src/mesher_webapp
    cp ./mesher /usr/local/src/mesher_webapp
    cp -r ./conf /usr/local/src/mesher_webapp
    

    更改conf中配置文件,microservice.yaml中的服务name,从hellomesher改为webapp;更改chassis.yaml中监听的服务地址,从本地回环(127.0.0.1)地址改为内网ip(linux下通过ifconfig查看,如192.168.88.64):

    listenAddress: 127.0.0.1:40101  -----》  listenAddress: 192.168.88.64:40101
    listenAddress: 127.0.0.1:30101  -----》  listenAddress: 192.168.88.64:30101
    listenAddress: 127.0.0.1:30102  -----》  listenAddress: 192.168.88.64:30102
    
  • 3、 创建mesher_calculator

    mkdir /usr/local/src/mesher_calculator
    cp ./mesher /usr/local/src/mesher_calculator
    cp -r ./conf /usr/local/src/mesher_calculator
    

    更改conf中配置文件,分别更改microservice.yaml中的服务name为体质指数微服务名calculator
    更改mesher_calculator配置chassis.yaml监听的地址和端口:

    listenAddress: 127.0.0.1:40101  -----》  listenAddress: 192.168.88.64:40107
    listenAddress: 127.0.0.1:30101  -----》  listenAddress: 192.168.88.64:30111
    listenAddress: 127.0.0.1:30102  -----》  listenAddress: 192.168.88.64:30112
    
  • 4、 启动mesher服务,分别进入mesher_webappmesher_calculator,启动服务,其中需要设置mesher_calculator的SPECIFIC_ADDR地址,该地址用于将mesher和http服务绑定起来;

    cd /usr/local/src/mesher_calculator
    export SPECIFIC_ADDR=127.0.0.1:4540
    ./mesher
    
    cd /usr/local/src/mesher_webapp
    ./mesher
    
  • 5、 启动httpserver_webapp服务:

    cd /usr/local/src/httpserver_webapp
    npm install
    export http_proxy=http://127.0.0.1:30101
    node ./httpserver_webapp.js
    
  • 6、 httpserver_calculator作为体质指数计算服务,需要安装python2.7,依赖BaseHTTPServer包:

    cd /usr/local/src/httpserver_calculator
    ./httpserver_calculator.py
    

开始测试

  • 1、 浏览器打开页面http://192.168.88.64:30103 (如果打不开需要开启服务中心service-center的front服务,参考 http://servicecomb.apache.org/cn/docs/service-center/install/#版本发布包启动) 查看服务,其中地址service-center服务启动的地址,看到如图界面。webapp代表mesher_webapp服务,这里展示的是microservice.yaml中配置的服务名。calculator代表mesher_calculator服务,这里展示的是microservice.yaml中配置的服务名。大写的SERVICECENTER是服务中心;

    服务中心监控图

  • 2、 浏览器打开http://192.168.88.64:4597,可以看到如下界面,为webapp呈现的静态页面:

    bmi测试初始化图

  • 3、 输入参数(180、70)点击submit,显示如下图:

    bmi测试初始化图

下一步