kafka-connect-redis
kafka-connect-redis copied to clipboard
📕 Kafka Connect source and sink connector for Redis
The record (value) in the Kafka topic is Avro serialized. I am using the below redis sink connector settings to copy the data from Kafka topic to Redis ``` {...
We can better parallelize the workload for keyspace events where we subscribe to all of the upstream nodes. Ideally, we'd split the work into Kafka Connect tasks and use the...
The connector listens to all Redis cluster nodes for Pub/Sub messages. This is great for keyspace notifications, which only publish node-local messages. However, if you use it for regular Pub/Sub,...
Support transactions via [MULTI](https://redis.io/commands/multi) . . . [EXEC](https://redis.io/commands/exec). This might be a little funky. We can go two different routes on this: - Single Kafka record that contains a list...
Support Lua script commands: - [EVAL](https://redis.io/commands/eval) - [EVALSHA](https://redis.io/commands/evalsha) Commands like [SCRIPT LOAD](https://redis.io/commands/script-load) are probably not super useful from a Kafka data sinking perspective so let's skip those for now unless...
I want to synchronize Redis operations from source to kafka and hand over sink to write back to another Redis. But I found that the message format sent by source...
thank you for this plugin i have question : i want to get every key insert in redis realtime and send to kafka topic with json format redis key example...