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

YAML
A human-readable data serialization language commonly used for configuration files in DevOps tools and applications.
GitOps
A practice where Git repositories serve as the single source of truth for both application code and infrastructure configuration.
Containerization
A lightweight virtualization method that packages applications with their dependencies into isolated, portable containers.
Docker
A platform for building, shipping, and running applications in lightweight, isolated containers.
Grafana
An open-source analytics and visualization platform for creating dashboards from various data sources.
Nginx
A high-performance web server and reverse proxy known for its stability, low resource usage, and ability to handle many concurrent connections.
View All DevOps Terms โ†’