Inspiration
In the world of microservices, fast and reliable communication between them is a must for any event-driven or async architecture to be successful. Most of the service bus implementations in the market today rely on one or the other type of persistent queue. The challenges with persistent queues are:
- They introduce unnecessary delay when most of the subscribers are fast and can immediately consume the messages.
- They add to the cost of infra, in terms of storage, cpu etc.
- The operability and maintainability costs with persistent queues like kafka are also high,
What it does
OptimuS introduces the idea of fast path in the service bus implementation using Redis Pub/Sub i.e if the messages can be consumed by subscribers within the timeout defined by the producer, they will not be persisted. But, if due to some reason some consumer is slow, the messages are persisted to relevant kafka queue for the topic-subscriber which can be consumed by the slow consumer. The slow consumer can also add retryability, replayability etc.
This works because, in practice, most of the subscribers are fast most of the time and hence OptimuS helps to optimise delivery by being fast and saving costs!
How I built it
This solution has the following components:
- Redis Pub/Sub, for fast path.
- Kafka, for slow path.
- Zookeeper, to persist information of topic, subscribers and consumers listening on specific topics etc.
- Golang, the language of choice for concurrency, for writing
- the gateway layer, and
- the consumer layer
Challenges I ran into
No specific challenges as such, but time crunch on implementing the solution end to end.
Accomplishments that I'm proud of
Able to boot up the MVP in such a short period.
What I learned
The power of Redis :P
What's next for OptimuS: Optimized Service Bus
Make it production grade
Log in or sign up for Devpost to join the conversation.