ServiceBusTrigger and ServiceBus outpub binding in a transaction
See original GitHub issueAzure Service Bus supports a transactional processing of an incoming message with emitting the outgoing messages using TransactionScope
and Send-Via feature.
As of today (using Functions 2.0 / WebJobs 3.0) there’s no way to achieve this as ServiceBusTrigger
and ServiceBusAttribute
used for collectors do not share the same ServiceBusConnection
.
- Is this going to be supported?
- While the support for transactional messaging is not there, is there a way to get access to the receiver’s connection to be used from the function to emit messages bypassing collector?
Issue Analytics
- State:
- Created 4 years ago
- Comments:7 (3 by maintainers)
Top Results From Across the Web
Azure Service Bus bindings for Azure Functions
Azure Functions integrates with Azure Service Bus via triggers and bindings. Integrating with Service Bus allows you to build functions that ...
Read more >Transactional messaging with Azure Functions and Service Bus
Triggers and output bindings can be of different types. For example, a trigger could be an Azure Service Bus message, while an output ......
Read more >Isolated Function handling Service Bus output binding ...
For Service Bus there is transaction scope to make sure both, completion of incoming message and sending outgoing message, are successful. But ...
Read more >Azure function app, service bus and return service bus
I have an azure function with a service bus input attribute and service bus output attribute set. This means that whatever I return...
Read more >Handle Azure Service Bus Messages Queue Using ...
There are several ways to process message in a Service Bus Messages Queue. One way is by using a console application and then...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
https://docs.microsoft.com/en-us/azure/azure-functions/functions-bindings-service-bus#hostjson-settings
"autoComplete": false
🤦♂️ Fantastic, thank you!