-
Notifications
You must be signed in to change notification settings - Fork 30
Description
Hi folks,
I have a question, if it makes sense I'd like to suggest a feature.
I have an application that uses Redis to save temporary data, but this data is important for me for in future auditories. I don't want to use redis stream
I could add an extra step in my application after saving the data in Redis and then putting the data in kafka topic, but I don't want my application to have kafka dependency and overhead. So I want to use Redis connector to extract keys and their values and put them in the kafka.
I saw the RedisKeysSourceConnector
is based in redis keyspace notifications but it is not possible to report a value (stackoverflow question). The value is the most important thing for me.
Does It make sense to implement in the RedisKeysSourceConnector
or create a new connector class for the following steps (I could try to implement it):
- Connector receives any event from key (keyspace notifications based)
- The connector gets value from the key
- Connector put the data keyspace notifications and key value in the topic
If somebody has other suggestions or solutions I would appreciate a lot.
Thanks