You are viewing a plain text version of this content. The canonical link for it is here.
Posted to hdfs-dev@hadoop.apache.org by "James Clampffer (JIRA)" <ji...@apache.org> on 2016/05/16 12:49:12 UTC

[jira] [Created] (HDFS-10409) libhdfs++: Something is holding connection_state_lock in RpcConnectionImpl destructor

James Clampffer created HDFS-10409:
--------------------------------------

             Summary: libhdfs++: Something is holding connection_state_lock in RpcConnectionImpl destructor
                 Key: HDFS-10409
                 URL: https://issues.apache.org/jira/browse/HDFS-10409
             Project: Hadoop HDFS
          Issue Type: Sub-task
            Reporter: James Clampffer


The destructor to RpcConnectionImpl grabs a lock using a std::lock_guard<>.  

It turns out something is already holding the lock when this happens.  Best bet is something that looks like:

{code}
void SomeFunctionThatShouldntTakeLock(){
  std::lock_guard<std::mutex> bad(connection_state_lock_)
  conn_.reset(); //conn is a shared_ptr to RpcConnectionImpl
}
{code}




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: hdfs-dev-unsubscribe@hadoop.apache.org
For additional commands, e-mail: hdfs-dev-help@hadoop.apache.org