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

Unable to connect to Redis in GCP which is SSL Enabled

I am using Spring-boot-starter-redis dependency to connect to redis (below is my snippet from gradle dependency dependencies { implementation 'org.springframework.boot:spring-boot-starter-web' implementation 'org.springframework.boot:spring-boot-starter-actuator' implementation 'org.springframework.boot:spring-boot-starter-data-redis' compileOnly 'org.projectlombok:lombok:1.18.20' annotationProcessor 'org.projectlombok:lombok:1.18.20' } I am moving to GCP now and the redis in GCP…

VIEW QUESTION
Back To Top
Search