[ 
https://issues.apache.org/jira/browse/HDFS-10820?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Xiao Chen updated HDFS-10820:
-----------------------------
    Summary: Reuse closeResponder to reset the response variable in 
DataStreamer#run  (was: DataStreamer#Responder close fails that break down the 
pipeline recovery)

> Reuse closeResponder to reset the response variable in DataStreamer#run
> -----------------------------------------------------------------------
>
>                 Key: HDFS-10820
>                 URL: https://issues.apache.org/jira/browse/HDFS-10820
>             Project: Hadoop HDFS
>          Issue Type: Bug
>            Reporter: Yiqun Lin
>            Assignee: Yiqun Lin
>            Priority: Minor
>         Attachments: HDFS-10820.001.patch, HDFS-10820.002.patch
>
>
> When worked for HDFS-6532, I found that the error recovery will happens when 
> responder close fails. The related codes:
> {code}
> {code:title=DataStreamer.java|borderStyle=solid}
>   public void run() {
>     long lastPacket = Time.monotonicNow();
>     TraceScope scope = null;
>     while (!streamerClosed && dfsClient.clientRunning) {
>       // if the Responder encountered an error, shutdown Responder
>       if (errorState.hasError() && response != null) {
>         try {
>           response.close();
>           response.join();
>           response = null;
>         } catch (InterruptedException e) {
>           // If interruptedException happens, the response will not be set to 
> null
>           // and that will lead the error recovry.
>           LOG.warn("Caught exception", e);
>         }
>       }
>       // Here need add a finally block to set response as null
>       ...
> {code}
> Can see the related 
> comment:https://issues.apache.org/jira/browse/HDFS-6532?focusedCommentId=15448770&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-15448770



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

---------------------------------------------------------------------
To unsubscribe, e-mail: hdfs-issues-unsubscr...@hadoop.apache.org
For additional commands, e-mail: hdfs-issues-h...@hadoop.apache.org

Reply via email to