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 memory leaks with Solr client connections for deprecated Solr #15

Merged
merged 2 commits into from
Oct 19, 2023

Conversation

jordanpadams
Copy link
Member

@jordanpadams jordanpadams commented Oct 19, 2023

Fix memory leaks for solr connection left open.

Not sure why this wasn't an issue before. Maybe Tomcat would kill these threads after so long, and since we are getting pummeled with queries, the threads didn't have a chance to die.

Either way, closing the solr client connections each time seems to fix it.

For the implementation, we could have opened it during the constructor, leave it open, and then have a closeConnection method but my concern there was we would have to add that close call to all the JSPs, and it is really hard to ensure those JSPs will complete execution to the bottom. Would rather have more open connections we know we close, versus leaving it to the client to close it.

Testing in production 😨

This thread count stayed stuck at 195 for 15 minutes while we had ~200 queries during that timeframe (196 when it was in the middle of a connection)

$ ps -eLf | grep <user> | wc -l
195

Fixes #14

Fix memory leaks for solr connection left open.

Not sure why this wasn't an issue before. Maybe Tomcat would kill these threads after so long, and since we are getting pummeled with queries, the threads didn't have a chance to die.

Either way, closing the solr client connections each time seems to fix it.

Fixes #14
jordanpadams added a commit that referenced this pull request Oct 19, 2023
Fix memory leaks for solr connection left open.

Not sure why this wasn't an issue before. Maybe Tomcat would kill these threads after so long, and since we are getting pummeled with queries, the threads didn't have a chance to die.

Either way, closing the solr client connections each time seems to fix it.

Cherry-picked from `hotfix/2.14.4` branch and `v2.14.4` release

Fixes #14
Refs #15
@jordanpadams jordanpadams changed the title Fix memory leaks with Solr client connections Fix memory leaks with Solr client connections for deprecated Solr Oct 19, 2023
Copy link
Member

@nutjob4life nutjob4life left a comment

Choose a reason for hiding this comment

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

🍻

@jordanpadams jordanpadams merged commit eeacd9f into hotfix/2.14.4 Oct 19, 2023
@jordanpadams jordanpadams deleted the i14 branch October 19, 2023 13:45
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