Python concurrent.futures와 ProcessPoolExecutor는 작업을 예약하고 모니터하기위한 깔끔한 인터페이스를 제공합니다. 선물도 provide .cancel() 메소드 :Python : concurrent.futures 취소 가능하게 만드는 방법?
취소() : 호출을 취소 할 시도. 호출이 이고 현재 실행 중이므로 취소 할 수 없으면 메서드는 False를 반환하고 그렇지 않으면 호출이 취소되고 메서드가 True를 반환합니다. 불행히도에 simmilar question (관련된 asyncio)에서
는 작업을 실행 응답 주장은 문서의 잘린를 사용 uncancelable,하지만 그들은 실행 및 uncancelable 경우에만 워드 프로세서, 그런 말하지 말아.
프로세스에 multiprocessing.Events 제출은 하찮게 수 없습니다 내가 뭘하려고 오전
(multiprocess.Process에 같은 매개 변수를 통해 그렇게는 RuntimeError에를 반환)? 검색 공간을 분할하고 모든 파티션에 대해 작업을 실행하고 싶습니다. 그러나 하나의 솔루션 만 있으면 충분하며 프로세스는 CPU를 많이 사용합니다. ProcessPool을 사용하여 이익을 상쇄하지 않는 실제적인 안락한 방법이 있습니까?
예 :
from concurrent.futures import ProcessPoolExecutor, FIRST_COMPLETED, wait
# function that profits from partitioned search space
def m_run(partition):
for elem in partition:
if elem == 135135515:
return elem
return False
futures = []
# used to create the partitions
steps = 100000000
with ProcessPoolExecutor(max_workers=4) as pool:
for i in range(4):
# run 4 tasks with a partition, but only *one* solution is needed
partition = range(i*steps,(i+1)*steps)
futures.append(pool.submit(m_run, partition))
done, not_done = wait(futures, return_when=FIRST_COMPLETED)
for d in done:
print(d.result())
print("---")
for d in not_done:
# will return false for Cancel and Result for all futures
print("Cancel: "+str(d.cancel()))
print("Result: "+str(d.result()))
당신은 PARAM로 전달하는 대신 글로벌 변수에'Event'를 설정하려고 할 수 http://stackoverflow.com/questions/1675766/how-to-combine-pool-map-with 참조 -array-shared-memory-in-python-multiprocessing – niemmi
@niemmi tipp에 감사드립니다. 아마 다른 모듈에 대한 호출로 잘 짜여진 느낌이 없으므로이를 해결 방법으로 시도 할 것입니다. – Ketzu