Alexey Serbin has submitted this change and it was merged. (
http://gerrit.cloudera.org:8080/12112 )
Change subject: [util] use lighter locking scheme for ThreadMgr
......................................................................
[util] use lighter locking scheme for ThreadMgr
Use the rw_spinlock primitive to guard the ThreadMgr's registry
threads instead of Mutex. Also, use the shared lock pattern to deal
with write and read access to the guarded entities of the ThreadMgr.
In addition, do not hold the lock for the whole duration of generating
the /threadz page for the embedded webserver.
With this patch, ThreadMgr now uses std::unordered_map as a container
for category-specific thread information and enforces stricter
consistency rules while removing thread information from its registry.
The process of adding an information about a thread into the registry
is not guarded by stricter consistency checks (i.e. it stays as it was
before this patch); see below for explanation.
NOTE:
The stricter consistency around adding a thread into the ThreadMgr's
registry caused issues with multiprocessing in Python tests,
and I spent some time trying to work around that. However, that was
not fruitful. I think the proper solution would be keeping the thread
registry bound to some top-level object (like Kudu client or
ServerBase object) and cleaning it up in accordance with the object's
life cycle.
In essence, the problem happens due to the combination of the
following:
* The way how workers are spawned by the multiprocessing.Pool,
i.e. calling fork() at the point where Pool is instantiated.
* The fact that pthread_t handles might be the same for threads
in different processes.
In detail, if multiprocessing.Pool is spawning worker processes after
an instance of Kudu client has been created in the main test process,
every worker gets a copy of the thread registry in its address space.
The unexpected copy of the registry in a worker process is populated
with the information on threads spawned due to the activity of the
Kudu client in the main test process. Later on, if a worker
instantiates a Kudu client on its own, the newly spawned threads by
the worker's Kudu client might have the same pthread_t handles
as the threads whose information records are inadvertently inherited
from the main test process.
Also, it turned out it's impossible to handle worker's crash in a
multiprocessing.Pool, and that's by design: for details see:
https://stackoverflow.com/questions/24894682/
BTW, in Python 3 the problem with the duplicated address space
in worker processes has been resolved by using context and additional
worker spawn modes (e.g., 'forkserver').
Change-Id: I4d49c1c39392e01c45019844430a4fe3d116c277
Reviewed-on: http://gerrit.cloudera.org:8080/12112
Reviewed-by: Adar Dembo <[email protected]>
Tested-by: Kudu Jenkins
---
M src/kudu/util/os-util.cc
M src/kudu/util/thread.cc
2 files changed, 133 insertions(+), 100 deletions(-)
Approvals:
Adar Dembo: Looks good to me, approved
Kudu Jenkins: Verified
--
To view, visit http://gerrit.cloudera.org:8080/12112
To unsubscribe, visit http://gerrit.cloudera.org:8080/settings
Gerrit-Project: kudu
Gerrit-Branch: master
Gerrit-MessageType: merged
Gerrit-Change-Id: I4d49c1c39392e01c45019844430a4fe3d116c277
Gerrit-Change-Number: 12112
Gerrit-PatchSet: 11
Gerrit-Owner: Alexey Serbin <[email protected]>
Gerrit-Reviewer: Adar Dembo <[email protected]>
Gerrit-Reviewer: Alexey Serbin <[email protected]>
Gerrit-Reviewer: Kudu Jenkins (120)
Gerrit-Reviewer: Will Berkeley <[email protected]>