On 9/27/2018 7:24 AM, Kimber, Mike wrote:
I'm trying to determine if there is any health check available to determine the above and then if the issue happens then an automated mechanism in SolrCloud to restart the instance. Or is this something we have to code ourselves?
As shipped by the project, Solr will never restart itself automatically. If it dies, it's dead until you start it again, unless you implement something to restart it automatically.This is intentional -- Solr almost never dies unless there's some kind of problem -- not enough memory, corrupt software, etc.If Solr *does* die, you need to figure out why and fix it, not rely on an automatic restart.
Thanks, Shawn