gpt4 book ai didi

node.js - Node AWS S3 getObject 在文件流完成之前触发 httpDone

转载 作者:搜寻专家 更新时间:2023-11-01 00:17:38 24 4
gpt4 key购买 nike

我在 Node 应用程序中使用 AWS s3 getObject 方法下载一个 zip 文件,然后使用 child_process.exec 对其调用解压缩:

var file = fs.createWriteStream(file_path);
s3.getObject(params).
on('httpData', function(chunk) {
process.stdout.write(".");
file.write(chunk);
}).
on('httpDone', function() {
file.end();
console.log('Download Complete');
self.emit('downloadComplete');
}).
send();

downloadComplete 事件中,调用了这段代码,抛出了错误:

exec = require('child_process').exec;
exec('unzip -o -qq ' + src + ' -d ' + dest, function (error, stdout, stderr) {
callback(stderr);
});

exec 调用返回此错误:

End-of-central-directory signature not found.  Either this file is not
a zipfile, or it constitutes one disk of a multi-part archive. In the
latter case the central directory and zipfile comment will be found on
the last disk(s) of this archive.

但是,如果我在尝试解压缩之前设置了一个较短的超时时间,即:

setTimeout(function() {
self.emit('downloadComplete');
}, 100);

它有效。 AWS Node 库中是否存在错误,或者我是否使用了错误的完成事件?

最佳答案

您应该改为在文件流的 finish 事件处理程序中发出下载完成事件:

var file = fs.createWriteStream(file_path);
file.on('finish', function() {
self.emit('downloadComplete');
});
s3.getObject(params).
on('httpData', function(chunk) {
process.stdout.write(".");
file.write(chunk);
}).
on('httpDone', function() {
file.end();
console.log('Download Complete');
}).
send();

在一个不相关的说明中,您可能还应该使用普通流,以便在磁盘无法跟上时背压可以发挥作用。例如:

var file = fs.createWriteStream(file_path);
s3.getObject(params)
.createReadStream()
.pipe(file)
.on('finish', function() {
self.emit('downloadComplete');
});

关于node.js - Node AWS S3 getObject 在文件流完成之前触发 httpDone,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33883324/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com