This is an automated email from the ASF dual-hosted git repository.
dsmiley pushed a change to branch branch_9x
in repository https://gitbox.apache.org/repos/asf/solr.git
from ea61a995332 SOLR-18239: Fixed NPE during size estimator calculations
(#4427)
new a2f523cf88b fix doc typo spacial→spatial (#4457)
new 1cbab3f3371 tests-via-crave: limit paths (#4449)
new bef0827290c SOLR-18227: Add name= local-param with
MatchedQueriesComponent (#4402)
new 6601e58a76d build failed-tests-at-end: improve isSuite detection
new a9f697c28fe Test fix testDistributedQueryDoesNotReadFromZk (#4429)
new be771e3eb5f changes2html.py: fix for github nicknames with hyphens
(#4481)
new 47f0eea91bb SOLR-18098: Fix replication failure for files with exact
MB sizes (#4205)
new f76f061c0a9 SOLR-18098: Fix precommit (#4498)
new 7a002a5ba8a DistributedCombinedQueryComponentTest hangs in nightly
(#4497)
new 21bf71b4962 JavaBinCodec: fix self-suppression risk (#4489)
new a3c387d1c64 HttpJettySolrClient: don't throw IllegalStateException if
connection lost (#4490)
The 11 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:
.github/workflows/tests-via-crave.yml | 5 +-
...0-HttpJettySolrClient-IllegalStateException.yml | 9 +
.../SOLR-18098-fix-replication-exact-mb-sizes.yml | 7 +
.../SOLR-18227_named_queries_matched_component.yml | 7 +
.../documentation/changes-to-html/changes2html.py | 2 +-
gradle/testing/failed-tests-at-end.gradle | 2 +-
.../solr/handler/admin/api/ReplicationAPIBase.java | 7 +
.../handler/component/MatchedQueriesComponent.java | 175 +++++++++
.../src/java/org/apache/solr/search/QParser.java | 9 +
.../java/org/apache/solr/search/QueryParsing.java | 1 +
...thandler.xml => solrconfig-matched-queries.xml} | 22 +-
.../handler/IndexFetcherPacketProtocolTest.java | 401 +++++++++++++++++++++
.../DistributedCombinedQueryComponentTest.java | 109 +++---
.../DistributedQueryComponentOptimizationTest.java | 8 +-
.../component/TestMatchedQueriesComponent.java | 301 ++++++++++++++++
.../org/apache/solr/search/QueryEqualityTest.java | 134 +++++++
.../solr/search/TestMmBoolQParserPlugin.java | 22 ++
.../modules/indexing-guide/pages/docvalues.adoc | 2 +-
.../query-guide/pages/common-query-parameters.adoc | 1 +
.../pages/matched-queries-component.adoc | 121 +++++++
.../modules/query-guide/pages/other-parsers.adoc | 25 +-
.../modules/query-guide/querying-nav.adoc | 1 +
.../solr/client/solrj/impl/Http2SolrClient.java | 4 +
.../org/apache/solr/common/util/JavaBinCodec.java | 5 +-
24 files changed, 1305 insertions(+), 75 deletions(-)
create mode 100644
changelog/unreleased/PR#4490-HttpJettySolrClient-IllegalStateException.yml
create mode 100644
changelog/unreleased/SOLR-18098-fix-replication-exact-mb-sizes.yml
create mode 100644
changelog/unreleased/SOLR-18227_named_queries_matched_component.yml
create mode 100644
solr/core/src/java/org/apache/solr/handler/component/MatchedQueriesComponent.java
copy
solr/core/src/test-files/solr/collection1/conf/{solrconfig-withgethandler.xml
=> solrconfig-matched-queries.xml} (77%)
create mode 100644
solr/core/src/test/org/apache/solr/handler/IndexFetcherPacketProtocolTest.java
create mode 100644
solr/core/src/test/org/apache/solr/handler/component/TestMatchedQueriesComponent.java
create mode 100644
solr/solr-ref-guide/modules/query-guide/pages/matched-queries-component.adoc