Logic app Service bus connector default Receive mode ?

Amar-Azure-Practice 656 Reputation points
2021-09-25T19:23:32.783+00:00

Hi

In logic app service bus trigger, what is the default message received mode read type is that PeekLock or ReceiveandDelete mode?

Is there any way we can change this in the logic app service bus connector.

Azure Service Bus
Azure Service Bus
An Azure service that provides cloud messaging as a service and hybrid integration.
553 questions
Azure Logic Apps
Azure Logic Apps
An Azure service that automates the access and use of data across clouds without writing code.
2,873 questions
0 comments No comments
{count} votes

Accepted answer
  1. MayankBargali-MSFT 68,746 Reputation points
    2021-09-27T06:42:50.9+00:00

    @Amar-Azure-Practice The connector internal handles the mode of reading the messages from service bus entity depending what action/trigger you are using. The configuration is not exposed as different trigger/action uses different mode.

    If you are using trigger when a message is received in a queue (peek-lock) then internally it will peek and lock the message at the service bus end and you need to call complete the message in a queue so the message is delete.

    When you are using when a message is received in a queue (auto-complete) trigger then internally it will call auto complete on the message and the message will be deleted once the trigger is executed. You can refer to Service Bus connector document for more details on the trigger and action avaiable.

    0 comments No comments

0 additional answers

Sort by: Most helpful