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

fix ResourceWarning on process exit (#2472) #2617

Merged
merged 2 commits into from
Aug 7, 2023

Conversation

sigma67
Copy link
Contributor

@sigma67 sigma67 commented Aug 4, 2023

Thanks for contributing, make sure you address all the checklists (for details on how see development documentation)

  • ran the linter to address style issues (tox -e fix)
  • wrote descriptive pull request text - see ResourceWarning on env's setup #2472
  • [] ensured there are test(s) validating the fix
  • added news fragment in docs/changelog folder
  • [] updated/extended the documentation

@sigma67
Copy link
Contributor Author

sigma67 commented Aug 4, 2023

@gaborbernat I decided on the simpler solution with the context manager to let the stdlib do the heavy lifting

if debug:
process.communicate() # on purpose not called to make it a background process

with Popen(cmd, **kwargs) as process: # noqa: S603
Copy link
Contributor

Choose a reason for hiding this comment

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

What happens here? Wouldn't this make it blocking call?

Copy link
Contributor Author

@sigma67 sigma67 Aug 4, 2023

Choose a reason for hiding this comment

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

Yes, that's the point. You can't keep a subprocess open while your main process exits without getting a ResourceWarning, afaik. Is the intention to keep this process running until it terminates even if the main process finishes?

If you want to continue the rest of the program execution and only wait for the subprocess to finish at the end you'd need to register the process somewhere central and ensure termination just before the main process exits.

Another option maybe is to use close_fds param of Popen, but I'm not sure if that fixes the issue.

Copy link
Contributor

Choose a reason for hiding this comment

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

Ideally, I'd like to just ignore the resource warning. There's no need for this process to finish when the main process finishes. It's more of a fire and forget kinda thing.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

We're lucky, close_fds seems to do the trick.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Nevermind, it doesn't. I was running with --no-periodic-update.

Copy link
Contributor Author

@sigma67 sigma67 Aug 4, 2023

Choose a reason for hiding this comment

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

Yes sorry, after a bunch of research: the proper way to do this is to wait until your subprocess finishes before your application exits. You don't want a zombie process hanging around. Even solutions using asyncio recommend to wait for async tasks to finish before main process exit, else you'll get a warning.

Unfortunately I don't really see a way to register the process with some central application state in this app, it's just not built for it.

Copy link
Contributor

Choose a reason for hiding this comment

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

You don't want a zombie process hanging around.

That's exactly what I want here though.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

So, the unclosed file warning stems from setting pipe = PIPE in the non-debug case. It disappears if we set it to pipe=subprocess.DEVNULL instead.

But then we get a different ResourceWarning: subprocess is still running

The warning was added in 3.6, here: https://bugs.python.org/issue26741
Pretty much everyone saying keeping a zombie process is bad practice, but here we go.

The followup issue mentions some potential solutions to hide the warning, but detach didn't work: https://bugs.python.org/issue27068

So I had a look at the CPython source, turns out if we set the returncode manually (since we don't care about it anyway), the warning will not be raised: https://github.com/python/cpython/blob/85e5b1f5b806289744ef9a5a13dabfb23044f713/Lib/subprocess.py#L1127 (from main, just to make it a permalink)

Tests passed locally.

@sigma67 sigma67 changed the title use Popen context manager for periodic update process (#2472) fix ResourceWarning on process exit (#2472) Aug 4, 2023
@gaborbernat gaborbernat modified the milestone: 20.0.0 Aug 4, 2023
Copy link
Contributor

@gaborbernat gaborbernat left a comment

Choose a reason for hiding this comment

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

@gaborbernat gaborbernat merged commit 099f0d8 into pypa:main Aug 7, 2023
39 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants