Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nixhantb/distributed-message-broker-engine
Distributed Message Queuing Protocol for Message Broker System
https://github.com/nixhantb/distributed-message-broker-engine
load-balancer message-broker message-queue protocols proxy pubsub queues server tcp
Last synced: 1 day ago
JSON representation
Distributed Message Queuing Protocol for Message Broker System
- Host: GitHub
- URL: https://github.com/nixhantb/distributed-message-broker-engine
- Owner: nixhantb
- Created: 2024-07-25T11:25:13.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-10-15T16:18:52.000Z (about 1 month ago)
- Last Synced: 2024-10-16T19:09:45.839Z (30 days ago)
- Topics: load-balancer, message-broker, message-queue, protocols, proxy, pubsub, queues, server, tcp
- Language: C#
- Homepage: https://nixhantb.github.io/Distributed-Message-Broker-Engine/
- Size: 342 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Distributed Message Queuing Protocol for Message Broker System from Scratch
[Official Documentation](https://nixhantb.github.io/Distributed-Message-Broker-Engine/)
This project involves the design and implementation of a custom message broker system from scratch, based on a distributed message queuing protocol. The system aims to facilitate efficient, reliable, and scalable communication between services in a distributed environment. Key features include topic-based publish/subscribe messaging, robust message routing, durable message storage, and high availability through clustering. This project will also incorporate security measures such as authentication, authorization, and encryption, along with comprehensive monitoring and management tools to ensure optimal performance and reliability.
## Initial Design
![Message Broker Design](docs/high-level-design.png)### Key Features
Key Features:
Message Queuing: Support for reliable message enqueueing and dequeueing.
Topic-Based Pub/Sub: Enable publish/subscribe messaging using topics for flexible communication patterns.
Routing: Intelligent message routing to appropriate queues or topics.
Durable Storage: Options for persistent message storage to ensure message reliability.
Scalability: Clustering and load balancing for handling high traffic and ensuring fault tolerance.
Security: Implement authentication, authorization, and encryption to secure message exchanges.
### Outcome
Deep understanding of distributed systems, networking, and messaging protocols along with load balancing, Authentication, Authorization, Encryption.
### Theory
- Producers:
Send messages to Topics. Producers are responsible for generating and publishing messages.- Topics:
Hold and route messages. In some messaging systems, a Topic is used for publish-subscribe messaging, where multiple subscribers can receive messages sent to a single topic.
Typically, a topic does not store messages for a long time but immediately routes them to appropriate queues or subscribers, depending on the subscription model.
- Persistence/Queueing: In certain configurations, topics can temporarily store or queue messages for durability until they are routed to subscribers or consumers.- Load Balancer:
Balances the traffic between producers and subscribers.
Helps distribute messages efficiently among Broker Instances or subscribers, especially under high load, ensuring that no single component becomes overwhelmed.- Queues:
Store messages until they are consumed by subscribers. Queues ensure that messages are durable and can be processed at the right time, particularly in a point-to-point communication model.
Subscribers can pull or receive messages from the queue based on their availability.- Broker Instances:
Manage the queues and other resources.
Ensure that messages are delivered efficiently between producers and subscribers. They are responsible for routing, storing, and forwarding messages.
Multiple broker instances are usually deployed in clusters to provide high availability and fault tolerance.- TCP Communication:
Handles reliable communication between the components (producers, brokers, subscribers). TCP ensures that messages are transmitted accurately and in order, even over unreliable networks.- Routing Algorithms:
Ensure efficient message delivery by determining how messages are routed between brokers, queues, and subscribers. Common routing algorithms include round-robin, least connections, or more sophisticated strategies like hash-based routing to ensure load balancing and proper message distribution.This design is common in systems like RabbitMQ, Kafka, and ActiveMQ, which support robust, scalable, and reliable messaging across distributed systems. Your system could adopt these concepts, with customizations based on your specific needs.