mirror of https://github.com/apache/druid.git
82 lines
2.8 KiB
Markdown
82 lines
2.8 KiB
Markdown
---
|
|
layout: doc_page
|
|
title: "RabbitMQ"
|
|
---
|
|
|
|
<!--
|
|
~ Licensed to the Apache Software Foundation (ASF) under one
|
|
~ or more contributor license agreements. See the NOTICE file
|
|
~ distributed with this work for additional information
|
|
~ regarding copyright ownership. The ASF licenses this file
|
|
~ to you under the Apache License, Version 2.0 (the
|
|
~ "License"); you may not use this file except in compliance
|
|
~ with the License. You may obtain a copy of the License at
|
|
~
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
|
~
|
|
~ Unless required by applicable law or agreed to in writing,
|
|
~ software distributed under the License is distributed on an
|
|
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
~ KIND, either express or implied. See the License for the
|
|
~ specific language governing permissions and limitations
|
|
~ under the License.
|
|
-->
|
|
|
|
# RabbitMQ
|
|
|
|
To use this Apache Druid (incubating) extension, make sure to [include](../../operations/including-extensions.html) `druid-rabbitmq` extension.
|
|
|
|
## Firehose
|
|
|
|
#### RabbitMQFirehose
|
|
|
|
This firehose ingests events from a define rabbit-mq queue.
|
|
|
|
**Note:** Add **amqp-client-3.2.1.jar** to lib directory of druid to use this firehose.
|
|
|
|
A sample spec for rabbitmq firehose:
|
|
|
|
```json
|
|
"firehose" : {
|
|
"type" : "rabbitmq",
|
|
"connection" : {
|
|
"host": "localhost",
|
|
"port": "5672",
|
|
"username": "test-dude",
|
|
"password": "test-word",
|
|
"virtualHost": "test-vhost",
|
|
"uri": "amqp://mqserver:1234/vhost"
|
|
},
|
|
"config" : {
|
|
"exchange": "test-exchange",
|
|
"queue" : "druidtest",
|
|
"routingKey": "#",
|
|
"durable": "true",
|
|
"exclusive": "false",
|
|
"autoDelete": "false",
|
|
"maxRetries": "10",
|
|
"retryIntervalSeconds": "1",
|
|
"maxDurationSeconds": "300"
|
|
}
|
|
}
|
|
```
|
|
|
|
|property|description|default|required?|
|
|
|--------|-----------|-------|---------|
|
|
|type|This should be "rabbitmq"|N/A|yes|
|
|
|host|The hostname of the RabbitMQ broker to connect to|localhost|no|
|
|
|port|The port number to connect to on the RabbitMQ broker|5672|no|
|
|
|username|The username to use to connect to RabbitMQ|guest|no|
|
|
|password|The password to use to connect to RabbitMQ|guest|no|
|
|
|virtualHost|The virtual host to connect to|/|no|
|
|
|uri|The URI string to use to connect to RabbitMQ| |no|
|
|
|exchange|The exchange to connect to| |yes|
|
|
|queue|The queue to connect to or create| |yes|
|
|
|routingKey|The routing key to use to bind the queue to the exchange| |yes|
|
|
|durable|Whether the queue should be durable|false|no|
|
|
|exclusive|Whether the queue should be exclusive|false|no|
|
|
|autoDelete|Whether the queue should auto-delete on disconnect|false|no|
|
|
|maxRetries|The max number of reconnection retry attempts| |yes|
|
|
|retryIntervalSeconds|The reconnection interval| |yes|
|
|
|maxDurationSeconds|The max duration of trying to reconnect| |yes|
|