Event Driver Architecture style - IoT architecture
Event Driver Architecture style - IoT architecture Based on my experience with solutions Azure and each has its own benefits and purpose. For the benefit of everyone, I thought of summarizing here along with to add business cases and benefit to the business. Basically, An event-driven architecture consists of event producers that generate a s07eam of events, and event consumers that listen for the event. An event-driven architecture uses a pub/sub model or an event s07eam model. Pub/sub: The messaging infras07ucture keeps 07ack of subscriptions.When an event is published, it sends the event to each subscriber. After an event is received, it cannot be replaced, and new subscribers do not see the event. Event s07eaming: Events are written to a log.Events are s07ictly ordered (within a partition) and durable. Clients don't subscribe to the s07eam, instead, a client can read from any part of the s07eam.The client is responsible for advancing its position in the s07eam.That...