XL/erasure: Reset dataBlocks to reduce the memory usage. (#1749)

Fixes #1748
This commit is contained in:
Harshavardhana
2016-05-24 19:25:51 -07:00
committed by Harshavardhana
parent 1e393c6c5b
commit a97230dd56
2 changed files with 4 additions and 2 deletions

View File

@@ -147,6 +147,9 @@ func (e erasure) ReadFile(volume, path string, startOffset int64, totalSize int6
return
}
// Reset dataBlocks to relenquish memory.
dataBlocks = nil
// Reset offset to '0' to read rest of the blocks.
startOffset = int64(0)