服务器流量收发测试-续篇

文章目录

  • 一、概述
  • 二、普通java工程
    • 1,pom文件
    • 2, 定时任务
    • 3,打包
    • 4,jar运行
  • 三、打包docker镜像
    • 1,镜像打包配置docker环境:
    • 2,连接远程镜像仓库
  • 四、部署运行
    • 1. 容器运行
    • 2. 单容器多次运行jar
    • 3. 容器多实例运行
  • 五、完整代码

一、概述

接上回书 服务器流量收发测试
我们借助以下2种方式简单实现了构造http请求,实现流量收发测试:

  • springboot定时任务
  • crontab + curl
    同时,我们也发现,springboot定时任务方式太过重量级,crontab + curl则需要比较高的权限,并需要安装 crontab 系统服务。

那么有没一种轻量级的方法,实现同样的功能呢?

答案是肯定的,下面我们使用普通java工程来实现相同的功能。

二、普通java工程

1,pom文件

引入 unirest

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"><modelVersion>4.0.0</modelVersion><groupId>com.fly</groupId><artifactId>unirest-show</artifactId><version>0.0.1</version><name>unirest-show</name><url>http://maven.apache.org</url><packaging>jar</packaging><properties><project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding><project.build.sourceEncoding>UTF-8</project.build.sourceEncoding><docker.hub>registry.cn-shanghai.aliyuncs.com</docker.hub><java.version>1.8</java.version><skipTests>true</skipTests></properties><dependencies><!-- unirest --><dependency><groupId>com.mashape.unirest</groupId><artifactId>unirest-java</artifactId><version>1.4.9</version></dependency><dependency><groupId>org.apache.logging.log4j</groupId><artifactId>log4j-slf4j-impl</artifactId><version>2.12.1</version></dependency><dependency><groupId>org.apache.commons</groupId><artifactId>commons-lang3</artifactId><version>3.5</version></dependency><dependency><groupId>commons-io</groupId><artifactId>commons-io</artifactId><version>2.5</version></dependency><dependency><groupId>org.projectlombok</groupId><artifactId>lombok</artifactId><version>1.18.12</version><scope>provided</scope></dependency></dependencies><build><finalName>${project.artifactId}-${project.version}</finalName><plugins><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-compiler-plugin</artifactId><version>3.8.1</version><configuration><source>1.8</source><target>1.8</target></configuration></plugin><!-- 方式一:带dependencies运行包 --><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-assembly-plugin</artifactId><version>3.5.0</version><configuration><appendAssemblyId>false</appendAssemblyId><archive><manifest><mainClass>com.fly.simple.MainRun</mainClass></manifest></archive><descriptorRefs><!--将所有外部依赖JAR都加入生成的JAR包--><descriptorRef>jar-with-dependencies</descriptorRef></descriptorRefs></configuration><executions><execution><!-- 配置执行器 --><id>make-assembly</id><phase>package</phase><!-- 绑定到package阶段 --><goals><goal>single</goal><!-- 只运行一次 --></goals></execution></executions></plugin><!-- 添加docker-maven插件 --><plugin><groupId>io.fabric8</groupId><artifactId>docker-maven-plugin</artifactId><version>0.40.0</version><executions><execution><phase>package</phase><goals><goal>build</goal><goal>push</goal></goals></execution></executions><configuration><!-- 连接到带docker环境的linux服务器编译image --><!--<dockerHost>http://192.168.182.10:2375</dockerHost>--><!-- Docker 推送镜像仓库地址 --><pushRegistry>${docker.hub}</pushRegistry><images><image><name>${docker.hub}/00fly/${project.artifactId}:${project.version}</name><build><dockerFileDir>${project.basedir}</dockerFileDir></build></image></images></configuration></plugin></plugins></build>
</project>

2, 定时任务

使用ScheduledThreadPoolExecutor 实现

import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.ScheduledThreadPoolExecutor;
import java.util.concurrent.TimeUnit;
import java.util.stream.Collectors;
import java.util.stream.Stream;import org.apache.commons.io.FileUtils;
import org.apache.commons.lang3.StringUtils;import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.JsonNode;
import com.mashape.unirest.http.Unirest;
import com.mashape.unirest.http.exceptions.UnirestException;import lombok.extern.slf4j.Slf4j;@Slf4j
public class MainRun
{private static String uploadUrl = "http://124.71.129.204:8083/post";private static File file;/*** 线程池保证程序一直运行* * @param args*/public static void main(String[] args){log.info("################################################################################################");log.info("to start please run: java -jar unirest-show-0.0.1.jar --server.url=http://124.71.129.204:8083/post");log.info("################################################################################################");if (args.length > 0){String url = Stream.of(args).filter(arg -> arg.contains("--server.url")).map(arg -> StringUtils.substringAfter(arg, "=")).collect(Collectors.joining());if (StringUtils.isNotBlank(url)){log.info("server.url={}", url);uploadUrl = url;}}init();ScheduledExecutorService service = new ScheduledThreadPoolExecutor(1);long delay = 60000L - System.currentTimeMillis() % 60000L - 1; // 计算延迟(微调1ms),保证准时启动log.info("initialDelay {} Seconds", delay / 1000.0);service.scheduleAtFixedRate(() -> {post();}, delay, 60000L, TimeUnit.MILLISECONDS);}private static void init(){String protocol = MainRun.class.getResource("").getProtocol();log.info("protocol: {}", protocol);if ("jar".equals(protocol)){try (InputStream is = MainRun.class.getResourceAsStream("/data/nginx-1.25.3.tar.gz")){file = new File("nginx-1.25.3.tar.gz");FileUtils.copyInputStreamToFile(is, file);log.info("{}", file.getCanonicalPath());}catch (IOException e){log.error(e.getMessage(), e);}}else{String path = MainRun.class.getResource("/data/nginx-1.25.3.tar.gz").getPath();log.info("{}", path);file = new File(path);}}/*** Unirest发送post请求<br>* https://kong.github.io/unirest-java/#requests*/private static void post(){try{log.info("Unirest start");HttpResponse<JsonNode> jsonResponse = Unirest.post(uploadUrl).header("accept", "application/json").field("id", System.currentTimeMillis() % 1000).field("file", file) // 文件.asJson();log.info("###### Response status:{}", jsonResponse.getStatus());}catch (UnirestException e){log.error(e.getMessage(), e);}}
}

3,打包

输入以下命令执行打包,生成unirest-show-0.0.1.jar 只有5M不到,并且此jar可独立运行。此功能借助plugin maven-assembly-plugin 实现,具体请参考pom文件

mvn clean package

4,jar运行

nohup java -jar unirest-show-0.0.1.jar &

三、打包docker镜像

在pom文件种,我们已经配置了 docker-maven-plugin 来实现docker镜像打包。

1,镜像打包配置docker环境:

  • 本地windows可安装 docker desktop
  • 远程docker需要打开dockerHost标签配置docker远程地址

同时,我们在package阶段绑定了 docker build、docker push 需要保证docker push时能连上远程镜像仓库 registry.cn-shanghai.aliyuncs.com/00fly/

2,连接远程镜像仓库

有3种方式:

  • maven中配置
    参考 容器镜像生成记
  • 项目pom.xml中配置
    具体操作为,在插件io.fabric8.docker-maven-plugin configuration节点新增
	<authConfig><!--认证配置,用于私有镜像仓库registry认证 --><username>${docker.username}</username><password>${docker.password}</password></authConfig>

这边${docker.username}、${docker.password}请替换为docker镜像仓库实际账号/密码.

  • 手工登录
    不做任何实际配置,推送镜像前,执行手工登录操作,如:
    docker login --username=${docker.username} registry.cn-shanghai.aliyuncs.com
    这边${docker.username}请替换为docker镜像仓库实际账号

四、部署运行

1. 容器运行

cd docker
sh restart.sh

2. 单容器多次运行jar

cd docker
sh n-restart.sh

运行结果


2024-06-25 21:18:57.613 [main] INFO  com.fly.simple.MainRun - protocol: jar
2024-06-25 21:18:57.616 [main] INFO  com.fly.simple.MainRun - /nginx-1.25.3.tar.gz
2024-06-25 21:18:57.616 [main] INFO  com.fly.simple.MainRun - initialDelay 2.383 Seconds
2024-06-25 21:18:57.622 [main] INFO  com.fly.simple.MainRun - /nginx-1.25.3.tar.gz
2024-06-25 21:18:57.623 [main] INFO  com.fly.simple.MainRun - initialDelay 2.376 Seconds
2024-06-25 21:19:00.000 [pool-2-thread-1] INFO  com.fly.simple.MainRun - Unirest start
2024-06-25 21:19:00.001 [pool-2-thread-1] INFO  com.fly.simple.MainRun - Unirest start
2024-06-25 21:19:00.002 [pool-2-thread-1] INFO  com.fly.simple.MainRun - Unirest start
2024-06-25 21:19:01.700 [pool-2-thread-1] INFO  com.fly.simple.MainRun - ###### Response status:200
2024-06-25 21:19:01.721 [pool-2-thread-1] INFO  com.fly.simple.MainRun - ###### Response status:200
2024-06-25 21:19:02.988 [pool-2-thread-1] INFO  com.fly.simple.MainRun - ###### Response status:200

3. 容器多实例运行

cd docker
sh scale.sh

运行结果

sh scale.sh
[+] Running 3/3✔ Container docker_unirest-show_3  Started                                                                                              1.1s ✔ Container docker_unirest-show_1  Started                                                                                              0.6s ✔ Container docker_unirest-show_2  Started  

五、完整代码

https://gitcode.com/00fly/vnstat-rx-tx/tree/main/unirest-show

有任何问题和建议,都可以向我提问讨论,大家一起进步,谢谢!

-over-

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/diannao/35198.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

大模型应用研发基础环境配置(Miniconda、Python、Jupyter Lab、Ollama等)

老牛同学之前使用的MacBook Pro电脑配置有点旧&#xff08;2015 年生产&#xff09;&#xff0c;跑大模型感觉有点吃力&#xff0c;操作起来有点卡顿&#xff0c;因此不得已捡起了尘封了快两年的MateBook Pro电脑&#xff08;老牛同学其实不太喜欢用 Windows 电脑做研发工作&am…

04_记录锁

记录锁&#xff08;Record Lock&#xff09; 文章目录 记录锁&#xff08;Record Lock&#xff09;简介原理加锁流程锁类型使用场景示例与其他锁的对比结论 简介 MySQL 中的记录锁&#xff08;Record Lock&#xff09;是行级锁的一种&#xff0c;用于锁定数据库表中的特定行。…

从零开始做题:老照片中的密码

老照片中的密码 1.题目 1.1 给出图片如下 1.2 给出如下提示 这张老照片中的人使用的是莫尔斯电报机&#xff0c;莫尔斯电报机分为莫尔斯人工电报机和莫尔斯自动电报机&#xff08;简称莫尔斯快机&#xff09;。莫尔斯人工电报机是一种最简单的电报机&#xff0c;由三个部分组…

SelfReg-UNet:解决UNet语义损失,增强特征一致性与减少冗余的优化模型

SelfReg-UNet&#xff1a;解决UNet语义损失&#xff0c;增强特征一致性与减少冗余的优化模型 提出背景拆解类比&#xff1a;整理书架语义一致性正则化内部特征蒸馏为什么 UNet 会有语义损失&#xff1f; 提出背景 论文&#xff1a;https://arxiv.org/pdf/2406.14896 代码&…

c++内存管理_复习

new与placement new new&#xff1a; 先调用operator new(大小)&#xff0c;而operator new()会调用malloc尝试分配内存&#xff0c;失败则调用_callnewh()来释放内存&#xff0c;直至分配成功 可以设置分配失败的处理函数&#xff1a;将写好的处理函数作为参数传入set_new_han…

Vue3 使用 Vue Router 时,params 传参失效

前言&#xff1a; 在写项目的时候&#xff0c;使用了 vue-router 的 params 进行传参&#xff0c;但是在详情页面中一直获取不到参数。原因&#xff1a;Vue Router 在2022-8-22的那次更新后&#xff0c;使用这种方式在新页面上无法获取&#xff01; 正文&#xff1a; 在列表页进…

deeplabcut

import pandas as pd import h5py import pickle import json import os # 读取 CSV 文件 csv_file_path /mnt/data/CollectedData_dlc.csv csv_data pd.read_csv(csv_file_path) # 读取 H5 文件 h5_file_path /mnt/data/CollectedData_dlc.h5 with h5py.File(h5_file_pat…

LeetCode题练习与总结:只出现一次的数字Ⅱ--137

一、题目描述 给你一个整数数组 nums &#xff0c;除某个元素仅出现 一次 外&#xff0c;其余每个元素都恰出现 三次 。请你找出并返回那个只出现了一次的元素。 你必须设计并实现线性时间复杂度的算法且使用常数级空间来解决此问题。 示例 1&#xff1a; 输入&#xff1a;n…

K8S日常运维手册

Kubernetes&#xff08;简称 K8S&#xff09;是一种广泛使用的容器编排平台&#xff0c;能够自动化部署、扩展和管理容器化应用。对于运维人员来说&#xff0c;掌握 Kubernetes 的日常运维技能是确保系统稳定运行的关键。本文将介绍一些 Kubernetes 日常运维的基本操作与技巧&a…

虚拟机装入kali linux

VMware 首先需要先安装VMware Workstation Pro可以根据这篇文章来下载VMware 下载kali linux Installer Images VS Virtual Machines Installer Images&#xff08;安装镜像&#xff09;Virtual Machines&#xff08;虚拟机&#xff09; 直接访问硬件&#xff0c;定制内核…

Matlab|【防骗帖】考虑时空相关性的风电功率预测误差建模与分析

目录 1 主要内容 2 部分程序 3 下载链接 1 主要内容 这个程序《考虑时空相关性的风电功率预测误差建模与分析》画的图片非常漂亮&#xff0c;和原文献基本一致&#xff0c;但是实际上内容并未实现出来&#xff0c;主要就是利用现有的风电预测的数据和结果做了相关的图&#…

【数据结构】(C语言):链表

链表&#xff1a; 基本单位是节点。节点至少两部分&#xff1a;数据&#xff0c;下一个数据的地址。头指针head&#xff0c;始终指向链表的第一个节点。若没有节点&#xff0c;则headNULL。链表在内存中是非连续的。不能使用索引&#xff08;下标&#xff09;查找元素。只能从…

解决:Xshell通过SSH协议连接Ubuntu服务器报“服务器发送了一个意外的数据包,received:3,expected:20”

下图所示&#xff1a; 日志也基本看不出来问题在哪&#xff0c;只是说断开了连接大概是验证失败。有幸在某论坛评论区找到了原因&#xff0c;是因为我的xshell版本太低了而服务器的ssh版本太高&#xff0c;高版本的ssh默认屏蔽了一部分不太安全的算法导致建立连接的时候验证失败…

C++ 14新特性个人总结

variable templates 变量模板。这个特性允许模板被用于定义变量&#xff0c;就像之前模板可以用于定义函数或类型一样。变量模板为模板编程带来了新的灵活性&#xff0c;特别是在定义泛化的常量和元编程时非常有用。 变量模板的基本语法 变量模板的声明遵循以下基本语法&am…

解决Vue+Vite打包后Leaflet的marker图标不显示的问题

前言 用Leaflet写关于WebGIS的开发&#xff0c;用Vite或者webpack打包&#xff0c;打包后会找不到图标&#xff0c;如下所示。 直言的说&#xff0c;笔者去网上搜了搜&#xff0c;其实收到一个比较好是答案。网址如下。 &#xff08;完美解决~&#xff09;关于VueLeaflet添加…

eslint 与 prettier 的一些常见的配置项(很详细)

目录 1、eslint 常见配置项&#xff08;语法规范&#xff09; 2、 prettier 常见的配置项&#xff08;格式规范&#xff09; 代码规范相关内容看小编的该文章&#xff0c;获取对你有更好的帮助 vsCode代码格式化&#xff08;理解eslint、vetur、prettier&#xff0c;实现格式…

IDEA启动报错:Abnormal build process termination...

一、问题描述 因为项目需要&#xff0c;同时打开了两个idea&#xff0c;突然发现一个启动的时候报错&#xff0c;有点莫名其妙&#xff0c;刚还好好的&#xff0c;为啥就不能用了&#xff0c;一顿百度找方法&#xff0c;试了各种方法&#xff0c;像重新安装jdk、重启系统发现都…

TensorFlow开源项目

欢迎来到 Papicatch的博客 文章目录 &#x1f349;TensorFlow介绍 &#x1f349;主要特点和功能 &#x1f348;多语言支持 &#x1f348;灵活的架构 &#x1f348;分布式训练 &#x1f348;跨平台部署 &#x1f348;强大的工具链 &#x1f348;丰富的社区和生态系统 &a…

c++基本数据类型和计算(一)习题讲解

1.【单选题】以下说法正确的是? A. unsigned 类型的值 最大为0xFFFFFFFF B. float类型的值大约有15位精度 C.bool类型占用4个字节 解析&#xff1a; 选项A&#xff1a;unsigned 类型的值 最大为 4个字节&#xff0c;正确。选项B&#xff1a; 因为float类型的值是单精度的浮…

Vue3基础使用

目录 一、创建Vue3工程 (一)、cli (二)、vite 二、常用Composition API (一)、setup函数 (二)、ref函数 (三)、reactive函数 (四)、setup注意事项 (五)、计算属性 (六)、watch (七)、watchEffect函数 (八)、生命周期 1、以配置项的形式使用生命周期钩子 2、组合式…