Document updated on Jan 21, 2022
Since | v2.0 |
---|---|
Log prefix | [ASYNC: AgentName][AMQP] |
Scope | async_agent |
Source | luraproject/lura |
The AMQP driver for Async agents allows you to have KrakenD consuming AMQP queues autonomously. Routines listening to AMQP queues will react by themselves to new events and push data to your backends.
This driver is different from the AMQP backend consumer. As opposed to endpoints, async agents do not require users to request something to trigger an action. Instead, the agents connect to the queue and fire an action when an event is delivered.
The AMQP driver has to be placed inside the extra_config
of the async component and allows you connect to an AMQP queue (e.g: RabbitMQ). The settings are as follows:
{
"async/amqp": {
"host": "amqp://guest:guest@localhost:5672/",
"name": "krakend",
"exchange": "foo",
"durable": true,
"delete": false,
"exclusive": false,
"no_wait": true,
"prefetch_count": 5,
"auto_ack": false,
"no_local": true
}
}
| When KrakenD retrieves the messages, regardless of the success or failure of the operation, it marks them as ACK. When auto ACK is not used, only successful backend responses do the ACK, and failing messages are requeued. Defaults to false .Defaults to false |
| When true , AMQP deletes the queue when there are no remaining connections. This option is not recommended in most of the scenarios. If for instance, the connectivity between KrakenD and AMQP is lost for whatever reason and it’s the only client, AMQP will delete the queue no matter the number of messages there are inside, and when KrakenD gets the connection again the queue won’t exist and future connections will recreate it again.Defaults to false |
| Durable queues will survive server restarts and remain when there are no remaining consumers or bindings. Most of the times true is recommended, but depends on the use case.Defaults to false |
| The entity name where messages are retrieved (it will be created, or it must have a topic type if already exists). Example: "some-exchange" |
| When true , AMQP will allow a single KrakenD client to access the queue. This option is not recommended in environments where the gateway needs high availability and you have several instances running.Defaults to false |
| The connection string, ends in slash. E.g: amqp://user:password@host:5672/ . |
| The queue name. |
| The no_local flag is not supported by RabbitMQ. |
| When true, do not wait for the server to confirm the request and immediately begin deliveries. If it is not possible to consume, a channel exception will be raised and the channel will be closed. |
| The number of messages you want to prefetch prior to consume them. Defaults to 10 |
| The number of bytes you want to use to prefetch messages. Defaults to 0 |
The documentation is only a piece of the help you can get! Whether you are looking for Open Source or Enterprise support, see more support channels that can help you.