ZJONSSON/node-unzipper

Open s3 very slow

hasan8287 opened this issue · 1 comments

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
Screenshot 2024-01-25 at 16 32 57

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

i thing very slow because upload very much file entrys to s3.
close this issue not in unzipper thanks