lukecwik commented on pull request #15549:
URL: https://github.com/apache/beam/pull/15549#issuecomment-959576834


   Your loop `ProcessElement` loop would be like:
   ```
   byteKey = tracker.getRestriction().getStart();
   while (tryClaim(byteKey)) {
     cursor = convertToRedisCursor(byteKey);
     values, nextCursor = jedis.scan(cursor);
     byteKey = convertToByteKey(nextCursor);
     output values
   }
   return STOP;
   ```
   
   You could also create a `RedisCursorRangeTracker` that is a thin wrapper 
over the `ByteKeyRangeTracker` and effectively do conversions only by 
internalizing the `convertToRedisCursor` and `convertToByteKey` methods.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to