Issue41567
Created on 2020-08-17 11:37 by drougge, last changed 2022-04-11 14:59 by admin. This issue is now closed.
| Files | ||||
|---|---|---|---|---|
| File name | Uploaded | Description | Edit | |
| pool_error_on_3.9.py | drougge, 2020-08-17 11:37 | repro example | ||
| Messages (6) | |||
|---|---|---|---|
| msg375542 - (view) | Author: Carl Drougge (drougge) * | Date: 2020-08-17 11:37 | |
If several threads try to start a multiprocessing.Pool at the same time when no pool has been started before this often fails with an exception like this (the exact import varies): Exception in thread Thread-2: Traceback (most recent call last): File "/tmp/py3.9.0rc1/lib/python3.9/threading.py", line 950, in _bootstrap_inner self.run() File "/tmp/py3.9.0rc1/lib/python3.9/threading.py", line 888, in run self._target(*self._args, **self._kwargs) File "/tmp/py3.9.0rc1/lib/python3.9/multiprocessing/context.py", line 118, in Pool from .pool import Pool ImportError: cannot import name 'Pool' from partially initialized module 'multiprocessing.pool' (most likely due to a circular import) (/tmp/py3.9.0rc1/lib/python3.9/multiprocessing/pool.py) This happens even if Pool was imported before starting the threads and is new in 3.9. It's easy to work around by starting a pool in the main thread before starting the other threads. I have attached a minimal example that triggers it. Tested on Debian stable and FreeBSD 11.3. |
|||
| msg375544 - (view) | Author: Irit Katriel (iritkatriel) * ![]() |
Date: 2020-08-17 13:51 | |
I see the same in Python 3.10 on windows 10.
If I change the relative imports to absolute imports in a couple of functions in multiprocessing.context as below, the attached (pool_error_on_3.9.py) script not longer raises the exception.
def SimpleQueue(self):
'''Returns a queue object'''
from multiprocessing.queues import SimpleQueue
return SimpleQueue(ctx=self.get_context())
def Pool(self, processes=None, initializer=None, initargs=(),
maxtasksperchild=None):
'''Returns a process pool object'''
from multiprocessing.pool import Pool
return Pool(processes, initializer, initargs, maxtasksperchild,
context=self.get_context())
|
|||
| msg375556 - (view) | Author: Irit Katriel (iritkatriel) * ![]() |
Date: 2020-08-17 16:07 | |
I think this is no a bug, on the basis that multiprocessing.Pool is not thread-safe. |
|||
| msg379400 - (view) | Author: Atsuo Ishimoto (ishimoto) * | Date: 2020-10-23 03:39 | |
multiprocessing module used to work multithread environment until https://bugs.python.org/issue35943 merged. I guess we can make multiprocessing thread-safe again if we move local imports to global. Does it make sense? |
|||
| msg379401 - (view) | Author: Atsuo Ishimoto (ishimoto) * | Date: 2020-10-23 03:41 | |
Some my observation at https://discuss.python.org/t/differences-between-3-8-and-3-9-in-importing-module/5520 . |
|||
| msg388771 - (view) | Author: (doublex) | Date: 2021-03-15 19:52 | |
Example code (fails):
import os, concurrent.futures
def parallel_callback( arg ):
return os.getpid()
def parallel( *args ):
def thread_callback( param ):
with concurrent.futures.ProcessPoolExecutor(max_workers=1) as executor:
future = executor.submit( parallel_callback, param )
pid = future.result()
print( 'pid:', pid )
return pid
with concurrent.futures.ThreadPoolExecutor(max_workers=len(args)) as executor:
future = executor.map( thread_callback, args )
results = list(future)
print( 'DONE' )
parallel( 1, 2, 3 )
|
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022-04-11 14:59:34 | admin | set | github: 85739 |
| 2021-03-16 16:16:54 | pitrou | set | status: open -> closed superseder: Fix false positives in circular import detection with from-imports resolution: duplicate stage: resolved |
| 2021-03-15 19:52:58 | doublex | set | nosy:
+ doublex messages: + msg388771 |
| 2021-02-17 18:22:51 | pitrou | set | nosy:
+ aeros |
| 2020-12-28 22:49:20 | cebtenzzre | set | nosy:
+ cebtenzzre |
| 2020-10-23 03:41:28 | ishimoto | set | messages: + msg379401 |
| 2020-10-23 03:39:01 | ishimoto | set | nosy:
+ ishimoto messages: + msg379400 |
| 2020-08-17 16:07:35 | iritkatriel | set | messages: + msg375556 |
| 2020-08-17 13:51:14 | iritkatriel | set | nosy:
+ iritkatriel messages:
+ msg375544 |
| 2020-08-17 11:37:30 | drougge | create | |
