-
-
Notifications
You must be signed in to change notification settings - Fork 31.8k
GH-94382: port multiprocessing static types to heap types #94336
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
kumaraditya303
commented
Jun 27, 2022
•
edited
Loading
edited
- Issue: _multiprocessing leaks references when initialised multiple times #94382
🤖 New build scheduled with the buildbot fleet by @kumaraditya303 for commit 100ad99 🤖 If you want to schedule another build, you need to add the ":hammer: test-with-buildbots" label again. |
Refleaks bots are failing because of #94330 |
@kumaraditya303, thanks for the PR. One of the most important aims of PEP-687 is to communicate the changes before they happen. See Part 1: Preparation. I'd prefer if you please re-read the PEP and follow its guidelines as specified. You'll notice that opening a PR comes in the second half of the process. |
I'll create an issue to discuss it but I don't expect much as the module has no global state and the implemented types are not performance critical. I had worked on this months ago just was waiting for PEP to get accepted :) |
If the types do not access global module state they should remain static; this is explicitly noted in the PEP. |
Well, the important thing is that it gets done. Lack of communication is the single one issue that has contributed to heating the discussions regarding these changes. Even if we expect few people to participate in such a topic, it is of importance to raise awareness (and then wait at least for a week or two before continuing). |
@erlend-aasland: Let's continue the discussion on the issue #94382 |
Removing do-not-merge as no alternative PR has been proposed so far. |
A Python core developer has requested some changes be made to your pull request before we can consider merging it. If you could please address their requests along with any other requests in other reviews from core developers that would be appreciated. Once you have made the requested changes, please leave a comment on this pull request containing the phrase And if you don't make the requested changes, you will be poked with soft cushions! |
Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@protonmail.com>
Well, only three hours passed. That's a little narrow time-frame, don't you agree? :) |
As of Petr's last comment, please re-label this with do-not-merge until there is an agreement. |
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.
Please add a NEWS entry explaining that the purpose of this PR is to fix memory leaks when the _multiprocessing
extension module is loaded/unloaded multiple times: #94382 (comment)
This means I can remove do-not-merge, right ? |
That's unrelated. @erlend-aasland wrote:
Since @erlend-aasland and @encukou wrote PEP 687, I understand that you need to agree on that specific PR. |
Sorry, I'm no longer convinced that this PR fix an actual memory leak. The NEWS entry no looks wrong to me. Test from #94382 (comment):
Without this PR, Python leaks memory: refs +469, blocks +160.
With this PR (rebased to main), Python still leaks memory: refs +469, blocks +160 (no change).
Tell me if I did something wrong. If I modify the test to import the
Note: I added an empty line for readability. |
I had only verified single leak #94382 (comment) which is fixed by this PR. If the multiple initialization is not fixed, there must be something in multiprocessing module which is causing it. Anyways, I'll wait for decision on the discourse now before putting anymore effort into this as there are more reason for this change other than multiple initialization. |
Please wait until there is an agreement for this change on Discourse. |
FYI, I'll merge this in a day or two. |
I'm hesitant to backport this change. Let me know if you disagree, Victor / Petr. |
Thanks, Kumar! |