Details
-
Bug
-
Status: Resolved
-
P2
-
Resolution: Fixed
-
None
-
None
Description
RedisIO PFADD writing does not support TTL
if we check the method writeUsingHLLCommand: https://github.com/apache/beam/blob/master/sdks/java/io/redis/src/main/java/org/apache/beam/sdk/io/redis/RedisIO.java
the variable expireTime is not being used
private void writeUsingHLLCommand(KV<String, String> record, Long expireTime) { String key = record.getKey(); String value = record.getValue(); pipeline.pfadd(key, value); }
Attachments
Issue Links
- links to