-
Notifications
You must be signed in to change notification settings - Fork 74
[#722] fix segfault and hung threads on KeyboardIinterrupt during parallel get #728
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
Open
d-w-moore
wants to merge
2
commits into
irods:main
Choose a base branch
from
d-w-moore:segfault_parallel_io_722.m
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -312,6 +312,52 @@ will spawn a number of threads in order to optimize performance for | |
| iRODS server versions 4.2.9+ and file sizes larger than a default | ||
| threshold value of 32 Megabytes. | ||
|
|
||
| Because multithread processes under Unix-type operating systems sometimes | ||
| need special handling, it is recommended that any put or get of a large file | ||
| be appropriately handled in the case that a terminating signal aborts the | ||
| transfer: | ||
|
|
||
| ```python | ||
| from irods.parallel import abort_parallel_transfers | ||
|
|
||
| def handler(signal, _) | ||
| abort_parallel_transfers() | ||
| os._exit(128 + signal) | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. From discussion - remove |
||
|
|
||
| signal(SIGTERM,handler) | ||
|
|
||
| try: | ||
| # a multi-1247 put or get can leave non-daemon threads running if not treated with care. | ||
| session.data_objects.put( ...) | ||
| except KeyboardInterrupt: | ||
| abort_parallel_transfers() | ||
| printf('Due to a SIGINT or Control-C, the put failed.') | ||
| # Raise again if we wish to exit the application. | ||
| raise | ||
| except RuntimeError: | ||
| printf('The put failed.') | ||
| # ... | ||
| ``` | ||
|
|
||
| Note that if had we intercepted SIGINT by assigning it, also, a non-default | ||
| handler, we would have avoided the need to handle the `KeyboardInterrupt` | ||
| inline. | ||
|
|
||
| (Internally, of course, the PRC must handle all eventualities, including | ||
| `KeyboardInterrupt`, by closing down the current foreground transfer. | ||
| Otherwise we would risk some non-daemon threads not finishing, and this | ||
| potentially risks holding | ||
| up the main program from eventually performing an orderly exit.) | ||
|
|
||
| If a signal handler calls abort_parallel_transfers() but does not call | ||
| `os._exit` after doing so, a parallel `put` or `get` can raise a `RuntimeError` | ||
| to indicate the failed transfer. | ||
|
|
||
| In general it is better (for simpler applications wanting to gracefully handle | ||
| interrupted lengthy data transfers to/from iRODS data objects) to anticipate | ||
| control-C by handling both `KeyboardInterrupt` and `RuntimeError`, as shown | ||
| above. | ||
|
|
||
| Progress bars | ||
| ------------- | ||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.