admin管理员组文章数量:1341392
Using nw.js, I am just trying to save images in an array of img elements with different random names.
But having a few errors, is something wrong with my code?
for (i = 0; i < imgs.length; i++) {
request(imgs[i].getAttribute('src')).on('error', function(err) {
throw err
}).pipe(fs.createWriteStream('data/imgs/' + randomString))
}
imgs[] is an array of 100-500 html img element, but I am receiving
Error: EMFILE: too many open files, open *<directory>*
And another error:
"Uncaught Error: socket hang up"
Although it saves some images, some of them are corrupted, and it creates too many images than there actually is.
Using nw.js, I am just trying to save images in an array of img elements with different random names.
But having a few errors, is something wrong with my code?
for (i = 0; i < imgs.length; i++) {
request(imgs[i].getAttribute('src')).on('error', function(err) {
throw err
}).pipe(fs.createWriteStream('data/imgs/' + randomString))
}
imgs[] is an array of 100-500 html img element, but I am receiving
Error: EMFILE: too many open files, open *<directory>*
And another error:
"Uncaught Error: socket hang up"
Although it saves some images, some of them are corrupted, and it creates too many images than there actually is.
Share Improve this question asked Jun 14, 2015 at 14:50 CRQCRQ 3572 gold badges4 silver badges14 bronze badges2 Answers
Reset to default 10Use graceful-fs
module, which is a drop-in replacement for the fs
module. It is a wrapper around the native fs
module. Quoting the docs of graceful-fs
module,
Queues up
open
andreaddir
calls, and retries them once something closes if there is anEMFILE
error from too many file descriptors.
Since it exposes the same APIs as the native fs
module, you can use it just like the normal fs
module.
// use just like fs
var fs = require('graceful-fs');
Note: This library was created by, Isaac Z. Schlueter, one of the core developers of the Node.js.
Another simple solution would be just to wait for file to be downloaded and only then open new request by using recursion:
var fs = require('fs');
var request = require('request');
var dest = '../data/downloads/';
function _saveAllFiles (fileUrlArray, curIdx, options) {
try {
var count = fileUrlArray.length - 1;
var curFile = fileUrlArray[curIdx];
var stream = request(curFile)
.pipe(fs.createWriteStream(dest + "file_" + curIdx));
stream.on('finish', function () {
console.log("Downloaded", curFile);
stream.close();
if (curIdx + 1 < count) {
//Finished, download next file
_saveAllFiles(fileArray, curIdx + 1, options);
}
});
stream.on('error', function () {
console.log("Error", curFile);
stream.close();
stream.end();
if (curIdx + 1 < count) {
//Error occured, go to next file
_saveAllFiles(fileArray, curIdx + 1, options);
}
});
} catch (err) {
console.error("Failed to download file", err);
}
}
本文标签: javascriptError EMFILE too many open filesStack Overflow
版权声明:本文标题:javascript - Error: EMFILE: too many open files - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743663140a2518285.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论