Create an MQTT sink connector#
The MQTT sink connector copies messages from an Apache Kafka® topic to an MQTT queue.
Note
You can check the full set of available parameters and configuration options in the connector’s documentation.
Tip
The connector can be used to sink messages to RabbitMQ® where RabbitMQ MQTT plugin is enabled.
Prerequisites#
To set up an MQTT sink connector, you need an Aiven for Apache Kafka service with Kafka Connect enabled or a dedicated Aiven for Apache Kafka Connect cluster.
Tip
The connector will write to a topic defined in the "connect.mqtt.kcql"
configuration, so either create the topic in your Kafka service, or enable the auto_create_topic
parameter so that the topic will be created automatically.
Furthermore you need to collect the following information about the sink MQTT server upfront:
USERNAME
: The MQTT username to connectPASSWORD
: The password for the username selectedHOST
: The MQTT hostnamePORT
: MQTT port (usually 1883)KCQL_STATEMENT
: The KCQL statement to be used in the following format:INSERT INTO <mqtt-topic> SELECT FIELD, ... FROM <kafka-topic>
APACHE_KAFKA_HOST
: The hostname of the Apache Kafka service, only needed when using Avro as data formatSCHEMA_REGISTRY_PORT
: The Apache Kafka’s schema registry port, only needed when using Avro as data formatSCHEMA_REGISTRY_USER
: The Apache Kafka’s schema registry username, only needed when using Avro as data formatSCHEMA_REGISTRY_PASSWORD
: The Apache Kafka’s schema registry user password, only needed when using Avro as data format
Setup an MQTT sink connector with Aiven Console#
The following example demonstrates how to setup an Apache Kafka MQTT sink connector using the Aiven Console.
Define a Kafka Connect configuration file#
Define the connector configurations in a file (we’ll refer to it with the name mqtt_sink.json
) with the following content. Creating a file is not strictly necessary but allows to have all the information in one place before copy/pasting them in the Aiven Console:
{
"name": "CONNECTOR_NAME",
"connect.mqtt.hosts": "tcp://<HOST>:<PORT>",
"connect.mqtt.kcql": "KCQL_STATEMENT",
"connector.class": "com.datamountaineer.streamreactor.connect.mqtt.sink.MqttSinkConnector",
"connect.mqtt.username": "USERNAME",
"connect.mqtt.password": "PASSWORD",
"key.converter": "org.apache.kafka.connect.json.JsonConverter",
"value.converter": "org.apache.kafka.connect.json.JsonConverter"
}
The configuration file contains the following entries:
name
: the connector name, replaceCONNECTOR_NAME
with the name you want to use for the connector.connect.mqtt.hosts
,connect.mqtt.kcql
,connect.mqtt.username
andconnect.mqtt.password
: sink MQTT parameters collected in the prerequisite phase.key.converter
andvalue.converter
: The data converter used for this example JSON converter is used.
Check out the dedicated documentation for the full list of parameters.
Create a Kafka Connect connector with the Aiven Console#
To create a Apache Kafka Connect connector, follow these steps:
Log in to the Aiven Console and select the Aiven for Apache Kafka® or Aiven for Apache Kafka Connect® service where the connector needs to be defined.
Select Connectors from the left sidebar.
Select Create New Connector, the button is enabled only for services with Kafka Connect enabled.
Select Stream Reactor MQTT Sink Connector.
In the Common tab, locate the Connector configuration text box and select on Edit.
Paste the connector configuration (stored in the
mqtt_sink.json
file) in the form.Select Apply.
To create the connector, access the Aiven Console and select the Aiven for Apache Kafka® or Aiven for Apache Kafka® Connect service where the connector needs to be defined, then:
Note
The Aiven Console parses the configuration file and fills the relevant UI fields. You can review the UI fields across the various tabs and change them if necessary. The changes will be reflected in JSON format in the Connector configuration text box.
After all the settings are correctly configured, select Create connector.
Verify the connector status under the Connectors screen.
Verify the presence of the data in the target Apache Kafka topic, the topic name is the one defined in the
KCQL_STATEMENT
.
Tip
You can also create connectors using the Aiven CLI command.