Distributed Events Correspondance

Correspondence of events or filtering of notifications is the main task of a Publish-Subscribe system.

The assumption is that the distributed system is capable of corresponding between subscriptions and events.

Easy solution

  • Node centralizes subscriptions and receives every event.

Distributed solution

  • Subscriptions are distributed between many nodes.

  • Events are routed to the correct nodes (flooding, gossip, routing filters).

Last updated