9. Connecting to Azure Event Hubs
Event-based integration is a key pattern for implementing microservices. The idea of a microservices architecture is to decompose a monolithic application into a smaller set of services. Events are commonly used to coordinate between these different services. When you think about an event, it can be one of many things. Financial transactions can be an event, as well as IoT sensor data, web page clicks and views, and much more.
A piece of software that is commonly used to handle these types of events is Apache Kafka (Kafka for short). Kafka was originally developed by LinkedIn, and later donated to the Apache Software Foundation. It is a popular open-source streaming platform. A streaming platform is a platform that has three core capabilities: publishing and subscribing a stream of messages (similar to a queue), storing these streams in a durable fashion, and processing these streams as they occur.
Azure has a similar offer to Apache Kafka...