-
Notifications
You must be signed in to change notification settings - Fork 24.2k
Use default timeout of 30 minutes for gloo backend #13056
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
Conversation
10s seems too little, but 30m seems a bit too much, no? something like 1 min? |
@soumith There are instances where a single process group is used for a barrier between 2+ hour asynchronous tasks that complete with some variance (e.g. +/- 10m). I'm working on supporting per operation timeouts that will allow you to explicitly set a timeout on a barrier to do this, but until then we have to use a single timeout for all ops. |
@pietern interesting! |
1d92a7f
to
2f4469c
Compare
2f4469c
to
96abcad
Compare
96abcad
to
1238c38
Compare
1238c38
to
dfe33c2
Compare
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.
LGTM
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.
pietern is landing this pull request. If you are a Facebook employee, you can view this diff on Phabricator.
dfe33c2
to
16067c2
Compare
16067c2
to
93e35c1
Compare
Summary: The existing default timeout was set at 10 seconds, which is too low for asynchronous tasks that depend on a barrier to resynchronize. Having a single timeout for all operations is not ideal and this will be addressed in future commits. Differential Revision: D10558746 fbshipit-source-id: 26c811da27907c1388c40d6f3a352ba96a011c15
93e35c1
to
c676c46
Compare
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.
pietern is landing this pull request. If you are a Facebook employee, you can view this diff on Phabricator.
Summary:
The existing default timeout was set at 10 seconds, which is too low
for asynchronous tasks that depend on a barrier to resynchronize.
Having a single timeout for all operations is not ideal and this will
be addressed in future commits.
Differential Revision: D10558746