๐ŸŽ 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

Container Orchestration
The automated management of containerized applications including deployment, scaling, networking, and health monitoring across clusters.
Configuration Management
The practice of systematically managing and maintaining consistent server configurations across infrastructure.
Vault
A tool by HashiCorp for securely managing secrets, encryption keys, and certificates with dynamic secret generation.
Microservices
An architectural style where an application is composed of small, independent services that communicate over APIs.
Log Aggregation
The process of collecting, centralizing, and indexing log data from multiple sources for unified search and analysis.
Artifact Repository
A centralized storage system for build artifacts like compiled binaries, packages, and container images used in CI/CD pipelines.
View All DevOps Terms โ†’