How to set the number of Jobs when running with FillingModeFlag = True #6117
-
It used to be MaxJobsInFillMode in the SiteDirector (and confusingly that option still seems to be there on the certification server), but that option seems to have been removed in v7r1. How is this meant to work these days ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The option was removed in DIRAC v7r1p26 through #4926 as not fitting properly with PoolCE logic. The maximum number of jobs in filling mode can be indirectly set by specifying the number of cycles of the JobAgent. Note that Pilots hardcode a bunch of options if |
Beta Was this translation helpful? Give feedback.
The option was removed in DIRAC v7r1p26 through #4926 as not fitting properly with PoolCE logic. The maximum number of jobs in filling mode can be indirectly set by specifying the number of cycles of the JobAgent.
This can be set, CEType by CEType, or CE by CE or queue by queue with
ExtraPilotOptions = -M x
wherex
is the number of cycles (which is 10 by default).Note that Pilots hardcode a bunch of options if
CEType==Pool
: https://github.com/DIRACGrid/Pilot/blob/master/Pilot/pilotCommands.py#L985-L992