File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
docs/guide/src/docs/asciidoc Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -49,12 +49,18 @@ connector.class = com.redis.kafka.connect.RedisKeysSourceConnector
4949redis.keys.pattern = <glob> <1>
5050redis.keys.timeout = <millis> <2>
5151topic = <name> <3>
52+ mode = <LIVE|LIVEONLY> <4>
5253----
5354<1> Key pattern to subscribe to.
5455This is the key portion of the pattern that will be used to listen to keyspace events.
56+ +
5557For example `foo:*` translates to pubsub channel `$$__$$keyspace@0$$__$$:foo:*` and will capture changes to keys `foo:1`, `foo:2`, etc.
5658See {link_redis_keys} for pattern details.
5759<2> Idle timeout in millis.
5860Duration after which the connector will stop if no activity is encountered.
5961<3> Name of the destination topic.
62+ <4> Reading mode:
63+ +
64+ `LIVE` (default):: initial snapshot + updates
65+ `LIVEONLY`:: just updates
6066
You can’t perform that action at this time.
0 commit comments