Build the project and copy the jars to the example
mvn clean install && \
cd examples/spring/gs-rest-service && \
mvn clean install && \
cd .. && \
cp ../../kafka-connect-rest-plugin/target/kafka-connect-rest-plugin-*-shaded.jar jars/ && \
cp ../../kafka-connect-transform-from-json/kafka-connect-transform-from-json-plugin/target/kafka-connect-transform-from-json-plugin-*-shaded.jar jars/ && \
cp ../../kafka-connect-transform-add-headers/target/kafka-connect-transform-add-headers-*-shaded.jar jars/ && \
cp ../../kafka-connect-transform-velocity-eval/target/kafka-connect-transform-velocity-eval-*-shaded.jar jars/
Bring up the docker containers
docker-compose up -d
Create the destination topic
docker exec -it spring_connect_1 bash -c \
"kafka-topics --zookeeper zookeeper \
--topic restSourceDestinationTopic --create \
--replication-factor 1 --partitions 1"
Configure the sink and source connectors
curl -X POST \
-H 'Host: connect.example.com' \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
http://localhost:8083/connectors -d @config/sink.json
curl -X POST \
-H 'Host: connect.example.com' \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
http://localhost:8083/connectors -d @config/source.json
View the contents of the destination topic
docker exec -it spring_connect_1 bash -c \
"kafka-avro-console-consumer --bootstrap-server kafka:9092 \
--topic restSourceDestinationTopic --from-beginning \
--property schema.registry.url=http://schema_registry:8081/"
View the webserver logs
docker logs -f spring_webservice_1
Shutdown the docker containers
docker-compose down
cd ../..
Change CONNECT_VALUE_CONVERTER in the docker-compose.yml to org.apache.kafka.connect.storage.StringConverter if you don't want to use Avro.
docker exec -it spring_connect_1 bash -c \
"kafka-console-consumer --bootstrap-server kafka:9092 \
--topic restSourceDestinationTopic --from-beginning"
You will need gcloud installed and a GCP project with payments enabled.
mvn clean install
cd examples/gcf
Replace '<REGION>' and '<PROJECTID>' in rest.source.url in config/source.json.
"rest.source.url": "https://<REGION>-<PROJECTID>.cloudfunctions.net/hello",
gcloud beta functions deploy hello --trigger-http
curl -X POST http://https://<REGION>-<PROJECTID>.cloudfunctions.net/hello -d 'name=Kafka Connect'
docker-compose up -d
docker exec -it gcf_connect_1 bash -c \
"kafka-topics --zookeeper zookeeper \
--topic restSourceDestinationTopic --create \
--replication-factor 1 --partitions 1"
curl -X POST \
-H 'Host: connect.example.com' \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
http://localhost:8083/connectors -d @config/source.json
docker exec -it spring_connect_1 bash -c \
"kafka-avro-console-consumer --bootstrap-server kafka:9092 \
--topic restSourceDestinationTopic --from-beginning \
--property schema.registry.url=http://schema_registry:8081/"
docker-compose down