oscerd commented on a change in pull request #8: URL: https://github.com/apache/camel-kafka-connector-examples/pull/8#discussion_r437486641
########## File path: amqp/README.md ########## @@ -0,0 +1,66 @@ +# Camel-Kafka-connector Kafka to AMQP broker demo + +## Introduction + +This is an example for Camel-Kafka-connector + +## What is needed + +- An Artemis Broker 2.9.0 running +- A Kafka Cluster 2.4.0 running +- Apache Qpid JMS client + +## Running Kafka + +``` +$KAFKA_HOME/bin/zookeeper-server-start.sh config/zookeeper.properties +$KAFKA_HOME/bin/kafka-server-start.sh config/server.properties +$KAFKA_HOME/bin/kafka-topics.sh --create --bootstrap-server localhost:9092 --replication-factor 1 --partitions 1 --topic mytopic +``` + +## Running Artemis + +``` +$ARTEMIS_HOME/bin/$BROKER_NAME/bin/artemis run +``` + +## Setting up the needed bits and running the example + +You'll need to setup the plugin.path property in your kafka + +Open the `$KAFKA_HOME/config/connect-standalone.properties` + +and set the `plugin.path` property to your choosen location + +In this example we'll use `/home/oscerd/connectors/` + +``` +> cd /home/oscerd/connectors/ +> wget https://repo1.maven.org/maven2/org/apache/camel/kafkaconnector/camel-amqp-kafka-connector/0.2.0/camel-amqp-kafka-connector-0.2.0-package.zip +> unzip camel-amqp-kafka-connector-0.2.0-package.zip +> wget https://downloads.apache.org/qpid/jms/0.51.0/apache-qpid-jms-0.51.0-bin.tar.gz Review comment: This should be removed when we release the new kafka-connector release 0.3.0 ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
