On 3/29/2017 11:17 AM, Shashank Pedamallu wrote: > I’m performing some long running operation on a Background thread on a > Core and I observed that since the core has the property “transient” > set to true, in between this operation completes, the core is being > CLOSED and OPENED by Solr (even though the operation continues without > interruption). Is there a way to avoid/block OPENING/CLOSING of the > core when this operation is in progress?
I see four choices: * Change the transient property to false and restart Solr, so that core cannot ever be unloaded. * Increase the transientCacheSize value in solr.xml so that more transient cores can be loaded at the same time. * Don't access other transient cores during the long-running operation. * Don't use LotsOfCores functionality (transient cores) at all. https://wiki.apache.org/solr/LotsOfCores Thanks, Shawn