TyrantLucifer commented on code in PR #2647:
URL:
https://github.com/apache/incubator-seatunnel/pull/2647#discussion_r963153359
##########
seatunnel-connectors-v2/connector-redis/src/main/java/org/apache/seatunnel/connectors/seatunnel/redis/config/RedisParameters.java:
##########
@@ -50,4 +52,13 @@ public void buildWithConfig(Config config) {
throw new RuntimeException("Redis source connector only support
these data types [key, hash, list, set, zset]", e);
}
}
+
+ public Jedis buildJedis() {
+ Jedis jedis;
+ jedis = new Jedis(host, port);
Review Comment:
The sink and source are two separate threads.
--
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]