-
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
6 changed files
with
225 additions
and
4 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
48 changes: 48 additions & 0 deletions
48
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,48 @@ | ||
// 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'); | ||
|
||
if (process.env.isChild === '1') { | ||
require(fixtures.path('workload', 'grow-worker.js')); | ||
const v8 = require('v8'); | ||
v8.setHeapSnapshotNearHeapLimit(1); | ||
return; | ||
} | ||
const env = { | ||
...process.env, | ||
NODE_DEBUG_NATIVE: 'diagnostics' | ||
}; | ||
|
||
{ | ||
tmpdir.refresh(); | ||
const child = spawnSync(process.execPath, [ | ||
__filename, | ||
], { | ||
cwd: tmpdir.path, | ||
env: { | ||
isChild: 1, | ||
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); | ||
} | ||
} |
131 changes: 131 additions & 0 deletions
131
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,131 @@ | ||
// 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'); | ||
|
||
if (process.env.isChild === '1') { | ||
require(fixtures.path('workload', 'grow.js')); | ||
const count = ~~process.env.count || 1; | ||
for (let i = 0; i < count; i++) { | ||
v8.setHeapSnapshotNearHeapLimit(+process.env.limit); | ||
} | ||
return; | ||
} | ||
|
||
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', | ||
isChild: 1, | ||
}; | ||
|
||
{ | ||
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.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', | ||
__filename, | ||
], { | ||
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', | ||
__filename, | ||
], { | ||
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