-
Notifications
You must be signed in to change notification settings - Fork 809
SOLR-17771: Have a CloudSolrClient that works with HttpJdkSolrClient #3774
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
Merged
Merged
Changes from all commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
17ba151
Get rid of redundant Builder class on abstract CloudSolrClient
jdyer1 b5c6c99
Make CloudHttp2SolrClient generic; update references to remove compil…
jdyer1 f55e6e4
remove generics; test with jdk client
jdyer1 4f31577
Enhance JDK client to track if it has issued a HEAD request by unique…
jdyer1 6923675
fix test randomization
jdyer1 dc9f389
make it final
jdyer1 d4bea59
use jdk client somtimes in retry test
jdyer1 1fe02cb
tidy
jdyer1 dd98e51
remove system.out.println
jdyer1 06b72c9
Require that sCNSP users pass-in CSC with Http2SolrCLient
jdyer1 f4e8d04
javadoc update
jdyer1 35831c5
tidy
jdyer1 0e50350
if not client or builder passed, decide between H2SC or HJSc based on…
jdyer1 474fe5e
tidy
jdyer1 9835ec0
make precommit happy
jdyer1 3577dfa
Merge branch 'main' into feature/SOLR-17771
jdyer1 398a9b6
fix two more classes that require http2solrclient delegate w/csc
jdyer1 d2fbe96
flub the metrics assert a little!
jdyer1 1bf8223
tidy
jdyer1 da66549
fix randomization bug - suggested by copilot
jdyer1 26ad6a9
really strip of query params - suggested by copilot
jdyer1 10de799
null the variable on teardown - suggested by copilot
jdyer1 042eae6
tidy
jdyer1 6ca39b4
Update solr/solrj/src/java/org/apache/solr/client/solrj/impl/HttpJdkS…
jdyer1 fc91fbe
- make doc comments genric (suggested by copilot)
jdyer1 d47d922
tidy
jdyer1 2c83145
Update solr/solrj/src/java/org/apache/solr/client/solrj/impl/CloudHtt…
jdyer1 7c5717f
fix awkward wording
jdyer1 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
why bother insisting on this?
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.
these call the very special "requestwithbaseUrl" method on the jetty client. I was unable to quickly create a common api for this with both clients so I decided for now we just need to enforce the jetty client. In practice, I would think these are only used internally so nothing is going to pass the jdk client here.