mq-bridge library
┌────── mq-bridge-lib ──────┐
──────┴───────────────────────────┴──────
mq-bridge is an asynchronous message library for Rust. It connects different messaging systems, data stores, and protocols. Unlike a classic bridge that simply forwards messages, mq-bridge acts as a programmable integration layer, allowing for transformation, filtering, routing and event/command handling. It is built on Tokio and supports patterns like retries, dead-letter queues, and message deduplication.
Features
- Supported Backends: Kafka, NATS, AMQP (RabbitMQ), MQTT, MongoDB, HTTP, ZeroMQ, Files, AWS (SQS/SNS), IBM MQ, and in-memory channels.
Note: IBM MQ is not included in the
fullfeature set. It requires theibm-mqfeature and the IBM MQ Client library. See mqi crate for installation details. - Configuration: Routes can be defined via YAML, JSON or environment variables.
- Programmable Logic: Inject custom Rust handlers to transform or filter messages in-flight.
- Middleware:
- Retries: Exponential backoff for transient failures.
- Dead-Letter Queues (DLQ): Redirect failed messages.
- Deduplication: Message deduplication using
sled.
- Concurrency: Configurable concurrency per route using Tokio.
Philosophy & Focus
mq-bridge is designed as a programmable integration layer. Its primary goal is to decouple your application logic from the underlying messaging infrastructure.
Unlike libraries that enforce specific architectural patterns (like strict CQRS/Event Sourcing domain modeling) or concurrency models (like Actors), mq-bridge remains unopinionated about your domain logic. Instead, it focuses on reliable data movement and protocol abstraction.
Status
This library was created in 2025 and is still kind of new. There are automated unit and integration tests. There are integration tests for consumers and publishers to verify that they are working as expected with standard docker containers of the latest stable version.
It may still be possible that there are issues with
- old or very new versions of broker servers
- specific settings of the brokers
- subscribers, as those haven't been tested a lot
- TLS integration, as this also hasn't been tested a lot and is usually non-trivial to set up
When to use mq-bridge
- Hybrid Messaging: Connect systems speaking different protocols (e.g., MQTT to Kafka) without writing custom adapters.
- Infrastructure Abstraction: Write business logic that consumes
CanonicalMessages, allowing you to swap the underlying transport (e.g., switching from RabbitMQ to NATS) via configuration. - Resilient Pipelines: Apply uniform reliability patterns (Retries, DLQ, Deduplication) across all your data flows.
- Sidecar / Gateway: Deploy as a standalone service to ingest, filter, and route messages before they reach your core services.
When NOT to use mq-bridge
- Stateful Stream Processing: For windowing, joins, or complex aggregations over time, dedicated stream processing engines are more suitable.
- Domain Aggregate Management: If you need a framework to manage the lifecycle, versioning, and replay of domain aggregates (Event Sourcing), use a specialized library.
mq-bridgehandles the bus, not the entity. - Specialization:
mq-bridgefocuses on a subset of messaging patterns like pub/sub and batching, emulating them if not natively supported. If you need very specific features from a messaging library or protocol, the abstraction layer ofmq-bridgemay prevent you from using them.
Core Concepts
- Route: A named data pipeline that defines a flow from one
inputto oneoutput. - Endpoint: A source or sink for messages.
- Middleware: Components that intercept and process messages (e.g., for error handling).
- Handler: A programmatic component for business logic, such as transforming/consuming messages (
CommandHandler) or subscribe them (EventHandler).
Endpoint Behavior
Different backends and modes (consumer vs subscriber) have different persistence guarantees.
| Backend | Mode | Persistence | Description |
|---|---|---|---|
| Kafka | Consumer | Persistent | Uses consumer groups. Resumes from last committed offset. |
| Subscriber | Ephemeral* | Unique group ID per instance. Starts at latest. (*Persistent if subscribe_id is set). |
|
| NATS | Consumer | Persistent | Uses JetStream durable consumers. |
| Subscriber | Ephemeral | Uses ephemeral consumers. Receives only new messages. | |
| AMQP | Consumer | Persistent | Uses durable queues. |
| Subscriber | Ephemeral | Uses temporary, auto-delete queues. | |
| MQTT | Consumer | Configurable | Depends on clean_session. |
| Subscriber | Ephemeral | Unique Client ID per instance. | |
| IBM MQ | Consumer | Persistent | Reads from a defined queue. |
| Subscriber | Ephemeral | Uses non-durable managed subscriptions. | |
| MongoDB | Consumer | Persistent | Documents stored until acknowledged. |
| Subscriber | Ephemeral | Change Streams / Polling from current time. | |
| AWS | Consumer | Persistent | Uses SQS queues. |
| Subscriber | - | Not supported. | |
| Memory | All | Ephemeral | Lost on restart. |
| File | All | Persistent | Stored on disk. |
| HTTP | All | Ephemeral | Direct request/response. |
| ZeroMQ | Consumer | Ephemeral | Uses PULL/REP sockets. |
| Subscriber | Ephemeral | Uses SUB sockets. |
Usage
There is a separate repository to use mq-bridge as standalone app, for example as docker container that can be configured via yaml or env variables: https://github.com/marcomq/mq-bridge-app
Programmatic Handlers
For implementing business logic, mq-bridge provides a handler layer that is separate from transport-level middleware. This allows you to process messages programmatically.
Raw Handlers
CommandHandler: A handler for 1-to-1 or 1-to-0 message transformations. It takes a message and can optionally return a new message to be passed down the publisher chain.EventHandler: A terminal handler that reads new messages without removing them for other event handlers.
You can chain these handlers with endpoint publishers.
use Handler;
use ;
use Arc;
// Define a handler that transforms the message payload
let command_handler = ;
// Attach the handler to a route
// let route = Route { ... }.with_handler(command_handler);
Typed Handlers
For more structured, type-safe message handling, mq-bridge provides TypeHandler. It deserializes messages into a specific Rust type before passing them to a handler function. This simplifies message processing by eliminating manual parsing and type checking.
Message selection is based on the kind metadata field in the CanonicalMessage.
use TypeHandler;
use ;
use Deserialize;
use Arc;
// 1. Define your message structures
// 2. Create a TypeHandler and register your typed handlers
let typed_handler = new
.add
.add;
// 3. Attach the handler to a route
// let route = Route { ... }.with_handler(typed_handler);
// 4. A message with metadata `kind: "create_user"` will be deserialized
// into a `CreateUser` struct and passed to the first handler.
Programmatic Usage
You can define and run routes directly in Rust code.
use ;
use Handled;
use ;
use Duration;
use timeout;
async
Patterns: Request-Response
mq-bridge supports request-response patterns, essential for building interactive services (e.g., web APIs). This pattern allows a client to send a request and wait for a correlated response. Due to the asynchronous nature of messaging, ensuring the correct response is delivered to the correct requester is critical, especially under concurrent loads.
mq-bridge offers two ways to handle this, with the response output being the most direct and safest for handling concurrency.
The response Output Endpoint (Recommended)
The recommended approach for request-response is to use the dedicated response endpoint in your route's output.
How it works:
- An input endpoint that supports request-response (like
http) receives a request. - The message is passed through the route's processing chain. This is where you typically attach a
handlerto process the request and generate a response payload. - The final message is sent to the
output. - If the output is
response: {}, the bridge sends the message back to the original input source, which then sends it as the reply (e.g., as an HTTP response).
This model inherently solves the correlation problem. The response is part of the same execution context as the request, so there's no risk of mixing up responses between different concurrent requests.
Example: HTTP API Gateway
Consider a route that exposes an HTTP endpoint. For each request, it executes a handler to produce a result and returns it to the client.
YAML Configuration (mq-bridge.yaml):
api_gateway:
concurrency: 10 # Handle up to 10 requests concurrently
input:
http:
url: "0.0.0.0:8080"
output:
# The 'response' endpoint sends the processed message back to the HTTP client.
# A handler must be attached programmatically to generate the response.
response:
Programmatic Handler Attachment (in Rust): You would then load this configuration and attach a handler to the route's output endpoint in your Rust code.
use ;
use CanonicalMessage;
async
Patterns: CQRS
mq-bridge is well-suited for implementing Command Query Responsibility Segregation (CQRS). By combining Routes with Typed Handlers, the bridge serves as both the Command Bus and the Event Bus.
- Command Bus: An input source (e.g., HTTP) receives a command. A TypeHandler processes it (Write Model) and optionally emits an event.
- Event Bus: The emitted event is published to a broker (e.g., Kafka). Downstream routes subscribe to these events to update Read Models (Projections).
// 1. Command Handler (Write Side)
let command_bus = new
.add;
// 2. Event Handler (Read Side / Projection)
let projection_handler = new
.add;
Configuration Reference
The best way to understand the configuration structure is through a comprehensive example. mq-bridge uses a YAML map where keys are route names.
# mq-bridge.yaml
# Route 1: Kafka to NATS
kafka_to_nats:
concurrency: 4
input:
kafka:
url: "localhost:9092"
topic: "orders"
group_id: "bridge_group"
# TLS Configuration (Optional)
tls:
required: true
ca_file: "./certs/ca.pem"
output:
nats:
url: "nats://localhost:4222"
subject: "orders.processed"
stream: "orders_stream"
# Route 2: HTTP Webhook to MongoDB with Middleware
webhook_to_mongo:
input:
http:
url: "0.0.0.0:8080"
# Optional: Send response back to HTTP caller via another endpoint
response_out:
static: "Accepted"
middlewares:
- retry:
max_attempts: 3
initial_interval_ms: 500
output:
mongodb:
url: "mongodb://localhost:27017"
database: "app_db"
collection: "webhooks"
# Route 3: File to AMQP (RabbitMQ)
file_ingest:
input:
file: "./data/input.jsonl"
output:
amqp:
url: "amqp://localhost:5672"
exchange: "logs"
queue: "file_logs"
# Route 4: AWS SQS to SNS
aws_sqs_to_sns:
input:
aws:
# To consume from SNS, subscribe this SQS queue to the SNS topic in AWS Console/Terraform.
queue_url: "https://sqs.us-east-1.amazonaws.com/000000000000/my-queue"
region: "us-east-1"
# Credentials (optional if using env vars or IAM roles)
access_key: "test"
secret_key: "test"
output:
aws:
topic_arn: "arn:aws:sns:us-east-1:000000000000:my-topic"
region: "us-east-1"
# Route 5: IBM MQ Example
ibm_mq_route:
input:
ibm_mq:
queue_manager: "QM1"
connection_name: "localhost(1414)"
channel: "DEV.APP.SVRCONN"
queue: "DEV.QUEUE.1"
user: "app"
password: "admin"
output:
memory:
topic: "received_from_mq"
# Route 6: MQTT to Switch (Content-based Routing)
iot_router:
input:
mqtt:
url: "mqtt://localhost:1883"
topic: "sensors/+"
qos: 1
output:
switch:
metadata_key: "sensor_type"
cases:
temp:
kafka:
url: "localhost:9092"
topic: "temperature"
default:
memory:
topic: "dropped_sensors"
# Route 7: ZeroMQ PUSH/PULL
zeromq_pipeline:
input:
zeromq:
url: "tcp://0.0.0.0:5555"
socket_type: "pull"
bind: true
output:
zeromq:
url: "tcp://localhost:5556"
socket_type: "push"
bind: false
Configuration Details
Environment Variables
All YAML configuration can be overridden with environment variables. The mapping follows this pattern:
MQB__{ROUTE_NAME}__{PATH_TO_SETTING}
For example, to set the Kafka topic for the kafka_to_nats route:
Middleware Configuration
Middleware is defined as a list under an endpoint.
input:
middlewares:
- retry:
max_attempts: 5
initial_interval_ms: 200
- dlq:
endpoint:
nats:
subject: "my-dlq-subject"
url: "nats://localhost:4222"
- deduplication:
sled_path: "/var/data/mq-bridge/dedup_db"
ttl_seconds: 3600 # 1 hour
kafka:
# ... kafka config
Specialized Endpoints
Switch
The switch endpoint is a conditional publisher that routes messages to different outputs based on a metadata key.
It checks the specified metadata_key in each message. If the key's value matches one of the cases, the message is forwarded to that endpoint. If no case matches, it's sent to the default endpoint. If there is no default, the message is dropped.
This is useful for content-based routing.
Example: Route orders to different systems based on country_code metadata.
output:
switch:
metadata_key: "country_code"
cases:
US:
kafka:
topic: "us_orders"
url: "kafka-us:9092"
EU:
nats:
subject: "eu_orders"
url: "nats-eu:4222"
default:
file:
path: "/var/data/unroutable_orders.log"
IDE Support (Schema Validation)
mq-bridge includes a JSON schema for configuration validation and auto-completion.
- Ensure you have a YAML plugin installed (e.g., YAML for VS Code).
- Configure your editor to reference the schema. For VS Code, add this to .vscode/settings.json:
To regenerate the schema from this repo, run: cargo test --features schema
Running Tests
The project includes a comprehensive suite of integration and performance tests that require Docker.
To run the performance benchmarks for all supported backends:
To run the criterion benchmarks:
The times are not stable yet, it is therefore recommended to perform the integration performance test if you want to measure throughput.
License
mq-bridge is licensed under the MIT License.