diff --git a/webservice/webservice.py b/webservice/webservice.py index 70cd401078b8288e021f96cf3de51ab384b17f35..dacc6302d491037e95c67e7256e5cec9e86a8b2e 100644 --- a/webservice/webservice.py +++ b/webservice/webservice.py @@ -654,7 +654,7 @@ async def server_runner(config, mode): for detector, dconfig in pconf[instrument].items(): # check if we find files according # to mapping in raw run folder - if detector not in det_list and det_list[0]!='all': + if detector not in det_list and det_list[0] != 'all': continue fl = glob.glob( "{}/RAW-*{}*.h5".format(rpath, dconfig["inset"])) @@ -688,9 +688,15 @@ async def server_runner(config, mode): if detector.upper() in ["JUNGFRAU", "FASTCCD", "PNCCD", "EPIX", "EPIX10K"]: priority = '0' + + # --slurm-scheduling is the --nice slurm command + # to increase priority by having a lower number. cmd = ["python", "-m", "xfel_calibrate.calibrate", detector, "DARK", '--priority', priority, - '--slurm-scheduling', str(config[action]['sched-prio'])] #noqa + '--slurm-scheduling', str(config[action]['sched-prio']), # noqa + '--slurm-name', '{}_{}_{}_{}_p{}_r{}' + .format(action, instrument, detector, cycle, + proposal, "_r".join(wait_runs))] # Avoid giving a reservation parameter after the # ITDM changes for giving xcal high priority by default @@ -757,9 +763,16 @@ async def server_runner(config, mode): for detector, dconfig in detectors.items(): if "-" in detector: detector, _ = detector.split("-") + + # --slurm-scheduling is the --nice slurm command + # to increase priority by having a lower number. cmd = ["python", "-m", "xfel_calibrate.calibrate", detector, "CORRECT", '--slurm-scheduling', - str(config[action]['sched-prio'])] + str(config[action]['sched-prio']), '--slurm-name', + '{}_{}_{}_{}_p{}_r{}'.format(action, instrument, + detector, cycle, + proposal, + "_r".join(wait_runs))] cmd = await parse_config(cmd, dconfig) diff --git a/webservice/webservice.yaml b/webservice/webservice.yaml index 542cdbf6e2fcdfbdcb9a125f544b2a5c3baaafee..c4b138b761e3d54bc72c1ab056f84b8046b3cfe9 100644 --- a/webservice/webservice.yaml +++ b/webservice/webservice.yaml @@ -25,7 +25,7 @@ metadata-client: correct: in-folder: /gpfs/exfel/exp/{instrument}/{cycle}/p{proposal}/raw out-folder: /gpfs/exfel/d/proc/{instrument}/{cycle}/p{proposal}/{run} - sched-prio: 100 + sched-prio: 80 dark: in-folder: /gpfs/exfel/exp/{instrument}/{cycle}/p{proposal}/raw