This is an automated email from the ASF dual-hosted git repository.
dsmiley pushed a change to branch branch_10x
in repository https://gitbox.apache.org/repos/asf/solr.git
from 6032b2316c9 Wire up NVD API key for the owasp Gradle task (#4725)
new 4bc3157f57e SOLR-18332: More qt-removal from tests, rd 3 (#4721)
new ca81daaecab Fix formatting of commit and optimize operation tags
(#4740)
new 28ffe6e932f AGENTS.md JIRA note (#4701)
new c63791f0bf8 SOLR-18332: More 'qt' removal, rd 4 (#4731)
new db513fd3f5d SOLR-18346: decide update retries from the cause chain,
not one fixed position in it (#4678)
new 7be3591faa6 SOLR-18312: HttpJdkSolrClient: Fix Thread Pool Starvation
(#4655)
The 6 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
AGENTS.md | 10 +-
...Thread-Pool-Starvation-in-HttpJdkSolrClient.yml | 11 +
.../checkretry-unroll-exception-chain.yml | 10 +
.../org/apache/solr/update/SolrCmdDistributor.java | 50 +-
.../org/apache/solr/DisMaxRequestHandlerTest.java | 41 +-
.../test/org/apache/solr/MinimalSchemaTest.java | 18 +-
.../test/org/apache/solr/TestCrossCoreJoin.java | 3 +-
.../apache/solr/core/AlternateDirectoryTest.java | 2 +-
.../org/apache/solr/core/RequestHandlersTest.java | 4 +-
.../solr/handler/MoreLikeThisHandlerTest.java | 19 +-
.../solr/handler/admin/LukeRequestHandlerTest.java | 32 +-
.../admin/SegmentsInfoRequestHandlerTest.java | 13 +-
.../handler/component/InfixSuggestersTest.java | 26 +-
.../PhrasesIdentificationComponentTest.java | 8 +-
.../component/QueryElevationComponentTest.java | 684 +++++++++++----------
.../component/ResponseLogComponentTest.java | 15 +-
.../handler/component/SpellCheckComponentTest.java | 96 ++-
.../SuggestComponentContextFilterQueryTest.java | 60 +-
.../handler/component/SuggestComponentTest.java | 121 ++--
.../handler/component/TermVectorComponentTest.java | 60 +-
.../solr/handler/component/TermsComponentTest.java | 225 ++++---
.../component/TestMatchedQueriesComponent.java | 197 +++---
.../org/apache/solr/schema/BooleanFieldTest.java | 2 +-
.../org/apache/solr/schema/TestPointFields.java | 8 +-
.../solr/search/TestAddFieldRealTimeGet.java | 8 +-
.../org/apache/solr/search/TestBlockCollapse.java | 339 ++++++----
.../solr/search/TestCollapseQParserPlugin.java | 69 +--
.../apache/solr/search/TestPseudoReturnFields.java | 51 +-
.../solr/search/TestReRankQParserPlugin.java | 21 +-
.../org/apache/solr/search/TestRealTimeGet.java | 93 ++-
.../test/org/apache/solr/search/TestRecovery.java | 69 ++-
.../test/org/apache/solr/search/TestReload.java | 6 +-
.../org/apache/solr/search/TestStressRecovery.java | 2 +-
.../org/apache/solr/search/TestStressReorder.java | 2 +-
.../apache/solr/search/TestStressUserVersions.java | 2 +-
.../org/apache/solr/search/TestStressVersions.java | 2 +-
.../solr/spelling/DirectSolrSpellCheckerTest.java | 5 +-
.../solr/spelling/SpellCheckCollatorTest.java | 40 +-
.../SpellCheckCollatorWithCollapseTest.java | 5 +-
.../spelling/WordBreakSolrSpellCheckerTest.java | 40 +-
.../solr/spelling/suggest/SuggesterTest.java | 12 +-
.../suggest/TestAnalyzeInfixSuggestions.java | 35 +-
.../spelling/suggest/TestAnalyzedSuggestions.java | 12 +-
.../suggest/TestBlendedInfixSuggestions.java | 29 +-
.../spelling/suggest/TestFileDictionaryLookup.java | 18 +-
.../spelling/suggest/TestFreeTextSuggestions.java | 14 +-
.../suggest/TestFuzzyAnalyzedSuggestions.java | 28 +-
.../TestHighFrequencyDictionaryFactory.java | 18 +-
.../spelling/suggest/TestPhraseSuggestions.java | 6 +-
.../apache/solr/update/CheckRetryUnrollTest.java | 151 +++++
.../solr/update/TestInPlaceUpdatesStandalone.java | 8 +-
.../test/org/apache/solr/update/TestUpdate.java | 22 +-
.../test/org/apache/solr/update/UpdateLogTest.java | 4 +-
.../solr/update/processor/AtomicUpdatesTest.java | 18 +-
.../update/processor/NestedAtomicUpdateTest.java | 42 +-
.../processor/TestDocBasedVersionConstraints.java | 72 +--
.../pages/indexing-with-update-handlers.adoc | 4 +-
.../pages/major-changes-in-solr-10.adoc | 1 +
.../solr/client/solrj/impl/HttpJdkSolrClient.java | 159 +++--
.../client/solrj/impl/HttpJdkSolrClientTest.java | 49 ++
.../src/java/org/apache/solr/SolrTestCaseJ4.java | 43 +-
.../src/java/org/apache/solr/util/TestHarness.java | 4 +-
62 files changed, 1748 insertions(+), 1470 deletions(-)
create mode 100644
changelog/unreleased/SOLR-18312-fix-Thread-Pool-Starvation-in-HttpJdkSolrClient.yml
create mode 100644 changelog/unreleased/checkretry-unroll-exception-chain.yml
create mode 100644
solr/core/src/test/org/apache/solr/update/CheckRetryUnrollTest.java