-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v8: add setHeapSnapshotNearHeapLimit
- Loading branch information
Showing
11 changed files
with
246 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
'use strict'; | ||
const path = require('path'); | ||
const v8 = require('v8'); | ||
|
||
v8.setHeapSnapshotNearHeapLimit(+process.env.limit); | ||
|
||
require(path.resolve(__dirname, 'grow.js')); |
15 changes: 15 additions & 0 deletions
15
test/fixtures/workload/grow-worker-and-set-near-heap-limit.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
'use strict'; | ||
const path = require('path'); | ||
const { Worker } = require('worker_threads'); | ||
const max_snapshots = parseInt(process.env.TEST_SNAPSHOTS) || 1; | ||
new Worker(path.join(__dirname, 'grow-and-set-near-heap-limit.js'), { | ||
env: { | ||
...process.env, | ||
limit: max_snapshots, | ||
}, | ||
resourceLimits: { | ||
maxOldGenerationSizeMb: | ||
parseInt(process.env.TEST_OLD_SPACE_SIZE) || 20 | ||
} | ||
}); | ||
|
41 changes: 41 additions & 0 deletions
41
test/parallel/test-heapsnapshot-near-heap-limit-by-api-in-worker.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
// Copy from test-heapsnapshot-near-heap-limit-worker.js | ||
'use strict'; | ||
|
||
require('../common'); | ||
const tmpdir = require('../common/tmpdir'); | ||
const assert = require('assert'); | ||
const { spawnSync } = require('child_process'); | ||
const fixtures = require('../common/fixtures'); | ||
const fs = require('fs'); | ||
|
||
const env = { | ||
...process.env, | ||
NODE_DEBUG_NATIVE: 'diagnostics' | ||
}; | ||
|
||
{ | ||
tmpdir.refresh(); | ||
const child = spawnSync(process.execPath, [ | ||
fixtures.path('workload', 'grow-worker-and-set-near-heap-limit.js'), | ||
], { | ||
cwd: tmpdir.path, | ||
env: { | ||
TEST_SNAPSHOTS: 1, | ||
TEST_OLD_SPACE_SIZE: 50, | ||
...env | ||
} | ||
}); | ||
console.log(child.stdout.toString()); | ||
const stderr = child.stderr.toString(); | ||
console.log(stderr); | ||
const risky = /Not generating snapshots because it's too risky/.test(stderr); | ||
if (!risky) { | ||
// There should be one snapshot taken and then after the | ||
// snapshot heap limit callback is popped, the OOM callback | ||
// becomes effective. | ||
assert(stderr.includes('ERR_WORKER_OUT_OF_MEMORY')); | ||
const list = fs.readdirSync(tmpdir.path) | ||
.filter((file) => file.endsWith('.heapsnapshot')); | ||
assert.strictEqual(list.length, 1); | ||
} | ||
} |
121 changes: 121 additions & 0 deletions
121
test/pummel/test-heapsnapshot-near-heap-limit-by-api.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
// Copy from test-heapsnapshot-near-heap-limit.js | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
|
||
if (common.isPi) { | ||
common.skip('Too slow for Raspberry Pi devices'); | ||
} | ||
|
||
const tmpdir = require('../common/tmpdir'); | ||
const assert = require('assert'); | ||
const { spawnSync } = require('child_process'); | ||
const fixtures = require('../common/fixtures'); | ||
const fs = require('fs'); | ||
const v8 = require('v8'); | ||
|
||
const invalidValues = [-1, '', {}, NaN, undefined]; | ||
let errorCount = 0; | ||
for (let i = 0; i < invalidValues.length; i++) { | ||
try { | ||
v8.setHeapSnapshotNearHeapLimit(invalidValues[i]); | ||
} catch (e) { | ||
console.log(e); | ||
errorCount++; | ||
} | ||
} | ||
assert.strictEqual(errorCount, invalidValues.length); | ||
|
||
// Set twice | ||
v8.setHeapSnapshotNearHeapLimit(1); | ||
v8.setHeapSnapshotNearHeapLimit(2); | ||
|
||
const env = { | ||
...process.env, | ||
NODE_DEBUG_NATIVE: 'diagnostics', | ||
}; | ||
|
||
{ | ||
console.log('\nTesting set by cmd option and api'); | ||
tmpdir.refresh(); | ||
const child = spawnSync(process.execPath, [ | ||
'--trace-gc', | ||
'--heapsnapshot-near-heap-limit=1', | ||
'--max-old-space-size=50', | ||
fixtures.path('workload', 'grow-and-set-near-heap-limit.js'), | ||
], { | ||
cwd: tmpdir.path, | ||
env: { | ||
...env, | ||
limit: 1, | ||
}, | ||
}); | ||
console.log(child.stdout.toString()); | ||
const stderr = child.stderr.toString(); | ||
console.log(stderr); | ||
assert(common.nodeProcessAborted(child.status, child.signal), | ||
'process should have aborted, but did not'); | ||
const list = fs.readdirSync(tmpdir.path) | ||
.filter((file) => file.endsWith('.heapsnapshot')); | ||
const risky = [...stderr.matchAll( | ||
/Not generating snapshots because it's too risky/g)].length; | ||
assert(list.length + risky > 0 && list.length <= 1, | ||
`Generated ${list.length} snapshots ` + | ||
`and ${risky} was too risky`); | ||
} | ||
|
||
{ | ||
console.log('\nTesting limit = 1'); | ||
tmpdir.refresh(); | ||
const child = spawnSync(process.execPath, [ | ||
'--trace-gc', | ||
'--max-old-space-size=50', | ||
fixtures.path('workload', 'grow-and-set-near-heap-limit.js'), | ||
], { | ||
cwd: tmpdir.path, | ||
env: { | ||
...env, | ||
limit: 1, | ||
}, | ||
}); | ||
console.log(child.stdout.toString()); | ||
const stderr = child.stderr.toString(); | ||
console.log(stderr); | ||
assert(common.nodeProcessAborted(child.status, child.signal), | ||
'process should have aborted, but did not'); | ||
const list = fs.readdirSync(tmpdir.path) | ||
.filter((file) => file.endsWith('.heapsnapshot')); | ||
const risky = [...stderr.matchAll( | ||
/Not generating snapshots because it's too risky/g)].length; | ||
assert(list.length + risky > 0 && list.length <= 1, | ||
`Generated ${list.length} snapshots ` + | ||
`and ${risky} was too risky`); | ||
} | ||
|
||
{ | ||
console.log('\nTesting limit = 3'); | ||
tmpdir.refresh(); | ||
const child = spawnSync(process.execPath, [ | ||
'--trace-gc', | ||
'--max-old-space-size=50', | ||
fixtures.path('workload', 'grow-and-set-near-heap-limit.js'), | ||
], { | ||
cwd: tmpdir.path, | ||
env: { | ||
...env, | ||
limit: 3, | ||
}, | ||
}); | ||
console.log(child.stdout.toString()); | ||
const stderr = child.stderr.toString(); | ||
console.log(stderr); | ||
assert(common.nodeProcessAborted(child.status, child.signal), | ||
'process should have aborted, but did not'); | ||
const list = fs.readdirSync(tmpdir.path) | ||
.filter((file) => file.endsWith('.heapsnapshot')); | ||
const risky = [...stderr.matchAll( | ||
/Not generating snapshots because it's too risky/g)].length; | ||
assert(list.length + risky > 0 && list.length <= 3, | ||
`Generated ${list.length} snapshots ` + | ||
`and ${risky} was too risky`); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters