You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by kr...@apache.org on 2019/01/31 17:37:21 UTC

[lucene-solr] branch jira/solr-9515 updated (f8815d4 -> 29e5840)

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

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


 discard f8815d4  Check commons-lang3 FastDateFormat doesn't cause ArrayIndexOutOfBoundsException
 discard 6957e5c  SOLR-9515: Update to Hadoop 3
     new 8bee03f  Add logging and impoved cleanup to TestStressCloudBlindAtomicUpdates setup/teardown codepaths that occasionally cause suite level failures in jenkins
     new a269a4d  LUCENE-8660: TopDocsCollectors now return an accurate count (instead of a lower bound) if the total hit count is equal to the provided threshold.
     new 1cfbd3e  SOLR-13072: Make sure the new overseer leader is present.
     new cf39708  Add next minor release version 8.1.0
     new 239905e  SOLR-12984: Update CHANGES.txt
     new a10a989  SOLR-13088: Update CHANGES.txt
     new 2547897  SOLR-13134: Update CHANGES.txt
     new 79d0dab  SOLR-13104: Update CHANGES.txt
     new 0a01b9e  disable TestInjection in TestStressCloudBlindAtomicUpdates
     new b802a52  LUCENE-8663: NRTCachingDirectory.slowFileExists may open a file while it's inaccessible
     new 57f693b  LUCENE-8664: Add equals/hashcode methods to TotalHits class
     new 2beb853  SOLR-13147: Update CHANGES.txt
     new 4fc218e  SOLR-13193: LeaderTragicEventTest doesn't catch NoSuchFileException when corrupting files
     new 29e5840  SOLR-9515: Update to Hadoop 3

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (f8815d4)
            \
             N -- N -- N   refs/heads/jira/solr-9515 (29e5840)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 31353 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:
 lucene/CHANGES.txt                                 | 10 ++++
 .../apache/lucene/search/TopFieldCollector.java    | 22 ++++-----
 .../apache/lucene/search/TopScoreDocCollector.java | 28 +++++------
 .../java/org/apache/lucene/search/TotalHits.java   | 17 +++++++
 .../apache/lucene/store/NRTCachingDirectory.java   |  2 +-
 .../src/java/org/apache/lucene/util/Version.java   |  7 +++
 .../lucene/search/TestMatchAllDocsQuery.java       | 12 ++++-
 .../org/apache/lucene/search/TestSynonymQuery.java |  3 +-
 .../apache/lucene/search/TestTopDocsCollector.java |  6 +--
 .../org/apache/lucene/search/TestTopDocsMerge.java | 12 ++---
 .../lucene/search/TestTopFieldCollector.java       | 22 ++++-----
 .../org/apache/lucene/search/TestTotalHits.java    | 56 ++++++++++++++++++++++
 .../org/apache/lucene/search/TestBM25FQuery.java   |  3 +-
 solr/CHANGES.txt                                   | 34 ++++++++++++-
 .../apache/solr/cloud/LeaderTragicEventTest.java   |  3 +-
 .../cloud/TestStressCloudBlindAtomicUpdates.java   | 36 +++++++++-----
 .../autoscaling/NodeMarkersRegistrationTest.java   |  5 ++
 17 files changed, 208 insertions(+), 70 deletions(-)
 create mode 100644 lucene/core/src/test/org/apache/lucene/search/TestTotalHits.java