Skip to content

Commit 606c495

Browse files
Added source connector quickstart properties (#9)
1 parent 0c1bb58 commit 606c495

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [1.0.1] - 2020-11-11
8+
### Added
9+
- Added quickstart properties for the source connector
10+
811
### Fixed
912
- Fixed broken link and missing information in the Confluent Hub package
1013

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
1-
# Kafka settings
21
name=redis-sink
32
connector.class=io.github.jaredpetersen.kafkaconnectredis.sink.RedisSinkConnector
43
tasks.max=1
5-
6-
# Topics to consume from (comma-separated for a list of multiple topics)
7-
topics=rediscommands
8-
9-
# Redis sink configuration
4+
topics=redis.commands
105
redis.uri=redis://password@localhost:6379
116
redis.cluster.enabled=false
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
name=redis-source
2+
connector.class=io.github.jaredpetersen.kafkaconnectredis.source.RedisSourceConnector
3+
tasks.max=1
4+
topic=redis.events
5+
redis.uri=redis://password@localhost:6379
6+
redis.cluster.enabled=false
7+
redis.channels=__key*__:*
8+
redis.channels.pattern.enabled=true

0 commit comments

Comments
 (0)