You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+76-23Lines changed: 76 additions & 23 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,20 @@
1
1
# Conduit Connector for RabbitMQ
2
-
The RabbitMQ connector is one of [Conduit](https://github.com/ConduitIO/conduit) builtin plugins. It provides both, a
3
-
source and a destination connector for [RabbitMQ](https://rabbitmq.com/).
2
+
3
+
The RabbitMQ connector is one of [Conduit](https://github.com/ConduitIO/conduit) builtin plugins. It provides both, a source and a destination connector for [RabbitMQ](https://rabbitmq.com/).
4
+
5
+
It uses the [AMQP 0-9-1 Model](https://www.rabbitmq.com/tutorials/amqp-concepts) to connect to RabbitMQ.
|`record.Position`| json object with the delivery tag and the queue name from where the record was read from.|
13
+
|`record.Operation`| currently fixed as "create". |
14
+
|`record.Metadata`| a string to string map, with keys prefixed as `rabbitmq.{DELIVERY_PROPERTY}`. |
15
+
|`record.Key`| the message id from the read message. |
16
+
|`record.Payload.Before`| <empty> |
17
+
|`record.Payload.After`| the message body |
4
18
5
19
## How to Build?
6
20
@@ -11,25 +25,15 @@ Run `make build` to compile the connector.
11
25
Execute `make test` to perform all non-tls tests. Execute `make test-tls` for the TLS tests. Both commands use docker files located at `test/docker-compose.yml` and `test/docker-compose-tls.yml` respectively.
0 commit comments