mirror of
https://github.com/apache/lucene.git
synced 2025-02-24 11:16:35 +00:00
Synchronize 7.3.1 changes
This commit is contained in:
parent
b3551721fd
commit
16cb4141df
@ -197,10 +197,6 @@ Bug Fixes
|
||||
index file names for updated doc values fields (Simon Willnauer,
|
||||
Michael McCandless, Nhat Nguyen)
|
||||
|
||||
* LUCENE-8254: LRUQueryCache could cause IndexReader to hang on close, when
|
||||
shared with another reader with no CacheHelper (Alan Woodward, Simon Willnauer,
|
||||
Adrien Grand)
|
||||
|
||||
* LUCENE-8275: Push up #checkPendingDeletes to Directory to ensure IW fails if
|
||||
the directory has pending deletes files even if the directory is filtered or
|
||||
a FileSwitchDirectory (Simon Willnauer, Robert Muir)
|
||||
@ -247,7 +243,12 @@ Documentation
|
||||
(Mike Sokolov via Mike McCandless)
|
||||
|
||||
======================= Lucene 7.3.1 =======================
|
||||
(No Changes)
|
||||
|
||||
Bug fixes
|
||||
|
||||
* LUCENE-8254: LRUQueryCache could cause IndexReader to hang on close, when
|
||||
shared with another reader with no CacheHelper (Alan Woodward, Simon Willnauer,
|
||||
Adrien Grand)
|
||||
|
||||
======================= Lucene 7.3.0 =======================
|
||||
|
||||
|
@ -126,9 +126,6 @@ Bug Fixes
|
||||
* SOLR-12108: Fixed the fallback behavior of [raw] and [xml] transformers when an incompatble 'wt' was
|
||||
specified, the field value was lost if documentCache was not used. (hossman)
|
||||
|
||||
* SOLR-12087: Deleting replicas sometimes fails and causes the replicas to exist in the down
|
||||
state (Cao Manh Dat)
|
||||
|
||||
* SOLR-11551: Standardize CoreAdmin API success/failure status codes (Jason Gerlowski, Steve Rowe)
|
||||
|
||||
* SOLR-12035: ExtendedDismaxQParser fails to include charfilters in nostopanalyzer (Tim Allison via
|
||||
@ -168,16 +165,10 @@ Bug Fixes
|
||||
|
||||
* SOLR-12214: Leader may skip publish itself as ACTIVE when its last published state is DOWN (Cao Manh Dat)
|
||||
|
||||
* SOLR-12065: A successful restore collection should mark the shard state as active and not buffering
|
||||
(Rohit, Varun Thacker)
|
||||
|
||||
* SOLR-12150: Fix a test bug in CdcrBidirectionalTest.testBiDir (Steve Rowe, Amrit Sarkar via Varun Thacker)
|
||||
|
||||
* SOLR-10513: ConjunctionSolrSpellChecker did not work with LuceneLevenshteinDistance (Amrit Sarkar via James Dyer)
|
||||
|
||||
* SOLR-11724: Cdcr bootstrapping should ensure that non-leader replicas should sync with the leader
|
||||
(Amrit Sarkar, Varun Thacker)
|
||||
|
||||
* SOLR-11840: Fix bin/solr help-text inconsistencies (Jason Gerlowski)
|
||||
|
||||
* SOLR-10169: PeerSync will hit an NPE on no response errors when looking for fingerprint. (Erick Erickson)
|
||||
@ -208,17 +199,12 @@ Bug Fixes
|
||||
* SOLR-12284: WordBreakSolrSpellchecker will no longer add parenthesis in collations when breaking words in
|
||||
non-boolean queries. (James Dyer)
|
||||
|
||||
* SOLR-12202: Fix errors in solr-exporter.cmd. (Minoru Osuka via koji)
|
||||
|
||||
* SOLR-12290: Do not close any servlet streams and improve our servlet stream closing prevention code for users
|
||||
and devs. (Mark Miller)
|
||||
|
||||
* SOLR-12293: Updates need to use their own connection pool to maintain connection reuse and prevent spurious
|
||||
recoveries. (Mark Miller)
|
||||
|
||||
* SOLR-12316: Do not allow to use absolute URIs for including other files in solrconfig.xml and schema parsing.
|
||||
(Ananthesh, Ishan Chattopadhyaya, Uwe Schindler)
|
||||
|
||||
* SOLR-12308: LISTALIASES is now assured to return an up-to-date response. Also, the test utility
|
||||
MiniSolrCloudCluster.deleteAllCollections will now first delete aliases since a collection cannot be deleted if an
|
||||
alias refers to it. (David Smiley)
|
||||
@ -248,10 +234,6 @@ Optimizations
|
||||
* SOLR-11891: DocStreamer now respects the ReturnFields when populating a SolrDocument, reducing the
|
||||
number of unneccessary fields a ResponseWriter will see if documentCache is used (wei wang, hossman)
|
||||
|
||||
* SOLR-12146: LIR should skip deleted replicas (Cao Manh Dat)
|
||||
|
||||
* SOLR-12066: Cleanup deleted core when node start (Cao Manh Dat)
|
||||
|
||||
* SOLR-12312: Replication IndexFetcher should cap its internal buffer size when the file being transferred is small.
|
||||
(Jeff Miller, David Smiley)
|
||||
|
||||
@ -336,6 +318,24 @@ Bug Fixes
|
||||
|
||||
* SOLR-12256: Fixed some eventual-consistency issues with collection aliases by using ZooKeeper.sync(). (David Smiley)
|
||||
|
||||
* SOLR-12087: Deleting replicas sometimes fails and causes the replicas to exist in the down
|
||||
state (Cao Manh Dat)
|
||||
|
||||
* SOLR-12146: LIR should skip deleted replicas (Cao Manh Dat)
|
||||
|
||||
* SOLR-12066: Cleanup deleted core when node start (Cao Manh Dat)
|
||||
|
||||
* SOLR-12065: A successful restore collection should mark the shard state as active and not buffering
|
||||
(Rohit, Varun Thacker)
|
||||
|
||||
* SOLR-11724: Cdcr bootstrapping should ensure that non-leader replicas should sync with the leader
|
||||
(Amrit Sarkar, Varun Thacker)
|
||||
|
||||
* SOLR-12202: Fix errors in solr-exporter.cmd. (Minoru Osuka via koji)
|
||||
|
||||
* SOLR-12316: Do not allow to use absolute URIs for including other files in solrconfig.xml and schema parsing.
|
||||
(Ananthesh, Ishan Chattopadhyaya, Uwe Schindler)
|
||||
|
||||
================== 7.3.0 ==================
|
||||
|
||||
Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release.
|
||||
|
Loading…
x
Reference in New Issue
Block a user