jenkins执行jmeter时,报Begin size 1 is not equal to fixed size 5

这篇具有很好参考价值的文章主要介绍了jenkins执行jmeter时,报Begin size 1 is not equal to fixed size 5。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

jenkins执行jmeter脚本的时候一直提示如下错误:

Tidying up ...    @ Fri Jul 28 17:03:53 CST 2023 (1690535033178)
Error generating the report: org.apache.jmeter.report.dashboard.GenerationException: Error while processing samples: Consumer failed with message :Consumer failed with message :Consumer failed with message :Consumer failed with message :Begin size 1 is not equal to fixed size 5
... end of run

原因是jenkins版本2.4以上要求的jdk版本11-19,jmeter命令报告生成需要的jdk版本1.8,属于jdk的版本兼容问题
解决方法:下载jdk1.8并解压,然后在jmeter路径/bin下的jmeter文件中添加jdk路径

JAVA_HOME="/data/jdk/jdk1.8.0_144/"

jenkins执行jmeter时,报Begin size 1 is not equal to fixed size 5,jmeter,jmeter生成日志报错,Begin size 1 is,jmeter日志问题,日志生成报错文章来源地址https://www.toymoban.com/news/detail-613991.html

到了这里,关于jenkins执行jmeter时,报Begin size 1 is not equal to fixed size 5的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • Jenkins执行shell命令,提示Pseudo-terminal will not be allocated because stdin is not a terminal.

    我在使用Jenkins远程执行Jmeter脚本的时候,报了这么一个错误 首先看看我的脚本 开始构建后报了个错误 上面这是提示的错误,我们可以看到 Pseudo-terminal will not be allocated because stdin is not a terminal. 其实他的意思就是说想要在被Jenkins所ssh链接的地址上进行操作,我们只需要按照

    2024年02月11日
    浏览(37)
  • RuntimeError: stack expects each tensor to be equal size, but got at entry

    参考链接:​​​​​​解决Pytorch dataloader时报错每个tensor维度不一样的问题_python_脚本之家 记录一下自己遇到的bug: 问题描述:  问题分析: torch.stack(batch, 0, out=out)出错,原因可能是: 同一个batch的数据图片的维度(H, W, C)要相同(可以见官方文档:其shape必须一致) 问

    2024年02月15日
    浏览(37)
  • 彻底解决ES 数据查询 from + size must be less than or equal to:xxx 问题

    ES分页查询时出现超过一万页就爆出这个错误:Result window is too large, from + size must be less than or equal to: [10000] but… 该错误是由于es默认设置最大页数为一万的原因导致的,这样设置也是为了防止OOM。 第一种解决方式: 防止这个错误出现是设置 index.max_result_window的值。但是这种

    2024年02月14日
    浏览(29)
  • DataLoader问题解决:RuntimeError: stack expects each tensor to be equal size, but got [3, 200, 200]entry1

            最近,在数据集处理并载入DataLoader进行训练的时候出现了问题:         我看了一下,大意就是维度也就是通道数不匹配,所以我觉得应该是数据集图片出现了问题。以下是我的普通数据集处理代码:           我一张一张图片放入DataLoader,然后按顺序一张一张的

    2023年04月25日
    浏览(29)
  • SQL 中解决 “divisor is equal to zero“ 错误的方法

    前些天发现了一个巨牛的人工智能学习网站,通俗易懂,风趣幽默,忍不住分享一下给大家。点击跳转到网站,这篇文章男女通用,看懂了就去分享给你的码吧。 在 SQL 查询和数据处理中,当除数为零时,会触发 “divisor is equal to zero” 错误。本文将介绍如何解决这种错误,

    2024年02月12日
    浏览(20)
  • 【Pytorch警告】Using a target size (torch.Size([])) that is different to the input size (torch.Size([1])

    我代码中造成警告的语句是: 原因 :mse_loss损失函数的两个输入Tensor的shape不一致。经过reshape或者一些矩阵运算以后使得shape一致,不再出现警告了。

    2024年02月11日
    浏览(55)
  • 运行错误:view size is not compatible with input tensor‘s size and stride (at least

    python运行报错: view size is not compatible with input tensor\\\'s size and stride (at least one dimension spans acros 出现这个原因主要就是因为v iew()需要 Tensor 中的元素地址是连续的,因为可能出现Tensor不连续的情况,修改为: 在.view前加 .contiguous() ,使其变为连续就ok。    

    2024年02月11日
    浏览(27)
  • Java Development Kit (JDK) directory is not set or invalid. Please, fix it in Preferences -> Externa

    Java Development Kit (JDK) directory is not set or invalid. Please, fix it in Preferences - External Tools UnityEngine.GUIUtility:ProcessEvent(Int32, IntPtr) (at /Users/builduser/buildslave/unity/build/Modules/IMGUI/GUIUtility.cs:187)  解决方案: 我现在正在为我的游戏创建一个密钥库(在unity中),但当我按下add key按钮时,会弹

    2024年02月12日
    浏览(30)
  • Leetcode 3007. Maximum Number That Sum of the Prices Is Less Than or Equal to K

    Leetcode 3007. Maximum Number That Sum of the Prices Is Less Than or Equal to K 1. 解题思路 2. 代码实现 题目链接:3007. Maximum Number That Sum of the Prices Is Less Than or Equal to K 这一题我的思路上就是一个二分的思路,先确定一个上下界,然后不断通过二分来找到最大的price不超过k的值。 因此,剩下的

    2024年01月20日
    浏览(33)
  • git [fatal] hint: Pulling is not possible because you have unmerged files.hint: Fix them up in ...

    error: Pulling is not possible because you have unmerged files. 错误:无法提取,因为您有未合并的文件。 hint: Fix them up in the work tree, and then use ‘git add/rm ’ 提示:在工作树中修改它们,然后使用’git add/rm ’ hint: as appropriate to mark resolution and make a commit. 提示:根据需要标记解决方案并提交。

    2024年04月10日
    浏览(36)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包