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

Docker Volume
A mechanism for persisting data generated by Docker containers, surviving container restarts and removals.
Makefile
A file containing build rules and commands that automates compilation and common project tasks using the make utility.
Postmortem
A structured analysis conducted after an incident to understand what happened, why, and how to prevent recurrence โ€” without assigning blame.
Vault
A tool by HashiCorp for securely managing secrets, encryption keys, and certificates with dynamic secret generation.
Kubernetes Secret
A Kubernetes object for storing sensitive data like passwords, tokens, and certificates, with base64 encoding and optional encryption at rest.
Ansible
An agentless automation tool for configuration management, application deployment, and task automation using YAML playbooks.
View All DevOps Terms โ†’