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

[GH-2609] Fix resource leak issue in VertexAiTextEmbeddingModel #2611

Closed
wants to merge 1 commit into from

Conversation

rodrigomalara
Copy link

The PredictionServiceClient was not being closed.

Connections are kept open preventing resources from being disposed properly.

Fixes #2609

Thank you for taking time to contribute this pull request!
You might have already read the [contributor guide][1], but as a reminder, please make sure to:

  • Sign the contributor license agreement
  • Rebase your changes on the latest main branch and squash your commits
  • Add/Update unit tests as needed
  • Run a build and make sure all tests pass prior to submission

@rodrigomalara rodrigomalara changed the title [GH-2609] Fix the thread leak issue in VertexAiTextEmbeddingModel [GH-2609] Fix resource leak issue in VertexAiTextEmbeddingModel Mar 31, 2025
@@ -128,37 +128,38 @@ public EmbeddingResponse call(EmbeddingRequest request) {
.observation(this.observationConvention, DEFAULT_OBSERVATION_CONVENTION, () -> observationContext,
this.observationRegistry)
.observe(() -> {
PredictionServiceClient client = createPredictionServiceClient();
try (PredictionServiceClient client = createPredictionServiceClient()) {
Copy link
Author

@rodrigomalara rodrigomalara Mar 31, 2025

Choose a reason for hiding this comment

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

the proposed fix

@dev-jonghoonpark
Copy link
Contributor

Looks good! 👍
I think it would be better to squash the three commits into one using rebase.

@markpollack markpollack added this to the 1.0.0-M7 milestone Apr 1, 2025
…eddingModel

The PredictionServiceClient was not being closed. Connections are kept open preventing resources from being disposed properly.

Signed-off-by: rmalara <[email protected]>

[spring-projectsGH-2609] Fix the thread leak issue in VertexAiTextEmbeddingModel

The PredictionServiceClient was not being closed. Connections are kept open preventing resources from being disposed properly.

Signed-off-by: Rodrigo Malara <[email protected]>
Signed-off-by: rmalara <[email protected]>

[spring-projectsGH-2609] Fix the thread leak issue in VertexAiTextEmbeddingModel

The PredictionServiceClient was not being closed. Connections are kept open preventing resources from being disposed properly.

Signed-off-by: Rodrigo Malara <[email protected]>
Signed-off-by: rmalara <[email protected]>
@rodrigomalara
Copy link
Author

Looks good! 👍
I think it would be better to squash the three commits into one using rebase.

Good deal! Rebase should be in place now.

@sobychacko
Copy link
Contributor

Closed via 2517ca8.

@sobychacko sobychacko closed this Apr 2, 2025
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.

VertexAITextEmbeddingModel not closing PredictionServiceClient causing thread leak
5 participants