This is an automated email from the ASF dual-hosted git repository.
cpoerschke pushed a change to branch jira/solr-13350
in repository https://gitbox.apache.org/repos/asf/solr.git
from bdaf7d98bdf SOLR-13350: Request parameter 'multithreaded' to
disable/enable multithreading
new 07f01620a97 add multiThreaded parameter in QueryCommand
add 07606c72818 Add correct exception logging in the ExecutorUtil (#2384)
add c512116f6a2 SOLR-14763 SolrJ HTTP/2 Async API using CompletableFuture
(update for 2024) (#2402)
add dc4ab76420c SOLR-14763 SolrJ Async - remove deprecated apis from
Solr10/main (#2407)
add abf6e8f43ca Update dependency commons-cli:commons-cli to v1.7.0 (#2408)
add 0a96a032843 SOLR-14763: Remove "testAsyncAndCancel"
add 8afd6975ff5 SOLR-17222: QueryResponseWriterUtil.NonFlushingStream
should support bulk write methods (#2386)
add 72793f5b9d9 SOLR-16866: Reorder nested directory deletions to avoid
logging spurious NoSuchFileException (#2349)
add 5e454a7c0ea SOLR-17194: Fix bug - CloudHttp2SolrClient doesn't
preserve the passed httpClient to Http2ClusterStateProvider when using the
internalClientBuilder (#2412)
add 3edc6875e60 SOLR-17234: LBHttp2SolrClient does not skip "zombie"
endpoints (#2411)
add a90cbce80ad Add next minor version 9.7.0
add 59744b0625d Release 9.6 - protect the release branch (#2418)
new d14329d340c Merge remote-tracking branch 'origin/main' into
jira/solr-13350
The 2 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:
.asf.yaml | 1 +
solr/CHANGES.txt | 42 ++++-
.../src/java/org/apache/solr/cli/PostLogsTool.java | 2 +-
.../apache/solr/core/CachingDirectoryFactory.java | 119 +++++++-----
.../apache/solr/core/CancellableQueryTracker.java | 6 +-
.../solr/handler/component/HttpShardHandler.java | 79 ++++----
.../component/QueryCancellationComponent.java | 4 +-
.../solr/handler/component/QueryComponent.java | 3 +
.../solr/response/QueryResponseWriterUtil.java | 20 +-
.../apache/solr/search/CancellableCollector.java | 4 +-
.../apache/solr/search/MultiThreadedSearcher.java | 14 +-
.../java/org/apache/solr/search/QueryCommand.java | 10 +
.../test/org/apache/solr/cli/TestExportTool.java | 74 ++++++++
.../solr/core/CachingDirectoryFactoryTest.java | 94 ++++++++++
.../org/apache/solr/handler/TestHttpRequestId.java | 34 ++--
.../apache/solr/search/TestCpuAllowedLimit.java | 4 +-
.../org/apache/solr/search/TestQueryLimits.java | 2 +-
.../apache/solr/update/MockingHttp2SolrClient.java | 143 ---------------
solr/licenses/commons-cli-1.6.0.jar.sha1 | 1 -
solr/licenses/commons-cli-1.7.0.jar.sha1 | 1 +
.../org/apache/solr/client/solrj/SolrClient.java | 2 +-
.../client/solrj/impl/CloudHttp2SolrClient.java | 105 ++++++-----
.../solrj/impl/Http2ClusterStateProvider.java | 4 +
.../solr/client/solrj/impl/Http2SolrClient.java | 174 +++++++++++-------
.../solr/client/solrj/impl/HttpJdkSolrClient.java | 65 ++-----
.../solr/client/solrj/impl/HttpSolrClientBase.java | 43 +++--
.../solr/client/solrj/impl/LBHttp2SolrClient.java | 204 +++++++++++----------
.../solr/client/solrj/impl/LBSolrClient.java | 4 +-
.../solr/client/solrj/util/AsyncListener.java | 34 ----
.../apache/solr/client/solrj/util/Cancellable.java | 31 ----
.../org/apache/solr/common/util/ExecutorUtil.java | 20 +-
.../impl/CloudHttp2SolrClientBuilderTest.java | 68 ++++++-
.../solr/client/solrj/impl/DebugAsyncListener.java | 84 ---------
.../client/solrj/impl/HttpJdkSolrClientTest.java | 56 +-----
.../client/solrj/impl/HttpSolrClientTestBase.java | 73 ++++----
.../client/solrj/impl/LBHttp2SolrClientTest.java | 182 ++++++++++++++++++
.../solr/client/solrj/impl/LBSolrClientTest.java | 6 +-
versions.lock | 2 +-
versions.props | 2 +-
39 files changed, 1017 insertions(+), 799 deletions(-)
delete mode 100644
solr/core/src/test/org/apache/solr/update/MockingHttp2SolrClient.java
delete mode 100644 solr/licenses/commons-cli-1.6.0.jar.sha1
create mode 100644 solr/licenses/commons-cli-1.7.0.jar.sha1
delete mode 100644
solr/solrj/src/java/org/apache/solr/client/solrj/util/AsyncListener.java
delete mode 100644
solr/solrj/src/java/org/apache/solr/client/solrj/util/Cancellable.java
delete mode 100644
solr/solrj/src/test/org/apache/solr/client/solrj/impl/DebugAsyncListener.java