On 4/9/2018 12:31 PM, Jay Potharaju wrote: > I am getting Indexwriter is closed error only on some of my shards in the > collection. This seems to be happening on leader shards only. There is are > other shards on the box and they are not throwing any error. Also there is > enough disc space on the box available at this time. <snip> > Caused by: java.io.IOException: No space left on device
Lucene (used by Solr) is reporting information given to it by Java, which got its information from the operating system. The OS said that there's no space left. There are a few possibilities here that I can think of: 1) The user that is running the application has a quota on the storage and has reached that quota, so that specific user is being told there's no space, while another user can see lots of space. 2) You've actually run out of some other resource besides literal storage. One example is that the storage volume has reached the maximum number of inodes that it can store. I don't know if this can result in the same error message, but it wouldn't surprise me. http://blog.scoutapp.com/articles/2014/10/08/understanding-disk-inodes 3) You're looking at the wrong storage volume to see the free space. Thanks, Shawn