blob: 62ef5271c9c4dd6f242e6425d862c7d96581054f [file] [log] [blame]
# Camel-Kafka-connector AWS2 MinIO Sink
## Introduction
This is an example for Camel-Kafka-connector MinIO
## What is needed
- A MinIO instance running
## Running Kafka
```
$KAFKA_HOME/bin/zookeeper-server-start.sh $KAFKA_HOME/config/zookeeper.properties
$KAFKA_HOME/bin/kafka-server-start.sh $KAFKA_HOME/config/server.properties
$KAFKA_HOME/bin/kafka-topics.sh --create --bootstrap-server localhost:9092 --replication-factor 1 --partitions 1 --topic mytopic
```
## 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-minio-kafka-connector/0.11.5/camel-minio-kafka-connector-0.11.5-package.tar.gz
> untar.gz camel-minio-kafka-connector-0.11.5-package.tar.gz
```
Now we need to setup a MinIO instance
```
> wget https://dl.min.io/server/minio/release/linux-amd64/minio
> chmod +x minio
> export MINIO_ACCESS_KEY=minio
> export MINIO_SECRET_KEY=miniostorage
> mkdir data
> ./minio server data/
```
Now it's time to setup the connectors
Open the Minio configuration File
```
name=CamelMinioSinkConnector
connector.class=org.apache.camel.kafkaconnector.minio.CamelMinioSinkConnector
key.converter=org.apache.kafka.connect.storage.StringConverter
value.converter=org.apache.kafka.connect.storage.StringConverter
topics=mytopic
camel.sink.path.bucketName=bucket
camel.sink.endpoint.endpoint=http://localhost:9000
camel.sink.endpoint.keyName=${date:now:yyyyMMdd-HHmmssSSS}-${exchangeId}
camel.component.minio.accessKey=minio
camel.component.minio.secretKey=miniostorage
```
Now you can run the example
```
$KAFKA_HOME/bin/connect-standalone.sh $KAFKA_HOME/config/connect-standalone.properties config/CamelMinioSinkConnector.properties
```
Just connect to your MinIO console and look into your bucket.
On a different terminal run the kafka-producer and you should see messages from the Kafka Broker arriving into bucket.
```
bin/kafka-console-producer.sh --topic mytopic --broker-list localhost:9092
>From Kafka to Minio
```