gpt4 book ai didi

python多处理: sleep statement killed?

转载 作者:太空宇宙 更新时间:2023-11-03 19:49:16 24 4
gpt4 key购买 nike

我有以下代码:

import multiprocessing, datetime

def Unit_Task_Function(Argument):

print(f"Unit of work {Argument} starting {datetime.datetime.now().strftime('%Y-%m-%d : %H-%M-%S')}")
sleep(2*random.random())
print(f"Unit of work {Argument} ending {datetime.datetime.now().strftime('%Y-%m-%d : %H-%M-%S')}")

if __name__ == "__main__": # Allows for the safe importing of the main module
__spec__ = "ModuleSpec(name='builtins', loader=<class '_frozen_importlib.BuiltinImporter'>)"

print(f"There are {multiprocessing.cpu_count()} CPUs on this machine")

max_para_processes_at_any_time = 5
pool = multiprocessing.Pool(max_para_processes_at_any_time)


iterable_arguments = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'M', 'N']

results = pool.map_async(Unit_Task_Function, iterable_arguments)

pool.close()
pool.join()

输出是:

In [18]: run code.py
There are 8 CPUs on this machine
Unit of work A starting 2020-01-27 : 12-26-02
Unit of work B starting 2020-01-27 : 12-26-02
Unit of work C starting 2020-01-27 : 12-26-02
Unit of work D starting 2020-01-27 : 12-26-02
Unit of work E starting 2020-01-27 : 12-26-02
Unit of work F starting 2020-01-27 : 12-26-02
Unit of work G starting 2020-01-27 : 12-26-02
Unit of work H starting 2020-01-27 : 12-26-02
Unit of work M starting 2020-01-27 : 12-26-02
Unit of work N starting 2020-01-27 : 12-26-02

为什么第二条打印语句从未完成?这与所谓的“守护进程”进程有关吗?如何重写代码使其正常工作?

最佳答案

您缺少一些导入。这会导致工作人员出现导入错误,而您看不到这一点。导入这些:

import random

from time import sleep

你的输出是:

There are 8 CPUs on this machine
Unit of work A starting 2020-01-27 : 18-48-21
Unit of work B starting 2020-01-27 : 18-48-21
Unit of work C starting 2020-01-27 : 18-48-21
Unit of work D starting 2020-01-27 : 18-48-21
Unit of work E starting 2020-01-27 : 18-48-21
Unit of work E ending 2020-01-27 : 18-48-21
Unit of work F starting 2020-01-27 : 18-48-21
Unit of work A ending 2020-01-27 : 18-48-22
Unit of work G starting 2020-01-27 : 18-48-22
Unit of work C ending 2020-01-27 : 18-48-22
Unit of work H starting 2020-01-27 : 18-48-22
Unit of work D ending 2020-01-27 : 18-48-22
Unit of work M starting 2020-01-27 : 18-48-22
Unit of work G ending 2020-01-27 : 18-48-22
Unit of work N starting 2020-01-27 : 18-48-22
Unit of work B ending 2020-01-27 : 18-48-22
Unit of work M ending 2020-01-27 : 18-48-23
Unit of work F ending 2020-01-27 : 18-48-23
Unit of work N ending 2020-01-27 : 18-48-24
Unit of work H ending 2020-01-27 : 18-48-24

提示:在切换到 pool.map_async() 之前,先使用 pool.map() 查看错误消息。

或者,提供一个重新引发异常的错误回调函数:

def on_error(err):
raise err

results = pool.map_async(Unit_Task_Function,
iterable_arguments,
error_callback=on_error)

关于python多处理: sleep statement killed?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59936189/

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