I have a long running process which I call in my Service Bus Queue. I want it to continue beyond 5 minutes
I have a long running process which performs matches between millions of records I call this code using a Service Bus, However when my process passes the 5 minute limit Azure starts processing the already processed records from the start again. How can I avoid this Here is my code: private static async Task ProcessMessagesAsync(Message message, CancellationToken token) { long receivedMessageTrasactionId = 0; try { IQueueClient queueClient = new QueueClient(serviceBusConnectionString, serviceBusQueueName, ReceiveMode.PeekLock); // Process the message receivedMessageTrasactionId = Convert