微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Jvm-Sandbox-Repeater的部署

1.什么是jvm-sandBox-repeater?

jvm-sandBox-repeater 是 JVM-SandBox 生态体系下的重要模块,它具备了JVM-SandBox 的所有特点,插件式设计便于快速适配各种中间件,封装请求录制/回放基础协议,也提供了通用可扩展的各种丰富API。jvm-sandBox 是指 JVM 沙箱容器,一种 JVM 的非侵入式运行期 AOP 解决方案。

 

2.它的核心能力是什么?

2.1 通用录制/回放能力

(1).无侵入式录制 HTTP/Java/dubbo 入参/返回值录制能力(业务系统无感知)

(2).基于 TTL 提供多线程子调用追踪,完整追踪一次请求的调用路径

(3).入口请求(HTTP/dubbo/Java)流量回放、子调用(Java/dubbo)返回值 Mock 能力

 

2.2 快速可扩展API实现

(1).录制/回放插件式架构

(2).提供标准接口,可通过配置/简单编码实现一类通用插件

 

2.3. standalone工作模式

无需依赖任何服务端/存储,可以单机工作,提供录制/回放能力

 

3.如何部署?

3.1 Console部署

setp1: 下载源码

git clone https://github.com/alibaba/jvm-sandBox-repeater

 

step2: 配置数据库信息 application.properties 及初始化数据库相关的初始化 sql 文件地址为:

./jvm-sandBox-repeater/repeater-console/repeater-console-dal/src/main/resources/database.sql

 

step3: 在服务器上配置mvn命令

如果是配置好了yum 源,可以使用以下命令直接安装maven

yum install maven

 

step4: 编译并启动console命令

cd ./jvm-sandBox-repeater
mvn install -DskipTests && nohup java -jar repeater-console/repeater-console-start/target/repeater-console.jar > console.log 2>&1 &

 

3.2 Repeater部署

setp1: 在上面的源码下载目录下

cd ./jvm-sandBox-repeater/bin  && sh install-local.sh

install-local.sh脚本内容如下:

[email protected] bin # more sh install-local.sh
#!/usr/bin/env bash
# repeater's target dir
REPEATER_TARGET_DIR=../target/repeater
# exit shell with err_code
# $1 : err_code
# $2 : err_msg
exit_on_err()
{
    [[ ! -z "${2}" ]] && echo "${2}" 1>&2
    exit ${1}
}
# package
sh ./package.sh || exit_on_err 1 "install Failed cause package Failed"  #此处调用到了package.sh 脚本,下面会单独分析
# extract sandBox to ${HOME}
curl -s http://sandBox-ecological.oss-cn-hangzhou.aliyuncs.com/sandBox-1.2.1-bin.tar | tar xz -C ${HOME} || exit_on_err 1 "extract sandBox Failed" #下载并解压sandBox文件包
# copy module to ~/.sandBox-module
mkdir -p ${HOME}/.sandBox-module || exit_on_err 1 "permission denied, can not mkdir ~/.sandBox-module"  #创建目录
cp -r ${REPEATER_TARGET_DIR}/* ${HOME}/.sandBox-module  || exit_on_err 1 "permission denied, can not copy module to ~/.sandBox-module" #复制../target/repeater目录下的所有文件到上一个命令创建的目录下

package.sh脚本内容如下:

[email protected] bin # more package.sh 
#!/usr/bin/env bash
# repeater's target dir
REPEATER_TARGET_DIR=../target/repeater  #定义变量
# exit shell with err_code
# $1 : err_code
# $2 : err_msg
exit_on_err()
{
    [[ ! -z "${2}" ]] && echo "${2}" 1>&2
    exit ${1}
}
# maven package the sandBox
mvn clean package -Dmaven.test.skip=true -f ../pom.xml || exit_on_err 1 "package repeater Failed."   #编译打包
 
mkdir -p ${REPEATER_TARGET_DIR}/plugins  #创建目录
mkdir -p ${REPEATER_TARGET_DIR}/cfg #创建目录
cp ./repeater-logback.xml ${REPEATER_TARGET_DIR}/cfg/repeater-logback.xml \  #拷贝文件到repeater目录
    && cp ./repeater.properties ${REPEATER_TARGET_DIR}/cfg/repeater.properties \
    && cp ./repeater-config.json ${REPEATER_TARGET_DIR}/cfg/repeater-config.json \
    && cp ../repeater-module/target/repeater-module-*-jar-with-dependencies.jar ${REPEATER_TARGET_DIR}/repeater-module.jar \
    && cp ../repeater-console/repeater-console-start/target/repeater-console.jar ${REPEATER_TARGET_DIR}/repeater-bootstrap.jar \
    && cp ../repeater-plugins/ibatis-plugin/target/ibatis-plugin-*-jar-with-dependencies.jar ${REPEATER_TARGET_DIR}/plugins/ibatis-plugin.jar \
    && cp ../repeater-plugins/java-plugin/target/java-plugin-*-jar-with-dependencies.jar ${REPEATER_TARGET_DIR}/plugins/java-plugin.jar \
    && cp ../repeater-plugins/mybatis-plugin/target/mybatis-plugin-*-jar-with-dependencies.jar ${REPEATER_TARGET_DIR}/plugins/mybatis-plugin.jar \
    && cp ../repeater-plugins/dubbo-plugin/target/dubbo-plugin-*-jar-with-dependencies.jar ${REPEATER_TARGET_DIR}/plugins/dubbo-plugin.jar \
    && cp ../repeater-plugins/redis-plugin/target/redis-plugin-*-jar-with-dependencies.jar ${REPEATER_TARGET_DIR}/plugins/redis-plugin.jar \
    && cp ../repeater-plugins/http-plugin/target/http-plugin-*-jar-with-dependencies.jar ${REPEATER_TARGET_DIR}/plugins/http-plugin.jar \
    && cp ../repeater-plugins/hibernate-plugin/target/hibernate-plugin-*-jar-with-dependencies.jar ${REPEATER_TARGET_DIR}/plugins/hibernate-plugin.jar \
    && cp ../repeater-plugins/spring-data-jpa-plugin/target/spring-data-jpa-plugin-*-jar-with-dependencies.jar ${REPEATER_TARGET_DIR}/plugins/spring-data-jpa-plugin.jar

repeater 日志配置文件如下:

repeater的日志路径为:~/logs/sandBox/repeater/repeater.log  --》这是由于logback.xml 配置决定的 repeater-logback.xml文件内容如下:

[email protected] bin #more repeater-logback.xml 
<?xml version="1.0" encoding="UTF-8" ?>
<configuration scan="true" scanPeriod="10000">
    <appender name="REPEATER-FILE-APPENDER" class="ch.qos.logback.core.rolling.Ro
llingFileAppender">
        <file>${user.home}/logs/sandBox/repeater/repeater.log</file>
        <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">        <FileNamePattern>${user.home}/logs/sandBox/repeater/repeater.log.%d{y
yyy-MM-dd}</FileNamePattern>
            <MaxHistory>30</MaxHistory>
        </rollingPolicy>
        <encoder>
            <pattern>%d{yyyy-MM-dd HH:mm:ss} %-5level %msg%n</pattern>
            <charset>UTF-8</charset>
        </encoder>
    </appender>
    <root level="info">
        <appender-ref ref="REPEATER-FILE-APPENDER"/>
    </root>
</configuration>

 

3.3 SandBox 部署

https://github.com/alibaba/jvm-sandBox
  1. JVM-SANDBox(沙箱)实现了一种在不重启、不侵入目标JVM应用的AOP解决方

  2. 操作步骤:下载最新版本的JVM-SANDBox

wget http://ompc.oss-cn-hangzhou.aliyuncs.com/jvm-sandBox/release/sandBox-stable-bin.zip
 
# 解压
unzip sandBox-stable-bin.zip
 
# 进入沙箱执行脚本
cd sandBox/bin
 
#在~/sandBox/bin/sandBox.sh 启动的cfg目录下有一个sandBox.properties文件,目录为/root/sandBox/cfg
sandBox.properties 文件里面指定了user_module=~/.sandBox-module
 
# 挂载目标JVM进程,这里以console应用为示例来挂载,一条命令搞定:
sh ~/sandBox/bin/sandBox.sh -p `ps -ef | grep "console" | grep -v grep | awk '{print $2}'` -P 12250  【这个命令会将console JVM进程进行挂载】

~/.sandBox-module目录下可以看到:

[email protected] .sandBox-module # tree
.
├── cfg
│   ├── repeater-config.json
│   ├── repeater-logback.xml #这个repeater 启动后的日志配置文件
│   └── repeater.properties  #把repeater.properties里面的ip and port 修改为为console 所在机器启动的ip and port 
├── plugins
│   ├── dubbo-plugin.jar
│   ├── hibernate-plugin.jar
│   ├── http-plugin.jar
│   ├── ibatis-plugin.jar
│   ├── java-plugin.jar
│   ├── mybatis-plugin.jar
│   ├── redis-plugin.jar
│   └── spring-data-jpa-plugin.jar
├── repeater-bootstrap.jar
└── repeater-module.jar #repeater 模块的启动jar

SandBox 日志配置:

#more sandBox-logback.xml 
<?xml version="1.0" encoding="UTF-8" ?>
<configuration scan="true" scanPeriod="10000">
    <appender name="SANDBox-FILE-APPENDER" class="ch.qos.logback.core.rolling.Rol
lingFileAppender">
        <file>${user.home}/logs/sandBox/sandBox.log</file>
        <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy"
>
<FileNamePattern>${user.home}/logs/sandBox/sandBox.log.%d{yyyy-MM-dd}
</FileNamePattern>
            <MaxHistory>30</MaxHistory>
        </rollingPolicy>
        <encoder>
            <pattern>%d{yyyy-MM-dd HH:mm:ss} %sANDBox_NAMESPACE %-5level %msg%n</
pattern>
            <charset>UTF-8</charset>
        </encoder>
    </appender>
 
    <root level="info">
        <appender-ref ref="SANDBox-FILE-APPENDER"/>
    </root>
</configuration>

 

4.Console部署后的启动页面如下图所示

 

 

欢迎关注【无量测试之道】公众号,回复【领取资源】
Python编程学习资源干货、
Python+Appium框架APP的UI自动化、
Python+Selenium框架Web的UI自动化、
Python+Unittest框架API自动化、
资源和代码 免费送啦~
文章下方有公众号二维码,可直接微信扫一扫关注即可。

备注:我的个人公众号已正式开通,致力于测试技术的分享,包含:大数据测试、功能测试,测试开发,API接口自动化、测试运维、UI自动化测试等,微信搜索公众号:“无量测试之道”,或扫描下方二维码


添加关注,让我们一起共同成长!

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐