🎁 New User? Get 20% off your first purchase with code NEWUSER20 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

Docker Volume
A mechanism for persisting data generated by Docker containers, surviving container restarts and removals.
Immutable Deployment
A deployment strategy where new versions replace existing instances entirely rather than updating them in place.
Log Aggregation
The process of collecting, centralizing, and indexing log data from multiple sources for unified search and analysis.
Service Discovery
A mechanism that automatically detects and tracks the network locations of service instances in distributed systems.
SRE (Site Reliability Engineering)
An engineering discipline that applies software engineering principles to infrastructure and operations to create reliable systems.
Observability
The ability to understand a system's internal state from its external outputs through metrics, logs, and traces.
View All DevOps Terms →