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 "Chen Zhang (Jira)" <ji...@apache.org> on 2019/08/25 16:27:00 UTC

[jira] [Created] (HDFS-14776) Log more detail for slow RPC

Chen Zhang created HDFS-14776:
---------------------------------

             Summary: Log more detail for slow RPC
                 Key: HDFS-14776
                 URL: https://issues.apache.org/jira/browse/HDFS-14776
             Project: Hadoop HDFS
          Issue Type: Improvement
            Reporter: Chen Zhang


Current implementation only log process time
{code:java}
if ((rpcMetrics.getProcessingSampleCount() > minSampleSize) &&
    (processingTime > threeSigma)) {
  LOG.warn("Slow RPC : {} took {} {} to process from client {}",
      methodName, processingTime, RpcMetrics.TIMEUNIT, call);
  rpcMetrics.incrSlowRpc();
}
{code}
We need to log more details to help us locate the problem (eg. how long it take to request lock, holding lock, or do other things)



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

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