mirror of https://github.com/apache/lucene.git
SOLR-11182: A split shard failure on IOException should be logged
This commit is contained in:
parent
78b6e5031a
commit
8cd2942e35
|
@ -420,6 +420,8 @@ Bug Fixes
|
||||||
* SOLR-11163: Fix contrib/ltr Normalizer persistence after solr core reload or restart.
|
* SOLR-11163: Fix contrib/ltr Normalizer persistence after solr core reload or restart.
|
||||||
(Yuki Yano via Christine Poerschke)
|
(Yuki Yano via Christine Poerschke)
|
||||||
|
|
||||||
|
* SOLR-11182: A split shard failure on IOException should be logged (Varun Thacker)
|
||||||
|
|
||||||
Optimizations
|
Optimizations
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
|
@ -911,6 +911,7 @@ public class DirectUpdateHandler2 extends UpdateHandler implements SolrCoreState
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
numErrors.increment();
|
numErrors.increment();
|
||||||
numErrorsCumulative.mark();
|
numErrorsCumulative.mark();
|
||||||
|
throw e;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue