-
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: workers can't share socket if created with port 0 then recreated with assigned port number #13526
Comments
Cluster does not work for all use cases. Various suggestions have been made to improve this, they generally make one previously unsupported use-case work, and make a curretly supported one stop working. |
Ohh that makes sense. |
You don't have to communicate to others. If you |
and in case its not clear: if you bind(0) twice in one worker, and they got two different ports, as you would likely want, then when the same code runs in another workern and binds twice to 0... which of the binds gets which one of the two different ports from the other workere? Its impossible for node to know :-(, so it doesn't support this. |
Yeah I saw the code, master indexes it under |
The docs could be expanded to not just describe how it works, but the kinds of thing that won't work. |
FWIW: #7043 |
@refack I think we still need to get some more input from other collaborators about whether it should be a behavior change or opt-in change via config option or something else. |
Let's move the discussion to #7043. I'll close this out but FWIW, I'm supportive of making it configurable. |
* add `mustCall` and `mustNotCall` to all callbacks * added `known_issue` for port binding PR-URL: nodejs#13100 Refs: nodejs#13055 Refs: nodejs#12999 Refs: nodejs#13526 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
* add `mustCall` and `mustNotCall` to all callbacks * added `known_issue` for port binding PR-URL: nodejs#13100 Refs: nodejs#13055 Refs: nodejs#12999 Refs: nodejs#13526 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
master
Found while working on #13100
Failing code can be found here
The text was updated successfully, but these errors were encountered: