-
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
PR-URL: #44420 Refs: #33010 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
- Loading branch information
Showing
12 changed files
with
294 additions
and
17 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
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,9 @@ | ||
'use strict'; | ||
const path = require('path'); | ||
const v8 = require('v8'); | ||
|
||
v8.setHeapSnapshotNearHeapLimit(+process.env.limit); | ||
if (process.env.limit2) { | ||
v8.setHeapSnapshotNearHeapLimit(+process.env.limit2); | ||
} | ||
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); | ||
} | ||
} |
Oops, something went wrong.