-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Improve documentation for ClusterManagers, tighten function types #17688
Conversation
Cleaned up formatting and wording, documented `Base.process_messages` a little, made `incoming` a `Bool` (since `message_handler_loop` requires this anyway).
AsyncStream hasn't existed since #12839, nearly a year ago. Updated the parallel docs to reflect this fact and to correspond more closely with the current state of `multi.jl` and `managers.jl`.
thanks for correcting these. I had no idea we were referencing |
|
.. code-block:: julia | ||
|
||
sshflags=`-i /home/foo/bar.pem` | ||
* ``sshflags``\ : specifies additional ssh options, e.g.:: sshflags=``-i /home/foo/bar.pem`` |
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.
formatting looks wrong here
Any thoughts on the most recent changes @amitmurthy, @tkelman, @mweastwood ? |
LGTM. One other feedback would be to rearrange / further split up sections in the rst (can also be done in a different PR). Currently we have
A suggested reorg :
|
@amitmurthy in that case I will merge in the morning and open a new PR sometime soon. I have a pair of fresh eyes reading the parallel docs for things confusing to newbies as well :) |
If the master process fails to establish a connection with a newly launched worker within | ||
60.0 seconds, the worker treats it as a fatal situation and terminates. | ||
This timeout can be controlled via environment variable `JULIA_WORKER_TIMEOUT`. | ||
The value of JULIA_WORKER_TIMEOUT` on the master process specifies the number of seconds a |
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.
mismatched backticks
…liaLang#17688) * Improve documentation for ClusterManagers, tighten function types Cleaned up formatting and wording, documented `Base.process_messages` a little, made `incoming` a `Bool` (since `message_handler_loop` requires this anyway). * Moved docs out of HelpDB, got rid of references to AsyncStream. AsyncStream hasn't existed since JuliaLang#12839, nearly a year ago. Updated the parallel docs to reflect this fact and to correspond more closely with the current state of `multi.jl` and `managers.jl`.
Cleaned up formatting and wording, documented
Base.process_messages
alittle, made
incoming
aBool
(sincemessage_handler_loop
requiresthis anyway).