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 74c05e520ab SOLR-13350: Fix tests and precommit
     add 21d97ed3a0d Revert "Revert "SOLR-17066: Switch HttpSolrClient away 
from coreURLs, pt 2 (#2231)""
     add fa8149564cc SOLR-17146: Add DelegatingBackupRepository and alternative 
checksum verification (#2239)
     add c98a8f655ce SOLR-17149: Fix backup/restore for large collections. 
(#2243)
     add f172b483f8c fix a few typos in the Indexing Guide (#2245)
     new 976f3507717 Merge remote-tracking branch 'origin/main' into 
jira/solr-13350
     new 685cd7abbf8 make it compile: ExecutorUtil.newMDCAwareCachedThreadPool 
signature changed

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:
 solr/CHANGES.txt                                   |   4 +
 .../java/org/apache/solr/core/CoreContainer.java   |   5 +-
 .../repository/AbstractBackupRepository.java       |  77 ++++++++
 .../core/backup/repository/BackupRepository.java   |  33 ++++
 .../backup/repository/BackupRepositoryFactory.java |  41 +++--
 .../repository/DelegatingBackupRepository.java}    |  94 +++++-----
 .../repository/LocalFileSystemRepository.java      |  12 +-
 .../solr/handler/admin/CoreAdminHandler.java       |   4 +-
 .../client/solrj/impl/ConnectionReuseTest.java     |   3 +-
 .../apache/solr/cloud/LeaderTragicEventTest.java   |  11 +-
 .../test/org/apache/solr/cloud/RouteFieldTest.java |  20 ++-
 .../cloud/TestLeaderElectionWithEmptyReplica.java  |   3 +-
 .../org/apache/solr/cloud/TestPullReplica.java     |  15 +-
 .../apache/solr/cloud/TestRandomFlRTGCloud.java    |   2 +-
 .../solr/cloud/TestRandomRequestDistribution.java  |  10 +-
 .../org/apache/solr/cloud/TestTlogReplica.java     |  15 +-
 .../LocalFSCloudIncrementalBackupTest.java         |   2 +-
 .../solr/cloud/api/collections/ShardSplitTest.java |   3 +-
 .../repository/LocalFileSystemRepositoryTest.java} |  45 ++---
 .../apache/solr/handler/ReplicationTestHelper.java |  12 ++
 .../handler/TestHealthCheckHandlerLegacyMode.java  |   4 +-
 .../solr/handler/TestReplicationHandler.java       |  56 +++---
 .../TestReplicationHandlerDiskOverFlow.java        |   8 +-
 .../solr/handler/admin/CoreAdminHandlerTest.java   |  15 +-
 .../DistributedQueryElevationComponentTest.java    |   3 +-
 .../solr/handler/component/SearchHandlerTest.java  |  13 +-
 .../src/test/org/apache/solr/pkg/TestPackages.java |  10 ++
 .../solr/update/DeleteByIdWithRouterFieldTest.java |   5 +-
 .../org/apache/solr/gcs/GCSBackupRepository.java   |  44 +++--
 .../apache/solr/gcs/GCSBackupRepositoryTest.java   |  15 +-
 .../apache/solr/gcs/GCSIncrementalBackupTest.java  |   2 +-
 .../hadoop/TestImpersonationWithHadoopAuth.java    |   3 +-
 .../TestSolrCloudWithSecureImpersonation.java      |   3 +-
 .../backup/repository/HdfsBackupRepository.java    |  11 +-
 .../HdfsBackupRepositoryIntegrationTest.java       |   5 +
 .../org/apache/solr/hdfs/cloud/StressHdfsTest.java |   3 +-
 .../HdfsCloudIncrementalBackupTest.java            |   2 +-
 .../org/apache/solr/s3/S3BackupRepository.java     |  24 ++-
 .../apache/solr/s3/S3BackupRepositoryConfig.java   |  10 +-
 .../org/apache/solr/s3/S3BackupRepositoryTest.java |   5 +
 .../apache/solr/s3/S3IncrementalBackupTest.java    |   2 +-
 .../deployment-guide/pages/backup-restore.adoc     |  15 +-
 .../indexing-guide/pages/date-formatting-math.adoc |   2 +-
 .../indexing-guide/pages/documents-screen.adoc     |   2 +-
 .../pages/field-types-included-with-solr.adoc      |   2 +-
 .../pages/indexing-nested-documents.adoc           |  18 +-
 .../indexing-guide/pages/indexing-with-cbor.adoc   |   2 +-
 .../pages/partial-document-updates.adoc            |   6 +-
 .../solr/client/solrj/io/SolrClientCache.java      |  27 ++-
 .../solrj/impl/ConcurrentUpdateSolrClient.java     |  14 +-
 .../solr/client/solrj/impl/LBHttpSolrClient.java   |  15 +-
 .../org/apache/solr/common/util/ExecutorUtil.java  |   9 +-
 .../java/org/apache/solr/common/util/URLUtil.java  |  15 ++
 .../solr/client/solrj/SolrExampleTestsBase.java    |   2 +-
 .../collections/AbstractBackupRepositoryTest.java  | 194 ++++++++++++++++++++-
 .../collections/AbstractIncrementalBackupTest.java |   7 +-
 .../apache/solr/core/TrackingBackupRepository.java | 101 +----------
 57 files changed, 732 insertions(+), 353 deletions(-)
 create mode 100644 
solr/core/src/java/org/apache/solr/core/backup/repository/AbstractBackupRepository.java
 copy 
solr/{test-framework/src/java/org/apache/solr/core/TrackingBackupRepository.java
 => 
core/src/java/org/apache/solr/core/backup/repository/DelegatingBackupRepository.java}
 (67%)
 copy solr/core/src/test/org/apache/solr/{search/join/ShardJoinRouterTest.java 
=> core/backup/repository/LocalFileSystemRepositoryTest.java} (52%)

Reply via email to