-
Hello! We use Amazon MSK for Kafka deployment and want to use Strimzi's KafkaConnect in EKS. The I could produce messages inside the But I am getting the error in Here is the apiVersion: kafka.strimzi.io/v1beta2
kind: KafkaConnect
metadata:
name: kafka-connect-sample-cluster
namespace: kafka-connect-sample
spec:
bootstrapServers: <MskBootstrapServers>
config:
config.storage.topic: kafka-connect-sample.configs
group.id: kafka-connect-sample.sample-cluster
key.converter: org.apache.kafka.connect.json.JsonConverter
key.converter.schemas.enable: true
offset.storage.topic: kafka-connect-sample.offsets
status.storage.topic: kafka-connect-sample.status
value.converter: org.apache.kafka.connect.json.JsonConverter
value.converter.schemas.enable: true
image: <MyImage>
replicas: 1
status:
conditions:
- lastTransitionTime: "2023-03-28T06:40:02.339687495Z"
message: Connection reset
reason: SocketException
status: "True"
type: NotReady
labelSelector: strimzi.io/cluster=kafka-connect-sample-cluster,strimzi.io/name=kafka-connect-sample-cluster-connect,strimzi.io/kind=KafkaConnect
observedGeneration: 12
replicas: 1
url: http://kafka-connect-sample-cluster-connect-api.kafka-connect-sample.svc:8083 apiVersion: kafka.strimzi.io/v1beta2
kind: KafkaConnector
metadata:
name: kafka-connect-sample-foo
namespace: kafka-connect-sample
labels:
strimzi.io/cluster: kafka-connect-sample-cluster
spec:
class: <foo>
tasksMax: 1
config:
name: <foo>
topic: <foo>
....
status:
conditions:
- lastTransitionTime: "2023-03-28T06:51:24.556911546Z"
message: Connection reset
reason: SocketException
status: "True"
type: NotReady
observedGeneration: 9
tasksMax: 1
topics: [] Here is the strimzi operator's log.
How should I debug this issue? Any ideas are really appreciated 🙏 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
Sounds like your Connect does not work. You would need to share full logs I guess. |
Beta Was this translation helpful? Give feedback.
Sounds like your Connect does not work. You would need to share full logs I guess.