ecFlow's documentation is now on readthedocs!

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

In ecflow Limits provide simple load management. The limits can still allow several hundred jobs to be submitted at once. This can cause prblems:

  • Excessive disk/io in job generation
  • Overload queueing systems like PBS/SLURM

Hence we need a load management that can limit the number of submission. Then whenever the Job becomes active the limit token is released.

Here is the simplest illustration:

Limit submission to a maximum of 2
suite test_limit_on_submission
    limit disk 2
    family anon    
        inlimit -s disk   # Inlimit submission
        task t1
        task t2
        task t3
        task t4
        task t5
        task t6
        task t7
        task t8
        task t9
        task t10
        task t11
        task t12
    endfamily
endsuite

Hence we could have more than 2 active jobs, since we are only controlled number in the submitted state.

If we removed the -s then we can only have two active jobs running at one time

  • No labels