Open s3 very slow
hasan8287 opened this issue · 1 comments
hasan8287 commented
when use unzipper.Open.s3
responses such as batch, and between batch have a delay of around 2 minutes.
here is my code:
file : 1.2 GB
unzipper version : 0.10.14
nodejs veriosn : v16.20.2
const getUnzipFile = async (Key: string): Promise<unzipper.CentralDirectory> => {
try {
const directory = await unzipper.Open.s3(new S3({}), {
Bucket,
Key,
});
return directory;
} catch (error) {
throw error;
}
};
const directory = await getUnzipFile(Key);
for (let i = 0; i < files.length; i++) {
// logging upload
// await upload every entry to s3
}
sample log: delay from 16:29:25.702 to 16:31:17.914
Is there another way to get it faster?
previously I used parse stream, it is very fast, but some time get error FILE_ENDED.
thank you
hasan8287 commented
i thing very slow because upload very much file entrys to s3.
close this issue not in unzipper thanks