-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/44910/
-----------------------------------------------------------
Review request for hive, Aihua Xu, Szehon Ho, and Yongzhi Chen.
Bugs: HIVE-13294
https://issues.apache.org/jira/browse/HIVE-13294
Repository: hive-git
Description
-------
AvroSerde leaks the connection in a case when reading schema from url:
In
public static Schema determineSchemaOrThrowException
{ ... return AvroSerdeUtils.getSchemaFor(new URL(schemaString).openStream());
... }
The opened inputStream is never closed.
The patch is to close the inputStream (thus the connection) in finally block
Diffs
-----
serde/src/java/org/apache/hadoop/hive/serde2/avro/AvroSerdeUtils.java 08ae6ef
Diff: https://reviews.apache.org/r/44910/diff/
Testing
-------
precommit test
Thanks,
Chaoyu Tang