Here's what I see:
UPDATEDSOLUTION
Finally, the issue was identified to be caused by a recently updated server library. The accepted answer is a good reminder, in the situation when you're stressed out by the memory usage, to trace back what had been changed in your system before the issue appeared.
 Some tips I've been looking for and found to be very useful are described in How to find which processes are taking all the memory?
 I'm listing below the commands that I used and may help in such situation.
ps auwx --sort rss - processes sorted by memory usage
ps -fu username - processes by a user
htop usage/analysis showed many hung application cron-launched processes in my case. SoI configured htop to output both PID and PPID, seems this is the cause of the memory usage increase. Looks like my next step isbecause I needed to find out why thesecorrelate PPID to /var/log/cron logged processes are not being stopped.