Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Excessive disk/io in job generation
  • Server busy in job generation, and slow to respond to the GUI.
  • Overload queuing systems like PBS/SLURM

Hence we need a load management that can limit the number of submissionsubmissions. When the Job becomes active the limit token is released.

...

Code Block
titleLimit 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 control the number in the submitted state.

...