News KrakenD Enterprise v2.6 released with OpenTelemetry, FIPS-140, gRPC server and more

Community Documentation

Recent changes

You are viewing a previous version of KrakenD Community Edition (v1.3) , go to the latest version

API Gateway integration with AMQP messaging

Document updated on May 2, 2021

The AMQP component allows to send and receive messages to and from a queue through the API Gateway.

The configuration of the queue is a straightforward process. To connect the endpoints to the messaging system you only need to include the extra_config key with the namespaces github.com/devopsfaith/krakend-amqp/consume or github.com/devopsfaith/krakend-amqp/produce.

The parameters of this integration follow the AMQP specification. To understand what are the implications of a certain parameter, see the AMQP Complete Reference Guide.

KrakenD creates both the exchange and the queue for you.

Common settings

Both the consumers and the producers have this configuration keys in common:

  • name - string as the queue name
  • exchange - string the exchange name (must have topic type if already exists).
  • routing_key - []string
  • durable - bool true is recommended, but depends on the use case.
  • delete - bool false is recommended to avoid deletions when the consumer is disconnected
  • exclusive - bool
  • no_wait - bool

The following configurations demonstrate both the consumer and the producer to create the whole publish/subscribe pattern.

Consumer

The consumer retrieves messages from the queue when a KrakenD endpoint plugs to its AMQP backend. The recommendation is to connect consumers to GET endpoints.

A single endpoint can consume messages from N queues, or can consume N messages from the same queue by adding N backends with the proper queue name.

Example

The needed configuration to run a consumer is:

    "backend": [
        {
            "host": [
                "amqp://guest:[email protected]:5672"
            ],
            "disable_host_sanitize": true,
            "extra_config": {
                "github.com/devopsfaith/krakend-amqp/consume": {
                    "name":           "queue-1",
                    "exchange":       "some-exchange",
                    "durable":        true,
                    "delete":         false,
                    "exclusive":      false,
                    "no_wait":        true,
                    "no_local":       false,
                    "routing_key":    ["#"],
                    "prefetch_count": 10
                }
            }
        }

Consumer settings

The full list of parameters for the consumer are:

  • All the common settings above plus:
  • prefetch_count - int
  • prefetch_size - int
  • no_local - bool

Producer

The producer publishes messages to the messaging system for your asynchronous consumption. The recommendation is to plug producers to POST endpoints.

Worth mentioning that the producer needs you to pass a body in the request and that the endpoint should declare the headers_to_pass so producers are aware of the headers.

Example

The needed configuration to run a producer is as follows:

    "endpoint": "/producer",
    "headers_to_pass": [ "...", "..." ],
    "backend": [
        {
            "host": [
                "amqp://guest:[email protected]:5672"
            ],
            "disable_host_sanitize": true,
            "extra_config": {
                "github.com/devopsfaith/krakend-amqp/produce": {
                    "name": "queue-1",
                    "exchange":       "some-exchange",
                    "durable":        true,
                    "delete":         false,
                    "exclusive":      false,
                    "no_wait":        true,
                    "mandatory": true,
                    "immediate": false
                }
            }
        }

Producer settings

The full list of parameters for the producer are:

  • All the common settings above plus:
  • prefetch_count - int
  • prefetch_size - int
  • mandatory - bool
  • immediate - bool

Additionally, these items below are parameter keys that can be present in the endpoint URL and are passed to the producer. Parameters need capitalization on the first letter.

  • exp_key - string
  • reply_to_key - string
  • msg_id_key - string
  • priority_key - string - Key of the request parameters that is used as the priority value for the produced message.
  • routing_key - string - Key of the request parameters that is used as the routing value for the produced message.
Parameters’ first character uppercased
Notice the capitalization of the first letter of the parameter names at the configuration below. For instance, when an endpoint parameter is defined as {route}, define it in the config as Route.

For instance, an endpoint URL could be declared as /produce/{a}/{b}/{id}/{prio}/{route} and the producer knows how to map them with a configuration like this:

{
    ...
    "exp_key":"A",
    "reply_to_key":"B",
    "msg_id_key":"Id",
    "priority_key":"Prio",
    "routing_key":"Route"
}
Scarf

Unresolved issues?

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.