Entries in Distributed System (1)

Sunday
Jul162023

Gossip Protocol Explained

You can subscribe to the system design newsletter to excel in system design interviews and software architectureThe original article was published on systemdesign.one website.



What Is Gossip Protocol?

The typical problems in a distributed system are the following [1], [11]:

  • maintaining the system state (liveness of nodes)
  • communication between nodes

The potential solutions to these problems are as follows [1]:

  • centralized state management service
  • peer-to-peer state management service

Click to read more ...