> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mage.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# RabbitMQ

## Basic config

```yaml theme={"system"}

connector_type: 'rabbitmq'
connection_host: 'localhost'
connection_port: 5672
queue_name: 'default'
username: 'guest'
password: 'guest'
amqp_url_virtual_host: '%2f'
url_protocol: 'amqp'
```

You can even control some of the RabbitMQ consumer configurations using the following fields.

```yaml theme={"system"}
configure_consume: True

consume_config:
  auto_ack: False
  exclusive: False
  inactivity_timeout: 10.0
```
