skip to Main Content

Error message from worker: redis.clients.jedis.exceptions.JedisConnectionException: Unknown reply:

While connecting to memorystore through dataflow getting the below exception in the dataflow worker logs. '''Error message from worker: redis.clients.jedis.exceptions.JedisConnectionException: Unknown reply: redis.clients.jedis.Protocol.process(Protocol.java:140) redis.clients.jedis.Protocol.read(Protocol.java:192) redis.clients.jedis.Connection.readProtocolWithCheckingBroken(Connection.java:316) redis.clients.jedis.Connection.getStatusCodeReply(Connection.java:243) redis.clients.jedis.Jedis.ping(Jedis.java:356) org.redis.memorystore.redisconn1.processElement(memorystore.java:39)''' Please find the code which I am using. class redisconn1 extends DoFn<String,String>…

VIEW QUESTION

Redis – Is there a way to make repeatedly forever apache beam trigger to only execute after the previous execution is completed?

I am using global window with repeated forever after processing time trigger to process streaming data from pub-sub as below : PCollection<KV<String,SMMessage>> perMSISDNLatestEvents = messages .apply("Apply global window",Window.<SMMessage>into(new GlobalWindows()) .triggering(Repeatedly.forever(AfterProcessingTime.pastFirstElementInPane().plusDelayOf(Duration.standardMinutes(1)))) .discardingFiredPanes()) .apply("Convert into kv of msisdn and SM message", ParDo.of(new…

VIEW QUESTION
Back To Top
Search