What do you use the data(from redis) for?
If it's used for driving computation, a Redis source is what you need, but
not support now[1].
If it's used for lookup something by keys, you can implement a
TableFunction to fetch records from redis,
or you can take a look at LookupableTableSource of the
Hello everyone,
My use case assume that we execute a job where we load from Redis few data
and turn it into DS to register them as tables.
But, it's possible that after have completed this step the data might
change and we may need to read again the data to keep the tables content up
to date. Her