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

[#569] fix stored connections to match desired connection timeout #570

Draft
wants to merge 8 commits into
base: main
Choose a base branch
from
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions irods/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -350,8 +350,7 @@ def connection_timeout(self):
@connection_timeout.setter
def connection_timeout(self, seconds):
self._cached_connection_timeout = seconds
if seconds is not None:
Copy link
Member

Choose a reason for hiding this comment

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

Many systems also use 0 to indicate a non-value (or forever)… consider checking for 0 or None?

Copy link
Collaborator Author

@d-w-moore d-w-moore Jun 21, 2024

Choose a reason for hiding this comment

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

That is a good point as evidently 0 means set nonblocking, and I believe we want to disallow that.
None , however, in my opinion should be permissible as it is (for all intents) equivalent to a very large number.

Copy link
Collaborator Author

@d-w-moore d-w-moore Jun 21, 2024

Choose a reason for hiding this comment

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

In other words session.connection_timeout = None is clear and correct in intent, if you take it to mean "eliminate timeouts totally for the given session."

Copy link
Member

Choose a reason for hiding this comment

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

Agreed that None conveys the intent.

I was suggesting that if this is a user-facing setting, that setting it to either 0 or None would be equivalent and correct. If this is not user-facing, then... carry on.

Copy link
Collaborator Author

@d-w-moore d-w-moore Jun 21, 2024

Choose a reason for hiding this comment

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

The docs now encourage the use of:

session_object.connection_timeout = <some_number> 

as a way to dictate how long the client socket should wait until declaring a server peer as down and giving up, as it were.

So, yes, it is user-facing....

But 0 and None are not equivalent here, actually. 0 would invalidate the socket for further use by the PRC, by turning on non-blocking behavior (ie null-length values could now be read from the socket when it has not yet received any bytes of the expected server response) whereas None declares we never want to declare the server peer down. i.e. "turn off timeouts completely"

Copy link
Collaborator Author

@d-w-moore d-w-moore Jun 21, 2024

Choose a reason for hiding this comment

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

If Windows is a different case, though, I should re-evaluate

Copy link
Member

Choose a reason for hiding this comment

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

No worries - if None is the only correct answer - please consider leaving a comment somewhere user-facing... that will let them know that 0 behaves differently and why.

Copy link
Collaborator Author

@d-w-moore d-w-moore Jun 21, 2024

Choose a reason for hiding this comment

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

Sounds good. I'll update the docs to caution against setting 0 (which doesn't yet cause an immediate error , but should) or even too low a value, as the latter would have an effect down the line of raising a NetworkError the first time the server "responds too slowly"... which (as long as the server is alive and still working) would be technically incorrect practice on the application writer's part.

self.pool.connection_timeout = seconds
self.pool.connection_timeout = seconds

@staticmethod
def get_irods_password_file():
Expand Down