I am currently running simulations on the SLURM system, and as you may know, working within this environment often means operating without a graphical user interface (GUI), in which there is a dashboard for convenient monitoring.
Given these constraints, I am reaching out to ask if there are alternative methods or tools that could assist in easily tracking the progress of simulations being run?
Thank you in advance for any advice or suggestions you can offer. I look forward to hearing your thoughts and experiences on this matter.
There are 2 flavors of the MFiX solver, depending on whether you compile with the --batch flag when running build_mfixsolver.
For the batch solver, there is no interactive monitoring, but you can tail -f the various log files, or enable the write_dashboard keyword and run watch cat DASHBOARD.TXT (in the run directory).
The interactive solver (without --batch, or with -DENABLE_PYMFIX in the CMake command) includes an HTTP server that is used for interactive monitoring. This is wha the GUI connects to. When the job starts, a file <RUN_NAME>.pid is written in the run dir. In that file, you will find a line like url=http://127.0.0.1:46399
Connecting to this URL with a web browser (on the SLURM cluster) should get you a message “hello”, if you append /status to the URL you will see the raw info that is displayed in the GUI, and if you replace /status by /help you will see the other available commands.
But I’d like to ask why you don’t just use the GUI on your SLURM system?