-
Notifications
You must be signed in to change notification settings - Fork 29.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cluster: remove handles when disconnecting worker #3677
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
'use strict'; | ||
|
||
// Used in tests. | ||
exports.handles = {}; | ||
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,65 @@ | ||
/* eslint-disable no-debugger */ | ||
// Flags: --expose_internals | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
const assert = require('assert'); | ||
const cluster = require('cluster'); | ||
const net = require('net'); | ||
|
||
const Protocol = require('_debugger').Protocol; | ||
|
||
if (common.isWindows) { | ||
console.log('1..0 # Skipped: SCHED_RR not reliable on Windows'); | ||
return; | ||
} | ||
|
||
cluster.schedulingPolicy = cluster.SCHED_RR; | ||
|
||
// Worker sends back a "I'm here" message, then immediately suspends | ||
// inside the debugger. The master connects to the debug agent first, | ||
// connects to the TCP server second, then disconnects the worker and | ||
// unsuspends it again. The ultimate goal of this tortured exercise | ||
// is to make sure the connection is still sitting in the master's | ||
// pending handle queue. | ||
if (cluster.isMaster) { | ||
const handles = require('internal/cluster').handles; | ||
// FIXME(bnoordhuis) lib/cluster.js scans the execArgv arguments for | ||
// debugger flags and renumbers any port numbers it sees starting | ||
// from the default port 5858. Add a '.' that circumvents the | ||
// scanner but is ignored by atoi(3). Heinous hack. | ||
cluster.setupMaster({ execArgv: [`--debug=${common.PORT}.`] }); | ||
const worker = cluster.fork(); | ||
worker.on('message', common.mustCall(message => { | ||
assert.strictEqual(Array.isArray(message), true); | ||
assert.strictEqual(message[0], 'listening'); | ||
const address = message[1]; | ||
const host = address.address; | ||
const debugClient = net.connect({ host, port: common.PORT }); | ||
const protocol = new Protocol(); | ||
debugClient.setEncoding('utf8'); | ||
debugClient.on('data', data => protocol.execute(data)); | ||
debugClient.once('connect', common.mustCall(() => { | ||
protocol.onResponse = common.mustCall(res => { | ||
protocol.onResponse = () => {}; | ||
const conn = net.connect({ host, port: address.port }); | ||
conn.once('connect', common.mustCall(() => { | ||
conn.destroy(); | ||
assert.notDeepStrictEqual(handles, {}); | ||
worker.disconnect(); | ||
assert.deepStrictEqual(handles, {}); | ||
const req = protocol.serialize({ command: 'continue' }); | ||
debugClient.write(req); | ||
})); | ||
}); | ||
})); | ||
})); | ||
process.on('exit', () => assert.deepStrictEqual(handles, {})); | ||
} else { | ||
const server = net.createServer(socket => socket.pipe(socket)); | ||
server.listen(() => { | ||
process.send(['listening', server.address()]); | ||
debugger; | ||
}); | ||
process.on('disconnect', process.exit); | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Time for
Map
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
was going to suggest the same: https://code.google.com/p/v8/issues/detail?id=4518