Skip to content

SLURM executor appears to rebuild complete DAG for each individual job in large workflows #215

Open
@mat10d

Description

@mat10d

Software Versions

snakemake --version
8.27.1
mamba list | grep "snakemake-executor-plugin-slurm"
snakemake-executor-plugin-slurm 0.15.0             pyhdfd78af_0    bioconda
snakemake-executor-plugin-slurm-jobstep 0.2.1              pyhdfd78af_0    bioconda
sinfo --version
slurm 23.11.5

Bug
When running Snakemake with the SLURM executor, each individual rule job appears to reload the Snakefile and rebuild the entire DAG. For large workflows, this causes significant memory usage and processing time overhead for every job. Our DAG takes ~109 seconds to build and consumes over 2GB of memory, which is then repeated for each of thousands of jobs.

Bash script run on login node, via tmux session:

snakemake --executor slurm --use-conda \
    --workflow-profile "slurm/" \
    --snakefile "/lab/barcheese01/mdiberna/brieflow/workflow/Snakefile_well_debug" \
    --configfile "config/config.yml" \
    --latency-wait 30 \
    --until extract_metadata_sbs extract_metadata_phenotype

This project is based on the Snakemake suggested workflow and consists of a Snakefile_well_debug.txt
that loads rules, targets, and then deploys them.

Expected behavior
We expect that the DAG should be built once in the main Snakemake process (in the tmux session), and individual jobs should only need to execute their specific rule without rebuilding the entire workflow graph. If this were the case, the print statements that we have (testing memory usage) would just be seen in the tmux session that this is run in. This is especially important for large workflows where DAG building is resource-intensive, for both memory and runtime aspects.

What we're seeing
While the Snakefile print statements do populate in the tmux session, they also appear in every .out file, for example: 5580823.txt that is generated by slurm job submission. Furthermore, we see that the expected memory usage of the individual jobs is effectively the sum of both what happens in the main Snakefile (stably ~2GB) + what is required by the job itself (<200MB). The time it takes to run each rule also appears to increase as the size of our input data (and thereby the DAG) increases.

I can't seem to find any documentation about whether this is expected, or if this is something that can be bypassed with the package. Thanks in advance.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions