https://github.com/marvin9/distributed-algorithms
basic terminal simulation of election algorithms - a) bully algorithm
https://github.com/marvin9/distributed-algorithms
bully-algorithm coordinator coordinator-election-problem distributed-systems election-algorithm simulation
Last synced: 4 months ago
JSON representation
basic terminal simulation of election algorithms - a) bully algorithm
- Host: GitHub
- URL: https://github.com/marvin9/distributed-algorithms
- Owner: Marvin9
- Created: 2020-12-17T11:10:53.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-12-17T16:47:34.000Z (over 4 years ago)
- Last Synced: 2025-01-09T05:31:33.940Z (5 months ago)
- Topics: bully-algorithm, coordinator, coordinator-election-problem, distributed-systems, election-algorithm, simulation
- Language: Go
- Homepage:
- Size: 185 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Distributed algorithm
- A distributed algorithm is an algorithm, run on a distributed system, that does not assume the previous existence of a central coordinator.
### Election algorithms
- An election algorithm is an algorithm for solving the coordinator election problem. By the nature of the coordinator election problem, any election algorithm must be a distributed algorithm.
-a group of processes on different machines need to choose a coordinator> This repository contains basic simulation of bully-algorithm.
[Reference](http://www2.cs.uregina.ca/~hamilton/courses/330/notes/distributed/distributed.html)