Skip to content
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

Support bind port hints #19

Merged
merged 2 commits into from
Feb 12, 2025
Merged

Support bind port hints #19

merged 2 commits into from
Feb 12, 2025

Conversation

JamesWrigley
Copy link
Collaborator

@JamesWrigley JamesWrigley commented Jan 7, 2025

Quick explanation:

  • 88faa86 is the new feature to support setting a bind port hint in the machine spec.
  • cdabed6 fixes addprocs([("machine 10.1.1.1:9000", 2)]) by using the bind port as a port hint for all the other workers.

Fixes [fakebreak] JuliaLang/Distributed.jl#119. If this is merged I'll backport it to Distributed.

@JamesWrigley JamesWrigley requested a review from jpsamaroo January 7, 2025 12:11
@JamesWrigley JamesWrigley self-assigned this Jan 7, 2025
@codecov-commenter
Copy link

codecov-commenter commented Jan 7, 2025

Codecov Report

Attention: Patch coverage is 95.45455% with 1 line in your changes missing coverage. Please review.

Project coverage is 88.07%. Comparing base (6ccd416) to head (9550dcf).
Report is 2 commits behind head on master.

Files with missing lines Patch % Lines
src/cluster.jl 95.45% 1 Missing ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##           master      #19      +/-   ##
==========================================
- Coverage   88.17%   88.07%   -0.11%     
==========================================
  Files          11       11              
  Lines        2081     2096      +15     
==========================================
+ Hits         1835     1846      +11     
- Misses        246      250       +4     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@JamesWrigley
Copy link
Collaborator Author

(gentle bump)

Copy link
Member

@jpsamaroo jpsamaroo left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks great!

src/managers.jl Outdated
`[bind_addr[:bind_port]]` is specified, other workers will connect to this
worker at the specified `bind_addr` and `bind_port`. `bind_port` can be a
specific port like in `addr:9000`, but it can also specify a port hint by
enclosing it in brackets like `addr:[9000]`.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is the definition "port hint" described anywhere else? If not, we should indicate what "port hint" actually means and what it does here (because I actually don't know what it does 😅).

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sure, added in 4143d37 :) I use the same definition as Sockets.listenany().

@JamesWrigley
Copy link
Collaborator Author

CI is failing on nightly at this line:

for f in [ ()->addprocs(1; exeflags=test_exeflags), ()->rmprocs(workers()) ]

If I understand correctly the test_exeflags variable is not being copied into the closure, or the closure isn't getting serialized correctly or something. I think it requires a bit more debugging so I won't hack around it for now. It's unrelated to this PR though (also happens on master) so I'll go ahead and merge.

@JamesWrigley JamesWrigley merged commit ee6e544 into master Feb 12, 2025
9 of 14 checks passed
@JamesWrigley JamesWrigley deleted the multiple-workers branch February 12, 2025 18:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants