[
https://issues.apache.org/jira/browse/HDFS-10688?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15393042#comment-15393042
]
Hudson commented on HDFS-10688:
-------------------------------
SUCCESS: Integrated in Hadoop-trunk-Commit #10147 (See
[https://builds.apache.org/job/Hadoop-trunk-Commit/10147/])
HDFS-10688. BPServiceActor may run into a tight loop for sending block (jing9:
rev 0cde9e12a7175e4d8bc4ccd5c36055b280d1fbd6)
*
hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode/BPServiceActor.java
> BPServiceActor may run into a tight loop for sending block report when
> hitting IOException
> ------------------------------------------------------------------------------------------
>
> Key: HDFS-10688
> URL: https://issues.apache.org/jira/browse/HDFS-10688
> Project: Hadoop HDFS
> Issue Type: Bug
> Components: datanode
> Reporter: Jing Zhao
> Assignee: Chen Liang
> Fix For: 2.8.0
>
> Attachments: HDFS-10688.001.patch, HDFS-10688.002.patch
>
>
> Currently in BPServiceActor#offerService, when datanode runs into a local
> IOException, the DataNode only logs the exception and runs into the while
> loop again:
> {code}
> } catch(RemoteException re) {
> .......
> LOG.warn("RemoteException in offerService", re);
> try {
> long sleepTime = Math.min(1000, dnConf.heartBeatInterval);
> Thread.sleep(sleepTime);
> } catch (InterruptedException ie) {
> Thread.currentThread().interrupt();
> }
> } catch (IOException e) {
> LOG.warn("IOException in offerService", e);
> }
> {code}
> This tight loop may cause some issue. For example, in a production cluster,
> we saw a DataNode hit exception when doing kerberos realm lookup. This tight
> loop finally caused the DataNode to send hundreds of DNS lookup queries per
> second.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]