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

ZanderXu resolved HDFS-17902.
-----------------------------
    Resolution: Fixed

> StripedBlockChecksumReconstructor leaks connections on init failure
> -------------------------------------------------------------------
>
>                 Key: HDFS-17902
>                 URL: https://issues.apache.org/jira/browse/HDFS-17902
>             Project: Hadoop HDFS
>          Issue Type: Bug
>          Components: hdfs
>    Affects Versions: 3.4.3
>            Reporter: yue.wang
>            Assignee: Yue Wang
>            Priority: Major
>              Labels: pull-request-available
>
> When BlockGroupNonStripedChecksumComputer.recalculateChecksum() allocates a 
> StripedBlockChecksumReconstructor with try-with-resources, the 
> reconstructor's constructor calls StripedReconstructor's superclass 
> constructor first, which creates a StripedReader. The constructor then calls 
> getStripedReader().init(), which in turn calls initReaders().
> If initReaders() fails because nSuccess < minRequiredSources, it throws 
> IOException. initReaders() does not close StripedBlockReader instances that 
> were already created and may already hold open block/TCP connections to peer 
> DataNodes.
> Because the constructor throws before the StripedBlockChecksumReconstructor 
> instance is successfully created, the try-with-resources statement never 
> assigns the resource variable and therefore does not invoke Closeable.close() 
> on the reconstructor (JLS: resource is only closed if initialization 
> completes normally). As a result, StripedReader.close() is never called on 
> that code path, and connections opened during the failed initReaders() loop 
> can leak.
> By contrast, StripedBlockReconstructor.run() always calls 
> getStripedReader().close() in a finally block, so the same failure mode is 
> cleaned up there.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to