Skip to content
Legacy docs for Tenzir v5.x. For the latest Tenzir v6 series, visit docs.tenzir.com. Migrating from v5? Read the Tenzir v6 migration guide.

The Advanced Message Queuing Protocol (AMQP) is an open standard for message-oriented middleware. It defines how producers, exchanges, queues, and consumers route messages between systems.

The diagram below shows the key abstractions and how they relate to a pipeline:

AMQP Serveramqp://user:pass@127.0.0.1:5672/vhostExchangeQueueBindingconsumeproduceamq.direct

Tenzir supports sending and receiving messages via AMQP version 0-9-1.

from {
x: 42,
y: "foo",
}
to "amqp://admin:pass@0.0.0.1:5672/vhost"
from "amqp://admin:pass@0.0.0.1:5672/vhost"

Last updated: