Set the Job Priority while jobs running using Email Arrived event

Dear Forum Members,

I have a scenario where I have two jobs Dispatcher and Performer which will run when a new email arrives in my inbox. I want to run first Distpather and then Performer, but the issue is Performer gets started first then dispatcher.

Even though I have set the Process priority as Dipatcher–>Low and Performer–> High.
I am am not using the queue here.

Can you please suggest any way, how to resolve this?

Thanks in advance.

@Yankit_Singh_R

  1. Trigger only dispatcher from email
  2. Then use start job activity in dispatcher to start the performer

Cheers

Hi @Yankit_Singh_R

There are couple of ways to do this, You Only need to run the dispatcher.

  1. Add the Queue item from dispatcher which in turn trigger the Performer to start processing.
  2. invoke the Performer directly from the Dispatcher once its task is done
  3. Orchestrator API to trigger the Performer job after the Dispatcher completes, giving you more control over job execution.

Hope this helps :slight_smile:

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.