Using solr server version 6.6 and solrj 6.6.
Currently the solr cores are created over glusterfs mounted partition. There is enough space for the solr cores on the mounted volume too. Also, for some cores this issue is not seen but for others there is a consistent failure and the below mentioned exception is thrown.
Exception chain: org.apache.solr.common.SolrException: Exception writing document id WI:5-1-8 to the index; possible analysis error.
Any idea / workaround would be appreciated. :)
The SOLR server pod when deployed in kubernets used to claim for a persistent volume of type glusterfs with access mode : RWX (Read Write Many).
. Looks like lucene(in solr) does not play well with glusterfs partition which has read-write permissions assigned for diff pods. Looks like it takes a lot of time to sync new file changes and hence lucene was not able to take locks when required and immediately failed saying that many external forces are trying to lock write.lock file in a solr core. So dont use a shared gluster fs parition for your solr cores.