Service Bus PeekLock issue with Azure Function

1.4k Views Asked by At

I have multiple message in my Service Bus Topic and I would like to process this message one by one and on a Service Bus Trigger, it should get all the messages which has not been processed. and since I am doing testing and debugging, I would not like the messages to be completed i.e. if it is not completed it stays in the topic for any other services to consume.

I have started with Azure Function App with Service Bus Topic Trigger and have moved up til here where I get all the message in my log but once it is done, I don't get any other messages because all have been consumed and they move to the "Dead-letter message count", so its become very difficult for me to do any debugging and testing.

I would like to know how can I handle this with Azure Function Service Bus trigger where I run the Function see the body of my message in console, exit it and then do the necessary transformation and then repeat the process. Without service bus trigger, I can do it with PeekLock thing and dont allow any message to be completed, but how do i do it with Function as it seems to take the messages at once for triggering.

 namespace ServiceBusCopyFunction
{
    public static class GetMetadataFromSB
    {
        static ISubscriptionClient subscriptionClient;
        [FunctionName("GetMetadataFromSB")]
        public static void Run([ServiceBusTrigger("TopicNameSB", "SubscriptionNameSB", Connection = "AzureServiceBusString")] string mySbMsg, ILogger log)
        {
            log.LogInformation($"C# ServiceBus topic trigger function processed message: {mySbMsg}");

        }
    }
}
1

There are 1 best solutions below

3
On BEST ANSWER

You can deactivate the autoComplete functionality in the host.json file. Here's the reference: https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-service-bus-output?tabs=csharp#hostjson-settings

Example:

{
    "version": "2.0",
    "extensions": {
        "serviceBus": {
            "messageHandlerOptions": {
                "autoComplete": false
            }
        }
    }
}

So the messages won't get completed after processing them.