RabbitMQ Sink
Tutorial: Setting up and using a RabbitMQ Sink connector in KurrentDB
This tutorial guides you through the configuration and deployment of a RabbitMQ Sink connector in KurrentDB. The connector streams events in real time from KurrentDB to a RabbitMQ exchange, enabling message-based communication for microservices, task queues, and event-driven applications.
Prerequisites:
- A KurrentDB cluster with an active license key.
- A RabbitMQ instance (self-hosted or cloud-based).
- Connection details for RabbitMQ (e.g., host, port, username, password, exchange name).
- Basic command-line knowledge (e.g., using
curl
for API requests). - Access to KurrentDB UI and the RabbitMQ Management UI or CLI (
rabbitmqctl
) for event verification.
Step 1: Configure the RabbitMQ Sink connector
The RabbitMQ Sink connector must be configured to define how KurrentDB streams events to RabbitMQ.
Step 1.1: Create the configuration file
Create a new file named rabbitmq-sink-config.json
with the following content:
{
"settings": {
"instanceTypeName": "rabbitmq-sink",
"subscription:filter:scope": "stream",
"subscription:filter:filterType": "prefix",
"subscription:filter:expression": "LoanRequest",
"host": "your-rabbitmq-host",
"port": 5672,
"username": "your-username",
"password": "your-password",
"virtualHost": "/",
"exchangeName": "your-exchange",
"routingKey": "your-routing-key"
}
}
Note
Replace the placeholders:
"your-rabbitmq-host"
โ Your RabbitMQ server address."your-username"
&"your-password"
โ Your RabbitMQ credentials."your-exchange"
โ The RabbitMQ exchange where events will be published."your-routing-key"
โ The routing key for message distribution.
Step 1.2: Deploy the RabbitMQ Sink connector
Create the RabbitMQ Sink connector instance in KurrentDB by sending a POST
request to the KurrentDB API with the following curl
command:
curl -i -L -u admin:password `
-H "content-type: application/json" -d '@rabbitmq-sink-config.json' `
-X POST https://your-kurrentdb-cluster-url:2113/connectors/rabbitmq-sink-quickstart
curl -i -L -u admin:password \
-H "content-type: application/json" -d '@rabbitmq-sink-config.json' \
-X POST https://your-kurrentdb-cluster-url:2113/connectors/rabbitmq-sink-quickstart
Note
Replace admin:password
with your KurrentDB credentials and your-kurrentdb-cluster-url
with the actual KurrentDB cluster URL. Do this in all following code snippets in this tutorial that contain admin:password
and your-kurrentdb-cluster-url
.
Step 1.3: Verify the connector configuration
Run the following command to check the configuration:
curl -u admin:password `
-X GET https://your-kurrentdb-cluster-url:2113/connectors/rabbitmq-sink-quickstart/settings
curl -u admin:password \
-X GET https://your-kurrentdb-cluster-url:2113/connectors/rabbitmq-sink-quickstart/settings
If successful, the response will display the current settings of your RabbitMQ Sink connector, matching your configuration file in Step 1.1.
Step 2: Start the RabbitMQ Sink connector
Once configured, you need to start the RabbitMQ Sink connector to begin streaming events. To do this, send a POST
request to the KurrentDB API:
curl -i -L -u admin:password `
-X POST https://your-kurrentdb-cluster-url:2113/connectors/rabbitmq-sink-quickstart/start
curl -i -L -u admin:password \
-X POST https://your-kurrentdb-cluster-url:2113/connectors/rabbitmq-sink-quickstart/start
If the RabbitMQ Sink connector starts successfully, it should return an HTTP/1.1 200 OK
response, as shown below:
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
Step 3: Append Events to KurrentDB
To test the RabbitMQ Sink connector, first append some sample events to KurrentDB using the KurrentDB UI with the following steps:
- Log in to the KurrentDB UI.
- Navigate to Stream Browser.
- Click Add Event.
- Enter the following details:
- Stream ID:
LoanRequest-1
- Event Type:
LoanRequested
- Event Body:
{ "Amount": 10000, "loanTerm": 12 }
- Stream ID:
- Click Add to append the event to the
LoanRequest-1
stream. - Repeat steps 3โ5 to append more events to different streams (e.g., a stream with the Stream ID
LoanRequest-2
).

Step 4: Verify events in RabbitMQ
Now, you can use RabbitMQ Management UI or CLI to verify that the events have been successfully streamed to RabbitMQ.
Option 1. Use the RabbitMQ Management UI
- Log in to the RabbitMQ Management UI (
http://your-rabbitmq-host:15672
), replacing"your-rabbitmq-host"
with your RabbitMQ server address. - Navigate to Exchanges.
- Find your exchange specified in the connector configuration.
- Check the queues bound to the exchange and inspect messages.
Option 2. Use rabbitmqctl
(Command Line)
Alternatively, check the messages using the RabbitMQ CLI rabbitmqctl
, which is automatically installed with RabbitMQ.
You need to start the RabbitMQ service to use
rabbitmqctl
.For Linux/macOS:
Bashsudo systemctl start rabbitmq-server
or
Bashrabbitmq-server -detached
For Windows:
Start RabbitMQ via the Windows Services Manager or run:
powershellrabbitmq-service start
List queues.
Bashrabbitmqctl list_queues
Inspect a queue and retrieve messages.
Bashrabbitmqadmin get queue=your-queue-name
If the RabbitMQ Sink connector is working correctly, events from KurrentDB should be visible in the designated exchange or queue.
Step 5 (optional): Stop the RabbitMQ Sink connector
If the RabbitMQ Sink connector is no longer needed, you can stop it to free up resources. Run the following command to send a POST
request to the KurrentDB API and stop the connector.
curl -i -L -u admin:password `
-X POST https://your-kurrentdb-cluster-url:2113/connectors/rabbitmq-sink-quickstart/stop
curl -i -L -u admin:password \
-X POST https://your-kurrentdb-cluster-url:2113/connectors/rabbitmq-sink-quickstart/stop
If the RabbitMQ Sink connector stops successfully, it should return an HTTP/1.1 200 OK
response, as shown below:
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
The RabbitMQ Sink connector has now stopped processing events, but its configuration remains intact. You can restart it later by following Step 2.
Summary
By following this tutorial, you should have successfully:
- Configured and deployed the RabbitMQ Sink connector in KurrentDB.
- Streamed events from KurrentDB to a RabbitMQ exchange.
- Verified event propagation using KurrentDB UI and the RabbitMQ Management UI or
rabbitmqctl
. - (Optional) Stopped the RabbitMQ Sink connector when no longer needed.
This setup enables real-time event streaming from KurrentDB to a RabbitMQ exchange, providing a reliable and scalable solution for seamless message routing for microservices, task queues, and distributed event-driven architectures.