RabbitMQ
RabbitMQSinkConnector: From EventMesh to RabbitMQ
- launch your RabbitMQ server and EventMesh Runtime.
- enable sinkConnector and check
sink-config.yml
. - start your
RabbitMQConnectorServer
, it will subscribe to the topic defined inpubSubConfig.subject
of EventMesh Runtime and send data toconnectorConfig.queueName
in your RabbitMQ. - send a message to EventMesh with the topic defined in
pubSubConfig.subject
and then you will receive the message in RabbitMQ.
pubSubConfig:
# default port 10000
meshAddress: your.eventmesh.server:10000
subject: TopicTest
idc: FT
env: PRD
group: rabbitmqSink
appId: 5031
userName: rabbitmqSinkUser
passWord: rabbitmqPassWord
connectorConfig:
connectorName: rabbitmqSink
host: your.rabbitmq.server
port: 5672
username: coyrqpyz
passwd: passwd
virtualHost: coyrqpyz
exchangeType: TOPIC
# build-in exchangeName or name a new one after you create it in rabbitmq server.
exchangeName: amq.topic
# rabbitmq server will create the routingKey and queueName automatically after you connect to it if they aren't exist before.
routingKey: eventmesh
queueName: eventmesh
autoAck: true
RabbitMQSourceConnector: From RabbitMQ to EventMesh
- launch your RabbitMQ server and EventMesh Runtime.
- enable sourceConnector and check
source-config.yml
(Basically the same assink-config.yml
) - start your
RabbitMQConnectorServer
, it will subscribe to the queue defined inconnectorConfig.queueName
in your RabbitMQ and send data topubSubConfig.subject
of EventMesh Runtime. - send a CloudEvent message to the queue and then you will receive the message in EventMesh.