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

SOLR-17707 HttpJdkSolrClient handle exceptions #3273

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

janhoy
Copy link
Contributor

@janhoy janhoy commented Mar 18, 2025

https://issues.apache.org/jira/browse/SOLR-17707

Description

Threads hung during indexing data to Solr with HttpJdkSolrClient

Solution

Catch and propagate exceptions during piping from src to dst..

Disclaimer: Current PR is a solution suggested by GitHub CoPilot AI after describing the problem. I do not actually have a deep insight into exception handling in such a scenario, but existing tests do pass :) Would be nice with a dedicated test too.

Tests

TBD Would need to write a test that triggers an exception during write, how?

Checklist

Please review the following and check all that apply:

  • I have reviewed the guidelines for How to Contribute and my code conforms to the standards described there to the best of my ability.
  • I have created a Jira issue and added the issue ID to my pull request title.
  • I have given Solr maintainers access to contribute to my PR branch. (optional but recommended, not available for branches on forks living under an organisation)
  • I have developed this patch against the main branch.
  • I have run ./gradlew check.
  • I have added tests for my changes.
  • I have added documentation for the Reference Guide

Sorry, something went wrong.

@janhoy janhoy requested a review from jdyer1 March 18, 2025 08:34
@janhoy janhoy marked this pull request as draft March 18, 2025 10:11
try (source) {
contentWriter.write(source);
contentWritingFuture.complete(null);
} catch (Exception e) {
Copy link
Contributor

Choose a reason for hiding this comment

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

Can you change this to Throwable? We don't want a possibility of this not being caught.

@dsmiley
Copy link
Contributor

dsmiley commented Mar 20, 2025

the PR is very drafty; I started editing this PR locally but then held myself back to insist we see a test before guessing anything we do works as intended.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants