-
Notifications
You must be signed in to change notification settings - Fork 3k
Support for fully asynchronous distributed signaling #6632
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 for fully asynchronous distributed signaling #6632
Conversation
CT Test Results 3 files 125 suites 43m 59s ⏱️ Results for commit 349b244. ♻️ This comment has been updated with latest results. To speed up review, make sure that you have read Contributing to Erlang/OTP and that all checks pass. See the TESTING and DEVELOPMENT HowTo guides for details about how to run test locally. Artifacts// Erlang/OTP Github Action Bot |
220f665 to
2b1d353
Compare
| By default, if no <c>+pad</c> command line option is passed, | ||
| the <c>async_dist</c> flag will be set to <c>false</c>. | ||
| </p> |
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.
| By default, if no <c>+pad</c> command line option is passed, | |
| the <c>async_dist</c> flag will be set to <c>false</c>. | |
| </p> | |
| If no <c>+pad</c> command line option is passed, | |
| the <c>async_dist</c> flag will be set to <c>false</c> for newly created processes. | |
| </p> |
2b1d353 to
349b244
Compare
|
I am interested in the same answers, would it be possible to document it in greater details? |
When I'm not sure exactly what you want documented in greater detail. I thought it was quite clear in the provided documentation. |
|
@rickard-green If each process had its own memory limit as an offset in kilobytes on the distribution buffer busy limit the option could become more similar to I can understand something similar may have already been discussed, but wanted to mention the idea in case it hasn't. |
|
@okeuday Values of |
Support for fully asynchronous distributed signaling where asynchronous send operations never block. This functionality is by default disabled and can be enabled per process. For more information see the documentation of
process_flag(async_dist, Bool).