How to disable Parallel processes execution on Job Service

Hi all,

I know that the JOB Server execute more then one process on the same time (parallel processing).

For a particular custom target system I need to execute the processes one at a time because I have only one exteranal instance that I can call to execute my command.

I can install a dedicated job service but :

There is a way to execute the queue step by step ?

Is it possible to disable the parallel processing ?

Thank you very much and best regards

Ermes

Parents
  • Do you use a sync project or a script to talk to the target system? If it is a script you can just use the ScriptExecSingle(32) task. It ensures that a specific process step is serialized inside of one queue.

    Another option is to set the number of execution slot for the queue running your jobs to 1 for the slot type you are using (internal, external or external32).

Reply
  • Do you use a sync project or a script to talk to the target system? If it is a script you can just use the ScriptExecSingle(32) task. It ensures that a specific process step is serialized inside of one queue.

    Another option is to set the number of execution slot for the queue running your jobs to 1 for the slot type you are using (internal, external or external32).

Children