We are receiving a message from Azure Service Bus Queue. The receiver (message handler) on the queue, calls an Application Service, which updates a Million+ records in a SQL Database table, process takes more than 30 min.
Does Azure service bus queue have a timeout limit? Will this cause SQL Table process to stop updating rows?
The actual Service Bus Message queue which is being Sent is pretty small, its just a Year
and ProductType
. Then the app service method will take the two parameters, and update the whole sql table.
Azure Service Bus Queue Method ---> Service Bus Message Receives (Event Handler) ---> Calls App Service to Update SQL Table