diff --git a/CHANGELOG.md b/CHANGELOG.md index c183c67..cd4d58e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [1.0.1] - 2020-11-11 +### Added +- Added quickstart properties for the source connector + ### Fixed - Fixed broken link and missing information in the Confluent Hub package diff --git a/config/quickstart-kafka-connect-redis-sink.properties b/config/quickstart-kafka-connect-redis-sink.properties index 90bdc42..ea88ec3 100644 --- a/config/quickstart-kafka-connect-redis-sink.properties +++ b/config/quickstart-kafka-connect-redis-sink.properties @@ -1,11 +1,6 @@ -# Kafka settings name=redis-sink connector.class=io.github.jaredpetersen.kafkaconnectredis.sink.RedisSinkConnector tasks.max=1 - -# Topics to consume from (comma-separated for a list of multiple topics) -topics=rediscommands - -# Redis sink configuration +topics=redis.commands redis.uri=redis://password@localhost:6379 redis.cluster.enabled=false diff --git a/config/quickstart-kafka-connect-redis-source.properties b/config/quickstart-kafka-connect-redis-source.properties new file mode 100644 index 0000000..3470c08 --- /dev/null +++ b/config/quickstart-kafka-connect-redis-source.properties @@ -0,0 +1,8 @@ +name=redis-source +connector.class=io.github.jaredpetersen.kafkaconnectredis.source.RedisSourceConnector +tasks.max=1 +topic=redis.events +redis.uri=redis://password@localhost:6379 +redis.cluster.enabled=false +redis.channels=__key*__:* +redis.channels.pattern.enabled=true