MeteoGroup / amqp-to-kafka

The repo has been migrated to Bitbucket https://bitbucket.org/dtnse/amqp-to-kafka/src/master/ and archived
Apache License 2.0
3 stars 2 forks source link
amqp forwarding golang kafka message

AMQP to Kafka forwarder build status

Fetches messages from AMQP and forwards them to Kafka.

Build

Given a properly setup go develop environment, just run

  go get -d -t .
  go build

The resulting binary should be named amqp-to-kafka (or amqp-to-kafka.exe on Windows). For further detail, e.g. cross-platform builds and custom build parameters, please refer to the go-documentation.

Usage

amqp-to-kafka takes the following commandline parameters:

amqp-uri, amqp-exchange, kafka-brokers and kafka-topic are mandatory, everything else is optional. When metrics-address is given amqp-to-kafka binds that address to export prometheus compatible metrics. Parameters may set via environment variables as well

The default connection with amqp is not applying TLS but if secure connection is required, then certificate path can be provided as environment variable to be used by service. When both are specified, commandline parameters take precedence over environment variables.

Either amqp-queue or amqp-exchange and amqp-binding-key may be specified. In case amqp-queue is used all messages to the given queue are forwarded. In case amqp-exchange and amqp-binding-key are specified a temporary queue is declared and bound to the exchange using the binding key to select messages forwarded.

Docker

A docker-ized variant is available meteogroup/amqp-to-kafka. Metrics are exposed on port 8080. To run use

docker run -P meteogroup/amqp-to-kafka <additional commandline arguments>

License

Copyright © 2017 MeteoGroup Deutschland GmbH, all the files in this repository are released under the terms of Apache License 2.0.