Image Optimization - Create new ImagePool for each batch #470

Merged
a258wang merged 1 commits from amy-image-optimization-image-pool into main 2022-06-28 22:54:21 -04:00
1 changed files with 5 additions and 3 deletions

View File

@ -44,12 +44,14 @@ export async function optimizeImages() {
// maximum number of workers is 8 in order to avoid running out of memory
const numberOfWorkers = Math.min(cpus().length, 8);
const imagePool = new ImagePool(numberOfWorkers);
// process smaller batches in order to reduce memory usage
const batchSize = 32;
for (let i = 0; i < imagePaths.length; i += batchSize) {
// use a new ImagePool for each batch to reduce memory usage
const imagePool = new ImagePool(numberOfWorkers);
await Promise.all(
imagePaths.slice(i, i + batchSize).map(async (imagePath) => {
const imageStartTime = Date.now();
@ -108,9 +110,9 @@ export async function optimizeImages() {
);
})
);
}
await imagePool.close();
await imagePool.close();
}
console.log(`TOTAL DURATION: ${getElapsedSeconds(startTime)}s`);
}