Skip to content

Commit 3101a40

Browse files
authoredJul 9, 2024··
fix: limit concurrent open files during 'npm cache verify' (#7631)
This change solves #4783 <!-- What / Why --> <!-- Describe the request in detail. What it does and why it's being changed. --> During 'npm cache verify', currently all the cache files are open at the same time, which will bring EMFILE error in an environment that limit max open files. This change limits the concurrent open files in garbageCollect() with p-map module to avoid this problem. ## References Fixes #4783
1 parent 6f33d74 commit 3101a40

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed
 

‎node_modules/cacache/lib/entry-index.js

+13-6
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ const hashToSegments = require('./util/hash-to-segments')
1919
const indexV = require('../package.json')['cache-version'].index
2020
const { moveFile } = require('@npmcli/fs')
2121

22+
const pMap = require('p-map')
23+
const lsStreamConcurrency = 5
24+
25+
2226
module.exports.NotFoundError = class NotFoundError extends Error {
2327
constructor (cache, key) {
2428
super(`No cache entry for ${key} found in ${cache}`)
@@ -182,15 +186,15 @@ function lsStream (cache) {
182186
// Set all this up to run on the stream and then just return the stream
183187
Promise.resolve().then(async () => {
184188
const buckets = await readdirOrEmpty(indexDir)
185-
await Promise.all(buckets.map(async (bucket) => {
189+
await pMap(buckets, async (bucket) => {
186190
const bucketPath = path.join(indexDir, bucket)
187191
const subbuckets = await readdirOrEmpty(bucketPath)
188-
await Promise.all(subbuckets.map(async (subbucket) => {
192+
await pMap(subbuckets, async (subbucket) => {
189193
const subbucketPath = path.join(bucketPath, subbucket)
190194

191195
// "/cachename/<bucket 0xFF>/<bucket 0xFF>./*"
192196
const subbucketEntries = await readdirOrEmpty(subbucketPath)
193-
await Promise.all(subbucketEntries.map(async (entry) => {
197+
await pMap(subbucketEntries, async (entry) => {
194198
const entryPath = path.join(subbucketPath, entry)
195199
try {
196200
const entries = await bucketEntries(entryPath)
@@ -213,9 +217,12 @@ function lsStream (cache) {
213217
}
214218
throw err
215219
}
216-
}))
217-
}))
218-
}))
220+
},
221+
{ concurrency: lsStreamConcurrency })
222+
},
223+
{ concurrency: lsStreamConcurrency })
224+
},
225+
{ concurrency: lsStreamConcurrency })
219226
stream.end()
220227
return stream
221228
}).catch(err => stream.emit('error', err))

0 commit comments

Comments
 (0)
Please sign in to comment.