Athavan Kanpuli

Small thoughts about Software Engineering

Recent posts

Mar 10, 2024
Playing with RabbitMQ FederationHallo!!! I recently read about RabbitMQ Federation and wanted to experiment with its features to see if it could facilitate the migration of RabbitMQ clients across different clusters with near-zero downtime and no message loss.…
Feb 22, 2024
Understanding the Nuances of new() and make() in GoGo has couple of memory allocation primitives: new() and make(). new(T) new(T) is allocation primitive which allocates the memory for type T but zeros it.…
Feb 21, 2024
Problems With Mirrored QueuesLet’s talk about classic mirrored queues in Rabbitmq. To start with, what is even a Queue ? A queue is an ordered collection of messages.…