gpt4 book ai didi

java - 在 Jenkins 的给定持续时间内重复运行 Java 代码

转载 作者:行者123 更新时间:2023-11-30 09:03:58 24 4
gpt4 key购买 nike

我想运行 Java 代码一段时间,比如 16 小时!我有一个运行大约一个小时的 Java 代码。我希望它重复运行 16 个小时。所以我有一个参数是用户通过 Jenkins 传递的!我使用

访问这个值
System.getenv("Duration");

现在,我想在指定时间后退出执行。所以假设用户选择了 16,脚本应该运行 16 小时然后退出。

Accepting input from Jenkins user as shown in the image

我看到了一些其他问题,但其中大部分都是在处理几秒钟或几分钟的计时器。我需要一个有效的解决方案。谢谢 :)

仅供引用 - 环境 - Jenkins+TestNG+Maven+Java

编辑:

long start = System.currentTimeMillis();
long end = start + durationInHours*60*60*1000;

while (System.currentTimeMillis() < end)
{
//My code here runs for approx. 50 mins!
}

现在假设用户选择值 3 小时,我希望 while 循环在 3 小时后退出。但这并没有发生,因为它在检查 while 条件时还没有完成 3 小时。所以它甚至第 4 次进入 while 条件(因为耗时是 150 分钟,不到 180 分钟)它在 3 小时 10 分钟后结束.

如何让它在达到 180 分钟后立即退出 while 循环?

P.S - 我可以先做数学运算,(迭代 =durationFromUser/codeDuration)然后运行 ​​for 循环,但我不想这样做,因为我的脚本长度可能会有所不同。

编辑 2:

boolean alive = true;
Timer timer = new Timer();

@Test() //Annotation from TestNG
public void public void jenkinsEntryPoint()
{
String duration = System.getenv("Duration");
int durationInHours=Integer.parseInt(duration);
long end = System.currentTimeMillis() + durationInHours*60*60*1000;
TimerTask task = new TimerTask() {
public void run() {
alive = false;
};

timer.schedule(task, end);
while (alive) {
//My code here runs for approx. 50 mins!
function1();
}

}

void function1() {
function2();
}

private void function2() {
for(i=0;i<8;i++)
{
while(alive)
{

//long running code
sleep(1000);
//Some more code
sleep(2000);
//Some more code
//Suppose time elapses here, I want it to quit
//But its continuing to execute
.
.
.
.

}
}
}

最佳答案

while 条件只会在脚本调用之间进行评估(如您所见)。您将不得不从内部突破长期运行。

我通常会使用 Timer 来设置一个“全局” boolean 值,您将从长时间运行的代码的循环内部检查它。

是这样的。注意检查“活着”必须在你所有的长循环中......

boolean alive = true;
Timer timer = new Timer();

public void jenkinsEntryPoint()
long end = System.currentTimeMillis() + durationInHours*60*60*1000;
TimerTask task = new TimerTask() {
public void run() {
alive = false;
};

timer.schedule(task, end);
while (alive) {
//My code here runs for approx. 50 mins!
yourLongRunningCode()
}

public void yourLongRunningCode() {
while (alive) {
doStuff();
}
}

关于java - 在 Jenkins 的给定持续时间内重复运行 Java 代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25419494/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com