Reputation: 27
What are the advantages of using azure service bus to listen and/or publish messages with azure functions compare to using service bus without functions?
Upvotes: -1
Views: 1391
Reputation: 201
It worthwhile mentioning two important points regarding your question:
1- Cost saving: Azure functions are serverless computing. That is, you pay only for the execution time your code spend running. Otherwise you will not be charged at all :)
2- Scalability: If your service bus has lots of data, you can easily make use of Azure scaling options to handle all that traffic.
Upvotes: 1
Reputation:
AFAIK,
It means, Azure Functions has great functionalities when integrated with Service Bus.
Azure Functions are great when you want to execute for background services like processing items on queues but it is not that great when users are waiting for the result because it might take some time to start the function.
Do you want to include messaging into your solution in a matter of minutes and with minimal code?
Upvotes: 1