azure-messaging

Select Azure messaging services for workload-specific delivery guarantees and patterns.

16|1|Updated Apr 20, 2026
One-click install
npx skills add https://github.com/manu14357/skills --skill azure-messaging-manu14357
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: azure-messaging
Source: https://github.com/manu14357/skills/tree/main/skills/azure-messaging
Command: npx skills add https://github.com/manu14357/skills --skill azure-messaging-manu14357

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Azure messaging involves choosing and configuring the right Azure service for reliable, decoupled event-driven systems, including retries, dead-lettering, and idempotency.

Core Features & Use Cases

  • Choose appropriate Azure messaging service (Storage Queues, Service Bus, Event Hubs, and Event Grid) based on throughput and semantics.
  • Configure delivery guarantees and dead-lettering, retries, idempotency.
  • Design end-to-end patterns (queue-based workflows, pub-sub, streaming) with examples.

Quick Start

Map your scenario to an Azure messaging pattern (queue, pub-sub, or stream) and draft the service choices, delivery guarantees, and basic wiring.

Frequently Asked Questions about azure-messaging

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
When should I use Azure Service Bus versus Event Hubs for messaging?

Azure Service Bus is designed for high-value enterprise messaging with commands and pub-sub, whereas Event Hubs is optimal for high-throughput telemetry and streaming data scenarios.

How do I configure dead-lettering and retries in Azure messaging services?

Configure dead-lettering and retries in Azure messaging by setting delivery guarantee policies on Service Bus or Storage Queues, routing failed messages to DLQs after exhausting retry limits.

What is the best way to achieve idempotency in Azure event-driven architectures?

Idempotency in Azure event-driven architectures is achieved by designing message consumers that safely handle duplicate deliveries, preventing side effects when retries occur across Service Bus or Event Grid.

Can I use Azure Event Grid for decoupled pub-sub workflows?

Azure Event Grid is purpose-built for decoupled pub-sub workflows, enabling reactive event-driven architectures by routing events from Azure services to subscribers based on content filters.

How do I choose the optimal Azure messaging service for my workload?

Choose the optimal Azure messaging service by mapping your workload requirements to service capabilities: Storage Queues for simple async processing, Service Bus for commands, and Event Hubs for streaming.

Does Azure Service Bus support message ordering and access control?

Azure Service Bus supports message ordering through sessions and provides robust access control, allowing secure retention policies and scalable monitoring across decoupled messaging workflows.