You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hive.apache.org by "Ted Yu (JIRA)" <ji...@apache.org> on 2016/03/08 23:09:40 UTC

[jira] [Updated] (HIVE-7672) Potential resource leak in EximUtil#createExportDump()

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

Ted Yu updated HIVE-7672:
-------------------------
    Description: 
Here is related code:
{code}
      OutputStream out = fs.create(metadataPath);
      out.write(jsonContainer.toString().getBytes("UTF-8"));
      out.close();
{code}
If out.write() throws exception, out would be left unclosed.
out.close() should be enclosed in finally block.

  was:
Here is related code:
{code}
      OutputStream out = fs.create(metadataPath);
      out.write(jsonContainer.toString().getBytes("UTF-8"));
      out.close();
{code}

If out.write() throws exception, out would be left unclosed.
out.close() should be enclosed in finally block.


> Potential resource leak in EximUtil#createExportDump()
> ------------------------------------------------------
>
>                 Key: HIVE-7672
>                 URL: https://issues.apache.org/jira/browse/HIVE-7672
>             Project: Hive
>          Issue Type: Bug
>            Reporter: Ted Yu
>            Assignee: SUYEON LEE
>            Priority: Minor
>         Attachments: HIVE-7672.patch
>
>
> Here is related code:
> {code}
>       OutputStream out = fs.create(metadataPath);
>       out.write(jsonContainer.toString().getBytes("UTF-8"));
>       out.close();
> {code}
> If out.write() throws exception, out would be left unclosed.
> out.close() should be enclosed in finally block.



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