When sbatch submitting a new job, if the dependent job has already terminated abnormally (FAILED), will the new job run at all?
Yes, unless you specify a dependency type[1] that would never be satisfied. For instance: afterok:job_id[:jobid...] This job can begin execution after the specified jobs have successfully executed (ran to completion with an exit code of zero). This would never be satisfied because the specified job didn't exit with 0 code. But if you specify after, or afterany or afternotok the job should run. You might also be interested in the SchedulerParameters option kill_invalid_depend: kill_invalid_depend If a job has an invalid dependency and it can never run terminate it and set its state to be JOB_CANCELLED. By default the job stays pending with reason DependencyNeverSatisfied. [1] https://slurm.schedmd.com/sbatch.html#OPT_dependency