In my .NET Core application, I’m using MassTransit Job Consumer to run some long-running jobs. However, I noticed that the jobs that are submitted concurrently (within a few seconds) seem to be distributed to the Job Consumer in LIFO order, which is opposed to FIFO in normal message consumers. Is that an expected behavior? If so, how can I make it to use FIFO? FYI – I’m using Sql Server for Saga Repository.