[
https://issues.apache.org/jira/browse/HIVE-1908?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12985822#action_12985822
]
Namit Jain commented on HIVE-1908:
----------------------------------
Chinna, I have added you as a contributor - so, please assign the jiras you are
working on to yourself
> FileHandler leak on partial iteration of the resultset.
> --------------------------------------------------------
>
> Key: HIVE-1908
> URL: https://issues.apache.org/jira/browse/HIVE-1908
> Project: Hive
> Issue Type: Bug
> Components: Server Infrastructure
> Affects Versions: 0.6.0
> Environment: Hadoop 0.20.1, Hive0.6.0 and SUSE Linux Enterprise
> Server 10 SP2 (i586) - Kernel 2.6.16.60-0.21-smp (5).
> Reporter: Chinna Rao Lalam
> Assignee: Chinna Rao Lalam
> Attachments: HIVE-1908.1.patch
>
>
> If the "resultset" is not iterated completely , one filehandler is leaking
> Ex: We need only first row. This case one resource is leaking
> {code}
> ResultSet resultSet = createStatement.executeQuery("select * from
> sampletable");
> if (resultSet.next())
> {
> System.out.println(resultSet.getString(1)+" "+resultSet.getString(2));
> }
> {code}
> Command used for checking the filehandlers
> {code}
> lsof -p {hive_process_id} > runjarlsof.txt
> {code}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.