Azure Service Bus fundamentals
You have already learned about other messaging solutions, which allow you to ease communication between your services, and all are characterized by different features. In Azure Event Hubs, you were able to process thousands of messages per second, while with Azure Queue Storage, you were given a reliable and durable solution that you could use to work asynchronously on ingested data. In this chapter, we will discuss Azure Service Bus, a multi-tenant cloud messaging service that introduces advanced concepts such as first-in, first-out (FIFO) messaging, dead lettering, or transactions. It is an enterprise-class cloud component able to integrate many different services and applications. To understand the topic, we will start by comparing available messaging solutions.
Azure Service Bus versus other messaging services
In the previous chapters, we discussed the following services, which allowed us to process...