@@ -421,6 +421,13 @@ Branch 0.15 (unreleased changes)
to the transaction log. (Dhruba Borthakur)
+Release 0.14.3 - Unreleased
+
+ BUG FIXES
+ HADOOP-2053. Fixed a dangling reference to a memory buffer in the map
+ output sorter. (acmurthy via omalley)
Release 0.14.2 - 2007-10-09
BUG FIXES
@@ -120,6 +120,10 @@ abstract class BasicTypeSorterBase implements BufferSorter {
pointers = null;
maxKeyLength = 0;
maxValLength = 0;
+ //release the large key-value buffer so that the GC, if necessary,
+ //can collect it away
+ keyValBuffer = null;
}
//A compare method that references the keyValBuffer through the indirect
//pointers