Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
7 changes: 1 addition & 6 deletions config/quickstart-kafka-connect-redis-sink.properties
Original file line number Diff line number Diff line change
@@ -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
8 changes: 8 additions & 0 deletions config/quickstart-kafka-connect-redis-source.properties
Original file line number Diff line number Diff line change
@@ -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