mirror of https://github.com/apache/lucene.git
SOLR-5864: Remove previous SolrCore as parameter on reload
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1641819 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
07b606bc88
commit
d5f8b17e3f
|
@ -108,6 +108,9 @@ Upgrading from Solr 4.x
|
||||||
* AdminHandlers is deprecated , /admin/* are implicitly defined, /get ,/replacation and
|
* AdminHandlers is deprecated , /admin/* are implicitly defined, /get ,/replacation and
|
||||||
handlers are also implicitly registered (refer to SOLR-6792)
|
handlers are also implicitly registered (refer to SOLR-6792)
|
||||||
|
|
||||||
|
* SolrCore.reload(ConfigSet coreConfig, SolrCore prev) was deprecated in 4.10.3 and
|
||||||
|
removed in 5.0. use SolrCore.reload(ConfigSet coreConfig). See SOLR-5864.
|
||||||
|
|
||||||
Detailed Change List
|
Detailed Change List
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
@ -426,10 +429,13 @@ Other Changes
|
||||||
* SOLR-6751: Exceptions thrown in the analysis chain in DirectUpdateHandler2
|
* SOLR-6751: Exceptions thrown in the analysis chain in DirectUpdateHandler2
|
||||||
should return a BAD_REQUEST status (Alan Woodward)
|
should return a BAD_REQUEST status (Alan Woodward)
|
||||||
|
|
||||||
* SOLR-SOLR-6792 : deprecate AdminHandlers, Clean up solrconfig.xml of
|
* SOLR-6792 : deprecate AdminHandlers, Clean up solrconfig.xml of
|
||||||
unnecessary plugin definitions, implicit registration of /replication,
|
unnecessary plugin definitions, implicit registration of /replication,
|
||||||
/get and /admin/* handlers (Noble Paul)
|
/get and /admin/* handlers (Noble Paul)
|
||||||
|
|
||||||
|
* SOLR-5864: Remove previous SolrCore as parameter on reload.
|
||||||
|
(Tomás Fernández Löbbe)
|
||||||
|
|
||||||
================== 4.10.3 ==================
|
================== 4.10.3 ==================
|
||||||
|
|
||||||
Bug Fixes
|
Bug Fixes
|
||||||
|
|
|
@ -22,7 +22,6 @@ import static com.google.common.base.Preconditions.checkNotNull;
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
import java.util.Collections;
|
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Locale;
|
import java.util.Locale;
|
||||||
|
@ -602,7 +601,7 @@ public class CoreContainer {
|
||||||
solrCores.waitAddPendingCoreOps(name);
|
solrCores.waitAddPendingCoreOps(name);
|
||||||
ConfigSet coreConfig = coreConfigService.getConfig(cd);
|
ConfigSet coreConfig = coreConfigService.getConfig(cd);
|
||||||
log.info("Reloading SolrCore '{}' using configuration from {}", cd.getName(), coreConfig.getName());
|
log.info("Reloading SolrCore '{}' using configuration from {}", cd.getName(), coreConfig.getName());
|
||||||
SolrCore newCore = core.reload(coreConfig, core);
|
SolrCore newCore = core.reload(coreConfig);
|
||||||
registerCore(name, newCore, false);
|
registerCore(name, newCore, false);
|
||||||
}
|
}
|
||||||
catch (Exception e) {
|
catch (Exception e) {
|
||||||
|
|
|
@ -423,18 +423,21 @@ public final class SolrCore implements SolrInfoMBean, Closeable {
|
||||||
return responseWriters.put(name, responseWriter);
|
return responseWriters.put(name, responseWriter);
|
||||||
}
|
}
|
||||||
|
|
||||||
public SolrCore reload(ConfigSet coreConfig, SolrCore prev) throws IOException,
|
public SolrCore reload(ConfigSet coreConfig) throws IOException,
|
||||||
ParserConfigurationException, SAXException {
|
ParserConfigurationException, SAXException {
|
||||||
|
|
||||||
solrCoreState.increfSolrCoreState();
|
solrCoreState.increfSolrCoreState();
|
||||||
|
SolrCore currentCore;
|
||||||
boolean indexDirChange = !getNewIndexDir().equals(getIndexDir());
|
boolean indexDirChange = !getNewIndexDir().equals(getIndexDir());
|
||||||
if (indexDirChange || !coreConfig.getSolrConfig().nrtMode) {
|
if (indexDirChange || !coreConfig.getSolrConfig().nrtMode) {
|
||||||
// the directory is changing, don't pass on state
|
// the directory is changing, don't pass on state
|
||||||
prev = null;
|
currentCore = null;
|
||||||
|
} else {
|
||||||
|
currentCore = this;
|
||||||
}
|
}
|
||||||
|
|
||||||
SolrCore core = new SolrCore(getName(), getDataDir(), coreConfig.getSolrConfig(),
|
SolrCore core = new SolrCore(getName(), getDataDir(), coreConfig.getSolrConfig(),
|
||||||
coreConfig.getIndexSchema(), coreDescriptor, updateHandler, this.solrDelPolicy, prev);
|
coreConfig.getIndexSchema(), coreDescriptor, updateHandler, this.solrDelPolicy, currentCore);
|
||||||
core.solrDelPolicy = this.solrDelPolicy;
|
core.solrDelPolicy = this.solrDelPolicy;
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue