This is rather strange. It was working fine. But now it just doesn't get started and is stuck at
[2015-12-15 14:57:25,021][INFO ][node ] [Vertigo] initializing ...
[2015-12-15 14:57:25,079][INFO ][plugins ] [Vertigo] loaded [], sites []
Then I tried getting ES 2.1. But it just doesn't throw any logs at all and is completely stuck. I am unable to figure out what's wrong. Any ideas?
Figured out that "df" was stuck due to stale NFS mount causing this unwarranted behaviour. I guess ES must be trying to figure out the high/low disk watermarks prior to start-up.
No no Robin, I am not using NFS for storing indices but the machine has NFS mounts which are not being used by ES at all. However I suspect it tries to do a "df" kind of operation where it got stuck!
As a side node, please use bg,intr,soft mount option in /etc/fstab or when mounting NFS manually.
ES is indeed calling JVM file system services that list all mounted file systems, which is similar to df. By default, mounted NFS volumes, once they got stale, wait indefinitely for I/O.
When mounted with soft option, I/O requests on stale NFS mounts will timeout.
bg spins off a background retry task at mount time so NFS mounts do not block the OS to boot.
intr makes the programs who perform I/O requests on a stale NFS mount interruptible, e.g. by kill
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant
logo are trademarks of the
Apache Software Foundation
in the United States and/or other countries.