๐ŸŽ New User? Get 20% off your first purchase with code NEWUSER20 ยท โšก Instant download ยท ๐Ÿ”’ Secure checkout Register Now โ†’
Menu

Categories

DevOps Intermediate

What is Message Queue?

A communication mechanism that enables asynchronous message passing between services, decoupling producers from consumers.

Message queues store messages until consumers process them, enabling asynchronous communication. Producers send messages without waiting for consumers, improving system resilience and scalability. If a consumer is down, messages queue up and are processed later.

Popular systems include RabbitMQ (traditional messaging), Apache Kafka (event streaming), AWS SQS (managed queue), and Redis Streams. Use cases include order processing, email sending, log processing, and event-driven architectures.

Related Terms

GitHub Actions
A CI/CD platform integrated into GitHub that automates build, test, and deployment workflows using YAML configuration.
Continuous Deployment
A practice where every code change that passes automated tests is automatically deployed to production.
Terraform
An open-source tool for provisioning and managing cloud infrastructure using declarative configuration files.
Error Budget
The acceptable amount of unreliability allowed for a service, calculated as 100% minus the Service Level Objective.
ELK Stack
A popular log management platform combining Elasticsearch (search), Logstash (processing), and Kibana (visualization).
Makefile
A file containing build rules and commands that automates compilation and common project tasks using the make utility.
View All DevOps Terms โ†’