You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We've recently began to shard out our text extraction processes and I noticed a significant spike in memory usage. Looks like it's coming from this module. Running the following:
var textract = require('textract');
setInterval(function () {
console.error(process.memoryUsage());
}, 1000);
Results in around 135 MB of memory being used. Comment out the first line and that shoots down to around 10 MB.
Any ideas what's causing this?
The text was updated successfully, but these errors were encountered:
We've recently began to shard out our text extraction processes and I noticed a significant spike in memory usage. Looks like it's coming from this module. Running the following:
Results in around 135 MB of memory being used. Comment out the first line and that shoots down to around 10 MB.
Any ideas what's causing this?
The text was updated successfully, but these errors were encountered: