-
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: reset handle index on close #6981
Conversation
@@ -636,6 +638,8 @@ function workerInit() { | |||
if (key === undefined) return; | |||
send({ act: 'close', key: key }); | |||
delete handles[key]; | |||
const indexesKey = key.substring(0, key.lastIndexOf(':')); | |||
indexes[indexesKey] = undefined; |
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.
This looks too hacky. I'd rename the const key = ...
at the top of cluster._getServer()
to const indexesKey
and use that here.
Also, this would be a place where the delete
operator is warranted, otherwise indexes
can grow unchecked.
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.
This looks too hacky. I'd rename the const key = ... at the top of cluster._getServer() to const indexesKey and use that here.
Maybe I'm missing something, but how would I do that? They're in different contexts. I can pass it to the shared
and rr
functions as an argument though.
Also, this would be a place where the delete operator is warranted, otherwise indexes can grow unchecked.
You're right. Will fix.
Thanks!
PR updated with @bnoordhuis suggestions. Thanks! |
else | ||
rr(reply, cb); // Round-robin. | ||
rr(reply, key, cb); // Round-robin. |
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.
I'd rename key
to indexesKey
for better greppability.
Updated. Thanks! |
LGTM. armv7-ubuntu1404 has a lot of failures but they are probably caused by something else. I suspect a debugger test. |
const worker1 = cluster.fork(); | ||
worker1.on('listening', common.mustCall(() => { | ||
const worker2 = cluster.fork(); | ||
worker2.on('exit', (code) => { |
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.
Could this be a common.mustCall()
? It might be good to test worker1
's exit code too.
LGTM with one comment. |
PR update per @cjihrig comments. Thanks |
LGTM |
1 similar comment
LGTM |
CI looks good except for the current flakes. Landing. |
It allows reopening a server after it has been closed. Fixes: nodejs#6693 PR-URL: nodejs#6981 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Ron Korving <[email protected]> Reviewed-By: James M Snell <[email protected]>
Landed in 0c29436. Thanks! |
It allows reopening a server after it has been closed. Fixes: nodejs#6693 PR-URL: nodejs#6981 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Ron Korving <[email protected]> Reviewed-By: James M Snell <[email protected]>
It allows reopening a server after it has been closed. Fixes: #6693 PR-URL: #6981 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Ron Korving <[email protected]> Reviewed-By: James M Snell <[email protected]>
@santigimeno / @bnoordhuis lts? |
@thealphanerd, yes. |
It allows reopening a server after it has been closed. Fixes: #6693 PR-URL: #6981 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Ron Korving <[email protected]> Reviewed-By: James M Snell <[email protected]>
It allows reopening a server after it has been closed. Fixes: #6693 PR-URL: #6981 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Ron Korving <[email protected]> Reviewed-By: James M Snell <[email protected]>
It allows reopening a server after it has been closed. Fixes: #6693 PR-URL: #6981 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Ron Korving <[email protected]> Reviewed-By: James M Snell <[email protected]>
It allows reopening a server after it has been closed. Fixes: #6693 PR-URL: #6981 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Ron Korving <[email protected]> Reviewed-By: James M Snell <[email protected]>
Checklist
Affected core subsystem(s)
Description of change
It allows reopening a server after it has been closed.
Fixes: #6693.
/cc @cjihrig @bnoordhuis