Vinay varma created BEAM-3446:
---------------------------------
Summary: RedisIO non-prefix read operations
Key: BEAM-3446
URL: https://issues.apache.org/jira/browse/BEAM-3446
Project: Beam
Issue Type: New Feature
Components: sdk-java-extensions
Reporter: Vinay varma
Assignee: Reuven Lax
Read operation in RedisIO is for prefix based look ups. While this can be used
for exact key matches as well, the number of operations limits the through put
of the function.
I suggest exposing current readAll operation as readbyprefix and using more
simpler operations for readAll functionality.
ex:
{code:java}
String output = jedis.get(element);
if (output != null) {
processContext.output(KV.of(element, output));
}
{code}
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)