You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mapreduce-dev@hadoop.apache.org by "Zoltan Haindrich (JIRA)" <ji...@apache.org> on 2017/09/29 07:29:00 UTC

[jira] [Created] (MAPREDUCE-6972) enable try-with-resources for RecordReader

Zoltan Haindrich created MAPREDUCE-6972:
-------------------------------------------

             Summary: enable try-with-resources for RecordReader
                 Key: MAPREDUCE-6972
                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-6972
             Project: Hadoop Map/Reduce
          Issue Type: Improvement
            Reporter: Zoltan Haindrich



{{org.apache.hadoop.mapred.RecordReader}} has a close method; but doesn't implement closeable; it would be nice to add that - it would enable to use:

{code}
try( org.apache.hadoop.mapred.RecordReader<?, ?> recordReader = inputFormat.getRecordReader(... )   ){
 [...]
}
{code}

...supporting t-w-r makes it easier to throw exceptions more safely



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

---------------------------------------------------------------------
To unsubscribe, e-mail: mapreduce-dev-unsubscribe@hadoop.apache.org
For additional commands, e-mail: mapreduce-dev-help@hadoop.apache.org