Andre Cowie
Andre Cowie
Hey I want to use this, but need to update the kafka-clients to 2.8.0 in the build path. How can I rebuild the jar using gradle? Or could we get...
So I am creating a connector on a new confluent platform. I have been using the snowflake-kafka-connector-1.6.9 as a stable version on an apache kafka instance. When creating a new...
Lets say I create a sink: ``` curl -X POST -H "Content-Type: application/json" --data ' {"name": "redis-sink-json", "config": { "connector.class":"com.redis.kafka.connect.RedisSinkConnector", "tasks.max":"1", "topics":"userinfo,userinfo.username", "redis.uri":"redis://redis:6379", "redis.command":"HSET", "redis.type":"HASH", "key.converter": "org.apache.kafka.connect.json.JsonConverter", "key.converter.schemas.enable": "false", "value.converter":...