使用子进程模块启动长时间运行的进程

发布于 2024-10-14 03:14:48 字数 777 浏览 1 评论 0原文

我正在尝试使用 python 的 subprocess 模块启动一个需要很长时间的 java 进程。

我实际上正在做的是使用 multiprocessing 模块启动一个新进程,并使用该进程,使用 subprocess 模块运行 java -jar

这工作正常,但是当我启动新进程时,java 进程会替换运行 python Process 的 python 进程。我希望 java 作为子进程运行,当启动新的 multiprocessing.Process 的进程死亡时,运行 java 的进程> 也会死。

这可能吗?

谢谢。

编辑:这里有一些代码来澄清我的问题:

def run_task():
    pargs = ["java -jar app.jar"]
    p = Popen(pargs)
    p.communicate()[0]
    return p

while(True):
    a = a_blocking_call()

    process = Process(target=run_task)
    process.start()

    if not a:
        break

当执行 while 循环的进程到达 时,我希望运行 run_task 的进程与运行 java 的进程一起被终止>断线。这可能吗?

I am trying to start a java process that is meant to take a long time, using python's subprocess module.

What I am actually doing is using the multiprocessing module to start a new Process, and using that process, use subprocess module to run java -jar.

This works fine, but when I start the new process, the java process replaces the python process running python Process. I would like java to run as a child process in a way that when the process that started a new multiprocessing.Process died, the process running java would die too.

Is this possible?

Thanks.

Edit: here's some code to clarify my question:

def run_task():
    pargs = ["java -jar app.jar"]
    p = Popen(pargs)
    p.communicate()[0]
    return p

while(True):
    a = a_blocking_call()

    process = Process(target=run_task)
    process.start()

    if not a:
        break

I want the process running run_task to be killed along with the process running java when the process executing the while loop reaches the break line. Is this possible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

葬シ愛 2024-10-21 03:14:48

我认为你应该展示一些代码,目前尚不清楚你如何一起使用子进程和多重处理。

从文档看来,子进程应该生成而不是替换新的进程启动的进程。你确定这不会发生吗?一个测试用例表明它并不好。

您可能会从 分离使用 python 多处理模块启动的子进程< /a>

I think you should show some code, it's not clear how you are using subprocess and multiprocessing together.

From the documentation it looks like subprocess should spawn and not replace your new Process-started process. Are you sure that isn't happening ? A test case showing it doesn't would be good.

You may get some hints out of Detach a subprocess started using python multiprocessing module

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文