Last active
December 12, 2015 04:48
-
-
Save spollack/4716706 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var zlib = require('zlib'); | |
var iteration = 0; | |
var maxRss = 0; | |
(function leak() { | |
if (iteration % 1000 === 0) { | |
var usage = process.memoryUsage(); | |
maxRss = Math.max(maxRss, usage.rss); | |
console.log('MEMORY USAGE current: ' + JSON.stringify(usage) + '; max rss: ' + maxRss + '; iteration: ' + iteration); | |
} | |
iteration++; | |
zlib.gzip('this is some test data', function() { | |
process.nextTick(leak); | |
}); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This gist demonstrates a bad behavior of zlib, where RSS will grow to very high levels rapidly. in my tests, within a handful of seconds RSS is well over 500MB. This repros on node 0.8.18. It is fixed in 0.9.8.