You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sh...@apache.org on 2020/02/10 14:27:19 UTC

[lucene-solr] branch master updated (87421d7 -> c65b976)

This is an automated email from the ASF dual-hosted git repository.

shalin pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git.


    from 87421d7  LUCENE-9216: Make sure we index LEAST_DOUBLE_VALUE (#1246)
     add c65b976  SOLR-13996: Refactor HttpShardHandler.prepDistributed method (#1220)

No new revisions were added by this update.

Summary of changes:
 solr/CHANGES.txt                                   |   2 +
 .../solr/handler/component/CloudReplicaSource.java | 246 +++++++++++++++
 .../solr/handler/component/HttpShardHandler.java   | 339 +++++----------------
 .../handler/component/HttpShardHandlerFactory.java |   4 +-
 .../handler/component/LegacyReplicaSource.java     |  77 +++++
 .../solr/handler/component/ReplicaSource.java}     |  29 +-
 .../apache/solr/cloud/ClusterStateMockUtil.java    |  19 +-
 .../handler/component/CloudReplicaSourceTest.java  | 263 ++++++++++++++++
 .../org/apache/solr/cloud/MockZkStateReader.java   |   7 +
 9 files changed, 712 insertions(+), 274 deletions(-)
 create mode 100644 solr/core/src/java/org/apache/solr/handler/component/CloudReplicaSource.java
 create mode 100644 solr/core/src/java/org/apache/solr/handler/component/LegacyReplicaSource.java
 copy solr/core/src/{test/org/apache/solr/spelling/SampleComparator.java => java/org/apache/solr/handler/component/ReplicaSource.java} (68%)
 create mode 100644 solr/core/src/test/org/apache/solr/handler/component/CloudReplicaSourceTest.java