Hi Mike, your last email was sent directly to my own mail, next time please ensure you are replying to the mailing list,
all the community will be glad to see your problems and how we help you to solve them. Any case, and regarding to your last mail
there some things to take care next time:
If Elasticsearch has a memory RAM peak ending on crash you can should see some error logs:
# cat /var/log/elasticsearch/elasticsearch.log | grep -i "ERR"
Also if your operating system is who killed the Elasticsearch process, you should see something at messages log:
# cat /var/log/messages | grep -i "err"
# cat /var/log/messages | grep -i "elastic"
# cat /var/log/messages | grep -i "java"
Another interesting tip is to keep your hard drive with enough space, keep in mind that Elasticsearch will consume more and more
space day by day. If your hard drive reaches 85% usage, Elasticsearch stops its indexing process.
And finally, definetively you need more RAM for your server, depending on the amount of data, but I suggest to start at least with 8GB and
increase it after some days if you see that it's needed.
Regarding to the heap total vs heap used, it's normal, you could have a heap peak, but it usually works like stairs, goes up and goes down continuously
Hope it helps!