You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by GitBox <gi...@apache.org> on 2019/04/02 09:59:02 UTC

[GitHub] [pulsar] murong00 opened a new pull request #3967: [pulsar-io] Add a Pulsar IO connector for RabbitMQ sink

murong00 opened a new pull request #3967: [pulsar-io] Add a Pulsar IO connector for RabbitMQ sink
URL: https://github.com/apache/pulsar/pull/3967
 
 
   ### Motivation
   
   Provides a builtin RabbitMQ Sink Connector, in order to persist pulsar messages to a RabbitMQ queue.
   
   ### Modifications
   
   Add a RabbitMQ Sink and some unit tests.
   
   ### Verifying this change
   
   This change can be verified as follows:
   
   * deploy the RabbitMQ sink connector with configuration file containing the following fields:
   
   ```
   configs:
       host: "localhost"
       port: "5672"
       virtualHost: "/"
       username: "quest"
       password: "quest"
       queueName: "test_queue"
       connectionName: "test_connection"
       exchangeName: "test_exchange"
       routingKey: "test_routing"
   ```
   * deploy an RabbitMQ cluster and create the above elements
   * send messages in the topic with specified schema declared when deploying the connector
   * use `rabbitmqadmin` or `rabbitmqctl` to query messages in the specified queue

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services