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

Run Python garbage collector when an interpreter is closed. #556

Merged
merged 1 commit into from
Sep 16, 2024

Conversation

bsteffensmeier
Copy link
Member

This change will run Python Garbage Collection anytime an interpreter is closed.

#555 describes a simple use case where reference counting alone is unable to free memory in a jep interpreter on close and running the garbage collector cleans up the memory.

There is a potential downside that this will make close slower in some cases however it should be negligible in most cases and I believe the benefit of freeing memory promptly is worth the extra time in close().

Copy link
Member

@ndjensen ndjensen left a comment

Choose a reason for hiding this comment

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

Looks good.

@@ -703,6 +703,7 @@ void pyembed_thread_close(JNIEnv *env, intptr_t _jepThread)
Py_DECREF(key);

Py_CLEAR(jepThread->globals);
PyGC_Collect();
Copy link
Member

Choose a reason for hiding this comment

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

Just curious, why do you the gc collect call before the Py_EndInterpreter?

Copy link
Member Author

Choose a reason for hiding this comment

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

It's not specifically documented for PyGC_Collect but my default assumption for any Python c-api call is that it requires the thread to have an interpreter or at least hold the GIL and after Py_EndInterpreter the thread has neither.

@bsteffensmeier bsteffensmeier merged commit 388b176 into ninia:dev_4.2 Sep 16, 2024
1 check passed
@bsteffensmeier bsteffensmeier deleted the gc-on-close branch October 22, 2024 01:01
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